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