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