2 * Implementation of SCSI Direct Access Peripheral driver for CAM.
4 * Copyright (c) 1997 Justin T. Gibbs.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions, and the following disclaimer,
12 * without modification, immediately at the beginning of the file.
13 * 2. The name of the author may not be used to endorse or promote products
14 * derived from this software without specific prior written permission.
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
20 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 * $FreeBSD: src/sys/cam/scsi/scsi_da.c,v 1.42.2.46 2003/10/21 22:18:19 thomas Exp $
31 #include <sys/param.h>
35 #include <sys/systm.h>
36 #include <sys/kernel.h>
38 #include <sys/sysctl.h>
39 #include <sys/taskqueue.h>
42 #include <sys/devicestat.h>
44 #include <sys/dtype.h>
45 #include <sys/eventhandler.h>
46 #include <sys/malloc.h>
49 #include <sys/ioctl_compat.h>
52 #include <sys/thread2.h>
53 #include <sys/mplock2.h>
66 #include <sys/camlib.h>
68 #include "../cam_ccb.h"
69 #include "../cam_extend.h"
70 #include "../cam_periph.h"
71 #include "../cam_xpt_periph.h"
72 #include "../cam_sim.h"
74 #include "scsi_message.h"
88 DA_FLAG_PACK_INVALID = 0x001,
89 DA_FLAG_NEW_PACK = 0x002,
90 DA_FLAG_PACK_LOCKED = 0x004,
91 DA_FLAG_PACK_REMOVABLE = 0x008,
92 DA_FLAG_TAGGED_QUEUING = 0x010,
93 DA_FLAG_NEED_OTAG = 0x020,
94 DA_FLAG_WENT_IDLE = 0x040,
95 DA_FLAG_RETRY_UA = 0x080,
97 DA_FLAG_SCTX_INIT = 0x200,
98 DA_FLAG_RD_LIMIT = 0x400,
99 DA_FLAG_WR_LIMIT = 0x800,
100 DA_FLAG_CAN_TRIM = 0x1000
105 DA_Q_NO_SYNC_CACHE = 0x01,
106 DA_Q_NO_6_BYTE = 0x02,
107 DA_Q_NO_PREVENT = 0x04
112 DA_CCB_PROBE2 = 0x02,
113 DA_CCB_BUFFER_IO = 0x03,
114 DA_CCB_WAITING = 0x04,
117 DA_CCB_TYPE_MASK = 0x0F,
118 DA_CCB_RETRY_UA = 0x10
121 /* Offsets into our private area for storing information */
122 #define ccb_state ppriv_field0
123 #define ccb_bio ppriv_ptr1
128 u_int8_t secs_per_track;
129 u_int32_t secsize; /* Number of bytes/sector */
130 u_int64_t sectors; /* total number sectors */
133 #define TRIM_MAX_BLOCKS 8
134 #define TRIM_MAX_RANGES TRIM_MAX_BLOCKS * 64
135 struct trim_request {
136 uint8_t data[TRIM_MAX_RANGES * 8];
137 struct bio *bios[TRIM_MAX_RANGES];
141 struct bio_queue_head bio_queue_rd;
142 struct bio_queue_head bio_queue_wr;
143 struct bio_queue_head bio_queue_trim;
144 struct devstat device_stats;
145 SLIST_ENTRY(da_softc) links;
146 LIST_HEAD(, ccb_hdr) pending_ccbs;
150 int minimum_cmd_size;
151 int ordered_tag_count;
152 int outstanding_cmds_rd;
153 int outstanding_cmds_wr;
157 struct disk_params params;
160 struct task sysctl_task;
161 struct sysctl_ctx_list sysctl_ctx;
162 struct sysctl_oid *sysctl_tree;
163 struct callout sendordered_c;
164 struct trim_request trim_req;
167 struct da_quirk_entry {
168 struct scsi_inquiry_pattern inq_pat;
172 static const char quantum[] = "QUANTUM";
173 static const char microp[] = "MICROP";
175 static struct da_quirk_entry da_quirk_table[] =
177 /* SPI, FC devices */
180 * Fujitsu M2513A MO drives.
181 * Tested devices: M2513A2 firmware versions 1200 & 1300.
182 * (dip switch selects whether T_DIRECT or T_OPTICAL device)
183 * Reported by: W.Scholten <whs@xs4all.nl>
185 {T_DIRECT, SIP_MEDIA_REMOVABLE, "FUJITSU", "M2513A", "*"},
186 /*quirks*/ DA_Q_NO_SYNC_CACHE
190 {T_OPTICAL, SIP_MEDIA_REMOVABLE, "FUJITSU", "M2513A", "*"},
191 /*quirks*/ DA_Q_NO_SYNC_CACHE
195 * This particular Fujitsu drive doesn't like the
196 * synchronize cache command.
197 * Reported by: Tom Jackson <toj@gorilla.net>
199 {T_DIRECT, SIP_MEDIA_FIXED, "FUJITSU", "M2954*", "*"},
200 /*quirks*/ DA_Q_NO_SYNC_CACHE
204 * This drive doesn't like the synchronize cache command
205 * either. Reported by: Matthew Jacob <mjacob@feral.com>
206 * in NetBSD PR kern/6027, August 24, 1998.
208 {T_DIRECT, SIP_MEDIA_FIXED, microp, "2217*", "*"},
209 /*quirks*/ DA_Q_NO_SYNC_CACHE
213 * This drive doesn't like the synchronize cache command
214 * either. Reported by: Hellmuth Michaelis (hm@kts.org)
217 {T_DIRECT, SIP_MEDIA_FIXED, microp, "2112*", "*"},
218 /*quirks*/ DA_Q_NO_SYNC_CACHE
222 * Doesn't like the synchronize cache command.
223 * Reported by: Blaz Zupan <blaz@gold.amis.net>
225 {T_DIRECT, SIP_MEDIA_FIXED, "NEC", "D3847*", "*"},
226 /*quirks*/ DA_Q_NO_SYNC_CACHE
230 * Doesn't like the synchronize cache command.
231 * Reported by: Blaz Zupan <blaz@gold.amis.net>
233 {T_DIRECT, SIP_MEDIA_FIXED, quantum, "MAVERICK 540S", "*"},
234 /*quirks*/ DA_Q_NO_SYNC_CACHE
238 * Doesn't like the synchronize cache command.
240 {T_DIRECT, SIP_MEDIA_FIXED, quantum, "LPS525S", "*"},
241 /*quirks*/ DA_Q_NO_SYNC_CACHE
245 * Doesn't like the synchronize cache command.
246 * Reported by: walter@pelissero.de
248 {T_DIRECT, SIP_MEDIA_FIXED, quantum, "LPS540S", "*"},
249 /*quirks*/ DA_Q_NO_SYNC_CACHE
253 * Doesn't work correctly with 6 byte reads/writes.
254 * Returns illegal request, and points to byte 9 of the
256 * Reported by: Adam McDougall <bsdx@spawnet.com>
258 {T_DIRECT, SIP_MEDIA_FIXED, quantum, "VIKING 4*", "*"},
259 /*quirks*/ DA_Q_NO_6_BYTE
263 {T_DIRECT, SIP_MEDIA_FIXED, quantum, "VIKING 2*", "*"},
264 /*quirks*/ DA_Q_NO_6_BYTE
268 * Doesn't like the synchronize cache command.
269 * Reported by: walter@pelissero.de
271 {T_DIRECT, SIP_MEDIA_FIXED, "CONNER", "CP3500*", "*"},
272 /*quirks*/ DA_Q_NO_SYNC_CACHE
276 * The CISS RAID controllers do not support SYNC_CACHE
278 {T_DIRECT, SIP_MEDIA_FIXED, "COMPAQ", "RAID*", "*"},
279 /*quirks*/ DA_Q_NO_SYNC_CACHE
283 * The same goes for the mly(4) controllers
285 {T_DIRECT, SIP_MEDIA_FIXED, "MLY*", "*", "MYLX"},
286 /*quirks*/ DA_Q_NO_SYNC_CACHE
289 * USB mass storage devices supported by umass(4)
291 * NOTE: USB attachments automatically set DA_Q_NO_SYNC_CACHE so
292 * it does not have to be specified here.
296 * Creative Nomad MUVO mp3 player (USB)
299 {T_DIRECT, SIP_MEDIA_REMOVABLE, "CREATIVE", "NOMAD_MUVO", "*"},
300 /*quirks*/ DA_Q_NO_PREVENT
304 * Sigmatel USB Flash MP3 Player
307 {T_DIRECT, SIP_MEDIA_REMOVABLE, "SigmaTel", "MSCN", "*"},
308 /*quirks*/ DA_Q_NO_PREVENT
312 * SEAGRAND NP-900 MP3 Player
315 {T_DIRECT, SIP_MEDIA_REMOVABLE, "SEAGRAND", "NP-900*", "*"},
316 /*quirks*/ DA_Q_NO_PREVENT
320 * Creative MUVO Slim mp3 player (USB)
323 {T_DIRECT, SIP_MEDIA_REMOVABLE, "CREATIVE", "MuVo Slim",
324 "*"}, /*quirks*/ DA_Q_NO_PREVENT
328 * Philips USB Key Audio KEY013
331 {T_DIRECT, SIP_MEDIA_REMOVABLE, "PHILIPS", "Key*", "*"},
332 /*quirks*/ DA_Q_NO_PREVENT
336 static d_open_t daopen;
337 static d_close_t daclose;
338 static d_strategy_t dastrategy;
339 static d_dump_t dadump;
340 static d_ioctl_t daioctl;
341 static periph_init_t dainit;
342 static void daasync(void *callback_arg, u_int32_t code,
343 struct cam_path *path, void *arg);
344 static int dacmdsizesysctl(SYSCTL_HANDLER_ARGS);
345 static periph_ctor_t daregister;
346 static periph_dtor_t dacleanup;
347 static periph_start_t dastart;
348 static periph_oninv_t daoninvalidate;
349 static void dadone(struct cam_periph *periph,
350 union ccb *done_ccb);
351 static int daerror(union ccb *ccb, u_int32_t cam_flags,
352 u_int32_t sense_flags);
353 static void daprevent(struct cam_periph *periph, int action);
354 static int dagetcapacity(struct cam_periph *periph);
355 static int dacheckmedia(struct cam_periph *periph);
356 static void dasetgeom(struct cam_periph *periph, uint32_t block_len,
358 static void daflushbioq(struct bio_queue_head *bioq, int error);
359 static timeout_t dasendorderedtag;
360 static void dashutdown(void *arg, int howto);
362 #ifndef DA_DEFAULT_TIMEOUT
363 #define DA_DEFAULT_TIMEOUT 60 /* Timeout in seconds */
366 #ifndef DA_DEFAULT_RETRY
367 #define DA_DEFAULT_RETRY 4
370 #ifndef DA_DEFAULT_SEND_ORDERED
371 #define DA_DEFAULT_SEND_ORDERED 1
374 static int da_retry_count = DA_DEFAULT_RETRY;
375 static int da_default_timeout = DA_DEFAULT_TIMEOUT;
376 static int da_send_ordered = DA_DEFAULT_SEND_ORDERED;
377 static struct callout dasendorderedtag_ch;
379 SYSCTL_NODE(_kern_cam, OID_AUTO, da, CTLFLAG_RD, 0,
380 "CAM Direct Access Disk driver");
381 SYSCTL_INT(_kern_cam_da, OID_AUTO, retry_count, CTLFLAG_RW,
382 &da_retry_count, 0, "Normal I/O retry count");
383 TUNABLE_INT("kern.cam.da.retry_count", &da_retry_count);
384 SYSCTL_INT(_kern_cam_da, OID_AUTO, default_timeout, CTLFLAG_RW,
385 &da_default_timeout, 0, "Normal I/O timeout (in seconds)");
386 TUNABLE_INT("kern.cam.da.default_timeout", &da_default_timeout);
387 SYSCTL_INT(_kern_cam_da, OID_AUTO, da_send_ordered, CTLFLAG_RW,
388 &da_send_ordered, 0, "Send Ordered Tags");
389 TUNABLE_INT("kern.cam.da.da_send_ordered", &da_send_ordered);
392 * DA_ORDEREDTAG_INTERVAL determines how often, relative
393 * to the default timeout, we check to see whether an ordered
394 * tagged transaction is appropriate to prevent simple tag
395 * starvation. Since we'd like to ensure that there is at least
396 * 1/2 of the timeout length left for a starved transaction to
397 * complete after we've sent an ordered tag, we must poll at least
398 * four times in every timeout period. This takes care of the worst
399 * case where a starved transaction starts during an interval that
400 * meets the requirement "don't send an ordered tag" test so it takes
401 * us two intervals to determine that a tag must be sent.
403 #ifndef DA_ORDEREDTAG_INTERVAL
404 #define DA_ORDEREDTAG_INTERVAL 4
407 static struct periph_driver dadriver =
410 TAILQ_HEAD_INITIALIZER(dadriver.units), /* generation */ 0
413 PERIPHDRIVER_DECLARE(da, dadriver);
415 static struct dev_ops da_ops = {
416 { "da", 0, D_DISK | D_MPSAFE },
420 .d_write = physwrite,
421 .d_strategy = dastrategy,
426 static struct extend_array *daperiphs;
428 MALLOC_DEFINE(M_SCSIDA, "scsi_da", "scsi_da buffers");
431 daioctl(struct dev_ioctl_args *ap)
436 struct cam_periph *periph;
438 struct da_softc * softc;
440 off_t *del_num = (off_t*)ap->a_data;
444 cdev_t dev = ap->a_head.a_dev;
448 periph = cam_extend_get(daperiphs, unit);
451 softc = (struct da_softc *)periph->softc;
457 bytes_left = del_num[1];
458 bytes_start = del_num[0];
460 /* TRIM occurs on 512-byte sectors. */
461 KKASSERT((bytes_left % 512) == 0);
462 KKASSERT((bytes_start% 512) == 0);
465 /* Break TRIM up into int-sized commands because of b_bcount */
469 * Rather than than squezing out more blocks in b_bcount
470 * and having to break up the TRIM request in da_start(),
471 * we ensure we can always TRIM this many bytes with one
472 * TRIM command (this happens if the device only
473 * supports one TRIM block).
475 * With min TRIM blksize of 1, TRIM command free
476 * 4194240 blks(64*65535): each LBA range can address
477 * 65535 blks and there 64 such ranges in a 512-byte
478 * block. And, 4194240 * 512 = 0x7FFF8000
481 byte_count = MIN(bytes_left,0x7FFF8000);
482 bp = getnewbuf(0,0,0,1);
484 bp->b_cmd = BUF_CMD_FREEBLKS;
485 bp->b_bio1.bio_offset = bytes_start;
486 bp->b_bcount = byte_count;
487 bp->b_bio1.bio_flags |= BIO_SYNC;
488 bp->b_bio1.bio_done = biodone_sync;
490 dev_dstrategy(ap->a_head.a_dev, &bp->b_bio1);
492 if (biowait(&bp->b_bio1, "TRIM")) {
493 kprintf("Error:%d\n", bp->b_error);
494 return(bp->b_error ? bp->b_error : EIO);
497 bytes_left -= byte_count;
498 bytes_start += byte_count;
510 daopen(struct dev_open_args *ap)
512 cdev_t dev = ap->a_head.a_dev;
513 struct cam_periph *periph;
514 struct da_softc *softc;
515 struct disk_info info;
520 periph = cam_extend_get(daperiphs, unit);
521 if (periph == NULL) {
525 if (cam_periph_acquire(periph) != CAM_REQ_CMP) {
529 cam_periph_lock(periph);
530 if ((error = cam_periph_hold(periph, PCATCH)) != 0) {
531 cam_periph_unlock(periph);
532 cam_periph_release(periph);
536 unit = periph->unit_number;
537 softc = (struct da_softc *)periph->softc;
539 CAM_DEBUG(periph->path, CAM_DEBUG_TRACE,
540 ("daopen: dev=%s (unit %d)\n", devtoname(dev),
543 if ((softc->flags & DA_FLAG_PACK_INVALID) != 0) {
544 /* Invalidate our pack information. */
545 disk_invalidate(&softc->disk);
546 softc->flags &= ~DA_FLAG_PACK_INVALID;
549 error = dacheckmedia(periph);
550 softc->flags |= DA_FLAG_OPEN;
553 struct ccb_getdev cgd;
555 /* Build disk information structure */
556 bzero(&info, sizeof(info));
557 info.d_type = DTYPE_SCSI;
560 * Grab the inquiry data to get the vendor and product names.
561 * Put them in the typename and packname for the label.
563 xpt_setup_ccb(&cgd.ccb_h, periph->path, /*priority*/ 1);
564 cgd.ccb_h.func_code = XPT_GDEV_TYPE;
565 xpt_action((union ccb *)&cgd);
568 * Check to see whether or not the blocksize is set yet.
569 * If it isn't, set it and then clear the blocksize
570 * unavailable flag for the device statistics.
572 if ((softc->device_stats.flags & DEVSTAT_BS_UNAVAILABLE) != 0){
573 softc->device_stats.block_size = softc->params.secsize;
574 softc->device_stats.flags &= ~DEVSTAT_BS_UNAVAILABLE;
579 if ((softc->flags & DA_FLAG_PACK_REMOVABLE) != 0 &&
580 (softc->quirks & DA_Q_NO_PREVENT) == 0)
581 daprevent(periph, PR_PREVENT);
583 softc->flags &= ~DA_FLAG_OPEN;
584 cam_periph_release(periph);
586 cam_periph_unhold(periph, 1);
591 daclose(struct dev_close_args *ap)
593 cdev_t dev = ap->a_head.a_dev;
594 struct cam_periph *periph;
595 struct da_softc *softc;
600 periph = cam_extend_get(daperiphs, unit);
604 cam_periph_lock(periph);
605 if ((error = cam_periph_hold(periph, 0)) != 0) {
606 cam_periph_unlock(periph);
607 cam_periph_release(periph);
611 softc = (struct da_softc *)periph->softc;
613 if ((softc->quirks & DA_Q_NO_SYNC_CACHE) == 0) {
616 ccb = cam_periph_getccb(periph, /*priority*/1);
618 scsi_synchronize_cache(&ccb->csio,
622 /*begin_lba*/0,/* Cover the whole disk */
627 cam_periph_runccb(ccb, /*error_routine*/NULL, /*cam_flags*/0,
628 /*sense_flags*/SF_RETRY_UA,
629 &softc->device_stats);
631 if ((ccb->ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) {
632 if ((ccb->ccb_h.status & CAM_STATUS_MASK) ==
633 CAM_SCSI_STATUS_ERROR) {
635 int sense_key, error_code;
637 scsi_extract_sense(&ccb->csio.sense_data,
641 if (sense_key != SSD_KEY_ILLEGAL_REQUEST)
642 scsi_sense_print(&ccb->csio);
644 xpt_print(periph->path, "Synchronize cache "
645 "failed, status == 0x%x, scsi status == "
646 "0x%x\n", ccb->csio.ccb_h.status,
647 ccb->csio.scsi_status);
651 if ((ccb->ccb_h.status & CAM_DEV_QFRZN) != 0)
652 cam_release_devq(ccb->ccb_h.path,
658 xpt_release_ccb(ccb);
662 if ((softc->flags & DA_FLAG_PACK_REMOVABLE) != 0) {
663 if ((softc->quirks & DA_Q_NO_PREVENT) == 0)
664 daprevent(periph, PR_ALLOW);
666 * If we've got removeable media, mark the blocksize as
667 * unavailable, since it could change when new media is
670 softc->device_stats.flags |= DEVSTAT_BS_UNAVAILABLE;
674 * Don't compound any ref counting software bugs with more.
676 if (softc->flags & DA_FLAG_OPEN) {
677 softc->flags &= ~DA_FLAG_OPEN;
678 cam_periph_release(periph);
680 xpt_print(periph->path,
681 "daclose() called on an already closed device!\n");
683 cam_periph_unhold(periph, 1);
688 * Actually translate the requested transfer into one the physical driver
689 * can understand. The transfer is described by a buf and will include
690 * only one physical transfer.
693 dastrategy(struct dev_strategy_args *ap)
695 cdev_t dev = ap->a_head.a_dev;
696 struct bio *bio = ap->a_bio;
697 struct buf *bp = bio->bio_buf;
698 struct cam_periph *periph;
699 struct da_softc *softc;
705 periph = cam_extend_get(daperiphs, unit);
706 if (periph == NULL) {
710 softc = (struct da_softc *)periph->softc;
712 cam_periph_lock(periph);
716 * check it's not too big a transfer for our adapter
718 scsi_minphys(bp, &sd_switch);
722 * Mask interrupts so that the pack cannot be invalidated until
723 * after we are in the queue. Otherwise, we might not properly
724 * clean up one of the buffers.
728 * If the device has been made invalid, error out
730 if ((softc->flags & DA_FLAG_PACK_INVALID)) {
731 cam_periph_unlock(periph);
737 * Place it in the queue of disk activities for this disk
739 if (bp->b_cmd == BUF_CMD_WRITE || bp->b_cmd == BUF_CMD_FLUSH)
740 bioqdisksort(&softc->bio_queue_wr, bio);
741 else if (bp->b_cmd == BUF_CMD_FREEBLKS)
742 bioqdisksort(&softc->bio_queue_trim, bio);
744 bioqdisksort(&softc->bio_queue_rd, bio);
747 * Schedule ourselves for performing the work.
749 xpt_schedule(periph, /* XXX priority */1);
750 cam_periph_unlock(periph);
754 bp->b_flags |= B_ERROR;
757 * Correctly set the buf to indicate a completed xfer
759 bp->b_resid = bp->b_bcount;
765 dadump(struct dev_dump_args *ap)
767 cdev_t dev = ap->a_head.a_dev;
768 struct cam_periph *periph;
769 struct da_softc *softc;
772 struct ccb_scsiio csio;
775 periph = cam_extend_get(daperiphs, unit);
779 softc = (struct da_softc *)periph->softc;
780 cam_periph_lock(periph);
781 secsize = softc->params.secsize; /* XXX: or ap->a_secsize? */
783 if ((softc->flags & DA_FLAG_PACK_INVALID) != 0) {
784 cam_periph_unlock(periph);
789 * because length == 0 means we are supposed to flush cache, we only
790 * try to write something if length > 0.
792 if (ap->a_length > 0) {
793 xpt_setup_ccb(&csio.ccb_h, periph->path, /*priority*/1);
794 csio.ccb_h.flags |= CAM_POLLED;
795 csio.ccb_h.ccb_state = DA_CCB_DUMP;
796 scsi_read_write(&csio,
802 /*minimum_cmd_size*/ softc->minimum_cmd_size,
803 ap->a_offset / secsize,
804 ap->a_length / secsize,
805 /*data_ptr*/(u_int8_t *) ap->a_virtual,
806 /*dxfer_len*/ap->a_length,
807 /*sense_len*/SSD_FULL_SIZE,
808 DA_DEFAULT_TIMEOUT * 1000);
809 xpt_polled_action((union ccb *)&csio);
811 if ((csio.ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) {
812 kprintf("Aborting dump due to I/O error.\n");
813 if ((csio.ccb_h.status & CAM_STATUS_MASK) ==
814 CAM_SCSI_STATUS_ERROR)
815 scsi_sense_print(&csio);
817 kprintf("status == 0x%x, scsi status == 0x%x\n",
818 csio.ccb_h.status, csio.scsi_status);
821 cam_periph_unlock(periph);
826 * Sync the disk cache contents to the physical media.
828 if ((softc->quirks & DA_Q_NO_SYNC_CACHE) == 0) {
830 xpt_setup_ccb(&csio.ccb_h, periph->path, /*priority*/1);
831 csio.ccb_h.ccb_state = DA_CCB_DUMP;
832 scsi_synchronize_cache(&csio,
836 /*begin_lba*/0,/* Cover the whole disk */
840 xpt_polled_action((union ccb *)&csio);
842 if ((csio.ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) {
843 if ((csio.ccb_h.status & CAM_STATUS_MASK) ==
844 CAM_SCSI_STATUS_ERROR) {
846 int sense_key, error_code;
848 scsi_extract_sense(&csio.sense_data,
852 if (sense_key != SSD_KEY_ILLEGAL_REQUEST)
853 scsi_sense_print(&csio);
855 xpt_print(periph->path, "Synchronize cache "
856 "failed, status == 0x%x, scsi status == "
857 "0x%x\n", csio.ccb_h.status,
862 cam_periph_unlock(periph);
872 * Create our extend array for storing the devices we attach to.
874 daperiphs = cam_extend_new();
875 if (daperiphs == NULL) {
876 kprintf("da: Failed to alloc extend array!\n");
880 callout_init(&dasendorderedtag_ch);
883 * Install a global async callback. This callback will
884 * receive async callbacks like "new device found".
886 status = xpt_register_async(AC_FOUND_DEVICE, daasync, NULL, NULL);
888 if (status != CAM_REQ_CMP) {
889 kprintf("da: Failed to attach master async callback "
890 "due to status 0x%x!\n", status);
891 } else if (da_send_ordered) {
893 /* Register our shutdown event handler */
894 if ((EVENTHANDLER_REGISTER(shutdown_post_sync, dashutdown,
895 NULL, SHUTDOWN_PRI_DEFAULT)) == NULL)
896 kprintf("dainit: shutdown event registration failed!\n");
901 daoninvalidate(struct cam_periph *periph)
903 struct da_softc *softc;
905 softc = (struct da_softc *)periph->softc;
908 * De-register any async callbacks.
910 xpt_register_async(0, daasync, periph, periph->path);
912 softc->flags |= DA_FLAG_PACK_INVALID;
915 * Return all queued I/O with ENXIO.
916 * XXX Handle any transactions queued to the card
917 * with XPT_ABORT_CCB.
919 daflushbioq(&softc->bio_queue_trim, ENXIO);
920 daflushbioq(&softc->bio_queue_wr, ENXIO);
921 daflushbioq(&softc->bio_queue_rd, ENXIO);
922 xpt_print(periph->path, "lost device\n");
926 daflushbioq(struct bio_queue_head *bioq, int error)
931 while ((q_bio = bioq_first(bioq)) != NULL){
932 bioq_remove(bioq, q_bio);
933 q_bp = q_bio->bio_buf;
934 q_bp->b_resid = q_bp->b_bcount;
935 q_bp->b_error = error;
936 q_bp->b_flags |= B_ERROR;
942 dacleanup(struct cam_periph *periph)
944 struct da_softc *softc;
946 softc = (struct da_softc *)periph->softc;
948 devstat_remove_entry(&softc->device_stats);
949 cam_extend_release(daperiphs, periph->unit_number);
950 xpt_print(periph->path, "removing device entry\n");
952 * If we can't free the sysctl tree, oh well...
954 if ((softc->flags & DA_FLAG_SCTX_INIT) != 0
955 && sysctl_ctx_free(&softc->sysctl_ctx) != 0) {
956 xpt_print(periph->path, "can't remove sysctl context\n");
958 periph->softc = NULL;
959 if (softc->disk.d_rawdev) {
960 cam_periph_unlock(periph);
961 disk_destroy(&softc->disk);
962 cam_periph_lock(periph);
965 callout_stop(&softc->sendordered_c);
966 kfree(softc, M_DEVBUF);
970 daasync(void *callback_arg, u_int32_t code,
971 struct cam_path *path, void *arg)
973 struct cam_periph *periph;
975 periph = (struct cam_periph *)callback_arg;
978 case AC_FOUND_DEVICE:
980 struct ccb_getdev *cgd;
984 cgd = (struct ccb_getdev *)arg;
988 if (SID_TYPE(&cgd->inq_data) != T_DIRECT
989 && SID_TYPE(&cgd->inq_data) != T_RBC
990 && SID_TYPE(&cgd->inq_data) != T_OPTICAL)
994 * Don't complain if a valid peripheral is already attached.
996 periph = cam_periph_find(cgd->ccb_h.path, "da");
997 if (periph && (periph->flags & CAM_PERIPH_INVALID) == 0)
1001 * Allocate a peripheral instance for
1002 * this device and start the probe
1005 sim = xpt_path_sim(cgd->ccb_h.path);
1006 status = cam_periph_alloc(daregister, daoninvalidate,
1008 "da", CAM_PERIPH_BIO,
1009 cgd->ccb_h.path, daasync,
1010 AC_FOUND_DEVICE, cgd);
1012 if (status != CAM_REQ_CMP && status != CAM_REQ_INPROG) {
1013 kprintf("daasync: Unable to attach to new device "
1014 "due to status 0x%x\n", status);
1021 struct da_softc *softc;
1022 struct ccb_hdr *ccbh;
1024 softc = (struct da_softc *)periph->softc;
1026 * Don't fail on the expected unit attention
1029 softc->flags |= DA_FLAG_RETRY_UA;
1030 LIST_FOREACH(ccbh, &softc->pending_ccbs, periph_links.le)
1031 ccbh->ccb_state |= DA_CCB_RETRY_UA;
1035 cam_periph_async(periph, code, path, arg);
1041 dasysctlinit(void *context, int pending)
1043 struct cam_periph *periph;
1044 struct da_softc *softc;
1045 char tmpstr[80], tmpstr2[80];
1048 periph = (struct cam_periph *)context;
1049 if (cam_periph_acquire(periph) != CAM_REQ_CMP) {
1054 softc = (struct da_softc *)periph->softc;
1055 ksnprintf(tmpstr, sizeof(tmpstr), "CAM DA unit %d", periph->unit_number);
1056 ksnprintf(tmpstr2, sizeof(tmpstr2), "%d", periph->unit_number);
1058 sysctl_ctx_init(&softc->sysctl_ctx);
1059 softc->flags |= DA_FLAG_SCTX_INIT;
1060 softc->sysctl_tree = SYSCTL_ADD_NODE(&softc->sysctl_ctx,
1061 SYSCTL_STATIC_CHILDREN(_kern_cam_da), OID_AUTO, tmpstr2,
1062 CTLFLAG_RD, 0, tmpstr);
1063 if (softc->sysctl_tree == NULL) {
1064 kprintf("dasysctlinit: unable to allocate sysctl tree\n");
1065 cam_periph_release(periph);
1071 * Now register the sysctl handler, so the user can the value on
1074 SYSCTL_ADD_PROC(&softc->sysctl_ctx,SYSCTL_CHILDREN(softc->sysctl_tree),
1075 OID_AUTO, "minimum_cmd_size", CTLTYPE_INT | CTLFLAG_RW,
1076 &softc->minimum_cmd_size, 0, dacmdsizesysctl, "I",
1077 "Minimum CDB size");
1079 /* Only create the option if the device supports TRIM */
1080 if (softc->disk.d_info.d_trimflag) {
1081 SYSCTL_ADD_INT(&softc->sysctl_ctx,
1082 SYSCTL_CHILDREN(softc->sysctl_tree),
1086 &softc->trim_enabled,
1088 "Enable TRIM for this device (SSD))");
1091 cam_periph_release(periph);
1096 dacmdsizesysctl(SYSCTL_HANDLER_ARGS)
1100 value = *(int *)arg1;
1102 error = sysctl_handle_int(oidp, &value, 0, req);
1105 || (req->newptr == NULL))
1109 * Acceptable values here are 6, 10 or 12, or 16.
1113 else if ((value > 6)
1116 else if ((value > 10)
1119 else if (value > 12)
1122 *(int *)arg1 = value;
1128 daregister(struct cam_periph *periph, void *arg)
1130 struct da_softc *softc;
1131 struct ccb_pathinq cpi;
1132 struct ccb_getdev *cgd;
1136 cgd = (struct ccb_getdev *)arg;
1137 if (periph == NULL) {
1138 kprintf("daregister: periph was NULL!!\n");
1139 return(CAM_REQ_CMP_ERR);
1143 kprintf("daregister: no getdev CCB, can't register device\n");
1144 return(CAM_REQ_CMP_ERR);
1147 softc = kmalloc(sizeof(*softc), M_DEVBUF, M_INTWAIT | M_ZERO);
1148 LIST_INIT(&softc->pending_ccbs);
1149 softc->state = DA_STATE_PROBE;
1150 bioq_init(&softc->bio_queue_trim);
1151 bioq_init(&softc->bio_queue_rd);
1152 bioq_init(&softc->bio_queue_wr);
1153 if (SID_IS_REMOVABLE(&cgd->inq_data))
1154 softc->flags |= DA_FLAG_PACK_REMOVABLE;
1155 if ((cgd->inq_data.flags & SID_CmdQue) != 0)
1156 softc->flags |= DA_FLAG_TAGGED_QUEUING;
1158 /* Used to get TRIM status from AHCI driver */
1159 if (cgd->inq_data.vendor_specific1[0] == 1) {
1161 * max number of lba ranges an SSD can handle in a single
1162 * TRIM command. vendor_specific1[1] is the num of 512-byte
1163 * blocks the SSD reports that can be passed in a TRIM cmd.
1165 softc->trim_max_ranges =
1166 min(cgd->inq_data.vendor_specific1[1] * 64, TRIM_MAX_RANGES);
1169 periph->softc = softc;
1171 cam_extend_set(daperiphs, periph->unit_number, periph);
1174 * See if this device has any quirks.
1176 match = cam_quirkmatch((caddr_t)&cgd->inq_data,
1177 (caddr_t)da_quirk_table,
1178 NELEM(da_quirk_table),
1179 sizeof(*da_quirk_table), scsi_inquiry_match);
1182 softc->quirks = ((struct da_quirk_entry *)match)->quirks;
1184 softc->quirks = DA_Q_NONE;
1187 * Unconditionally disable the synchronize cache command for
1188 * usb attachments. It's just impossible to determine if the
1189 * device supports it or not and if it doesn't the port can
1192 if (strncmp(periph->sim->sim_name, "umass", 4) == 0) {
1193 softc->quirks |= DA_Q_NO_SYNC_CACHE;
1196 TASK_INIT(&softc->sysctl_task, 0, dasysctlinit, periph);
1198 /* Check if the SIM does not want 6 byte commands */
1199 xpt_setup_ccb(&cpi.ccb_h, periph->path, /*priority*/1);
1200 cpi.ccb_h.func_code = XPT_PATH_INQ;
1201 xpt_action((union ccb *)&cpi);
1202 if (cpi.ccb_h.status == CAM_REQ_CMP && (cpi.hba_misc & PIM_NO_6_BYTE))
1203 softc->quirks |= DA_Q_NO_6_BYTE;
1206 * RBC devices don't have to support READ(6), only READ(10).
1208 if (softc->quirks & DA_Q_NO_6_BYTE || SID_TYPE(&cgd->inq_data) == T_RBC)
1209 softc->minimum_cmd_size = 10;
1211 softc->minimum_cmd_size = 6;
1214 * Load the user's default, if any.
1216 ksnprintf(tmpstr, sizeof(tmpstr), "kern.cam.da.%d.minimum_cmd_size",
1217 periph->unit_number);
1218 TUNABLE_INT_FETCH(tmpstr, &softc->minimum_cmd_size);
1221 * 6, 10, 12, and 16 are the currently permissible values.
1223 if (softc->minimum_cmd_size < 6)
1224 softc->minimum_cmd_size = 6;
1225 else if ((softc->minimum_cmd_size > 6)
1226 && (softc->minimum_cmd_size <= 10))
1227 softc->minimum_cmd_size = 10;
1228 else if ((softc->minimum_cmd_size > 10)
1229 && (softc->minimum_cmd_size <= 12))
1230 softc->minimum_cmd_size = 12;
1231 else if (softc->minimum_cmd_size > 12)
1232 softc->minimum_cmd_size = 16;
1235 * The DA driver supports a blocksize, but
1236 * we don't know the blocksize until we do
1237 * a read capacity. So, set a flag to
1238 * indicate that the blocksize is
1239 * unavailable right now. We'll clear the
1240 * flag as soon as we've done a read capacity.
1242 devstat_add_entry(&softc->device_stats, "da",
1243 periph->unit_number, 0,
1244 DEVSTAT_BS_UNAVAILABLE,
1245 SID_TYPE(&cgd->inq_data) | DEVSTAT_TYPE_IF_SCSI,
1246 DEVSTAT_PRIORITY_DISK);
1249 * Register this media as a disk
1251 CAM_SIM_UNLOCK(periph->sim);
1252 disk_create(periph->unit_number, &softc->disk, &da_ops);
1253 softc->disk.d_rawdev->si_iosize_max = MAXPHYS;
1254 CAM_SIM_LOCK(periph->sim);
1257 * Add async callbacks for bus reset and
1258 * bus device reset calls. I don't bother
1259 * checking if this fails as, in most cases,
1260 * the system will function just fine without
1261 * them and the only alternative would be to
1262 * not attach the device on failure.
1264 xpt_register_async(AC_SENT_BDR | AC_BUS_RESET | AC_LOST_DEVICE,
1265 daasync, periph, periph->path);
1268 * Take an exclusive refcount on the periph while dastart is called
1269 * to finish the probe. The reference will be dropped in dadone at
1272 cam_periph_hold(periph, 0);
1273 xpt_schedule(periph, /*priority*/5);
1276 * Schedule a periodic event to occasionally send an
1277 * ordered tag to a device.
1279 callout_init(&softc->sendordered_c);
1280 callout_reset(&softc->sendordered_c,
1281 (DA_DEFAULT_TIMEOUT * hz) / DA_ORDEREDTAG_INTERVAL,
1282 dasendorderedtag, softc);
1286 return(CAM_REQ_CMP);
1290 dastart(struct cam_periph *periph, union ccb *start_ccb)
1292 struct da_softc *softc;
1294 softc = (struct da_softc *)periph->softc;
1296 switch (softc->state) {
1297 case DA_STATE_NORMAL:
1299 /* Pull a buffer from the queue and get going on it */
1308 * See if there is a buf with work for us to do..
1310 bio_rd = bioq_first(&softc->bio_queue_rd);
1311 bio_wr = bioq_first(&softc->bio_queue_wr);
1313 if (periph->immediate_priority <= periph->pinfo.priority) {
1314 CAM_DEBUG_PRINT(CAM_DEBUG_SUBTRACE,
1315 ("queuing for immediate ccb\n"));
1316 start_ccb->ccb_h.ccb_state = DA_CCB_WAITING;
1317 SLIST_INSERT_HEAD(&periph->ccb_list, &start_ccb->ccb_h,
1319 periph->immediate_priority = CAM_PRIORITY_NONE;
1320 wakeup(&periph->ccb_list);
1321 if (bio_rd || bio_wr) {
1323 * Have more work to do, so ensure we stay
1326 xpt_schedule(periph, /* XXX priority */1);
1331 /* Run the trim command if not already running */
1332 if (!softc->trim_running &&
1333 (bio = bioq_first(&softc->bio_queue_trim)) != NULL) {
1334 struct trim_request *req = &softc->trim_req;
1336 int bps = 0, ranges = 0;
1338 softc->trim_running = 1;
1339 bzero(req, sizeof(*req));
1346 count = bp->b_bcount / softc->params.secsize;
1347 lba = bio1->bio_offset/softc->params.secsize;
1349 kprintf("trim lba:%llu boff:%llu count:%d\n",
1350 (unsigned long long) lba,
1351 (unsigned long long) bio1->bio_offset,
1354 bioq_remove(&softc->bio_queue_trim, bio1);
1356 int c = min(count, 0xffff);
1357 int off = ranges * 8;
1359 req->data[off + 0] = lba & 0xff;
1360 req->data[off + 1] = (lba >> 8) & 0xff;
1361 req->data[off + 2] = (lba >> 16) & 0xff;
1362 req->data[off + 3] = (lba >> 24) & 0xff;
1363 req->data[off + 4] = (lba >> 32) & 0xff;
1364 req->data[off + 5] = (lba >> 40) & 0xff;
1365 req->data[off + 6] = c & 0xff;
1366 req->data[off + 7] = (c >> 8) & 0xff;
1372 /* Try to merge multiple TRIM requests */
1373 req->bios[bps++] = bio1;
1374 bio1 = bioq_first(&softc->bio_queue_trim);
1376 bio1->bio_buf->b_bcount / softc->params.secsize >
1377 (softc->trim_max_ranges - ranges) * 0xffff)
1382 cam_fill_csio(&start_ccb->csio,
1388 ((ranges +63)/64)*512,
1390 sizeof(struct scsi_rw_6),
1391 da_default_timeout*2);
1393 start_ccb->ccb_h.ccb_state = DA_CCB_TRIM;
1394 LIST_INSERT_HEAD(&softc->pending_ccbs,
1395 &start_ccb->ccb_h, periph_links.le);
1396 start_ccb->csio.ccb_h.func_code = XPT_TRIM;
1397 start_ccb->ccb_h.ccb_bio = bio;
1398 devstat_start_transaction(&softc->device_stats);
1399 xpt_action(start_ccb);
1400 xpt_schedule(periph, 1);
1405 * Select a read or write buffer to queue. Limit the number
1406 * of tags dedicated to reading or writing, giving reads
1409 * Writes to modern hard drives go into the HDs cache and
1410 * return completion nearly instantly. That is until the
1411 * cache becomes full. When the HDs cache becomes full
1412 * write commands will begin to stall. If all available
1413 * tags are taken up by writes which saturate the drive
1414 * reads will become tag-starved.
1416 * A similar situation can occur with reads. With many
1417 * parallel readers all tags can be taken up by reads
1418 * and prevent any writes from draining, even if the HD's
1419 * cache is not full.
1421 limit = periph->sim->max_tagged_dev_openings * 2 / 3 + 1;
1425 static long savets2;
1426 if (1 || time_second != savets2 || (ticks != savets && (softc->outstanding_cmds_rd || softc->outstanding_cmds_wr))) {
1427 kprintf("%d %d (%d)\n",
1428 softc->outstanding_cmds_rd,
1429 softc->outstanding_cmds_wr,
1432 savets2 = time_second;
1435 if (bio_rd && softc->outstanding_cmds_rd < limit) {
1437 bioq_remove(&softc->bio_queue_rd, bio);
1438 } else if (bio_wr && softc->outstanding_cmds_wr < limit) {
1440 bioq_remove(&softc->bio_queue_wr, bio);
1443 softc->flags |= DA_FLAG_RD_LIMIT;
1445 softc->flags |= DA_FLAG_WR_LIMIT;
1446 xpt_release_ccb(start_ccb);
1451 * We can queue new work.
1455 devstat_start_transaction(&softc->device_stats);
1457 if ((bp->b_flags & B_ORDERED) != 0 ||
1458 (softc->flags & DA_FLAG_NEED_OTAG) != 0) {
1459 softc->flags &= ~DA_FLAG_NEED_OTAG;
1460 softc->ordered_tag_count++;
1461 tag_code = MSG_ORDERED_Q_TAG;
1463 tag_code = MSG_SIMPLE_Q_TAG;
1470 * Block read/write op
1472 KKASSERT(bio->bio_offset % softc->params.secsize == 0);
1476 da_retry_count, /* retries */
1479 (bp->b_cmd == BUF_CMD_READ),
1481 softc->minimum_cmd_size,
1482 bio->bio_offset / softc->params.secsize,
1483 bp->b_bcount / softc->params.secsize,
1486 SSD_FULL_SIZE, /* sense_len */
1487 da_default_timeout * 1000
1492 * Silently complete a flush request if the device
1495 if (softc->quirks & DA_Q_NO_SYNC_CACHE) {
1496 xpt_release_ccb(start_ccb);
1498 devstat_end_transaction_buf(
1499 &softc->device_stats, bp);
1502 scsi_synchronize_cache(
1505 dadone, /* cbfcnp */
1508 0, /* count (whole disk) */
1510 da_default_timeout*1000 /* timeout */
1514 case BUF_CMD_FREEBLKS:
1515 if (softc->disk.d_info.d_trimflag & DA_FLAG_CAN_TRIM){
1516 start_ccb->csio.ccb_h.func_code = XPT_TRIM;
1520 xpt_release_ccb(start_ccb);
1522 panic("dastart: unrecognized bio cmd %d", bp->b_cmd);
1523 break; /* NOT REACHED */
1527 * Block out any asyncronous callbacks
1528 * while we touch the pending ccb list.
1531 start_ccb->ccb_h.ccb_state = DA_CCB_BUFFER_IO;
1532 LIST_INSERT_HEAD(&softc->pending_ccbs,
1533 &start_ccb->ccb_h, periph_links.le);
1534 if (bp->b_cmd == BUF_CMD_WRITE ||
1535 bp->b_cmd == BUF_CMD_FLUSH) {
1536 ++softc->outstanding_cmds_wr;
1538 ++softc->outstanding_cmds_rd;
1541 /* We expect a unit attention from this device */
1542 if ((softc->flags & DA_FLAG_RETRY_UA) != 0) {
1543 start_ccb->ccb_h.ccb_state |= DA_CCB_RETRY_UA;
1544 softc->flags &= ~DA_FLAG_RETRY_UA;
1547 start_ccb->ccb_h.ccb_bio = bio;
1548 xpt_action(start_ccb);
1552 * Be sure we stay scheduled if we have more work to do.
1554 if (bioq_first(&softc->bio_queue_rd) ||
1555 bioq_first(&softc->bio_queue_wr)) {
1556 xpt_schedule(periph, 1);
1560 case DA_STATE_PROBE:
1562 struct ccb_scsiio *csio;
1563 struct scsi_read_capacity_data *rcap;
1565 rcap = kmalloc(sizeof(*rcap), M_SCSIDA, M_INTWAIT | M_ZERO);
1566 csio = &start_ccb->csio;
1567 scsi_read_capacity(csio,
1574 start_ccb->ccb_h.ccb_bio = NULL;
1575 start_ccb->ccb_h.ccb_state = DA_CCB_PROBE;
1576 xpt_action(start_ccb);
1579 case DA_STATE_PROBE2:
1581 struct ccb_scsiio *csio;
1582 struct scsi_read_capacity_data_16 *rcaplong;
1584 rcaplong = kmalloc(sizeof(*rcaplong), M_SCSIDA,
1585 M_INTWAIT | M_ZERO);
1586 if (rcaplong == NULL) {
1587 kprintf("dastart: Couldn't allocate read_capacity\n");
1588 /* da_free_periph??? */
1591 csio = &start_ccb->csio;
1592 scsi_read_capacity_16(csio,
1595 /*tag_action*/ MSG_SIMPLE_Q_TAG,
1600 /*sense_len*/ SSD_FULL_SIZE,
1602 start_ccb->ccb_h.ccb_bio = NULL;
1603 start_ccb->ccb_h.ccb_state = DA_CCB_PROBE2;
1604 xpt_action(start_ccb);
1611 cmd6workaround(union ccb *ccb)
1613 struct scsi_rw_6 cmd6;
1614 struct scsi_rw_10 *cmd10;
1615 struct da_softc *softc;
1619 cdb = ccb->csio.cdb_io.cdb_bytes;
1621 /* Translation only possible if CDB is an array and cmd is R/W6 */
1622 if ((ccb->ccb_h.flags & CAM_CDB_POINTER) != 0 ||
1623 (*cdb != READ_6 && *cdb != WRITE_6))
1626 xpt_print(ccb->ccb_h.path, "READ(6)/WRITE(6) not supported, "
1627 "increasing minimum_cmd_size to 10.\n");
1628 softc = (struct da_softc *)xpt_path_periph(ccb->ccb_h.path)->softc;
1629 softc->minimum_cmd_size = 10;
1631 bcopy(cdb, &cmd6, sizeof(struct scsi_rw_6));
1632 cmd10 = (struct scsi_rw_10 *)cdb;
1633 cmd10->opcode = (cmd6.opcode == READ_6) ? READ_10 : WRITE_10;
1635 scsi_ulto4b(scsi_3btoul(cmd6.addr), cmd10->addr);
1636 cmd10->reserved = 0;
1637 scsi_ulto2b(cmd6.length, cmd10->length);
1638 cmd10->control = cmd6.control;
1639 ccb->csio.cdb_len = sizeof(*cmd10);
1641 /* Requeue request, unfreezing queue if necessary */
1642 frozen = (ccb->ccb_h.status & CAM_DEV_QFRZN) != 0;
1643 ccb->ccb_h.status = CAM_REQUEUE_REQ;
1646 cam_release_devq(ccb->ccb_h.path,
1650 /*getcount_only*/0);
1656 dadone(struct cam_periph *periph, union ccb *done_ccb)
1658 struct da_softc *softc;
1659 struct ccb_scsiio *csio;
1660 struct disk_info info;
1662 softc = (struct da_softc *)periph->softc;
1663 csio = &done_ccb->csio;
1664 switch (csio->ccb_h.ccb_state & DA_CCB_TYPE_MASK) {
1665 case DA_CCB_BUFFER_IO:
1672 bio = (struct bio *)done_ccb->ccb_h.ccb_bio;
1674 if ((done_ccb->ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) {
1678 if ((csio->ccb_h.ccb_state & DA_CCB_RETRY_UA) != 0)
1683 error = daerror(done_ccb, CAM_RETRY_SELTO, sf);
1684 if (error == ERESTART) {
1686 * A retry was scheuled, so
1692 if (error == ENXIO) {
1694 * Catastrophic error. Mark our pack as
1698 * XXX See if this is really a media
1701 xpt_print(periph->path,
1702 "Invalidating pack\n");
1703 softc->flags |= DA_FLAG_PACK_INVALID;
1707 * Return all queued write I/O's with EIO
1708 * so the client can retry these I/Os in the
1709 * proper order should it attempt to recover.
1711 * Leave read I/O's alone.
1713 daflushbioq(&softc->bio_queue_wr, EIO);
1714 bp->b_error = error;
1715 bp->b_resid = bp->b_bcount;
1716 bp->b_flags |= B_ERROR;
1718 bp->b_resid = csio->resid;
1720 if (bp->b_resid != 0)
1721 bp->b_flags |= B_ERROR;
1723 if ((done_ccb->ccb_h.status & CAM_DEV_QFRZN) != 0)
1724 cam_release_devq(done_ccb->ccb_h.path,
1728 /*getcount_only*/0);
1730 if ((done_ccb->ccb_h.status & CAM_DEV_QFRZN) != 0)
1731 panic("REQ_CMP with QFRZN");
1732 bp->b_resid = csio->resid;
1733 if (csio->resid > 0)
1734 bp->b_flags |= B_ERROR;
1738 * Block out any asyncronous callbacks
1739 * while we touch the pending ccb list.
1741 LIST_REMOVE(&done_ccb->ccb_h, periph_links.le);
1742 if (bp->b_cmd == BUF_CMD_WRITE || bp->b_cmd == BUF_CMD_FLUSH) {
1743 --softc->outstanding_cmds_wr;
1744 if (softc->flags & DA_FLAG_WR_LIMIT) {
1745 softc->flags &= ~DA_FLAG_WR_LIMIT;
1749 --softc->outstanding_cmds_rd;
1750 if (softc->flags & DA_FLAG_RD_LIMIT) {
1751 softc->flags &= ~DA_FLAG_RD_LIMIT;
1755 if (softc->outstanding_cmds_rd +
1756 softc->outstanding_cmds_wr == 0) {
1757 softc->flags |= DA_FLAG_WENT_IDLE;
1760 devstat_end_transaction_buf(&softc->device_stats, bp);
1761 if ((csio->ccb_h.ccb_state & DA_CCB_TYPE_MASK) ==
1763 struct trim_request *req =
1764 (struct trim_request *) csio->data_ptr;
1767 for (i = 1; i < softc->trim_max_ranges &&
1768 req->bios[i]; i++) {
1769 struct bio *bp1 = req->bios[i];
1771 bp1->bio_buf->b_resid = bp->b_resid;
1772 bp1->bio_buf->b_error = bp->b_error;
1773 if (bp->b_flags & B_ERROR)
1774 bp1->bio_buf->b_flags |= B_ERROR;
1777 softc->trim_running = 0;
1779 xpt_schedule(periph,1);
1785 xpt_schedule(periph, /*priority*/1);
1792 struct scsi_read_capacity_data *rdcap;
1793 struct scsi_read_capacity_data_16 *rcaplong;
1794 char announce_buf[80];
1798 if (softc->state == DA_STATE_PROBE)
1799 rdcap =(struct scsi_read_capacity_data *)csio->data_ptr;
1801 rcaplong = (struct scsi_read_capacity_data_16 *)
1804 bzero(&info, sizeof(info));
1805 info.d_type = DTYPE_SCSI;
1806 info.d_serialno = xpt_path_serialno(periph->path);
1808 if ((csio->ccb_h.status & CAM_STATUS_MASK) == CAM_REQ_CMP) {
1809 struct disk_params *dp;
1810 uint32_t block_size;
1813 if (softc->state == DA_STATE_PROBE) {
1814 block_size = scsi_4btoul(rdcap->length);
1815 maxsector = scsi_4btoul(rdcap->addr);
1818 * According to SBC-2, if the standard 10
1819 * byte READ CAPACITY command returns 2^32,
1820 * we should issue the 16 byte version of
1821 * the command, since the device in question
1822 * has more sectors than can be represented
1823 * with the short version of the command.
1825 if (maxsector == 0xffffffff) {
1826 softc->state = DA_STATE_PROBE2;
1827 kfree(rdcap, M_SCSIDA);
1828 xpt_release_ccb(done_ccb);
1829 xpt_schedule(periph, /*priority*/5);
1833 block_size = scsi_4btoul(rcaplong->length);
1834 maxsector = scsi_8btou64(rcaplong->addr);
1836 dasetgeom(periph, block_size, maxsector);
1837 dp = &softc->params;
1838 ksnprintf(announce_buf, sizeof(announce_buf),
1839 "%juMB (%ju %u byte sectors: %dH %dS/T %dC)",
1840 (uintmax_t) (((uintmax_t)dp->secsize *
1841 dp->sectors) / (1024*1024)),
1842 (uintmax_t)dp->sectors,
1843 dp->secsize, dp->heads, dp->secs_per_track,
1846 CAM_SIM_UNLOCK(periph->sim);
1847 info.d_media_blksize = softc->params.secsize;
1848 info.d_media_blocks = softc->params.sectors;
1849 info.d_media_size = 0;
1850 info.d_secpertrack = softc->params.secs_per_track;
1851 info.d_nheads = softc->params.heads;
1852 info.d_ncylinders = softc->params.cylinders;
1853 info.d_secpercyl = softc->params.heads *
1854 softc->params.secs_per_track;
1855 info.d_serialno = xpt_path_serialno(periph->path);
1856 disk_setdiskinfo(&softc->disk, &info);
1857 CAM_SIM_LOCK(periph->sim);
1861 announce_buf[0] = '\0';
1864 * Retry any UNIT ATTENTION type errors. They
1865 * are expected at boot.
1867 error = daerror(done_ccb, CAM_RETRY_SELTO,
1868 SF_RETRY_UA|SF_NO_PRINT);
1869 if (error == ERESTART) {
1871 * A retry was scheuled, so
1875 } else if (error != 0) {
1876 struct scsi_sense_data *sense;
1878 int sense_key, error_code;
1881 struct ccb_getdev cgd;
1883 /* Don't wedge this device's queue */
1884 status = done_ccb->ccb_h.status;
1885 if ((status & CAM_DEV_QFRZN) != 0)
1886 cam_release_devq(done_ccb->ccb_h.path,
1890 /*getcount_only*/0);
1893 xpt_setup_ccb(&cgd.ccb_h,
1894 done_ccb->ccb_h.path,
1896 cgd.ccb_h.func_code = XPT_GDEV_TYPE;
1897 xpt_action((union ccb *)&cgd);
1899 if (((csio->ccb_h.flags & CAM_SENSE_PHYS) != 0)
1900 || ((csio->ccb_h.flags & CAM_SENSE_PTR) != 0)
1901 || ((status & CAM_AUTOSNS_VALID) == 0))
1907 sense = &csio->sense_data;
1908 scsi_extract_sense(sense, &error_code,
1913 * Attach to anything that claims to be a
1914 * direct access or optical disk device,
1915 * as long as it doesn't return a "Logical
1916 * unit not supported" (0x25) error.
1918 if ((have_sense) && (asc != 0x25)
1919 && (error_code == SSD_CURRENT_ERROR)) {
1920 const char *sense_key_desc;
1921 const char *asc_desc;
1923 scsi_sense_desc(sense_key, asc, ascq,
1927 ksnprintf(announce_buf,
1928 sizeof(announce_buf),
1929 "Attempt to query device "
1930 "size failed: %s, %s",
1933 info.d_media_blksize = 512;
1934 disk_setdiskinfo(&softc->disk, &info);
1940 xpt_print(periph->path,
1941 "got CAM status %#x\n",
1942 done_ccb->ccb_h.status);
1945 xpt_print(periph->path, "fatal error, "
1946 "failed to attach to device\n");
1949 * Free up resources.
1951 cam_periph_invalidate(periph);
1955 kfree(csio->data_ptr, M_SCSIDA);
1956 if (announce_buf[0] != '\0') {
1957 xpt_announce_periph(periph, announce_buf);
1959 * Create our sysctl variables, now that we know
1960 * we have successfully attached.
1962 taskqueue_enqueue(taskqueue_thread[mycpuid],
1963 &softc->sysctl_task);
1966 if (softc->trim_max_ranges) {
1967 softc->disk.d_info.d_trimflag |= DA_FLAG_CAN_TRIM;
1968 kprintf("%s%d: supports TRIM\n",
1969 periph->periph_name,
1970 periph->unit_number);
1972 softc->state = DA_STATE_NORMAL;
1974 * Since our peripheral may be invalidated by an error
1975 * above or an external event, we must release our CCB
1976 * before releasing the probe lock on the peripheral.
1977 * The peripheral will only go away once the last lock
1978 * is removed, and we need it around for the CCB release
1981 xpt_release_ccb(done_ccb);
1982 cam_periph_unhold(periph, 0);
1985 case DA_CCB_WAITING:
1987 /* Caller will release the CCB */
1988 wakeup(&done_ccb->ccb_h.cbfcnp);
1992 /* No-op. We're polling */
1997 xpt_release_ccb(done_ccb);
2001 daerror(union ccb *ccb, u_int32_t cam_flags, u_int32_t sense_flags)
2003 struct da_softc *softc;
2004 struct cam_periph *periph;
2007 periph = xpt_path_periph(ccb->ccb_h.path);
2008 softc = (struct da_softc *)periph->softc;
2011 * Automatically detect devices that do not support
2012 * READ(6)/WRITE(6) and upgrade to using 10 byte cdbs.
2015 if ((ccb->ccb_h.status & CAM_STATUS_MASK) == CAM_REQ_INVALID) {
2016 error = cmd6workaround(ccb);
2017 } else if (((ccb->ccb_h.status & CAM_STATUS_MASK) ==
2018 CAM_SCSI_STATUS_ERROR)
2019 && (ccb->ccb_h.status & CAM_AUTOSNS_VALID)
2020 && (ccb->csio.scsi_status == SCSI_STATUS_CHECK_COND)
2021 && ((ccb->ccb_h.flags & CAM_SENSE_PHYS) == 0)
2022 && ((ccb->ccb_h.flags & CAM_SENSE_PTR) == 0)) {
2023 int sense_key, error_code, asc, ascq;
2025 scsi_extract_sense(&ccb->csio.sense_data,
2026 &error_code, &sense_key, &asc, &ascq);
2027 if (sense_key == SSD_KEY_ILLEGAL_REQUEST)
2028 error = cmd6workaround(ccb);
2030 if (error == ERESTART)
2035 * Until we have a better way of doing pack validation,
2036 * don't treat UAs as errors.
2038 sense_flags |= SF_RETRY_UA;
2039 return(cam_periph_error(ccb, cam_flags, sense_flags,
2040 &softc->saved_ccb));
2044 daprevent(struct cam_periph *periph, int action)
2046 struct da_softc *softc;
2050 softc = (struct da_softc *)periph->softc;
2052 if (((action == PR_ALLOW)
2053 && (softc->flags & DA_FLAG_PACK_LOCKED) == 0)
2054 || ((action == PR_PREVENT)
2055 && (softc->flags & DA_FLAG_PACK_LOCKED) != 0)) {
2059 ccb = cam_periph_getccb(periph, /*priority*/1);
2061 scsi_prevent(&ccb->csio,
2069 error = cam_periph_runccb(ccb, /*error_routine*/NULL, CAM_RETRY_SELTO,
2070 SF_RETRY_UA, &softc->device_stats);
2073 if (action == PR_ALLOW)
2074 softc->flags &= ~DA_FLAG_PACK_LOCKED;
2076 softc->flags |= DA_FLAG_PACK_LOCKED;
2079 xpt_release_ccb(ccb);
2083 * Check media on open, e.g. card reader devices which had no initial media.
2086 dacheckmedia(struct cam_periph *periph)
2088 struct disk_params *dp;
2089 struct da_softc *softc;
2090 struct disk_info info;
2093 softc = (struct da_softc *)periph->softc;
2094 dp = &softc->params;
2096 error = dagetcapacity(periph);
2099 * Only reprobe on initial open and if the media is removable.
2101 * NOTE: If we setdiskinfo() it will take the device probe
2102 * a bit of time to probe the slices and partitions,
2103 * and mess up booting. So avoid if nothing has changed.
2106 if (softc->flags & DA_FLAG_OPEN)
2108 if ((softc->flags & DA_FLAG_PACK_REMOVABLE) == 0)
2111 bzero(&info, sizeof(info));
2112 info.d_type = DTYPE_SCSI;
2113 info.d_serialno = xpt_path_serialno(periph->path);
2116 CAM_SIM_UNLOCK(periph->sim);
2117 info.d_media_blksize = softc->params.secsize;
2118 info.d_media_blocks = softc->params.sectors;
2119 info.d_media_size = 0;
2120 info.d_secpertrack = softc->params.secs_per_track;
2121 info.d_nheads = softc->params.heads;
2122 info.d_ncylinders = softc->params.cylinders;
2123 info.d_secpercyl = softc->params.heads *
2124 softc->params.secs_per_track;
2125 info.d_serialno = xpt_path_serialno(periph->path);
2126 if (info.d_media_blocks != softc->disk.d_info.d_media_blocks) {
2127 kprintf("%s%d: open removable media: "
2128 "%juMB (%ju %u byte sectors: %dH %dS/T %dC)\n",
2129 periph->periph_name, periph->unit_number,
2130 (uintmax_t)(((uintmax_t)dp->secsize *
2131 dp->sectors) / (1024*1024)),
2132 (uintmax_t)dp->sectors, dp->secsize,
2133 dp->heads, dp->secs_per_track, dp->cylinders);
2134 disk_setdiskinfo(&softc->disk, &info);
2136 CAM_SIM_LOCK(periph->sim);
2138 kprintf("%s%d: open removable media: no media present\n",
2139 periph->periph_name, periph->unit_number);
2140 info.d_media_blksize = 512;
2141 disk_setdiskinfo(&softc->disk, &info);
2147 dagetcapacity(struct cam_periph *periph)
2149 struct da_softc *softc;
2151 struct scsi_read_capacity_data *rcap;
2152 struct scsi_read_capacity_data_16 *rcaplong;
2157 softc = (struct da_softc *)periph->softc;
2162 /* Do a read capacity */
2163 rcap = (struct scsi_read_capacity_data *)kmalloc(sizeof(*rcaplong),
2164 M_SCSIDA, M_INTWAIT);
2166 ccb = cam_periph_getccb(periph, /*priority*/1);
2167 scsi_read_capacity(&ccb->csio,
2174 ccb->ccb_h.ccb_bio = NULL;
2176 error = cam_periph_runccb(ccb, daerror,
2177 /*cam_flags*/CAM_RETRY_SELTO,
2178 /*sense_flags*/SF_RETRY_UA,
2179 &softc->device_stats);
2181 if ((ccb->ccb_h.status & CAM_DEV_QFRZN) != 0)
2182 cam_release_devq(ccb->ccb_h.path,
2186 /*getcount_only*/0);
2189 block_len = scsi_4btoul(rcap->length);
2190 maxsector = scsi_4btoul(rcap->addr);
2192 if (maxsector != 0xffffffff)
2197 rcaplong = (struct scsi_read_capacity_data_16 *)rcap;
2199 scsi_read_capacity_16(&ccb->csio,
2202 /*tag_action*/ MSG_SIMPLE_Q_TAG,
2207 /*sense_len*/ SSD_FULL_SIZE,
2209 ccb->ccb_h.ccb_bio = NULL;
2211 error = cam_periph_runccb(ccb, daerror,
2212 /*cam_flags*/CAM_RETRY_SELTO,
2213 /*sense_flags*/SF_RETRY_UA,
2214 &softc->device_stats);
2216 if ((ccb->ccb_h.status & CAM_DEV_QFRZN) != 0)
2217 cam_release_devq(ccb->ccb_h.path,
2221 /*getcount_only*/0);
2224 block_len = scsi_4btoul(rcaplong->length);
2225 maxsector = scsi_8btou64(rcaplong->addr);
2231 dasetgeom(periph, block_len, maxsector);
2233 xpt_release_ccb(ccb);
2235 kfree(rcap, M_SCSIDA);
2241 dasetgeom(struct cam_periph *periph, uint32_t block_len, uint64_t maxsector)
2243 struct ccb_calc_geometry ccg;
2244 struct da_softc *softc;
2245 struct disk_params *dp;
2247 softc = (struct da_softc *)periph->softc;
2249 dp = &softc->params;
2250 dp->secsize = block_len;
2251 dp->sectors = maxsector + 1;
2253 * Have the controller provide us with a geometry
2254 * for this disk. The only time the geometry
2255 * matters is when we boot and the controller
2256 * is the only one knowledgeable enough to come
2257 * up with something that will make this a bootable
2260 xpt_setup_ccb(&ccg.ccb_h, periph->path, /*priority*/1);
2261 ccg.ccb_h.func_code = XPT_CALC_GEOMETRY;
2262 ccg.block_size = dp->secsize;
2263 ccg.volume_size = dp->sectors;
2265 ccg.secs_per_track = 0;
2267 xpt_action((union ccb*)&ccg);
2268 if ((ccg.ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) {
2270 * We don't know what went wrong here- but just pick
2271 * a geometry so we don't have nasty things like divide
2275 dp->secs_per_track = 255;
2276 dp->cylinders = dp->sectors / (255 * 255);
2277 if (dp->cylinders == 0) {
2281 dp->heads = ccg.heads;
2282 dp->secs_per_track = ccg.secs_per_track;
2283 dp->cylinders = ccg.cylinders;
2288 dasendorderedtag(void *arg)
2290 struct da_softc *softc = arg;
2292 if (da_send_ordered) {
2293 if ((softc->ordered_tag_count == 0)
2294 && ((softc->flags & DA_FLAG_WENT_IDLE) == 0)) {
2295 softc->flags |= DA_FLAG_NEED_OTAG;
2297 if (softc->outstanding_cmds_rd || softc->outstanding_cmds_wr)
2298 softc->flags &= ~DA_FLAG_WENT_IDLE;
2300 softc->ordered_tag_count = 0;
2302 /* Queue us up again */
2303 callout_reset(&softc->sendordered_c,
2304 (DA_DEFAULT_TIMEOUT * hz) / DA_ORDEREDTAG_INTERVAL,
2305 dasendorderedtag, softc);
2309 * Step through all DA peripheral drivers, and if the device is still open,
2310 * sync the disk cache to physical media.
2313 dashutdown(void * arg, int howto)
2315 struct cam_periph *periph;
2316 struct da_softc *softc;
2318 TAILQ_FOREACH(periph, &dadriver.units, unit_links) {
2321 cam_periph_lock(periph);
2322 softc = (struct da_softc *)periph->softc;
2325 * We only sync the cache if the drive is still open, and
2326 * if the drive is capable of it..
2328 if (((softc->flags & DA_FLAG_OPEN) == 0)
2329 || (softc->quirks & DA_Q_NO_SYNC_CACHE)) {
2330 cam_periph_unlock(periph);
2334 xpt_setup_ccb(&ccb.ccb_h, periph->path, /*priority*/1);
2336 ccb.ccb_h.ccb_state = DA_CCB_DUMP;
2337 scsi_synchronize_cache(&ccb.csio,
2341 /*begin_lba*/0, /* whole disk */
2346 xpt_polled_action(&ccb);
2348 if ((ccb.ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) {
2349 if (((ccb.ccb_h.status & CAM_STATUS_MASK) ==
2350 CAM_SCSI_STATUS_ERROR)
2351 && (ccb.csio.scsi_status == SCSI_STATUS_CHECK_COND)){
2352 int error_code, sense_key, asc, ascq;
2354 scsi_extract_sense(&ccb.csio.sense_data,
2355 &error_code, &sense_key,
2358 if (sense_key != SSD_KEY_ILLEGAL_REQUEST)
2359 scsi_sense_print(&ccb.csio);
2361 xpt_print(periph->path, "Synchronize "
2362 "cache failed, status == 0x%x, scsi status "
2363 "== 0x%x\n", ccb.ccb_h.status,
2364 ccb.csio.scsi_status);
2368 if ((ccb.ccb_h.status & CAM_DEV_QFRZN) != 0)
2369 cam_release_devq(ccb.ccb_h.path,
2373 /*getcount_only*/0);
2375 cam_periph_unlock(periph);
2379 #else /* !_KERNEL */
2382 * XXX This is only left out of the kernel build to silence warnings. If,
2383 * for some reason this function is used in the kernel, the ifdefs should
2384 * be moved so it is included both in the kernel and userland.
2387 scsi_format_unit(struct ccb_scsiio *csio, u_int32_t retries,
2388 void (*cbfcnp)(struct cam_periph *, union ccb *),
2389 u_int8_t tag_action, u_int8_t byte2, u_int16_t ileave,
2390 u_int8_t *data_ptr, u_int32_t dxfer_len, u_int8_t sense_len,
2393 struct scsi_format_unit *scsi_cmd;
2395 scsi_cmd = (struct scsi_format_unit *)&csio->cdb_io.cdb_bytes;
2396 scsi_cmd->opcode = FORMAT_UNIT;
2397 scsi_cmd->byte2 = byte2;
2398 scsi_ulto2b(ileave, scsi_cmd->interleave);
2403 /*flags*/ (dxfer_len > 0) ? CAM_DIR_OUT : CAM_DIR_NONE,
2412 #endif /* _KERNEL */