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, send_ordered, CTLFLAG_RW, 372 &ada_send_ordered, 0, "Send Ordered Tags"); 373 TUNABLE_INT("kern.cam.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 | CAM_DEBUG_PERIPH, 440 ("adaopen\n")); 441 442 if ((softc->flags & ADA_FLAG_PACK_INVALID) != 0) { 443 /* Invalidate our pack information. */ 444 softc->flags &= ~ADA_FLAG_PACK_INVALID; 445 } 446 447 cam_periph_unhold(periph); 448 cam_periph_unlock(periph); 449 return (0); 450 } 451 452 static int 453 adaclose(struct disk *dp) 454 { 455 struct cam_periph *periph; 456 struct ada_softc *softc; 457 union ccb *ccb; 458 459 periph = (struct cam_periph *)dp->d_drv1; 460 if (periph == NULL) 461 return (ENXIO); 462 463 cam_periph_lock(periph); 464 if (cam_periph_hold(periph, PRIBIO) != 0) { 465 cam_periph_unlock(periph); 466 cam_periph_release(periph); 467 return (0); 468 } 469 470 softc = (struct ada_softc *)periph->softc; 471 472 CAM_DEBUG(periph->path, CAM_DEBUG_TRACE | CAM_DEBUG_PERIPH, 473 ("adaclose\n")); 474 475 /* We only sync the cache if the drive is capable of it. */ 476 if ((softc->flags & ADA_FLAG_CAN_FLUSHCACHE) != 0 && 477 (softc->flags & ADA_FLAG_PACK_INVALID) == 0) { 478 479 ccb = cam_periph_getccb(periph, CAM_PRIORITY_NORMAL); 480 cam_fill_ataio(&ccb->ataio, 481 1, 482 adadone, 483 CAM_DIR_NONE, 484 0, 485 NULL, 486 0, 487 ada_default_timeout*1000); 488 489 if (softc->flags & ADA_FLAG_CAN_48BIT) 490 ata_48bit_cmd(&ccb->ataio, ATA_FLUSHCACHE48, 0, 0, 0); 491 else 492 ata_28bit_cmd(&ccb->ataio, ATA_FLUSHCACHE, 0, 0, 0); 493 cam_periph_runccb(ccb, adaerror, /*cam_flags*/0, 494 /*sense_flags*/0, softc->disk->d_devstat); 495 496 if ((ccb->ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) 497 xpt_print(periph->path, "Synchronize cache failed\n"); 498 xpt_release_ccb(ccb); 499 } 500 501 softc->flags &= ~ADA_FLAG_OPEN; 502 cam_periph_unhold(periph); 503 cam_periph_unlock(periph); 504 cam_periph_release(periph); 505 return (0); 506 } 507 508 static void 509 adaschedule(struct cam_periph *periph) 510 { 511 struct ada_softc *softc = (struct ada_softc *)periph->softc; 512 uint32_t prio; 513 514 /* Check if cam_periph_getccb() was called. */ 515 prio = periph->immediate_priority; 516 517 /* Check if we have more work to do. */ 518 if (bioq_first(&softc->bio_queue) || 519 (!softc->trim_running && bioq_first(&softc->trim_queue))) { 520 prio = CAM_PRIORITY_NORMAL; 521 } 522 523 /* Schedule CCB if any of above is true. */ 524 if (prio != CAM_PRIORITY_NONE) 525 xpt_schedule(periph, prio); 526 } 527 528 /* 529 * Actually translate the requested transfer into one the physical driver 530 * can understand. The transfer is described by a buf and will include 531 * only one physical transfer. 532 */ 533 static void 534 adastrategy(struct bio *bp) 535 { 536 struct cam_periph *periph; 537 struct ada_softc *softc; 538 539 periph = (struct cam_periph *)bp->bio_disk->d_drv1; 540 if (periph == NULL) { 541 biofinish(bp, NULL, ENXIO); 542 return; 543 } 544 softc = (struct ada_softc *)periph->softc; 545 546 cam_periph_lock(periph); 547 548 CAM_DEBUG(periph->path, CAM_DEBUG_TRACE, ("adastrategy(%p)\n", bp)); 549 550 /* 551 * If the device has been made invalid, error out 552 */ 553 if ((softc->flags & ADA_FLAG_PACK_INVALID)) { 554 cam_periph_unlock(periph); 555 biofinish(bp, NULL, ENXIO); 556 return; 557 } 558 559 /* 560 * Place it in the queue of disk activities for this disk 561 */ 562 if (bp->bio_cmd == BIO_DELETE && 563 (softc->flags & ADA_FLAG_CAN_TRIM)) 564 bioq_disksort(&softc->trim_queue, bp); 565 else 566 bioq_disksort(&softc->bio_queue, bp); 567 568 /* 569 * Schedule ourselves for performing the work. 570 */ 571 adaschedule(periph); 572 cam_periph_unlock(periph); 573 574 return; 575 } 576 577 static int 578 adadump(void *arg, void *virtual, vm_offset_t physical, off_t offset, size_t length) 579 { 580 struct cam_periph *periph; 581 struct ada_softc *softc; 582 u_int secsize; 583 union ccb ccb; 584 struct disk *dp; 585 uint64_t lba; 586 uint16_t count; 587 int error = 0; 588 589 dp = arg; 590 periph = dp->d_drv1; 591 if (periph == NULL) 592 return (ENXIO); 593 softc = (struct ada_softc *)periph->softc; 594 cam_periph_lock(periph); 595 secsize = softc->params.secsize; 596 lba = offset / secsize; 597 count = length / secsize; 598 599 if ((softc->flags & ADA_FLAG_PACK_INVALID) != 0) { 600 cam_periph_unlock(periph); 601 return (ENXIO); 602 } 603 604 if (length > 0) { 605 xpt_setup_ccb(&ccb.ccb_h, periph->path, CAM_PRIORITY_NORMAL); 606 ccb.ccb_h.ccb_state = ADA_CCB_DUMP; 607 cam_fill_ataio(&ccb.ataio, 608 0, 609 adadone, 610 CAM_DIR_OUT, 611 0, 612 (u_int8_t *) virtual, 613 length, 614 ada_default_timeout*1000); 615 if ((softc->flags & ADA_FLAG_CAN_48BIT) && 616 (lba + count >= ATA_MAX_28BIT_LBA || 617 count >= 256)) { 618 ata_48bit_cmd(&ccb.ataio, ATA_WRITE_DMA48, 619 0, lba, count); 620 } else { 621 ata_28bit_cmd(&ccb.ataio, ATA_WRITE_DMA, 622 0, lba, count); 623 } 624 xpt_polled_action(&ccb); 625 626 error = cam_periph_error(&ccb, 627 0, SF_NO_RECOVERY | SF_NO_RETRY, NULL); 628 if ((ccb.ccb_h.status & CAM_DEV_QFRZN) != 0) 629 cam_release_devq(ccb.ccb_h.path, /*relsim_flags*/0, 630 /*reduction*/0, /*timeout*/0, /*getcount_only*/0); 631 if (error != 0) 632 printf("Aborting dump due to I/O error.\n"); 633 634 cam_periph_unlock(periph); 635 return (error); 636 } 637 638 if (softc->flags & ADA_FLAG_CAN_FLUSHCACHE) { 639 xpt_setup_ccb(&ccb.ccb_h, periph->path, CAM_PRIORITY_NORMAL); 640 641 ccb.ccb_h.ccb_state = ADA_CCB_DUMP; 642 cam_fill_ataio(&ccb.ataio, 643 0, 644 adadone, 645 CAM_DIR_NONE, 646 0, 647 NULL, 648 0, 649 ada_default_timeout*1000); 650 651 if (softc->flags & ADA_FLAG_CAN_48BIT) 652 ata_48bit_cmd(&ccb.ataio, ATA_FLUSHCACHE48, 0, 0, 0); 653 else 654 ata_28bit_cmd(&ccb.ataio, ATA_FLUSHCACHE, 0, 0, 0); 655 xpt_polled_action(&ccb); 656 657 error = cam_periph_error(&ccb, 658 0, SF_NO_RECOVERY | SF_NO_RETRY, NULL); 659 if ((ccb.ccb_h.status & CAM_DEV_QFRZN) != 0) 660 cam_release_devq(ccb.ccb_h.path, /*relsim_flags*/0, 661 /*reduction*/0, /*timeout*/0, /*getcount_only*/0); 662 if (error != 0) 663 xpt_print(periph->path, "Synchronize cache failed\n"); 664 } 665 cam_periph_unlock(periph); 666 return (error); 667 } 668 669 static void 670 adainit(void) 671 { 672 cam_status status; 673 674 /* 675 * Install a global async callback. This callback will 676 * receive async callbacks like "new device found". 677 */ 678 status = xpt_register_async(AC_FOUND_DEVICE, adaasync, NULL, NULL); 679 680 if (status != CAM_REQ_CMP) { 681 printf("ada: Failed to attach master async callback " 682 "due to status 0x%x!\n", status); 683 } else if (ada_send_ordered) { 684 685 /* Register our event handlers */ 686 if ((EVENTHANDLER_REGISTER(power_suspend, adasuspend, 687 NULL, EVENTHANDLER_PRI_LAST)) == NULL) 688 printf("adainit: power event registration failed!\n"); 689 if ((EVENTHANDLER_REGISTER(power_resume, adaresume, 690 NULL, EVENTHANDLER_PRI_LAST)) == NULL) 691 printf("adainit: power event registration failed!\n"); 692 if ((EVENTHANDLER_REGISTER(shutdown_post_sync, adashutdown, 693 NULL, SHUTDOWN_PRI_DEFAULT)) == NULL) 694 printf("adainit: shutdown event registration failed!\n"); 695 } 696 } 697 698 static void 699 adaoninvalidate(struct cam_periph *periph) 700 { 701 struct ada_softc *softc; 702 703 softc = (struct ada_softc *)periph->softc; 704 705 /* 706 * De-register any async callbacks. 707 */ 708 xpt_register_async(0, adaasync, periph, periph->path); 709 710 softc->flags |= ADA_FLAG_PACK_INVALID; 711 712 /* 713 * Return all queued I/O with ENXIO. 714 * XXX Handle any transactions queued to the card 715 * with XPT_ABORT_CCB. 716 */ 717 bioq_flush(&softc->bio_queue, NULL, ENXIO); 718 bioq_flush(&softc->trim_queue, NULL, ENXIO); 719 720 disk_gone(softc->disk); 721 xpt_print(periph->path, "lost device\n"); 722 } 723 724 static void 725 adacleanup(struct cam_periph *periph) 726 { 727 struct ada_softc *softc; 728 729 softc = (struct ada_softc *)periph->softc; 730 731 xpt_print(periph->path, "removing device entry\n"); 732 cam_periph_unlock(periph); 733 734 /* 735 * If we can't free the sysctl tree, oh well... 736 */ 737 if ((softc->flags & ADA_FLAG_SCTX_INIT) != 0 738 && sysctl_ctx_free(&softc->sysctl_ctx) != 0) { 739 xpt_print(periph->path, "can't remove sysctl context\n"); 740 } 741 742 disk_destroy(softc->disk); 743 callout_drain(&softc->sendordered_c); 744 free(softc, M_DEVBUF); 745 cam_periph_lock(periph); 746 } 747 748 static void 749 adaasync(void *callback_arg, u_int32_t code, 750 struct cam_path *path, void *arg) 751 { 752 struct ccb_getdev cgd; 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_GETDEV_CHANGED: 788 { 789 softc = (struct ada_softc *)periph->softc; 790 xpt_setup_ccb(&cgd.ccb_h, periph->path, CAM_PRIORITY_NORMAL); 791 cgd.ccb_h.func_code = XPT_GDEV_TYPE; 792 xpt_action((union ccb *)&cgd); 793 794 if ((cgd.ident_data.capabilities1 & ATA_SUPPORT_DMA) && 795 (cgd.inq_flags & SID_DMA)) 796 softc->flags |= ADA_FLAG_CAN_DMA; 797 else 798 softc->flags &= ~ADA_FLAG_CAN_DMA; 799 if ((cgd.ident_data.satacapabilities & ATA_SUPPORT_NCQ) && 800 (cgd.inq_flags & SID_DMA) && (cgd.inq_flags & SID_CmdQue)) 801 softc->flags |= ADA_FLAG_CAN_NCQ; 802 else 803 softc->flags &= ~ADA_FLAG_CAN_NCQ; 804 if ((cgd.ident_data.support_dsm & ATA_SUPPORT_DSM_TRIM) && 805 (cgd.inq_flags & SID_DMA)) 806 softc->flags |= ADA_FLAG_CAN_TRIM; 807 else 808 softc->flags &= ~ADA_FLAG_CAN_TRIM; 809 810 cam_periph_async(periph, code, path, arg); 811 break; 812 } 813 case AC_ADVINFO_CHANGED: 814 { 815 uintptr_t buftype; 816 817 buftype = (uintptr_t)arg; 818 if (buftype == CDAI_TYPE_PHYS_PATH) { 819 struct ada_softc *softc; 820 821 softc = periph->softc; 822 disk_attr_changed(softc->disk, "GEOM::physpath", 823 M_NOWAIT); 824 } 825 break; 826 } 827 case AC_SENT_BDR: 828 case AC_BUS_RESET: 829 { 830 softc = (struct ada_softc *)periph->softc; 831 cam_periph_async(periph, code, path, arg); 832 if (softc->state != ADA_STATE_NORMAL) 833 break; 834 xpt_setup_ccb(&cgd.ccb_h, periph->path, CAM_PRIORITY_NORMAL); 835 cgd.ccb_h.func_code = XPT_GDEV_TYPE; 836 xpt_action((union ccb *)&cgd); 837 if (ADA_RA >= 0 && 838 cgd.ident_data.support.command1 & ATA_SUPPORT_LOOKAHEAD) 839 softc->state = ADA_STATE_RAHEAD; 840 else if (ADA_WC >= 0 && 841 cgd.ident_data.support.command1 & ATA_SUPPORT_WRITECACHE) 842 softc->state = ADA_STATE_WCACHE; 843 else 844 break; 845 cam_periph_acquire(periph); 846 cam_freeze_devq_arg(periph->path, 847 RELSIM_RELEASE_RUNLEVEL, CAM_RL_DEV + 1); 848 xpt_schedule(periph, CAM_PRIORITY_DEV); 849 } 850 default: 851 cam_periph_async(periph, code, path, arg); 852 break; 853 } 854 } 855 856 static void 857 adasysctlinit(void *context, int pending) 858 { 859 struct cam_periph *periph; 860 struct ada_softc *softc; 861 char tmpstr[80], tmpstr2[80]; 862 863 periph = (struct cam_periph *)context; 864 865 /* periph was held for us when this task was enqueued */ 866 if (periph->flags & CAM_PERIPH_INVALID) { 867 cam_periph_release(periph); 868 return; 869 } 870 871 softc = (struct ada_softc *)periph->softc; 872 snprintf(tmpstr, sizeof(tmpstr), "CAM ADA unit %d", periph->unit_number); 873 snprintf(tmpstr2, sizeof(tmpstr2), "%d", periph->unit_number); 874 875 sysctl_ctx_init(&softc->sysctl_ctx); 876 softc->flags |= ADA_FLAG_SCTX_INIT; 877 softc->sysctl_tree = SYSCTL_ADD_NODE(&softc->sysctl_ctx, 878 SYSCTL_STATIC_CHILDREN(_kern_cam_ada), OID_AUTO, tmpstr2, 879 CTLFLAG_RD, 0, tmpstr); 880 if (softc->sysctl_tree == NULL) { 881 printf("adasysctlinit: unable to allocate sysctl tree\n"); 882 cam_periph_release(periph); 883 return; 884 } 885 886 SYSCTL_ADD_INT(&softc->sysctl_ctx, SYSCTL_CHILDREN(softc->sysctl_tree), 887 OID_AUTO, "read_ahead", CTLFLAG_RW | CTLFLAG_MPSAFE, 888 &softc->read_ahead, 0, "Enable disk read ahead."); 889 SYSCTL_ADD_INT(&softc->sysctl_ctx, SYSCTL_CHILDREN(softc->sysctl_tree), 890 OID_AUTO, "write_cache", CTLFLAG_RW | CTLFLAG_MPSAFE, 891 &softc->write_cache, 0, "Enable disk write cache."); 892 #ifdef ADA_TEST_FAILURE 893 /* 894 * Add a 'door bell' sysctl which allows one to set it from userland 895 * and cause something bad to happen. For the moment, we only allow 896 * whacking the next read or write. 897 */ 898 SYSCTL_ADD_INT(&softc->sysctl_ctx, SYSCTL_CHILDREN(softc->sysctl_tree), 899 OID_AUTO, "force_read_error", CTLFLAG_RW | CTLFLAG_MPSAFE, 900 &softc->force_read_error, 0, 901 "Force a read error for the next N reads."); 902 SYSCTL_ADD_INT(&softc->sysctl_ctx, SYSCTL_CHILDREN(softc->sysctl_tree), 903 OID_AUTO, "force_write_error", CTLFLAG_RW | CTLFLAG_MPSAFE, 904 &softc->force_write_error, 0, 905 "Force a write error for the next N writes."); 906 SYSCTL_ADD_INT(&softc->sysctl_ctx, SYSCTL_CHILDREN(softc->sysctl_tree), 907 OID_AUTO, "periodic_read_error", CTLFLAG_RW | CTLFLAG_MPSAFE, 908 &softc->periodic_read_error, 0, 909 "Force a read error every N reads (don't set too low)."); 910 #endif 911 cam_periph_release(periph); 912 } 913 914 static int 915 adagetattr(struct bio *bp) 916 { 917 int ret; 918 struct cam_periph *periph; 919 920 periph = (struct cam_periph *)bp->bio_disk->d_drv1; 921 if (periph == NULL) 922 return (ENXIO); 923 924 cam_periph_lock(periph); 925 ret = xpt_getattr(bp->bio_data, bp->bio_length, bp->bio_attribute, 926 periph->path); 927 cam_periph_unlock(periph); 928 if (ret == 0) 929 bp->bio_completed = bp->bio_length; 930 return ret; 931 } 932 933 static cam_status 934 adaregister(struct cam_periph *periph, void *arg) 935 { 936 struct ada_softc *softc; 937 struct ccb_pathinq cpi; 938 struct ccb_getdev *cgd; 939 char announce_buf[80], buf1[32]; 940 struct disk_params *dp; 941 caddr_t match; 942 u_int maxio; 943 int legacy_id, quirks; 944 945 cgd = (struct ccb_getdev *)arg; 946 if (cgd == NULL) { 947 printf("adaregister: no getdev CCB, can't register device\n"); 948 return(CAM_REQ_CMP_ERR); 949 } 950 951 softc = (struct ada_softc *)malloc(sizeof(*softc), M_DEVBUF, 952 M_NOWAIT|M_ZERO); 953 954 if (softc == NULL) { 955 printf("adaregister: Unable to probe new device. " 956 "Unable to allocate softc\n"); 957 return(CAM_REQ_CMP_ERR); 958 } 959 960 bioq_init(&softc->bio_queue); 961 bioq_init(&softc->trim_queue); 962 963 if ((cgd->ident_data.capabilities1 & ATA_SUPPORT_DMA) && 964 (cgd->inq_flags & SID_DMA)) 965 softc->flags |= ADA_FLAG_CAN_DMA; 966 if (cgd->ident_data.support.command2 & ATA_SUPPORT_ADDRESS48) 967 softc->flags |= ADA_FLAG_CAN_48BIT; 968 if (cgd->ident_data.support.command2 & ATA_SUPPORT_FLUSHCACHE) 969 softc->flags |= ADA_FLAG_CAN_FLUSHCACHE; 970 if (cgd->ident_data.support.command1 & ATA_SUPPORT_POWERMGT) 971 softc->flags |= ADA_FLAG_CAN_POWERMGT; 972 if ((cgd->ident_data.satacapabilities & ATA_SUPPORT_NCQ) && 973 (cgd->inq_flags & SID_DMA) && (cgd->inq_flags & SID_CmdQue)) 974 softc->flags |= ADA_FLAG_CAN_NCQ; 975 if ((cgd->ident_data.support_dsm & ATA_SUPPORT_DSM_TRIM) && 976 (cgd->inq_flags & SID_DMA)) { 977 softc->flags |= ADA_FLAG_CAN_TRIM; 978 softc->trim_max_ranges = TRIM_MAX_RANGES; 979 if (cgd->ident_data.max_dsm_blocks != 0) { 980 softc->trim_max_ranges = 981 min(cgd->ident_data.max_dsm_blocks * 64, 982 softc->trim_max_ranges); 983 } 984 } 985 if (cgd->ident_data.support.command2 & ATA_SUPPORT_CFA) 986 softc->flags |= ADA_FLAG_CAN_CFA; 987 988 periph->softc = softc; 989 990 /* 991 * See if this device has any quirks. 992 */ 993 match = cam_quirkmatch((caddr_t)&cgd->ident_data, 994 (caddr_t)ada_quirk_table, 995 sizeof(ada_quirk_table)/sizeof(*ada_quirk_table), 996 sizeof(*ada_quirk_table), ata_identify_match); 997 if (match != NULL) 998 softc->quirks = ((struct ada_quirk_entry *)match)->quirks; 999 else 1000 softc->quirks = ADA_Q_NONE; 1001 1002 bzero(&cpi, sizeof(cpi)); 1003 xpt_setup_ccb(&cpi.ccb_h, periph->path, CAM_PRIORITY_NONE); 1004 cpi.ccb_h.func_code = XPT_PATH_INQ; 1005 xpt_action((union ccb *)&cpi); 1006 1007 TASK_INIT(&softc->sysctl_task, 0, adasysctlinit, periph); 1008 1009 /* 1010 * Register this media as a disk 1011 */ 1012 (void)cam_periph_hold(periph, PRIBIO); 1013 mtx_unlock(periph->sim->mtx); 1014 snprintf(announce_buf, sizeof(announce_buf), 1015 "kern.cam.ada.%d.quirks", periph->unit_number); 1016 quirks = softc->quirks; 1017 TUNABLE_INT_FETCH(announce_buf, &quirks); 1018 softc->quirks = quirks; 1019 softc->read_ahead = -1; 1020 snprintf(announce_buf, sizeof(announce_buf), 1021 "kern.cam.ada.%d.read_ahead", periph->unit_number); 1022 TUNABLE_INT_FETCH(announce_buf, &softc->read_ahead); 1023 softc->write_cache = -1; 1024 snprintf(announce_buf, sizeof(announce_buf), 1025 "kern.cam.ada.%d.write_cache", periph->unit_number); 1026 TUNABLE_INT_FETCH(announce_buf, &softc->write_cache); 1027 adagetparams(periph, cgd); 1028 softc->disk = disk_alloc(); 1029 softc->disk->d_devstat = devstat_new_entry(periph->periph_name, 1030 periph->unit_number, softc->params.secsize, 1031 DEVSTAT_ALL_SUPPORTED, 1032 DEVSTAT_TYPE_DIRECT | 1033 XPORT_DEVSTAT_TYPE(cpi.transport), 1034 DEVSTAT_PRIORITY_DISK); 1035 softc->disk->d_open = adaopen; 1036 softc->disk->d_close = adaclose; 1037 softc->disk->d_strategy = adastrategy; 1038 softc->disk->d_getattr = adagetattr; 1039 softc->disk->d_dump = adadump; 1040 softc->disk->d_name = "ada"; 1041 softc->disk->d_drv1 = periph; 1042 maxio = cpi.maxio; /* Honor max I/O size of SIM */ 1043 if (maxio == 0) 1044 maxio = DFLTPHYS; /* traditional default */ 1045 else if (maxio > MAXPHYS) 1046 maxio = MAXPHYS; /* for safety */ 1047 if (softc->flags & ADA_FLAG_CAN_48BIT) 1048 maxio = min(maxio, 65536 * softc->params.secsize); 1049 else /* 28bit ATA command limit */ 1050 maxio = min(maxio, 256 * softc->params.secsize); 1051 softc->disk->d_maxsize = maxio; 1052 softc->disk->d_unit = periph->unit_number; 1053 softc->disk->d_flags = 0; 1054 if (softc->flags & ADA_FLAG_CAN_FLUSHCACHE) 1055 softc->disk->d_flags |= DISKFLAG_CANFLUSHCACHE; 1056 if ((softc->flags & ADA_FLAG_CAN_TRIM) || 1057 ((softc->flags & ADA_FLAG_CAN_CFA) && 1058 !(softc->flags & ADA_FLAG_CAN_48BIT))) 1059 softc->disk->d_flags |= DISKFLAG_CANDELETE; 1060 strlcpy(softc->disk->d_descr, cgd->ident_data.model, 1061 MIN(sizeof(softc->disk->d_descr), sizeof(cgd->ident_data.model))); 1062 strlcpy(softc->disk->d_ident, cgd->ident_data.serial, 1063 MIN(sizeof(softc->disk->d_ident), sizeof(cgd->ident_data.serial))); 1064 softc->disk->d_hba_vendor = cpi.hba_vendor; 1065 softc->disk->d_hba_device = cpi.hba_device; 1066 softc->disk->d_hba_subvendor = cpi.hba_subvendor; 1067 softc->disk->d_hba_subdevice = cpi.hba_subdevice; 1068 1069 softc->disk->d_sectorsize = softc->params.secsize; 1070 softc->disk->d_mediasize = (off_t)softc->params.sectors * 1071 softc->params.secsize; 1072 if (ata_physical_sector_size(&cgd->ident_data) != 1073 softc->params.secsize) { 1074 softc->disk->d_stripesize = 1075 ata_physical_sector_size(&cgd->ident_data); 1076 softc->disk->d_stripeoffset = (softc->disk->d_stripesize - 1077 ata_logical_sector_offset(&cgd->ident_data)) % 1078 softc->disk->d_stripesize; 1079 } else if (softc->quirks & ADA_Q_4K) { 1080 softc->disk->d_stripesize = 4096; 1081 softc->disk->d_stripeoffset = 0; 1082 } 1083 softc->disk->d_fwsectors = softc->params.secs_per_track; 1084 softc->disk->d_fwheads = softc->params.heads; 1085 ata_disk_firmware_geom_adjust(softc->disk); 1086 1087 if (ada_legacy_aliases) { 1088 #ifdef ATA_STATIC_ID 1089 legacy_id = xpt_path_legacy_ata_id(periph->path); 1090 #else 1091 legacy_id = softc->disk->d_unit; 1092 #endif 1093 if (legacy_id >= 0) { 1094 snprintf(announce_buf, sizeof(announce_buf), 1095 "kern.devalias.%s%d", 1096 softc->disk->d_name, softc->disk->d_unit); 1097 snprintf(buf1, sizeof(buf1), 1098 "ad%d", legacy_id); 1099 setenv(announce_buf, buf1); 1100 } 1101 } else 1102 legacy_id = -1; 1103 disk_create(softc->disk, DISK_VERSION); 1104 mtx_lock(periph->sim->mtx); 1105 cam_periph_unhold(periph); 1106 1107 dp = &softc->params; 1108 snprintf(announce_buf, sizeof(announce_buf), 1109 "%juMB (%ju %u byte sectors: %dH %dS/T %dC)", 1110 (uintmax_t)(((uintmax_t)dp->secsize * 1111 dp->sectors) / (1024*1024)), 1112 (uintmax_t)dp->sectors, 1113 dp->secsize, dp->heads, 1114 dp->secs_per_track, dp->cylinders); 1115 xpt_announce_periph(periph, announce_buf); 1116 if (legacy_id >= 0) 1117 printf("%s%d: Previously was known as ad%d\n", 1118 periph->periph_name, periph->unit_number, legacy_id); 1119 1120 /* 1121 * Create our sysctl variables, now that we know 1122 * we have successfully attached. 1123 */ 1124 cam_periph_acquire(periph); 1125 taskqueue_enqueue(taskqueue_thread, &softc->sysctl_task); 1126 1127 /* 1128 * Add async callbacks for bus reset and 1129 * bus device reset calls. I don't bother 1130 * checking if this fails as, in most cases, 1131 * the system will function just fine without 1132 * them and the only alternative would be to 1133 * not attach the device on failure. 1134 */ 1135 xpt_register_async(AC_SENT_BDR | AC_BUS_RESET | AC_LOST_DEVICE | 1136 AC_GETDEV_CHANGED | AC_ADVINFO_CHANGED, 1137 adaasync, periph, periph->path); 1138 1139 /* 1140 * Schedule a periodic event to occasionally send an 1141 * ordered tag to a device. 1142 */ 1143 callout_init_mtx(&softc->sendordered_c, periph->sim->mtx, 0); 1144 callout_reset(&softc->sendordered_c, 1145 (ada_default_timeout * hz) / ADA_ORDEREDTAG_INTERVAL, 1146 adasendorderedtag, softc); 1147 1148 if (ADA_RA >= 0 && 1149 cgd->ident_data.support.command1 & ATA_SUPPORT_LOOKAHEAD) { 1150 softc->state = ADA_STATE_RAHEAD; 1151 cam_periph_acquire(periph); 1152 cam_freeze_devq_arg(periph->path, 1153 RELSIM_RELEASE_RUNLEVEL, CAM_RL_DEV + 1); 1154 xpt_schedule(periph, CAM_PRIORITY_DEV); 1155 } else if (ADA_WC >= 0 && 1156 cgd->ident_data.support.command1 & ATA_SUPPORT_WRITECACHE) { 1157 softc->state = ADA_STATE_WCACHE; 1158 cam_periph_acquire(periph); 1159 cam_freeze_devq_arg(periph->path, 1160 RELSIM_RELEASE_RUNLEVEL, CAM_RL_DEV + 1); 1161 xpt_schedule(periph, CAM_PRIORITY_DEV); 1162 } else 1163 softc->state = ADA_STATE_NORMAL; 1164 1165 return(CAM_REQ_CMP); 1166 } 1167 1168 static void 1169 adastart(struct cam_periph *periph, union ccb *start_ccb) 1170 { 1171 struct ada_softc *softc = (struct ada_softc *)periph->softc; 1172 struct ccb_ataio *ataio = &start_ccb->ataio; 1173 1174 CAM_DEBUG(periph->path, CAM_DEBUG_TRACE, ("adastart\n")); 1175 1176 switch (softc->state) { 1177 case ADA_STATE_NORMAL: 1178 { 1179 struct bio *bp; 1180 u_int8_t tag_code; 1181 1182 /* Execute immediate CCB if waiting. */ 1183 if (periph->immediate_priority <= periph->pinfo.priority) { 1184 CAM_DEBUG(periph->path, CAM_DEBUG_SUBTRACE, 1185 ("queuing for immediate ccb\n")); 1186 start_ccb->ccb_h.ccb_state = ADA_CCB_WAITING; 1187 SLIST_INSERT_HEAD(&periph->ccb_list, &start_ccb->ccb_h, 1188 periph_links.sle); 1189 periph->immediate_priority = CAM_PRIORITY_NONE; 1190 wakeup(&periph->ccb_list); 1191 /* Have more work to do, so ensure we stay scheduled */ 1192 adaschedule(periph); 1193 break; 1194 } 1195 /* Run TRIM if not running yet. */ 1196 if (!softc->trim_running && 1197 (bp = bioq_first(&softc->trim_queue)) != 0) { 1198 struct trim_request *req = &softc->trim_req; 1199 struct bio *bp1; 1200 uint64_t lastlba = (uint64_t)-1; 1201 int bps = 0, c, lastcount = 0, off, ranges = 0; 1202 1203 softc->trim_running = 1; 1204 bzero(req, sizeof(*req)); 1205 bp1 = bp; 1206 do { 1207 uint64_t lba = bp1->bio_pblkno; 1208 int count = bp1->bio_bcount / 1209 softc->params.secsize; 1210 1211 bioq_remove(&softc->trim_queue, bp1); 1212 1213 /* Try to extend the previous range. */ 1214 if (lba == lastlba) { 1215 c = min(count, 0xffff - lastcount); 1216 lastcount += c; 1217 off = (ranges - 1) * 8; 1218 req->data[off + 6] = lastcount & 0xff; 1219 req->data[off + 7] = 1220 (lastcount >> 8) & 0xff; 1221 count -= c; 1222 lba += c; 1223 } 1224 1225 while (count > 0) { 1226 c = min(count, 0xffff); 1227 off = ranges * 8; 1228 req->data[off + 0] = lba & 0xff; 1229 req->data[off + 1] = (lba >> 8) & 0xff; 1230 req->data[off + 2] = (lba >> 16) & 0xff; 1231 req->data[off + 3] = (lba >> 24) & 0xff; 1232 req->data[off + 4] = (lba >> 32) & 0xff; 1233 req->data[off + 5] = (lba >> 40) & 0xff; 1234 req->data[off + 6] = c & 0xff; 1235 req->data[off + 7] = (c >> 8) & 0xff; 1236 lba += c; 1237 count -= c; 1238 lastcount = c; 1239 ranges++; 1240 } 1241 lastlba = lba; 1242 req->bps[bps++] = bp1; 1243 bp1 = bioq_first(&softc->trim_queue); 1244 if (bps >= TRIM_MAX_BIOS || 1245 bp1 == NULL || 1246 bp1->bio_bcount / softc->params.secsize > 1247 (softc->trim_max_ranges - ranges) * 0xffff) 1248 break; 1249 } while (1); 1250 cam_fill_ataio(ataio, 1251 ada_retry_count, 1252 adadone, 1253 CAM_DIR_OUT, 1254 0, 1255 req->data, 1256 ((ranges + 63) / 64) * 512, 1257 ada_default_timeout * 1000); 1258 ata_48bit_cmd(ataio, ATA_DATA_SET_MANAGEMENT, 1259 ATA_DSM_TRIM, 0, (ranges + 63) / 64); 1260 start_ccb->ccb_h.ccb_state = ADA_CCB_TRIM; 1261 goto out; 1262 } 1263 /* Run regular command. */ 1264 bp = bioq_first(&softc->bio_queue); 1265 if (bp == NULL) { 1266 xpt_release_ccb(start_ccb); 1267 break; 1268 } 1269 bioq_remove(&softc->bio_queue, bp); 1270 1271 if ((bp->bio_flags & BIO_ORDERED) != 0 1272 || (softc->flags & ADA_FLAG_NEED_OTAG) != 0) { 1273 softc->flags &= ~ADA_FLAG_NEED_OTAG; 1274 softc->ordered_tag_count++; 1275 tag_code = 0; 1276 } else { 1277 tag_code = 1; 1278 } 1279 switch (bp->bio_cmd) { 1280 case BIO_READ: 1281 case BIO_WRITE: 1282 { 1283 uint64_t lba = bp->bio_pblkno; 1284 uint16_t count = bp->bio_bcount / softc->params.secsize; 1285 #ifdef ADA_TEST_FAILURE 1286 int fail = 0; 1287 1288 /* 1289 * Support the failure ioctls. If the command is a 1290 * read, and there are pending forced read errors, or 1291 * if a write and pending write errors, then fail this 1292 * operation with EIO. This is useful for testing 1293 * purposes. Also, support having every Nth read fail. 1294 * 1295 * This is a rather blunt tool. 1296 */ 1297 if (bp->bio_cmd == BIO_READ) { 1298 if (softc->force_read_error) { 1299 softc->force_read_error--; 1300 fail = 1; 1301 } 1302 if (softc->periodic_read_error > 0) { 1303 if (++softc->periodic_read_count >= 1304 softc->periodic_read_error) { 1305 softc->periodic_read_count = 0; 1306 fail = 1; 1307 } 1308 } 1309 } else { 1310 if (softc->force_write_error) { 1311 softc->force_write_error--; 1312 fail = 1; 1313 } 1314 } 1315 if (fail) { 1316 bp->bio_error = EIO; 1317 bp->bio_flags |= BIO_ERROR; 1318 biodone(bp); 1319 xpt_release_ccb(start_ccb); 1320 adaschedule(periph); 1321 return; 1322 } 1323 #endif 1324 cam_fill_ataio(ataio, 1325 ada_retry_count, 1326 adadone, 1327 bp->bio_cmd == BIO_READ ? 1328 CAM_DIR_IN : CAM_DIR_OUT, 1329 tag_code, 1330 bp->bio_data, 1331 bp->bio_bcount, 1332 ada_default_timeout*1000); 1333 1334 if ((softc->flags & ADA_FLAG_CAN_NCQ) && tag_code) { 1335 if (bp->bio_cmd == BIO_READ) { 1336 ata_ncq_cmd(ataio, ATA_READ_FPDMA_QUEUED, 1337 lba, count); 1338 } else { 1339 ata_ncq_cmd(ataio, ATA_WRITE_FPDMA_QUEUED, 1340 lba, count); 1341 } 1342 } else if ((softc->flags & ADA_FLAG_CAN_48BIT) && 1343 (lba + count >= ATA_MAX_28BIT_LBA || 1344 count > 256)) { 1345 if (softc->flags & ADA_FLAG_CAN_DMA) { 1346 if (bp->bio_cmd == BIO_READ) { 1347 ata_48bit_cmd(ataio, ATA_READ_DMA48, 1348 0, lba, count); 1349 } else { 1350 ata_48bit_cmd(ataio, ATA_WRITE_DMA48, 1351 0, lba, count); 1352 } 1353 } else { 1354 if (bp->bio_cmd == BIO_READ) { 1355 ata_48bit_cmd(ataio, ATA_READ_MUL48, 1356 0, lba, count); 1357 } else { 1358 ata_48bit_cmd(ataio, ATA_WRITE_MUL48, 1359 0, lba, count); 1360 } 1361 } 1362 } else { 1363 if (count == 256) 1364 count = 0; 1365 if (softc->flags & ADA_FLAG_CAN_DMA) { 1366 if (bp->bio_cmd == BIO_READ) { 1367 ata_28bit_cmd(ataio, ATA_READ_DMA, 1368 0, lba, count); 1369 } else { 1370 ata_28bit_cmd(ataio, ATA_WRITE_DMA, 1371 0, lba, count); 1372 } 1373 } else { 1374 if (bp->bio_cmd == BIO_READ) { 1375 ata_28bit_cmd(ataio, ATA_READ_MUL, 1376 0, lba, count); 1377 } else { 1378 ata_28bit_cmd(ataio, ATA_WRITE_MUL, 1379 0, lba, count); 1380 } 1381 } 1382 } 1383 break; 1384 } 1385 case BIO_DELETE: 1386 { 1387 uint64_t lba = bp->bio_pblkno; 1388 uint16_t count = bp->bio_bcount / softc->params.secsize; 1389 1390 cam_fill_ataio(ataio, 1391 ada_retry_count, 1392 adadone, 1393 CAM_DIR_NONE, 1394 0, 1395 NULL, 1396 0, 1397 ada_default_timeout*1000); 1398 1399 if (count >= 256) 1400 count = 0; 1401 ata_28bit_cmd(ataio, ATA_CFA_ERASE, 0, lba, count); 1402 break; 1403 } 1404 case BIO_FLUSH: 1405 cam_fill_ataio(ataio, 1406 1, 1407 adadone, 1408 CAM_DIR_NONE, 1409 0, 1410 NULL, 1411 0, 1412 ada_default_timeout*1000); 1413 1414 if (softc->flags & ADA_FLAG_CAN_48BIT) 1415 ata_48bit_cmd(ataio, ATA_FLUSHCACHE48, 0, 0, 0); 1416 else 1417 ata_28bit_cmd(ataio, ATA_FLUSHCACHE, 0, 0, 0); 1418 break; 1419 } 1420 start_ccb->ccb_h.ccb_state = ADA_CCB_BUFFER_IO; 1421 out: 1422 start_ccb->ccb_h.ccb_bp = bp; 1423 softc->outstanding_cmds++; 1424 xpt_action(start_ccb); 1425 1426 /* May have more work to do, so ensure we stay scheduled */ 1427 adaschedule(periph); 1428 break; 1429 } 1430 case ADA_STATE_RAHEAD: 1431 case ADA_STATE_WCACHE: 1432 { 1433 if (softc->flags & ADA_FLAG_PACK_INVALID) { 1434 softc->state = ADA_STATE_NORMAL; 1435 xpt_release_ccb(start_ccb); 1436 cam_release_devq(periph->path, 1437 RELSIM_RELEASE_RUNLEVEL, 0, CAM_RL_DEV + 1, FALSE); 1438 adaschedule(periph); 1439 cam_periph_release_locked(periph); 1440 return; 1441 } 1442 1443 cam_fill_ataio(ataio, 1444 1, 1445 adadone, 1446 CAM_DIR_NONE, 1447 0, 1448 NULL, 1449 0, 1450 ada_default_timeout*1000); 1451 1452 if (softc->state == ADA_STATE_RAHEAD) { 1453 ata_28bit_cmd(ataio, ATA_SETFEATURES, ADA_RA ? 1454 ATA_SF_ENAB_RCACHE : ATA_SF_DIS_RCACHE, 0, 0); 1455 start_ccb->ccb_h.ccb_state = ADA_CCB_RAHEAD; 1456 } else { 1457 ata_28bit_cmd(ataio, ATA_SETFEATURES, ADA_WC ? 1458 ATA_SF_ENAB_WCACHE : ATA_SF_DIS_WCACHE, 0, 0); 1459 start_ccb->ccb_h.ccb_state = ADA_CCB_WCACHE; 1460 } 1461 xpt_action(start_ccb); 1462 break; 1463 } 1464 } 1465 } 1466 1467 static void 1468 adadone(struct cam_periph *periph, union ccb *done_ccb) 1469 { 1470 struct ada_softc *softc; 1471 struct ccb_ataio *ataio; 1472 struct ccb_getdev *cgd; 1473 1474 softc = (struct ada_softc *)periph->softc; 1475 ataio = &done_ccb->ataio; 1476 1477 CAM_DEBUG(periph->path, CAM_DEBUG_TRACE, ("adadone\n")); 1478 1479 switch (ataio->ccb_h.ccb_state & ADA_CCB_TYPE_MASK) { 1480 case ADA_CCB_BUFFER_IO: 1481 case ADA_CCB_TRIM: 1482 { 1483 struct bio *bp; 1484 1485 bp = (struct bio *)done_ccb->ccb_h.ccb_bp; 1486 if ((done_ccb->ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) { 1487 int error; 1488 1489 error = adaerror(done_ccb, 0, 0); 1490 if (error == ERESTART) { 1491 /* A retry was scheduled, so just return. */ 1492 return; 1493 } 1494 if (error != 0) { 1495 if (error == ENXIO && 1496 (softc->flags & ADA_FLAG_PACK_INVALID) == 0) { 1497 /* 1498 * Catastrophic error. Mark our pack as 1499 * invalid. 1500 */ 1501 /* 1502 * XXX See if this is really a media 1503 * XXX change first? 1504 */ 1505 xpt_print(periph->path, 1506 "Invalidating pack\n"); 1507 softc->flags |= ADA_FLAG_PACK_INVALID; 1508 } 1509 bp->bio_error = error; 1510 bp->bio_resid = bp->bio_bcount; 1511 bp->bio_flags |= BIO_ERROR; 1512 } else { 1513 bp->bio_resid = ataio->resid; 1514 bp->bio_error = 0; 1515 if (bp->bio_resid != 0) 1516 bp->bio_flags |= BIO_ERROR; 1517 } 1518 if ((done_ccb->ccb_h.status & CAM_DEV_QFRZN) != 0) 1519 cam_release_devq(done_ccb->ccb_h.path, 1520 /*relsim_flags*/0, 1521 /*reduction*/0, 1522 /*timeout*/0, 1523 /*getcount_only*/0); 1524 } else { 1525 if ((done_ccb->ccb_h.status & CAM_DEV_QFRZN) != 0) 1526 panic("REQ_CMP with QFRZN"); 1527 bp->bio_resid = ataio->resid; 1528 if (ataio->resid > 0) 1529 bp->bio_flags |= BIO_ERROR; 1530 } 1531 softc->outstanding_cmds--; 1532 if (softc->outstanding_cmds == 0) 1533 softc->flags |= ADA_FLAG_WENT_IDLE; 1534 if ((ataio->ccb_h.ccb_state & ADA_CCB_TYPE_MASK) == 1535 ADA_CCB_TRIM) { 1536 struct trim_request *req = 1537 (struct trim_request *)ataio->data_ptr; 1538 int i; 1539 1540 for (i = 1; i < TRIM_MAX_BIOS && req->bps[i]; i++) { 1541 struct bio *bp1 = req->bps[i]; 1542 1543 bp1->bio_resid = bp->bio_resid; 1544 bp1->bio_error = bp->bio_error; 1545 if (bp->bio_flags & BIO_ERROR) 1546 bp1->bio_flags |= BIO_ERROR; 1547 biodone(bp1); 1548 } 1549 softc->trim_running = 0; 1550 biodone(bp); 1551 adaschedule(periph); 1552 } else 1553 biodone(bp); 1554 break; 1555 } 1556 case ADA_CCB_RAHEAD: 1557 { 1558 if ((done_ccb->ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) { 1559 if (adaerror(done_ccb, 0, 0) == ERESTART) { 1560 return; 1561 } else if ((done_ccb->ccb_h.status & CAM_DEV_QFRZN) != 0) { 1562 cam_release_devq(done_ccb->ccb_h.path, 1563 /*relsim_flags*/0, 1564 /*reduction*/0, 1565 /*timeout*/0, 1566 /*getcount_only*/0); 1567 } 1568 } 1569 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 cgd = (struct ccb_getdev *)done_ccb; 1579 xpt_setup_ccb(&cgd->ccb_h, periph->path, CAM_PRIORITY_NORMAL); 1580 cgd->ccb_h.func_code = XPT_GDEV_TYPE; 1581 xpt_action((union ccb *)cgd); 1582 if (ADA_WC >= 0 && 1583 cgd->ident_data.support.command1 & ATA_SUPPORT_WRITECACHE) { 1584 softc->state = ADA_STATE_WCACHE; 1585 xpt_release_ccb(done_ccb); 1586 xpt_schedule(periph, CAM_PRIORITY_DEV); 1587 return; 1588 } 1589 softc->state = ADA_STATE_NORMAL; 1590 xpt_release_ccb(done_ccb); 1591 cam_release_devq(periph->path, 1592 RELSIM_RELEASE_RUNLEVEL, 0, CAM_RL_DEV + 1, FALSE); 1593 adaschedule(periph); 1594 cam_periph_release_locked(periph); 1595 return; 1596 } 1597 case ADA_CCB_WCACHE: 1598 { 1599 if ((done_ccb->ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) { 1600 if (adaerror(done_ccb, 0, 0) == ERESTART) { 1601 return; 1602 } else if ((done_ccb->ccb_h.status & CAM_DEV_QFRZN) != 0) { 1603 cam_release_devq(done_ccb->ccb_h.path, 1604 /*relsim_flags*/0, 1605 /*reduction*/0, 1606 /*timeout*/0, 1607 /*getcount_only*/0); 1608 } 1609 } 1610 1611 softc->state = ADA_STATE_NORMAL; 1612 /* 1613 * Since our peripheral may be invalidated by an error 1614 * above or an external event, we must release our CCB 1615 * before releasing the reference on the peripheral. 1616 * The peripheral will only go away once the last reference 1617 * is removed, and we need it around for the CCB release 1618 * operation. 1619 */ 1620 xpt_release_ccb(done_ccb); 1621 cam_release_devq(periph->path, 1622 RELSIM_RELEASE_RUNLEVEL, 0, CAM_RL_DEV + 1, FALSE); 1623 adaschedule(periph); 1624 cam_periph_release_locked(periph); 1625 return; 1626 } 1627 case ADA_CCB_WAITING: 1628 { 1629 /* Caller will release the CCB */ 1630 wakeup(&done_ccb->ccb_h.cbfcnp); 1631 return; 1632 } 1633 case ADA_CCB_DUMP: 1634 /* No-op. We're polling */ 1635 return; 1636 default: 1637 break; 1638 } 1639 xpt_release_ccb(done_ccb); 1640 } 1641 1642 static int 1643 adaerror(union ccb *ccb, u_int32_t cam_flags, u_int32_t sense_flags) 1644 { 1645 1646 return(cam_periph_error(ccb, cam_flags, sense_flags, NULL)); 1647 } 1648 1649 static void 1650 adagetparams(struct cam_periph *periph, struct ccb_getdev *cgd) 1651 { 1652 struct ada_softc *softc = (struct ada_softc *)periph->softc; 1653 struct disk_params *dp = &softc->params; 1654 u_int64_t lbasize48; 1655 u_int32_t lbasize; 1656 1657 dp->secsize = ata_logical_sector_size(&cgd->ident_data); 1658 if ((cgd->ident_data.atavalid & ATA_FLAG_54_58) && 1659 cgd->ident_data.current_heads && cgd->ident_data.current_sectors) { 1660 dp->heads = cgd->ident_data.current_heads; 1661 dp->secs_per_track = cgd->ident_data.current_sectors; 1662 dp->cylinders = cgd->ident_data.cylinders; 1663 dp->sectors = (u_int32_t)cgd->ident_data.current_size_1 | 1664 ((u_int32_t)cgd->ident_data.current_size_2 << 16); 1665 } else { 1666 dp->heads = cgd->ident_data.heads; 1667 dp->secs_per_track = cgd->ident_data.sectors; 1668 dp->cylinders = cgd->ident_data.cylinders; 1669 dp->sectors = cgd->ident_data.cylinders * dp->heads * dp->secs_per_track; 1670 } 1671 lbasize = (u_int32_t)cgd->ident_data.lba_size_1 | 1672 ((u_int32_t)cgd->ident_data.lba_size_2 << 16); 1673 1674 /* use the 28bit LBA size if valid or bigger than the CHS mapping */ 1675 if (cgd->ident_data.cylinders == 16383 || dp->sectors < lbasize) 1676 dp->sectors = lbasize; 1677 1678 /* use the 48bit LBA size if valid */ 1679 lbasize48 = ((u_int64_t)cgd->ident_data.lba_size48_1) | 1680 ((u_int64_t)cgd->ident_data.lba_size48_2 << 16) | 1681 ((u_int64_t)cgd->ident_data.lba_size48_3 << 32) | 1682 ((u_int64_t)cgd->ident_data.lba_size48_4 << 48); 1683 if ((cgd->ident_data.support.command2 & ATA_SUPPORT_ADDRESS48) && 1684 lbasize48 > ATA_MAX_28BIT_LBA) 1685 dp->sectors = lbasize48; 1686 } 1687 1688 static void 1689 adasendorderedtag(void *arg) 1690 { 1691 struct ada_softc *softc = arg; 1692 1693 if (ada_send_ordered) { 1694 if ((softc->ordered_tag_count == 0) 1695 && ((softc->flags & ADA_FLAG_WENT_IDLE) == 0)) { 1696 softc->flags |= ADA_FLAG_NEED_OTAG; 1697 } 1698 if (softc->outstanding_cmds > 0) 1699 softc->flags &= ~ADA_FLAG_WENT_IDLE; 1700 1701 softc->ordered_tag_count = 0; 1702 } 1703 /* Queue us up again */ 1704 callout_reset(&softc->sendordered_c, 1705 (ada_default_timeout * hz) / ADA_ORDEREDTAG_INTERVAL, 1706 adasendorderedtag, softc); 1707 } 1708 1709 /* 1710 * Step through all ADA peripheral drivers, and if the device is still open, 1711 * sync the disk cache to physical media. 1712 */ 1713 static void 1714 adaflush(void) 1715 { 1716 struct cam_periph *periph; 1717 struct ada_softc *softc; 1718 int error; 1719 1720 TAILQ_FOREACH(periph, &adadriver.units, unit_links) { 1721 union ccb ccb; 1722 1723 /* If we paniced with lock held - not recurse here. */ 1724 if (cam_periph_owned(periph)) 1725 continue; 1726 cam_periph_lock(periph); 1727 softc = (struct ada_softc *)periph->softc; 1728 /* 1729 * We only sync the cache if the drive is still open, and 1730 * if the drive is capable of it.. 1731 */ 1732 if (((softc->flags & ADA_FLAG_OPEN) == 0) || 1733 (softc->flags & ADA_FLAG_CAN_FLUSHCACHE) == 0) { 1734 cam_periph_unlock(periph); 1735 continue; 1736 } 1737 1738 xpt_setup_ccb(&ccb.ccb_h, periph->path, CAM_PRIORITY_NORMAL); 1739 1740 ccb.ccb_h.ccb_state = ADA_CCB_DUMP; 1741 cam_fill_ataio(&ccb.ataio, 1742 0, 1743 adadone, 1744 CAM_DIR_NONE, 1745 0, 1746 NULL, 1747 0, 1748 ada_default_timeout*1000); 1749 1750 if (softc->flags & ADA_FLAG_CAN_48BIT) 1751 ata_48bit_cmd(&ccb.ataio, ATA_FLUSHCACHE48, 0, 0, 0); 1752 else 1753 ata_28bit_cmd(&ccb.ataio, ATA_FLUSHCACHE, 0, 0, 0); 1754 xpt_polled_action(&ccb); 1755 1756 error = cam_periph_error(&ccb, 1757 0, SF_NO_RECOVERY | SF_NO_RETRY, NULL); 1758 if ((ccb.ccb_h.status & CAM_DEV_QFRZN) != 0) 1759 cam_release_devq(ccb.ccb_h.path, /*relsim_flags*/0, 1760 /*reduction*/0, /*timeout*/0, /*getcount_only*/0); 1761 if (error != 0) 1762 xpt_print(periph->path, "Synchronize cache failed\n"); 1763 cam_periph_unlock(periph); 1764 } 1765 } 1766 1767 static void 1768 adaspindown(uint8_t cmd, int flags) 1769 { 1770 struct cam_periph *periph; 1771 struct ada_softc *softc; 1772 int error; 1773 1774 TAILQ_FOREACH(periph, &adadriver.units, unit_links) { 1775 union ccb ccb; 1776 1777 /* If we paniced with lock held - not recurse here. */ 1778 if (cam_periph_owned(periph)) 1779 continue; 1780 cam_periph_lock(periph); 1781 softc = (struct ada_softc *)periph->softc; 1782 /* 1783 * We only spin-down the drive if it is capable of it.. 1784 */ 1785 if ((softc->flags & ADA_FLAG_CAN_POWERMGT) == 0) { 1786 cam_periph_unlock(periph); 1787 continue; 1788 } 1789 1790 if (bootverbose) 1791 xpt_print(periph->path, "spin-down\n"); 1792 1793 xpt_setup_ccb(&ccb.ccb_h, periph->path, CAM_PRIORITY_NORMAL); 1794 1795 ccb.ccb_h.ccb_state = ADA_CCB_DUMP; 1796 cam_fill_ataio(&ccb.ataio, 1797 0, 1798 adadone, 1799 CAM_DIR_NONE | flags, 1800 0, 1801 NULL, 1802 0, 1803 ada_default_timeout*1000); 1804 1805 ata_28bit_cmd(&ccb.ataio, cmd, 0, 0, 0); 1806 xpt_polled_action(&ccb); 1807 1808 error = cam_periph_error(&ccb, 1809 0, SF_NO_RECOVERY | SF_NO_RETRY, NULL); 1810 if ((ccb.ccb_h.status & CAM_DEV_QFRZN) != 0) 1811 cam_release_devq(ccb.ccb_h.path, /*relsim_flags*/0, 1812 /*reduction*/0, /*timeout*/0, /*getcount_only*/0); 1813 if (error != 0) 1814 xpt_print(periph->path, "Spin-down disk failed\n"); 1815 cam_periph_unlock(periph); 1816 } 1817 } 1818 1819 static void 1820 adashutdown(void *arg, int howto) 1821 { 1822 1823 adaflush(); 1824 if (ada_spindown_shutdown != 0 && 1825 (howto & (RB_HALT | RB_POWEROFF)) != 0) 1826 adaspindown(ATA_STANDBY_IMMEDIATE, 0); 1827 } 1828 1829 static void 1830 adasuspend(void *arg) 1831 { 1832 1833 adaflush(); 1834 if (ada_spindown_suspend != 0) 1835 adaspindown(ATA_SLEEP, CAM_DEV_QFREEZE); 1836 } 1837 1838 static void 1839 adaresume(void *arg) 1840 { 1841 struct cam_periph *periph; 1842 struct ada_softc *softc; 1843 1844 if (ada_spindown_suspend == 0) 1845 return; 1846 1847 TAILQ_FOREACH(periph, &adadriver.units, unit_links) { 1848 cam_periph_lock(periph); 1849 softc = (struct ada_softc *)periph->softc; 1850 /* 1851 * We only spin-down the drive if it is capable of it.. 1852 */ 1853 if ((softc->flags & ADA_FLAG_CAN_POWERMGT) == 0) { 1854 cam_periph_unlock(periph); 1855 continue; 1856 } 1857 1858 if (bootverbose) 1859 xpt_print(periph->path, "resume\n"); 1860 1861 /* 1862 * Drop freeze taken due to CAM_DEV_QFREEZE flag set on 1863 * sleep request. 1864 */ 1865 cam_release_devq(periph->path, 1866 /*relsim_flags*/0, 1867 /*openings*/0, 1868 /*timeout*/0, 1869 /*getcount_only*/0); 1870 1871 cam_periph_unlock(periph); 1872 } 1873 } 1874 1875 #endif /* _KERNEL */ 1876