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