xref: /freebsd/sys/cam/scsi/scsi_da.c (revision 0572ccaa4543b0abef8ef81e384c1d04de9f3da1)
1 /*-
2  * Implementation of SCSI Direct Access Peripheral driver for CAM.
3  *
4  * Copyright (c) 1997 Justin T. Gibbs.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions, and the following disclaimer,
12  *    without modification, immediately at the beginning of the file.
13  * 2. The name of the author may not be used to endorse or promote products
14  *    derived from this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
20  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  */
28 
29 #include <sys/cdefs.h>
30 __FBSDID("$FreeBSD$");
31 
32 #include <sys/param.h>
33 
34 #ifdef _KERNEL
35 #include <sys/systm.h>
36 #include <sys/kernel.h>
37 #include <sys/bio.h>
38 #include <sys/sysctl.h>
39 #include <sys/taskqueue.h>
40 #include <sys/lock.h>
41 #include <sys/mutex.h>
42 #include <sys/conf.h>
43 #include <sys/devicestat.h>
44 #include <sys/eventhandler.h>
45 #include <sys/malloc.h>
46 #include <sys/cons.h>
47 #include <sys/endian.h>
48 #include <sys/proc.h>
49 #include <geom/geom.h>
50 #include <geom/geom_disk.h>
51 #endif /* _KERNEL */
52 
53 #ifndef _KERNEL
54 #include <stdio.h>
55 #include <string.h>
56 #endif /* _KERNEL */
57 
58 #include <cam/cam.h>
59 #include <cam/cam_ccb.h>
60 #include <cam/cam_periph.h>
61 #include <cam/cam_xpt_periph.h>
62 #include <cam/cam_sim.h>
63 
64 #include <cam/scsi/scsi_message.h>
65 
66 #ifndef _KERNEL
67 #include <cam/scsi/scsi_da.h>
68 #endif /* !_KERNEL */
69 
70 #ifdef _KERNEL
71 typedef enum {
72 	DA_STATE_PROBE_RC,
73 	DA_STATE_PROBE_RC16,
74 	DA_STATE_PROBE_LBP,
75 	DA_STATE_PROBE_BLK_LIMITS,
76 	DA_STATE_PROBE_BDC,
77 	DA_STATE_PROBE_ATA,
78 	DA_STATE_NORMAL
79 } da_state;
80 
81 typedef enum {
82 	DA_FLAG_PACK_INVALID	= 0x001,
83 	DA_FLAG_NEW_PACK	= 0x002,
84 	DA_FLAG_PACK_LOCKED	= 0x004,
85 	DA_FLAG_PACK_REMOVABLE	= 0x008,
86 	DA_FLAG_NEED_OTAG	= 0x020,
87 	DA_FLAG_WAS_OTAG	= 0x040,
88 	DA_FLAG_RETRY_UA	= 0x080,
89 	DA_FLAG_OPEN		= 0x100,
90 	DA_FLAG_SCTX_INIT	= 0x200,
91 	DA_FLAG_CAN_RC16	= 0x400,
92 	DA_FLAG_PROBED		= 0x800,
93 	DA_FLAG_DIRTY		= 0x1000,
94 	DA_FLAG_ANNOUNCED	= 0x2000
95 } da_flags;
96 
97 typedef enum {
98 	DA_Q_NONE		= 0x00,
99 	DA_Q_NO_SYNC_CACHE	= 0x01,
100 	DA_Q_NO_6_BYTE		= 0x02,
101 	DA_Q_NO_PREVENT		= 0x04,
102 	DA_Q_4K			= 0x08,
103 	DA_Q_NO_RC16		= 0x10,
104 	DA_Q_NO_UNMAP		= 0x20
105 } da_quirks;
106 
107 #define DA_Q_BIT_STRING		\
108 	"\020"			\
109 	"\001NO_SYNC_CACHE"	\
110 	"\002NO_6_BYTE"		\
111 	"\003NO_PREVENT"	\
112 	"\0044K"		\
113 	"\005NO_RC16"
114 
115 typedef enum {
116 	DA_CCB_PROBE_RC		= 0x01,
117 	DA_CCB_PROBE_RC16	= 0x02,
118 	DA_CCB_PROBE_LBP	= 0x03,
119 	DA_CCB_PROBE_BLK_LIMITS	= 0x04,
120 	DA_CCB_PROBE_BDC	= 0x05,
121 	DA_CCB_PROBE_ATA	= 0x06,
122 	DA_CCB_BUFFER_IO	= 0x07,
123 	DA_CCB_DUMP		= 0x0A,
124 	DA_CCB_DELETE		= 0x0B,
125  	DA_CCB_TUR		= 0x0C,
126 	DA_CCB_TYPE_MASK	= 0x0F,
127 	DA_CCB_RETRY_UA		= 0x10
128 } da_ccb_state;
129 
130 /*
131  * Order here is important for method choice
132  *
133  * We prefer ATA_TRIM as tests run against a Sandforce 2281 SSD attached to
134  * LSI 2008 (mps) controller (FW: v12, Drv: v14) resulted 20% quicker deletes
135  * using ATA_TRIM than the corresponding UNMAP results for a real world mysql
136  * import taking 5mins.
137  *
138  */
139 typedef enum {
140 	DA_DELETE_NONE,
141 	DA_DELETE_DISABLE,
142 	DA_DELETE_ATA_TRIM,
143 	DA_DELETE_UNMAP,
144 	DA_DELETE_WS16,
145 	DA_DELETE_WS10,
146 	DA_DELETE_ZERO,
147 	DA_DELETE_MIN = DA_DELETE_ATA_TRIM,
148 	DA_DELETE_MAX = DA_DELETE_ZERO
149 } da_delete_methods;
150 
151 typedef void da_delete_func_t (struct cam_periph *periph, union ccb *ccb,
152 			      struct bio *bp);
153 static da_delete_func_t da_delete_trim;
154 static da_delete_func_t da_delete_unmap;
155 static da_delete_func_t da_delete_ws;
156 
157 static const void * da_delete_functions[] = {
158 	NULL,
159 	NULL,
160 	da_delete_trim,
161 	da_delete_unmap,
162 	da_delete_ws,
163 	da_delete_ws,
164 	da_delete_ws
165 };
166 
167 static const char *da_delete_method_names[] =
168     { "NONE", "DISABLE", "ATA_TRIM", "UNMAP", "WS16", "WS10", "ZERO" };
169 static const char *da_delete_method_desc[] =
170     { "NONE", "DISABLED", "ATA TRIM", "UNMAP", "WRITE SAME(16) with UNMAP",
171       "WRITE SAME(10) with UNMAP", "ZERO" };
172 
173 /* Offsets into our private area for storing information */
174 #define ccb_state	ppriv_field0
175 #define ccb_bp		ppriv_ptr1
176 
177 struct disk_params {
178 	u_int8_t  heads;
179 	u_int32_t cylinders;
180 	u_int8_t  secs_per_track;
181 	u_int32_t secsize;	/* Number of bytes/sector */
182 	u_int64_t sectors;	/* total number sectors */
183 	u_int     stripesize;
184 	u_int     stripeoffset;
185 };
186 
187 #define UNMAP_RANGE_MAX		0xffffffff
188 #define UNMAP_HEAD_SIZE		8
189 #define UNMAP_RANGE_SIZE	16
190 #define UNMAP_MAX_RANGES	2048 /* Protocol Max is 4095 */
191 #define UNMAP_BUF_SIZE		((UNMAP_MAX_RANGES * UNMAP_RANGE_SIZE) + \
192 				UNMAP_HEAD_SIZE)
193 
194 #define WS10_MAX_BLKS		0xffff
195 #define WS16_MAX_BLKS		0xffffffff
196 #define ATA_TRIM_MAX_RANGES	((UNMAP_BUF_SIZE / \
197 	(ATA_DSM_RANGE_SIZE * ATA_DSM_BLK_SIZE)) * ATA_DSM_BLK_SIZE)
198 
199 struct da_softc {
200 	struct	 bio_queue_head bio_queue;
201 	struct	 bio_queue_head delete_queue;
202 	struct	 bio_queue_head delete_run_queue;
203 	LIST_HEAD(, ccb_hdr) pending_ccbs;
204 	int	 tur;			/* TEST UNIT READY should be sent */
205 	int	 refcount;		/* Active xpt_action() calls */
206 	da_state state;
207 	da_flags flags;
208 	da_quirks quirks;
209 	int	 sort_io_queue;
210 	int	 minimum_cmd_size;
211 	int	 error_inject;
212 	int	 trim_max_ranges;
213 	int	 delete_running;
214 	int	 delete_available;	/* Delete methods possibly available */
215 	u_int	 maxio;
216 	uint32_t		unmap_max_ranges;
217 	uint32_t		unmap_max_lba; /* Max LBAs in UNMAP req */
218 	uint64_t		ws_max_blks;
219 	da_delete_methods	delete_method;
220 	da_delete_func_t	*delete_func;
221 	struct	 disk_params params;
222 	struct	 disk *disk;
223 	union	 ccb saved_ccb;
224 	struct task		sysctl_task;
225 	struct sysctl_ctx_list	sysctl_ctx;
226 	struct sysctl_oid	*sysctl_tree;
227 	struct callout		sendordered_c;
228 	uint64_t wwpn;
229 	uint8_t	 unmap_buf[UNMAP_BUF_SIZE];
230 	struct scsi_read_capacity_data_long rcaplong;
231 	struct callout		mediapoll_c;
232 };
233 
234 #define dadeleteflag(softc, delete_method, enable)			\
235 	if (enable) {							\
236 		softc->delete_available |= (1 << delete_method);	\
237 	} else {							\
238 		softc->delete_available &= ~(1 << delete_method);	\
239 	}
240 
241 struct da_quirk_entry {
242 	struct scsi_inquiry_pattern inq_pat;
243 	da_quirks quirks;
244 };
245 
246 static const char quantum[] = "QUANTUM";
247 static const char microp[] = "MICROP";
248 
249 static struct da_quirk_entry da_quirk_table[] =
250 {
251 	/* SPI, FC devices */
252 	{
253 		/*
254 		 * Fujitsu M2513A MO drives.
255 		 * Tested devices: M2513A2 firmware versions 1200 & 1300.
256 		 * (dip switch selects whether T_DIRECT or T_OPTICAL device)
257 		 * Reported by: W.Scholten <whs@xs4all.nl>
258 		 */
259 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "FUJITSU", "M2513A", "*"},
260 		/*quirks*/ DA_Q_NO_SYNC_CACHE
261 	},
262 	{
263 		/* See above. */
264 		{T_OPTICAL, SIP_MEDIA_REMOVABLE, "FUJITSU", "M2513A", "*"},
265 		/*quirks*/ DA_Q_NO_SYNC_CACHE
266 	},
267 	{
268 		/*
269 		 * This particular Fujitsu drive doesn't like the
270 		 * synchronize cache command.
271 		 * Reported by: Tom Jackson <toj@gorilla.net>
272 		 */
273 		{T_DIRECT, SIP_MEDIA_FIXED, "FUJITSU", "M2954*", "*"},
274 		/*quirks*/ DA_Q_NO_SYNC_CACHE
275 	},
276 	{
277 		/*
278 		 * This drive doesn't like the synchronize cache command
279 		 * either.  Reported by: Matthew Jacob <mjacob@feral.com>
280 		 * in NetBSD PR kern/6027, August 24, 1998.
281 		 */
282 		{T_DIRECT, SIP_MEDIA_FIXED, microp, "2217*", "*"},
283 		/*quirks*/ DA_Q_NO_SYNC_CACHE
284 	},
285 	{
286 		/*
287 		 * This drive doesn't like the synchronize cache command
288 		 * either.  Reported by: Hellmuth Michaelis (hm@kts.org)
289 		 * (PR 8882).
290 		 */
291 		{T_DIRECT, SIP_MEDIA_FIXED, microp, "2112*", "*"},
292 		/*quirks*/ DA_Q_NO_SYNC_CACHE
293 	},
294 	{
295 		/*
296 		 * Doesn't like the synchronize cache command.
297 		 * Reported by: Blaz Zupan <blaz@gold.amis.net>
298 		 */
299 		{T_DIRECT, SIP_MEDIA_FIXED, "NEC", "D3847*", "*"},
300 		/*quirks*/ DA_Q_NO_SYNC_CACHE
301 	},
302 	{
303 		/*
304 		 * Doesn't like the synchronize cache command.
305 		 * Reported by: Blaz Zupan <blaz@gold.amis.net>
306 		 */
307 		{T_DIRECT, SIP_MEDIA_FIXED, quantum, "MAVERICK 540S", "*"},
308 		/*quirks*/ DA_Q_NO_SYNC_CACHE
309 	},
310 	{
311 		/*
312 		 * Doesn't like the synchronize cache command.
313 		 */
314 		{T_DIRECT, SIP_MEDIA_FIXED, quantum, "LPS525S", "*"},
315 		/*quirks*/ DA_Q_NO_SYNC_CACHE
316 	},
317 	{
318 		/*
319 		 * Doesn't like the synchronize cache command.
320 		 * Reported by: walter@pelissero.de
321 		 */
322 		{T_DIRECT, SIP_MEDIA_FIXED, quantum, "LPS540S", "*"},
323 		/*quirks*/ DA_Q_NO_SYNC_CACHE
324 	},
325 	{
326 		/*
327 		 * Doesn't work correctly with 6 byte reads/writes.
328 		 * Returns illegal request, and points to byte 9 of the
329 		 * 6-byte CDB.
330 		 * Reported by:  Adam McDougall <bsdx@spawnet.com>
331 		 */
332 		{T_DIRECT, SIP_MEDIA_FIXED, quantum, "VIKING 4*", "*"},
333 		/*quirks*/ DA_Q_NO_6_BYTE
334 	},
335 	{
336 		/* See above. */
337 		{T_DIRECT, SIP_MEDIA_FIXED, quantum, "VIKING 2*", "*"},
338 		/*quirks*/ DA_Q_NO_6_BYTE
339 	},
340 	{
341 		/*
342 		 * Doesn't like the synchronize cache command.
343 		 * Reported by: walter@pelissero.de
344 		 */
345 		{T_DIRECT, SIP_MEDIA_FIXED, "CONNER", "CP3500*", "*"},
346 		/*quirks*/ DA_Q_NO_SYNC_CACHE
347 	},
348 	{
349 		/*
350 		 * The CISS RAID controllers do not support SYNC_CACHE
351 		 */
352 		{T_DIRECT, SIP_MEDIA_FIXED, "COMPAQ", "RAID*", "*"},
353 		/*quirks*/ DA_Q_NO_SYNC_CACHE
354 	},
355 	{
356 		/*
357 		 * The STEC 842 sometimes hang on UNMAP.
358 		 */
359 		{T_DIRECT, SIP_MEDIA_FIXED, "STEC", "S842E800M2", "*"},
360 		/*quirks*/ DA_Q_NO_UNMAP
361 	},
362 	/* USB mass storage devices supported by umass(4) */
363 	{
364 		/*
365 		 * EXATELECOM (Sigmatel) i-Bead 100/105 USB Flash MP3 Player
366 		 * PR: kern/51675
367 		 */
368 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "EXATEL", "i-BEAD10*", "*"},
369 		/*quirks*/ DA_Q_NO_SYNC_CACHE
370 	},
371 	{
372 		/*
373 		 * Power Quotient Int. (PQI) USB flash key
374 		 * PR: kern/53067
375 		 */
376 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "Generic*", "USB Flash Disk*",
377 		"*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
378 	},
379  	{
380  		/*
381  		 * Creative Nomad MUVO mp3 player (USB)
382  		 * PR: kern/53094
383  		 */
384  		{T_DIRECT, SIP_MEDIA_REMOVABLE, "CREATIVE", "NOMAD_MUVO", "*"},
385  		/*quirks*/ DA_Q_NO_SYNC_CACHE|DA_Q_NO_PREVENT
386  	},
387 	{
388 		/*
389 		 * Jungsoft NEXDISK USB flash key
390 		 * PR: kern/54737
391 		 */
392 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "JUNGSOFT", "NEXDISK*", "*"},
393 		/*quirks*/ DA_Q_NO_SYNC_CACHE
394 	},
395 	{
396 		/*
397 		 * FreeDik USB Mini Data Drive
398 		 * PR: kern/54786
399 		 */
400 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "FreeDik*", "Mini Data Drive",
401 		"*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
402 	},
403 	{
404 		/*
405 		 * Sigmatel USB Flash MP3 Player
406 		 * PR: kern/57046
407 		 */
408 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "SigmaTel", "MSCN", "*"},
409 		/*quirks*/ DA_Q_NO_SYNC_CACHE|DA_Q_NO_PREVENT
410 	},
411 	{
412 		/*
413 		 * Neuros USB Digital Audio Computer
414 		 * PR: kern/63645
415 		 */
416 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "NEUROS", "dig. audio comp.",
417 		"*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
418 	},
419 	{
420 		/*
421 		 * SEAGRAND NP-900 MP3 Player
422 		 * PR: kern/64563
423 		 */
424 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "SEAGRAND", "NP-900*", "*"},
425 		/*quirks*/ DA_Q_NO_SYNC_CACHE|DA_Q_NO_PREVENT
426 	},
427 	{
428 		/*
429 		 * iRiver iFP MP3 player (with UMS Firmware)
430 		 * PR: kern/54881, i386/63941, kern/66124
431 		 */
432 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "iRiver", "iFP*", "*"},
433 		/*quirks*/ DA_Q_NO_SYNC_CACHE
434  	},
435 	{
436 		/*
437 		 * Frontier Labs NEX IA+ Digital Audio Player, rev 1.10/0.01
438 		 * PR: kern/70158
439 		 */
440 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "FL" , "Nex*", "*"},
441 		/*quirks*/ DA_Q_NO_SYNC_CACHE
442 	},
443 	{
444 		/*
445 		 * ZICPlay USB MP3 Player with FM
446 		 * PR: kern/75057
447 		 */
448 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "ACTIONS*" , "USB DISK*", "*"},
449 		/*quirks*/ DA_Q_NO_SYNC_CACHE
450 	},
451 	{
452 		/*
453 		 * TEAC USB floppy mechanisms
454 		 */
455 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "TEAC" , "FD-05*", "*"},
456 		/*quirks*/ DA_Q_NO_SYNC_CACHE
457 	},
458 	{
459 		/*
460 		 * Kingston DataTraveler II+ USB Pen-Drive.
461 		 * Reported by: Pawel Jakub Dawidek <pjd@FreeBSD.org>
462 		 */
463 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "Kingston" , "DataTraveler II+",
464 		"*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
465 	},
466 	{
467 		/*
468 		 * USB DISK Pro PMAP
469 		 * Reported by: jhs
470 		 * PR: usb/96381
471 		 */
472 		{T_DIRECT, SIP_MEDIA_REMOVABLE, " ", "USB DISK Pro", "PMAP"},
473 		/*quirks*/ DA_Q_NO_SYNC_CACHE
474 	},
475 	{
476 		/*
477 		 * Motorola E398 Mobile Phone (TransFlash memory card).
478 		 * Reported by: Wojciech A. Koszek <dunstan@FreeBSD.czest.pl>
479 		 * PR: usb/89889
480 		 */
481 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "Motorola" , "Motorola Phone",
482 		"*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
483 	},
484 	{
485 		/*
486 		 * Qware BeatZkey! Pro
487 		 * PR: usb/79164
488 		 */
489 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "GENERIC", "USB DISK DEVICE",
490 		"*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
491 	},
492 	{
493 		/*
494 		 * Time DPA20B 1GB MP3 Player
495 		 * PR: usb/81846
496 		 */
497 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "USB2.0*", "(FS) FLASH DISK*",
498 		"*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
499 	},
500 	{
501 		/*
502 		 * Samsung USB key 128Mb
503 		 * PR: usb/90081
504 		 */
505 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "USB-DISK", "FreeDik-FlashUsb",
506 		"*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
507 	},
508 	{
509 		/*
510 		 * Kingston DataTraveler 2.0 USB Flash memory.
511 		 * PR: usb/89196
512 		 */
513 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "Kingston", "DataTraveler 2.0",
514 		"*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
515 	},
516 	{
517 		/*
518 		 * Creative MUVO Slim mp3 player (USB)
519 		 * PR: usb/86131
520 		 */
521 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "CREATIVE", "MuVo Slim",
522 		"*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE|DA_Q_NO_PREVENT
523 		},
524 	{
525 		/*
526 		 * United MP5512 Portable MP3 Player (2-in-1 USB DISK/MP3)
527 		 * PR: usb/80487
528 		 */
529 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "Generic*", "MUSIC DISK",
530 		"*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
531 	},
532 	{
533 		/*
534 		 * SanDisk Micro Cruzer 128MB
535 		 * PR: usb/75970
536 		 */
537 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "SanDisk" , "Micro Cruzer",
538 		"*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
539 	},
540 	{
541 		/*
542 		 * TOSHIBA TransMemory USB sticks
543 		 * PR: kern/94660
544 		 */
545 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "TOSHIBA", "TransMemory",
546 		"*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
547 	},
548 	{
549 		/*
550 		 * PNY USB Flash keys
551 		 * PR: usb/75578, usb/72344, usb/65436
552 		 */
553 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "*" , "USB DISK*",
554 		"*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
555 	},
556 	{
557 		/*
558 		 * Genesys 6-in-1 Card Reader
559 		 * PR: usb/94647
560 		 */
561 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "Generic*", "STORAGE DEVICE*",
562 		"*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
563 	},
564 	{
565 		/*
566 		 * Rekam Digital CAMERA
567 		 * PR: usb/98713
568 		 */
569 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "CAMERA*", "4MP-9J6*",
570 		"*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
571 	},
572 	{
573 		/*
574 		 * iRiver H10 MP3 player
575 		 * PR: usb/102547
576 		 */
577 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "iriver", "H10*",
578 		"*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
579 	},
580 	{
581 		/*
582 		 * iRiver U10 MP3 player
583 		 * PR: usb/92306
584 		 */
585 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "iriver", "U10*",
586 		"*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
587 	},
588 	{
589 		/*
590 		 * X-Micro Flash Disk
591 		 * PR: usb/96901
592 		 */
593 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "X-Micro", "Flash Disk",
594 		"*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
595 	},
596 	{
597 		/*
598 		 * EasyMP3 EM732X USB 2.0 Flash MP3 Player
599 		 * PR: usb/96546
600 		 */
601 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "EM732X", "MP3 Player*",
602 		"1.00"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
603 	},
604 	{
605 		/*
606 		 * Denver MP3 player
607 		 * PR: usb/107101
608 		 */
609 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "DENVER", "MP3 PLAYER",
610 		 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
611 	},
612 	{
613 		/*
614 		 * Philips USB Key Audio KEY013
615 		 * PR: usb/68412
616 		 */
617 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "PHILIPS", "Key*", "*"},
618 		/*quirks*/ DA_Q_NO_SYNC_CACHE | DA_Q_NO_PREVENT
619 	},
620 	{
621 		/*
622 		 * JNC MP3 Player
623 		 * PR: usb/94439
624 		 */
625 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "JNC*" , "MP3 Player*",
626 		 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
627 	},
628 	{
629 		/*
630 		 * SAMSUNG MP0402H
631 		 * PR: usb/108427
632 		 */
633 		{T_DIRECT, SIP_MEDIA_FIXED, "SAMSUNG", "MP0402H", "*"},
634 		/*quirks*/ DA_Q_NO_SYNC_CACHE
635 	},
636 	{
637 		/*
638 		 * I/O Magic USB flash - Giga Bank
639 		 * PR: usb/108810
640 		 */
641 		{T_DIRECT, SIP_MEDIA_FIXED, "GS-Magic", "stor*", "*"},
642 		/*quirks*/ DA_Q_NO_SYNC_CACHE
643 	},
644 	{
645 		/*
646 		 * JoyFly 128mb USB Flash Drive
647 		 * PR: 96133
648 		 */
649 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "USB 2.0", "Flash Disk*",
650 		 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
651 	},
652 	{
653 		/*
654 		 * ChipsBnk usb stick
655 		 * PR: 103702
656 		 */
657 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "ChipsBnk", "USB*",
658 		 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
659 	},
660 	{
661 		/*
662 		 * Storcase (Kingston) InfoStation IFS FC2/SATA-R 201A
663 		 * PR: 129858
664 		 */
665 		{T_DIRECT, SIP_MEDIA_FIXED, "IFS", "FC2/SATA-R*",
666 		 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
667 	},
668 	{
669 		/*
670 		 * Samsung YP-U3 mp3-player
671 		 * PR: 125398
672 		 */
673 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "Samsung", "YP-U3",
674 		 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
675 	},
676 	{
677 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "Netac", "OnlyDisk*",
678 		 "2000"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
679 	},
680 	{
681 		/*
682 		 * Sony Cyber-Shot DSC cameras
683 		 * PR: usb/137035
684 		 */
685 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "Sony", "Sony DSC", "*"},
686 		/*quirks*/ DA_Q_NO_SYNC_CACHE | DA_Q_NO_PREVENT
687 	},
688 	{
689 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "Kingston", "DataTraveler G3",
690 		 "1.00"}, /*quirks*/ DA_Q_NO_PREVENT
691 	},
692 	{
693 		/* At least several Transcent USB sticks lie on RC16. */
694 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "JetFlash", "Transcend*",
695 		 "*"}, /*quirks*/ DA_Q_NO_RC16
696 	},
697 	/* ATA/SATA devices over SAS/USB/... */
698 	{
699 		/* Hitachi Advanced Format (4k) drives */
700 		{ T_DIRECT, SIP_MEDIA_FIXED, "Hitachi", "H??????????E3*", "*" },
701 		/*quirks*/DA_Q_4K
702 	},
703 	{
704 		/* Samsung Advanced Format (4k) drives */
705 		{ T_DIRECT, SIP_MEDIA_FIXED, "ATA", "SAMSUNG HD155UI*", "*" },
706 		/*quirks*/DA_Q_4K
707 	},
708 	{
709 		/* Samsung Advanced Format (4k) drives */
710 		{ T_DIRECT, SIP_MEDIA_FIXED, "SAMSUNG", "HD155UI*", "*" },
711 		/*quirks*/DA_Q_4K
712 	},
713 	{
714 		/* Samsung Advanced Format (4k) drives */
715 		{ T_DIRECT, SIP_MEDIA_FIXED, "ATA", "SAMSUNG HD204UI*", "*" },
716 		/*quirks*/DA_Q_4K
717 	},
718 	{
719 		/* Samsung Advanced Format (4k) drives */
720 		{ T_DIRECT, SIP_MEDIA_FIXED, "SAMSUNG", "HD204UI*", "*" },
721 		/*quirks*/DA_Q_4K
722 	},
723 	{
724 		/* Seagate Barracuda Green Advanced Format (4k) drives */
725 		{ T_DIRECT, SIP_MEDIA_FIXED, "ATA", "ST????DL*", "*" },
726 		/*quirks*/DA_Q_4K
727 	},
728 	{
729 		/* Seagate Barracuda Green Advanced Format (4k) drives */
730 		{ T_DIRECT, SIP_MEDIA_FIXED, "ST????DL", "*", "*" },
731 		/*quirks*/DA_Q_4K
732 	},
733 	{
734 		/* Seagate Barracuda Green Advanced Format (4k) drives */
735 		{ T_DIRECT, SIP_MEDIA_FIXED, "ATA", "ST???DM*", "*" },
736 		/*quirks*/DA_Q_4K
737 	},
738 	{
739 		/* Seagate Barracuda Green Advanced Format (4k) drives */
740 		{ T_DIRECT, SIP_MEDIA_FIXED, "ST???DM*", "*", "*" },
741 		/*quirks*/DA_Q_4K
742 	},
743 	{
744 		/* Seagate Barracuda Green Advanced Format (4k) drives */
745 		{ T_DIRECT, SIP_MEDIA_FIXED, "ATA", "ST????DM*", "*" },
746 		/*quirks*/DA_Q_4K
747 	},
748 	{
749 		/* Seagate Barracuda Green Advanced Format (4k) drives */
750 		{ T_DIRECT, SIP_MEDIA_FIXED, "ST????DM", "*", "*" },
751 		/*quirks*/DA_Q_4K
752 	},
753 	{
754 		/* Seagate Momentus Advanced Format (4k) drives */
755 		{ T_DIRECT, SIP_MEDIA_FIXED, "ATA", "ST9500423AS*", "*" },
756 		/*quirks*/DA_Q_4K
757 	},
758 	{
759 		/* Seagate Momentus Advanced Format (4k) drives */
760 		{ T_DIRECT, SIP_MEDIA_FIXED, "ST950042", "3AS*", "*" },
761 		/*quirks*/DA_Q_4K
762 	},
763 	{
764 		/* Seagate Momentus Advanced Format (4k) drives */
765 		{ T_DIRECT, SIP_MEDIA_FIXED, "ATA", "ST9500424AS*", "*" },
766 		/*quirks*/DA_Q_4K
767 	},
768 	{
769 		/* Seagate Momentus Advanced Format (4k) drives */
770 		{ T_DIRECT, SIP_MEDIA_FIXED, "ST950042", "4AS*", "*" },
771 		/*quirks*/DA_Q_4K
772 	},
773 	{
774 		/* Seagate Momentus Advanced Format (4k) drives */
775 		{ T_DIRECT, SIP_MEDIA_FIXED, "ATA", "ST9640423AS*", "*" },
776 		/*quirks*/DA_Q_4K
777 	},
778 	{
779 		/* Seagate Momentus Advanced Format (4k) drives */
780 		{ T_DIRECT, SIP_MEDIA_FIXED, "ST964042", "3AS*", "*" },
781 		/*quirks*/DA_Q_4K
782 	},
783 	{
784 		/* Seagate Momentus Advanced Format (4k) drives */
785 		{ T_DIRECT, SIP_MEDIA_FIXED, "ATA", "ST9640424AS*", "*" },
786 		/*quirks*/DA_Q_4K
787 	},
788 	{
789 		/* Seagate Momentus Advanced Format (4k) drives */
790 		{ T_DIRECT, SIP_MEDIA_FIXED, "ST964042", "4AS*", "*" },
791 		/*quirks*/DA_Q_4K
792 	},
793 	{
794 		/* Seagate Momentus Advanced Format (4k) drives */
795 		{ T_DIRECT, SIP_MEDIA_FIXED, "ATA", "ST9750420AS*", "*" },
796 		/*quirks*/DA_Q_4K
797 	},
798 	{
799 		/* Seagate Momentus Advanced Format (4k) drives */
800 		{ T_DIRECT, SIP_MEDIA_FIXED, "ST975042", "0AS*", "*" },
801 		/*quirks*/DA_Q_4K
802 	},
803 	{
804 		/* Seagate Momentus Advanced Format (4k) drives */
805 		{ T_DIRECT, SIP_MEDIA_FIXED, "ATA", "ST9750422AS*", "*" },
806 		/*quirks*/DA_Q_4K
807 	},
808 	{
809 		/* Seagate Momentus Advanced Format (4k) drives */
810 		{ T_DIRECT, SIP_MEDIA_FIXED, "ST975042", "2AS*", "*" },
811 		/*quirks*/DA_Q_4K
812 	},
813 	{
814 		/* Seagate Momentus Advanced Format (4k) drives */
815 		{ T_DIRECT, SIP_MEDIA_FIXED, "ATA", "ST9750423AS*", "*" },
816 		/*quirks*/DA_Q_4K
817 	},
818 	{
819 		/* Seagate Momentus Advanced Format (4k) drives */
820 		{ T_DIRECT, SIP_MEDIA_FIXED, "ST975042", "3AS*", "*" },
821 		/*quirks*/DA_Q_4K
822 	},
823 	{
824 		/* Seagate Momentus Thin Advanced Format (4k) drives */
825 		{ T_DIRECT, SIP_MEDIA_FIXED, "ATA", "ST???LT*", "*" },
826 		/*quirks*/DA_Q_4K
827 	},
828 	{
829 		/* Seagate Momentus Thin Advanced Format (4k) drives */
830 		{ T_DIRECT, SIP_MEDIA_FIXED, "ST???LT*", "*", "*" },
831 		/*quirks*/DA_Q_4K
832 	},
833 	{
834 		/* WDC Caviar Green Advanced Format (4k) drives */
835 		{ T_DIRECT, SIP_MEDIA_FIXED, "ATA", "WDC WD????RS*", "*" },
836 		/*quirks*/DA_Q_4K
837 	},
838 	{
839 		/* WDC Caviar Green Advanced Format (4k) drives */
840 		{ T_DIRECT, SIP_MEDIA_FIXED, "WDC WD??", "??RS*", "*" },
841 		/*quirks*/DA_Q_4K
842 	},
843 	{
844 		/* WDC Caviar Green Advanced Format (4k) drives */
845 		{ T_DIRECT, SIP_MEDIA_FIXED, "ATA", "WDC WD????RX*", "*" },
846 		/*quirks*/DA_Q_4K
847 	},
848 	{
849 		/* WDC Caviar Green Advanced Format (4k) drives */
850 		{ T_DIRECT, SIP_MEDIA_FIXED, "WDC WD??", "??RX*", "*" },
851 		/*quirks*/DA_Q_4K
852 	},
853 	{
854 		/* WDC Caviar Green Advanced Format (4k) drives */
855 		{ T_DIRECT, SIP_MEDIA_FIXED, "ATA", "WDC WD??????RS*", "*" },
856 		/*quirks*/DA_Q_4K
857 	},
858 	{
859 		/* WDC Caviar Green Advanced Format (4k) drives */
860 		{ T_DIRECT, SIP_MEDIA_FIXED, "WDC WD??", "????RS*", "*" },
861 		/*quirks*/DA_Q_4K
862 	},
863 	{
864 		/* WDC Caviar Green Advanced Format (4k) drives */
865 		{ T_DIRECT, SIP_MEDIA_FIXED, "ATA", "WDC WD??????RX*", "*" },
866 		/*quirks*/DA_Q_4K
867 	},
868 	{
869 		/* WDC Caviar Green Advanced Format (4k) drives */
870 		{ T_DIRECT, SIP_MEDIA_FIXED, "WDC WD??", "????RX*", "*" },
871 		/*quirks*/DA_Q_4K
872 	},
873 	{
874 		/* WDC Scorpio Black Advanced Format (4k) drives */
875 		{ T_DIRECT, SIP_MEDIA_FIXED, "ATA", "WDC WD???PKT*", "*" },
876 		/*quirks*/DA_Q_4K
877 	},
878 	{
879 		/* WDC Scorpio Black Advanced Format (4k) drives */
880 		{ T_DIRECT, SIP_MEDIA_FIXED, "WDC WD??", "?PKT*", "*" },
881 		/*quirks*/DA_Q_4K
882 	},
883 	{
884 		/* WDC Scorpio Black Advanced Format (4k) drives */
885 		{ T_DIRECT, SIP_MEDIA_FIXED, "ATA", "WDC WD?????PKT*", "*" },
886 		/*quirks*/DA_Q_4K
887 	},
888 	{
889 		/* WDC Scorpio Black Advanced Format (4k) drives */
890 		{ T_DIRECT, SIP_MEDIA_FIXED, "WDC WD??", "???PKT*", "*" },
891 		/*quirks*/DA_Q_4K
892 	},
893 	{
894 		/* WDC Scorpio Blue Advanced Format (4k) drives */
895 		{ T_DIRECT, SIP_MEDIA_FIXED, "ATA", "WDC WD???PVT*", "*" },
896 		/*quirks*/DA_Q_4K
897 	},
898 	{
899 		/* WDC Scorpio Blue Advanced Format (4k) drives */
900 		{ T_DIRECT, SIP_MEDIA_FIXED, "WDC WD??", "?PVT*", "*" },
901 		/*quirks*/DA_Q_4K
902 	},
903 	{
904 		/* WDC Scorpio Blue Advanced Format (4k) drives */
905 		{ T_DIRECT, SIP_MEDIA_FIXED, "ATA", "WDC WD?????PVT*", "*" },
906 		/*quirks*/DA_Q_4K
907 	},
908 	{
909 		/* WDC Scorpio Blue Advanced Format (4k) drives */
910 		{ T_DIRECT, SIP_MEDIA_FIXED, "WDC WD??", "???PVT*", "*" },
911 		/*quirks*/DA_Q_4K
912 	},
913 	{
914 		/*
915 		 * Olympus FE-210 camera
916 		 */
917 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "OLYMPUS", "FE210*",
918 		"*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
919 	},
920 	{
921 		/*
922 		 * LG UP3S MP3 player
923 		 */
924 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "LG", "UP3S",
925 		"*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
926 	},
927 	{
928 		/*
929 		 * Laser MP3-2GA13 MP3 player
930 		 */
931 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "USB 2.0", "(HS) Flash Disk",
932 		"*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
933 	},
934 	{
935 		/*
936 		 * LaCie external 250GB Hard drive des by Porsche
937 		 * Submitted by: Ben Stuyts <ben@altesco.nl>
938 		 * PR: 121474
939 		 */
940 		{T_DIRECT, SIP_MEDIA_FIXED, "SAMSUNG", "HM250JI", "*"},
941 		/*quirks*/ DA_Q_NO_SYNC_CACHE
942 	},
943 	/* SATA SSDs */
944 	{
945 		/*
946 		 * Corsair Force 2 SSDs
947 		 * 4k optimised & trim only works in 4k requests + 4k aligned
948 		 */
949 		{ T_DIRECT, SIP_MEDIA_FIXED, "ATA", "Corsair CSSD-F*", "*" },
950 		/*quirks*/DA_Q_4K
951 	},
952 	{
953 		/*
954 		 * Corsair Force 3 SSDs
955 		 * 4k optimised & trim only works in 4k requests + 4k aligned
956 		 */
957 		{ T_DIRECT, SIP_MEDIA_FIXED, "ATA", "Corsair Force 3*", "*" },
958 		/*quirks*/DA_Q_4K
959 	},
960         {
961 		/*
962 		 * Corsair Neutron GTX SSDs
963 		 * 4k optimised & trim only works in 4k requests + 4k aligned
964 		 */
965 		{ T_DIRECT, SIP_MEDIA_FIXED, "*", "Corsair Neutron GTX*", "*" },
966 		/*quirks*/DA_Q_4K
967 	},
968 	{
969 		/*
970 		 * Corsair Force GT SSDs
971 		 * 4k optimised & trim only works in 4k requests + 4k aligned
972 		 */
973 		{ T_DIRECT, SIP_MEDIA_FIXED, "ATA", "Corsair Force GT*", "*" },
974 		/*quirks*/DA_Q_4K
975 	},
976 	{
977 		/*
978 		 * Crucial M4 SSDs
979 		 * 4k optimised & trim only works in 4k requests + 4k aligned
980 		 */
981 		{ T_DIRECT, SIP_MEDIA_FIXED, "ATA", "M4-CT???M4SSD2*", "*" },
982 		/*quirks*/DA_Q_4K
983 	},
984 	{
985 		/*
986 		 * Crucial RealSSD C300 SSDs
987 		 * 4k optimised
988 		 */
989 		{ T_DIRECT, SIP_MEDIA_FIXED, "ATA", "C300-CTFDDAC???MAG*",
990 		"*" }, /*quirks*/DA_Q_4K
991 	},
992 	{
993 		/*
994 		 * Intel 320 Series SSDs
995 		 * 4k optimised & trim only works in 4k requests + 4k aligned
996 		 */
997 		{ T_DIRECT, SIP_MEDIA_FIXED, "ATA", "INTEL SSDSA2CW*", "*" },
998 		/*quirks*/DA_Q_4K
999 	},
1000 	{
1001 		/*
1002 		 * Intel 330 Series SSDs
1003 		 * 4k optimised & trim only works in 4k requests + 4k aligned
1004 		 */
1005 		{ T_DIRECT, SIP_MEDIA_FIXED, "ATA", "INTEL SSDSC2CT*", "*" },
1006 		/*quirks*/DA_Q_4K
1007 	},
1008 	{
1009 		/*
1010 		 * Intel 510 Series SSDs
1011 		 * 4k optimised & trim only works in 4k requests + 4k aligned
1012 		 */
1013 		{ T_DIRECT, SIP_MEDIA_FIXED, "ATA", "INTEL SSDSC2MH*", "*" },
1014 		/*quirks*/DA_Q_4K
1015 	},
1016 	{
1017 		/*
1018 		 * Intel 520 Series SSDs
1019 		 * 4k optimised & trim only works in 4k requests + 4k aligned
1020 		 */
1021 		{ T_DIRECT, SIP_MEDIA_FIXED, "ATA", "INTEL SSDSC2BW*", "*" },
1022 		/*quirks*/DA_Q_4K
1023 	},
1024 	{
1025 		/*
1026 		 * Intel X25-M Series SSDs
1027 		 * 4k optimised & trim only works in 4k requests + 4k aligned
1028 		 */
1029 		{ T_DIRECT, SIP_MEDIA_FIXED, "ATA", "INTEL SSDSA2M*", "*" },
1030 		/*quirks*/DA_Q_4K
1031 	},
1032 	{
1033 		/*
1034 		 * Kingston E100 Series SSDs
1035 		 * 4k optimised & trim only works in 4k requests + 4k aligned
1036 		 */
1037 		{ T_DIRECT, SIP_MEDIA_FIXED, "ATA", "KINGSTON SE100S3*", "*" },
1038 		/*quirks*/DA_Q_4K
1039 	},
1040 	{
1041 		/*
1042 		 * Kingston HyperX 3k SSDs
1043 		 * 4k optimised & trim only works in 4k requests + 4k aligned
1044 		 */
1045 		{ T_DIRECT, SIP_MEDIA_FIXED, "ATA", "KINGSTON SH103S3*", "*" },
1046 		/*quirks*/DA_Q_4K
1047 	},
1048 	{
1049 		/*
1050 		 * Marvell SSDs (entry taken from OpenSolaris)
1051 		 * 4k optimised & trim only works in 4k requests + 4k aligned
1052 		 */
1053 		{ T_DIRECT, SIP_MEDIA_FIXED, "ATA", "MARVELL SD88SA02*", "*" },
1054 		/*quirks*/DA_Q_4K
1055 	},
1056 	{
1057 		/*
1058 		 * OCZ Agility 2 SSDs
1059 		 * 4k optimised & trim only works in 4k requests + 4k aligned
1060 		 */
1061 		{ T_DIRECT, SIP_MEDIA_FIXED, "*", "OCZ-AGILITY2*", "*" },
1062 		/*quirks*/DA_Q_4K
1063 	},
1064 	{
1065 		/*
1066 		 * OCZ Agility 3 SSDs
1067 		 * 4k optimised & trim only works in 4k requests + 4k aligned
1068 		 */
1069 		{ T_DIRECT, SIP_MEDIA_FIXED, "ATA", "OCZ-AGILITY3*", "*" },
1070 		/*quirks*/DA_Q_4K
1071 	},
1072 	{
1073 		/*
1074 		 * OCZ Deneva R Series SSDs
1075 		 * 4k optimised & trim only works in 4k requests + 4k aligned
1076 		 */
1077 		{ T_DIRECT, SIP_MEDIA_FIXED, "ATA", "DENRSTE251M45*", "*" },
1078 		/*quirks*/DA_Q_4K
1079 	},
1080 	{
1081 		/*
1082 		 * OCZ Vertex 2 SSDs (inc pro series)
1083 		 * 4k optimised & trim only works in 4k requests + 4k aligned
1084 		 */
1085 		{ T_DIRECT, SIP_MEDIA_FIXED, "ATA", "OCZ?VERTEX2*", "*" },
1086 		/*quirks*/DA_Q_4K
1087 	},
1088 	{
1089 		/*
1090 		 * OCZ Vertex 3 SSDs
1091 		 * 4k optimised & trim only works in 4k requests + 4k aligned
1092 		 */
1093 		{ T_DIRECT, SIP_MEDIA_FIXED, "ATA", "OCZ-VERTEX3*", "*" },
1094 		/*quirks*/DA_Q_4K
1095 	},
1096 	{
1097 		/*
1098 		 * OCZ Vertex 4 SSDs
1099 		 * 4k optimised & trim only works in 4k requests + 4k aligned
1100 		 */
1101 		{ T_DIRECT, SIP_MEDIA_FIXED, "ATA", "OCZ-VERTEX4*", "*" },
1102 		/*quirks*/DA_Q_4K
1103 	},
1104 	{
1105 		/*
1106 		 * Samsung 830 Series SSDs
1107 		 * 4k optimised & trim only works in 4k requests + 4k aligned
1108 		 */
1109 		{ T_DIRECT, SIP_MEDIA_FIXED, "ATA", "SAMSUNG SSD 830 Series*", "*" },
1110 		/*quirks*/DA_Q_4K
1111 	},
1112 	{
1113 		/*
1114 		 * SuperTalent TeraDrive CT SSDs
1115 		 * 4k optimised & trim only works in 4k requests + 4k aligned
1116 		 */
1117 		{ T_DIRECT, SIP_MEDIA_FIXED, "ATA", "FTM??CT25H*", "*" },
1118 		/*quirks*/DA_Q_4K
1119 	},
1120 	{
1121 		/*
1122 		 * XceedIOPS SATA SSDs
1123 		 * 4k optimised
1124 		 */
1125 		{ T_DIRECT, SIP_MEDIA_FIXED, "ATA", "SG9XCS2D*", "*" },
1126 		/*quirks*/DA_Q_4K
1127 	},
1128 };
1129 
1130 static	disk_strategy_t	dastrategy;
1131 static	dumper_t	dadump;
1132 static	periph_init_t	dainit;
1133 static	void		daasync(void *callback_arg, u_int32_t code,
1134 				struct cam_path *path, void *arg);
1135 static	void		dasysctlinit(void *context, int pending);
1136 static	int		dacmdsizesysctl(SYSCTL_HANDLER_ARGS);
1137 static	int		dadeletemethodsysctl(SYSCTL_HANDLER_ARGS);
1138 static	int		dadeletemaxsysctl(SYSCTL_HANDLER_ARGS);
1139 static	void		dadeletemethodset(struct da_softc *softc,
1140 					  da_delete_methods delete_method);
1141 static	off_t		dadeletemaxsize(struct da_softc *softc,
1142 					da_delete_methods delete_method);
1143 static	void		dadeletemethodchoose(struct da_softc *softc,
1144 					     da_delete_methods default_method);
1145 static	void		daprobedone(struct cam_periph *periph, union ccb *ccb);
1146 
1147 static	periph_ctor_t	daregister;
1148 static	periph_dtor_t	dacleanup;
1149 static	periph_start_t	dastart;
1150 static	periph_oninv_t	daoninvalidate;
1151 static	void		dadone(struct cam_periph *periph,
1152 			       union ccb *done_ccb);
1153 static  int		daerror(union ccb *ccb, u_int32_t cam_flags,
1154 				u_int32_t sense_flags);
1155 static void		daprevent(struct cam_periph *periph, int action);
1156 static void		dareprobe(struct cam_periph *periph);
1157 static void		dasetgeom(struct cam_periph *periph, uint32_t block_len,
1158 				  uint64_t maxsector,
1159 				  struct scsi_read_capacity_data_long *rcaplong,
1160 				  size_t rcap_size);
1161 static timeout_t	dasendorderedtag;
1162 static void		dashutdown(void *arg, int howto);
1163 static timeout_t	damediapoll;
1164 
1165 #ifndef	DA_DEFAULT_POLL_PERIOD
1166 #define	DA_DEFAULT_POLL_PERIOD	3
1167 #endif
1168 
1169 #ifndef DA_DEFAULT_TIMEOUT
1170 #define DA_DEFAULT_TIMEOUT 60	/* Timeout in seconds */
1171 #endif
1172 
1173 #ifndef	DA_DEFAULT_RETRY
1174 #define	DA_DEFAULT_RETRY	4
1175 #endif
1176 
1177 #ifndef	DA_DEFAULT_SEND_ORDERED
1178 #define	DA_DEFAULT_SEND_ORDERED	1
1179 #endif
1180 
1181 #define DA_SIO (softc->sort_io_queue >= 0 ? \
1182     softc->sort_io_queue : cam_sort_io_queues)
1183 
1184 static int da_poll_period = DA_DEFAULT_POLL_PERIOD;
1185 static int da_retry_count = DA_DEFAULT_RETRY;
1186 static int da_default_timeout = DA_DEFAULT_TIMEOUT;
1187 static int da_send_ordered = DA_DEFAULT_SEND_ORDERED;
1188 
1189 static SYSCTL_NODE(_kern_cam, OID_AUTO, da, CTLFLAG_RD, 0,
1190             "CAM Direct Access Disk driver");
1191 SYSCTL_INT(_kern_cam_da, OID_AUTO, poll_period, CTLFLAG_RW,
1192            &da_poll_period, 0, "Media polling period in seconds");
1193 TUNABLE_INT("kern.cam.da.poll_period", &da_poll_period);
1194 SYSCTL_INT(_kern_cam_da, OID_AUTO, retry_count, CTLFLAG_RW,
1195            &da_retry_count, 0, "Normal I/O retry count");
1196 TUNABLE_INT("kern.cam.da.retry_count", &da_retry_count);
1197 SYSCTL_INT(_kern_cam_da, OID_AUTO, default_timeout, CTLFLAG_RW,
1198            &da_default_timeout, 0, "Normal I/O timeout (in seconds)");
1199 TUNABLE_INT("kern.cam.da.default_timeout", &da_default_timeout);
1200 SYSCTL_INT(_kern_cam_da, OID_AUTO, send_ordered, CTLFLAG_RW,
1201            &da_send_ordered, 0, "Send Ordered Tags");
1202 TUNABLE_INT("kern.cam.da.send_ordered", &da_send_ordered);
1203 
1204 /*
1205  * DA_ORDEREDTAG_INTERVAL determines how often, relative
1206  * to the default timeout, we check to see whether an ordered
1207  * tagged transaction is appropriate to prevent simple tag
1208  * starvation.  Since we'd like to ensure that there is at least
1209  * 1/2 of the timeout length left for a starved transaction to
1210  * complete after we've sent an ordered tag, we must poll at least
1211  * four times in every timeout period.  This takes care of the worst
1212  * case where a starved transaction starts during an interval that
1213  * meets the requirement "don't send an ordered tag" test so it takes
1214  * us two intervals to determine that a tag must be sent.
1215  */
1216 #ifndef DA_ORDEREDTAG_INTERVAL
1217 #define DA_ORDEREDTAG_INTERVAL 4
1218 #endif
1219 
1220 static struct periph_driver dadriver =
1221 {
1222 	dainit, "da",
1223 	TAILQ_HEAD_INITIALIZER(dadriver.units), /* generation */ 0
1224 };
1225 
1226 PERIPHDRIVER_DECLARE(da, dadriver);
1227 
1228 static MALLOC_DEFINE(M_SCSIDA, "scsi_da", "scsi_da buffers");
1229 
1230 static int
1231 daopen(struct disk *dp)
1232 {
1233 	struct cam_periph *periph;
1234 	struct da_softc *softc;
1235 	int error;
1236 
1237 	periph = (struct cam_periph *)dp->d_drv1;
1238 	if (cam_periph_acquire(periph) != CAM_REQ_CMP) {
1239 		return (ENXIO);
1240 	}
1241 
1242 	cam_periph_lock(periph);
1243 	if ((error = cam_periph_hold(periph, PRIBIO|PCATCH)) != 0) {
1244 		cam_periph_unlock(periph);
1245 		cam_periph_release(periph);
1246 		return (error);
1247 	}
1248 
1249 	CAM_DEBUG(periph->path, CAM_DEBUG_TRACE | CAM_DEBUG_PERIPH,
1250 	    ("daopen\n"));
1251 
1252 	softc = (struct da_softc *)periph->softc;
1253 	dareprobe(periph);
1254 
1255 	/* Wait for the disk size update.  */
1256 	error = cam_periph_sleep(periph, &softc->disk->d_mediasize, PRIBIO,
1257 	    "dareprobe", 0);
1258 	if (error != 0)
1259 		xpt_print(periph->path, "unable to retrieve capacity data\n");
1260 
1261 	if (periph->flags & CAM_PERIPH_INVALID)
1262 		error = ENXIO;
1263 
1264 	if (error == 0 && (softc->flags & DA_FLAG_PACK_REMOVABLE) != 0 &&
1265 	    (softc->quirks & DA_Q_NO_PREVENT) == 0)
1266 		daprevent(periph, PR_PREVENT);
1267 
1268 	if (error == 0) {
1269 		softc->flags &= ~DA_FLAG_PACK_INVALID;
1270 		softc->flags |= DA_FLAG_OPEN;
1271 	}
1272 
1273 	cam_periph_unhold(periph);
1274 	cam_periph_unlock(periph);
1275 
1276 	if (error != 0)
1277 		cam_periph_release(periph);
1278 
1279 	return (error);
1280 }
1281 
1282 static int
1283 daclose(struct disk *dp)
1284 {
1285 	struct	cam_periph *periph;
1286 	struct	da_softc *softc;
1287 	union	ccb *ccb;
1288 	int error;
1289 
1290 	periph = (struct cam_periph *)dp->d_drv1;
1291 	softc = (struct da_softc *)periph->softc;
1292 	cam_periph_lock(periph);
1293 	CAM_DEBUG(periph->path, CAM_DEBUG_TRACE | CAM_DEBUG_PERIPH,
1294 	    ("daclose\n"));
1295 
1296 	if (cam_periph_hold(periph, PRIBIO) == 0) {
1297 
1298 		/* Flush disk cache. */
1299 		if ((softc->flags & DA_FLAG_DIRTY) != 0 &&
1300 		    (softc->quirks & DA_Q_NO_SYNC_CACHE) == 0 &&
1301 		    (softc->flags & DA_FLAG_PACK_INVALID) == 0) {
1302 			ccb = cam_periph_getccb(periph, CAM_PRIORITY_NORMAL);
1303 			scsi_synchronize_cache(&ccb->csio, /*retries*/1,
1304 			    /*cbfcnp*/dadone, MSG_SIMPLE_Q_TAG,
1305 			    /*begin_lba*/0, /*lb_count*/0, SSD_FULL_SIZE,
1306 			    5 * 60 * 1000);
1307 			error = cam_periph_runccb(ccb, daerror, /*cam_flags*/0,
1308 			    /*sense_flags*/SF_RETRY_UA | SF_QUIET_IR,
1309 			    softc->disk->d_devstat);
1310 			if (error == 0)
1311 				softc->flags &= ~DA_FLAG_DIRTY;
1312 			xpt_release_ccb(ccb);
1313 		}
1314 
1315 		/* Allow medium removal. */
1316 		if ((softc->flags & DA_FLAG_PACK_REMOVABLE) != 0 &&
1317 		    (softc->quirks & DA_Q_NO_PREVENT) == 0)
1318 			daprevent(periph, PR_ALLOW);
1319 
1320 		cam_periph_unhold(periph);
1321 	}
1322 
1323 	/*
1324 	 * If we've got removeable media, mark the blocksize as
1325 	 * unavailable, since it could change when new media is
1326 	 * inserted.
1327 	 */
1328 	if ((softc->flags & DA_FLAG_PACK_REMOVABLE) != 0)
1329 		softc->disk->d_devstat->flags |= DEVSTAT_BS_UNAVAILABLE;
1330 
1331 	softc->flags &= ~DA_FLAG_OPEN;
1332 	while (softc->refcount != 0)
1333 		cam_periph_sleep(periph, &softc->refcount, PRIBIO, "daclose", 1);
1334 	cam_periph_unlock(periph);
1335 	cam_periph_release(periph);
1336 	return (0);
1337 }
1338 
1339 static void
1340 daschedule(struct cam_periph *periph)
1341 {
1342 	struct da_softc *softc = (struct da_softc *)periph->softc;
1343 
1344 	if (softc->state != DA_STATE_NORMAL)
1345 		return;
1346 
1347 	/* Check if we have more work to do. */
1348 	if (bioq_first(&softc->bio_queue) ||
1349 	    (!softc->delete_running && bioq_first(&softc->delete_queue)) ||
1350 	    softc->tur) {
1351 		xpt_schedule(periph, CAM_PRIORITY_NORMAL);
1352 	}
1353 }
1354 
1355 /*
1356  * Actually translate the requested transfer into one the physical driver
1357  * can understand.  The transfer is described by a buf and will include
1358  * only one physical transfer.
1359  */
1360 static void
1361 dastrategy(struct bio *bp)
1362 {
1363 	struct cam_periph *periph;
1364 	struct da_softc *softc;
1365 
1366 	periph = (struct cam_periph *)bp->bio_disk->d_drv1;
1367 	softc = (struct da_softc *)periph->softc;
1368 
1369 	cam_periph_lock(periph);
1370 
1371 	/*
1372 	 * If the device has been made invalid, error out
1373 	 */
1374 	if ((softc->flags & DA_FLAG_PACK_INVALID)) {
1375 		cam_periph_unlock(periph);
1376 		biofinish(bp, NULL, ENXIO);
1377 		return;
1378 	}
1379 
1380 	CAM_DEBUG(periph->path, CAM_DEBUG_TRACE, ("dastrategy(%p)\n", bp));
1381 
1382 	/*
1383 	 * Place it in the queue of disk activities for this disk
1384 	 */
1385 	if (bp->bio_cmd == BIO_DELETE) {
1386 		if (DA_SIO)
1387 			bioq_disksort(&softc->delete_queue, bp);
1388 		else
1389 			bioq_insert_tail(&softc->delete_queue, bp);
1390 	} else if (DA_SIO) {
1391 		bioq_disksort(&softc->bio_queue, bp);
1392 	} else {
1393 		bioq_insert_tail(&softc->bio_queue, bp);
1394 	}
1395 
1396 	/*
1397 	 * Schedule ourselves for performing the work.
1398 	 */
1399 	daschedule(periph);
1400 	cam_periph_unlock(periph);
1401 
1402 	return;
1403 }
1404 
1405 static int
1406 dadump(void *arg, void *virtual, vm_offset_t physical, off_t offset, size_t length)
1407 {
1408 	struct	    cam_periph *periph;
1409 	struct	    da_softc *softc;
1410 	u_int	    secsize;
1411 	struct	    ccb_scsiio csio;
1412 	struct	    disk *dp;
1413 	int	    error = 0;
1414 
1415 	dp = arg;
1416 	periph = dp->d_drv1;
1417 	softc = (struct da_softc *)periph->softc;
1418 	cam_periph_lock(periph);
1419 	secsize = softc->params.secsize;
1420 
1421 	if ((softc->flags & DA_FLAG_PACK_INVALID) != 0) {
1422 		cam_periph_unlock(periph);
1423 		return (ENXIO);
1424 	}
1425 
1426 	if (length > 0) {
1427 		xpt_setup_ccb(&csio.ccb_h, periph->path, CAM_PRIORITY_NORMAL);
1428 		csio.ccb_h.ccb_state = DA_CCB_DUMP;
1429 		scsi_read_write(&csio,
1430 				/*retries*/0,
1431 				dadone,
1432 				MSG_ORDERED_Q_TAG,
1433 				/*read*/SCSI_RW_WRITE,
1434 				/*byte2*/0,
1435 				/*minimum_cmd_size*/ softc->minimum_cmd_size,
1436 				offset / secsize,
1437 				length / secsize,
1438 				/*data_ptr*/(u_int8_t *) virtual,
1439 				/*dxfer_len*/length,
1440 				/*sense_len*/SSD_FULL_SIZE,
1441 				da_default_timeout * 1000);
1442 		xpt_polled_action((union ccb *)&csio);
1443 
1444 		error = cam_periph_error((union ccb *)&csio,
1445 		    0, SF_NO_RECOVERY | SF_NO_RETRY, NULL);
1446 		if ((csio.ccb_h.status & CAM_DEV_QFRZN) != 0)
1447 			cam_release_devq(csio.ccb_h.path, /*relsim_flags*/0,
1448 			    /*reduction*/0, /*timeout*/0, /*getcount_only*/0);
1449 		if (error != 0)
1450 			printf("Aborting dump due to I/O error.\n");
1451 		cam_periph_unlock(periph);
1452 		return (error);
1453 	}
1454 
1455 	/*
1456 	 * Sync the disk cache contents to the physical media.
1457 	 */
1458 	if ((softc->quirks & DA_Q_NO_SYNC_CACHE) == 0) {
1459 
1460 		xpt_setup_ccb(&csio.ccb_h, periph->path, CAM_PRIORITY_NORMAL);
1461 		csio.ccb_h.ccb_state = DA_CCB_DUMP;
1462 		scsi_synchronize_cache(&csio,
1463 				       /*retries*/0,
1464 				       /*cbfcnp*/dadone,
1465 				       MSG_SIMPLE_Q_TAG,
1466 				       /*begin_lba*/0,/* Cover the whole disk */
1467 				       /*lb_count*/0,
1468 				       SSD_FULL_SIZE,
1469 				       5 * 60 * 1000);
1470 		xpt_polled_action((union ccb *)&csio);
1471 
1472 		error = cam_periph_error((union ccb *)&csio,
1473 		    0, SF_NO_RECOVERY | SF_NO_RETRY | SF_QUIET_IR, NULL);
1474 		if ((csio.ccb_h.status & CAM_DEV_QFRZN) != 0)
1475 			cam_release_devq(csio.ccb_h.path, /*relsim_flags*/0,
1476 			    /*reduction*/0, /*timeout*/0, /*getcount_only*/0);
1477 		if (error != 0)
1478 			xpt_print(periph->path, "Synchronize cache failed\n");
1479 	}
1480 	cam_periph_unlock(periph);
1481 	return (error);
1482 }
1483 
1484 static int
1485 dagetattr(struct bio *bp)
1486 {
1487 	int ret;
1488 	struct cam_periph *periph;
1489 
1490 	periph = (struct cam_periph *)bp->bio_disk->d_drv1;
1491 	cam_periph_lock(periph);
1492 	ret = xpt_getattr(bp->bio_data, bp->bio_length, bp->bio_attribute,
1493 	    periph->path);
1494 	cam_periph_unlock(periph);
1495 	if (ret == 0)
1496 		bp->bio_completed = bp->bio_length;
1497 	return ret;
1498 }
1499 
1500 static void
1501 dainit(void)
1502 {
1503 	cam_status status;
1504 
1505 	/*
1506 	 * Install a global async callback.  This callback will
1507 	 * receive async callbacks like "new device found".
1508 	 */
1509 	status = xpt_register_async(AC_FOUND_DEVICE, daasync, NULL, NULL);
1510 
1511 	if (status != CAM_REQ_CMP) {
1512 		printf("da: Failed to attach master async callback "
1513 		       "due to status 0x%x!\n", status);
1514 	} else if (da_send_ordered) {
1515 
1516 		/* Register our shutdown event handler */
1517 		if ((EVENTHANDLER_REGISTER(shutdown_post_sync, dashutdown,
1518 					   NULL, SHUTDOWN_PRI_DEFAULT)) == NULL)
1519 		    printf("dainit: shutdown event registration failed!\n");
1520 	}
1521 }
1522 
1523 /*
1524  * Callback from GEOM, called when it has finished cleaning up its
1525  * resources.
1526  */
1527 static void
1528 dadiskgonecb(struct disk *dp)
1529 {
1530 	struct cam_periph *periph;
1531 
1532 	periph = (struct cam_periph *)dp->d_drv1;
1533 	cam_periph_release(periph);
1534 }
1535 
1536 static void
1537 daoninvalidate(struct cam_periph *periph)
1538 {
1539 	struct da_softc *softc;
1540 
1541 	softc = (struct da_softc *)periph->softc;
1542 
1543 	/*
1544 	 * De-register any async callbacks.
1545 	 */
1546 	xpt_register_async(0, daasync, periph, periph->path);
1547 
1548 	softc->flags |= DA_FLAG_PACK_INVALID;
1549 
1550 	/*
1551 	 * Return all queued I/O with ENXIO.
1552 	 * XXX Handle any transactions queued to the card
1553 	 *     with XPT_ABORT_CCB.
1554 	 */
1555 	bioq_flush(&softc->bio_queue, NULL, ENXIO);
1556 	bioq_flush(&softc->delete_queue, NULL, ENXIO);
1557 
1558 	/*
1559 	 * Tell GEOM that we've gone away, we'll get a callback when it is
1560 	 * done cleaning up its resources.
1561 	 */
1562 	disk_gone(softc->disk);
1563 }
1564 
1565 static void
1566 dacleanup(struct cam_periph *periph)
1567 {
1568 	struct da_softc *softc;
1569 
1570 	softc = (struct da_softc *)periph->softc;
1571 
1572 	cam_periph_unlock(periph);
1573 
1574 	/*
1575 	 * If we can't free the sysctl tree, oh well...
1576 	 */
1577 	if ((softc->flags & DA_FLAG_SCTX_INIT) != 0
1578 	    && sysctl_ctx_free(&softc->sysctl_ctx) != 0) {
1579 		xpt_print(periph->path, "can't remove sysctl context\n");
1580 	}
1581 
1582 	callout_drain(&softc->mediapoll_c);
1583 	disk_destroy(softc->disk);
1584 	callout_drain(&softc->sendordered_c);
1585 	free(softc, M_DEVBUF);
1586 	cam_periph_lock(periph);
1587 }
1588 
1589 static void
1590 daasync(void *callback_arg, u_int32_t code,
1591 	struct cam_path *path, void *arg)
1592 {
1593 	struct cam_periph *periph;
1594 	struct da_softc *softc;
1595 
1596 	periph = (struct cam_periph *)callback_arg;
1597 	switch (code) {
1598 	case AC_FOUND_DEVICE:
1599 	{
1600 		struct ccb_getdev *cgd;
1601 		cam_status status;
1602 
1603 		cgd = (struct ccb_getdev *)arg;
1604 		if (cgd == NULL)
1605 			break;
1606 
1607 		if (cgd->protocol != PROTO_SCSI)
1608 			break;
1609 
1610 		if (SID_TYPE(&cgd->inq_data) != T_DIRECT
1611 		    && SID_TYPE(&cgd->inq_data) != T_RBC
1612 		    && SID_TYPE(&cgd->inq_data) != T_OPTICAL)
1613 			break;
1614 
1615 		/*
1616 		 * Allocate a peripheral instance for
1617 		 * this device and start the probe
1618 		 * process.
1619 		 */
1620 		status = cam_periph_alloc(daregister, daoninvalidate,
1621 					  dacleanup, dastart,
1622 					  "da", CAM_PERIPH_BIO,
1623 					  path, daasync,
1624 					  AC_FOUND_DEVICE, cgd);
1625 
1626 		if (status != CAM_REQ_CMP
1627 		 && status != CAM_REQ_INPROG)
1628 			printf("daasync: Unable to attach to new device "
1629 				"due to status 0x%x\n", status);
1630 		return;
1631 	}
1632 	case AC_ADVINFO_CHANGED:
1633 	{
1634 		uintptr_t buftype;
1635 
1636 		buftype = (uintptr_t)arg;
1637 		if (buftype == CDAI_TYPE_PHYS_PATH) {
1638 			struct da_softc *softc;
1639 
1640 			softc = periph->softc;
1641 			disk_attr_changed(softc->disk, "GEOM::physpath",
1642 					  M_NOWAIT);
1643 		}
1644 		break;
1645 	}
1646 	case AC_UNIT_ATTENTION:
1647 	{
1648 		union ccb *ccb;
1649 		int error_code, sense_key, asc, ascq;
1650 
1651 		softc = (struct da_softc *)periph->softc;
1652 		ccb = (union ccb *)arg;
1653 
1654 		/*
1655 		 * Handle all UNIT ATTENTIONs except our own,
1656 		 * as they will be handled by daerror().
1657 		 */
1658 		if (xpt_path_periph(ccb->ccb_h.path) != periph &&
1659 		    scsi_extract_sense_ccb(ccb,
1660 		     &error_code, &sense_key, &asc, &ascq)) {
1661 			if (asc == 0x2A && ascq == 0x09) {
1662 				xpt_print(ccb->ccb_h.path,
1663 				    "Capacity data has changed\n");
1664 				softc->flags &= ~DA_FLAG_PROBED;
1665 				dareprobe(periph);
1666 			} else if (asc == 0x28 && ascq == 0x00) {
1667 				softc->flags &= ~DA_FLAG_PROBED;
1668 				disk_media_changed(softc->disk, M_NOWAIT);
1669 			} else if (asc == 0x3F && ascq == 0x03) {
1670 				xpt_print(ccb->ccb_h.path,
1671 				    "INQUIRY data has changed\n");
1672 				softc->flags &= ~DA_FLAG_PROBED;
1673 				dareprobe(periph);
1674 			}
1675 		}
1676 		cam_periph_async(periph, code, path, arg);
1677 		break;
1678 	}
1679 	case AC_SCSI_AEN:
1680 		softc = (struct da_softc *)periph->softc;
1681 		if (!softc->tur) {
1682 			if (cam_periph_acquire(periph) == CAM_REQ_CMP) {
1683 				softc->tur = 1;
1684 				daschedule(periph);
1685 			}
1686 		}
1687 		/* FALLTHROUGH */
1688 	case AC_SENT_BDR:
1689 	case AC_BUS_RESET:
1690 	{
1691 		struct ccb_hdr *ccbh;
1692 
1693 		softc = (struct da_softc *)periph->softc;
1694 		/*
1695 		 * Don't fail on the expected unit attention
1696 		 * that will occur.
1697 		 */
1698 		softc->flags |= DA_FLAG_RETRY_UA;
1699 		LIST_FOREACH(ccbh, &softc->pending_ccbs, periph_links.le)
1700 			ccbh->ccb_state |= DA_CCB_RETRY_UA;
1701 		break;
1702 	}
1703 	default:
1704 		break;
1705 	}
1706 	cam_periph_async(periph, code, path, arg);
1707 }
1708 
1709 static void
1710 dasysctlinit(void *context, int pending)
1711 {
1712 	struct cam_periph *periph;
1713 	struct da_softc *softc;
1714 	char tmpstr[80], tmpstr2[80];
1715 	struct ccb_trans_settings cts;
1716 
1717 	periph = (struct cam_periph *)context;
1718 	/*
1719 	 * periph was held for us when this task was enqueued
1720 	 */
1721 	if (periph->flags & CAM_PERIPH_INVALID) {
1722 		cam_periph_release(periph);
1723 		return;
1724 	}
1725 
1726 	softc = (struct da_softc *)periph->softc;
1727 	snprintf(tmpstr, sizeof(tmpstr), "CAM DA unit %d", periph->unit_number);
1728 	snprintf(tmpstr2, sizeof(tmpstr2), "%d", periph->unit_number);
1729 
1730 	sysctl_ctx_init(&softc->sysctl_ctx);
1731 	softc->flags |= DA_FLAG_SCTX_INIT;
1732 	softc->sysctl_tree = SYSCTL_ADD_NODE(&softc->sysctl_ctx,
1733 		SYSCTL_STATIC_CHILDREN(_kern_cam_da), OID_AUTO, tmpstr2,
1734 		CTLFLAG_RD, 0, tmpstr);
1735 	if (softc->sysctl_tree == NULL) {
1736 		printf("dasysctlinit: unable to allocate sysctl tree\n");
1737 		cam_periph_release(periph);
1738 		return;
1739 	}
1740 
1741 	/*
1742 	 * Now register the sysctl handler, so the user can change the value on
1743 	 * the fly.
1744 	 */
1745 	SYSCTL_ADD_PROC(&softc->sysctl_ctx, SYSCTL_CHILDREN(softc->sysctl_tree),
1746 		OID_AUTO, "delete_method", CTLTYPE_STRING | CTLFLAG_RW,
1747 		softc, 0, dadeletemethodsysctl, "A",
1748 		"BIO_DELETE execution method");
1749 	SYSCTL_ADD_PROC(&softc->sysctl_ctx, SYSCTL_CHILDREN(softc->sysctl_tree),
1750 		OID_AUTO, "delete_max", CTLTYPE_U64 | CTLFLAG_RW,
1751 		softc, 0, dadeletemaxsysctl, "Q",
1752 		"Maximum BIO_DELETE size");
1753 	SYSCTL_ADD_PROC(&softc->sysctl_ctx, SYSCTL_CHILDREN(softc->sysctl_tree),
1754 		OID_AUTO, "minimum_cmd_size", CTLTYPE_INT | CTLFLAG_RW,
1755 		&softc->minimum_cmd_size, 0, dacmdsizesysctl, "I",
1756 		"Minimum CDB size");
1757 	SYSCTL_ADD_INT(&softc->sysctl_ctx, SYSCTL_CHILDREN(softc->sysctl_tree),
1758 		OID_AUTO, "sort_io_queue", CTLFLAG_RW, &softc->sort_io_queue, 0,
1759 		"Sort IO queue to try and optimise disk access patterns");
1760 
1761 	SYSCTL_ADD_INT(&softc->sysctl_ctx,
1762 		       SYSCTL_CHILDREN(softc->sysctl_tree),
1763 		       OID_AUTO,
1764 		       "error_inject",
1765 		       CTLFLAG_RW,
1766 		       &softc->error_inject,
1767 		       0,
1768 		       "error_inject leaf");
1769 
1770 
1771 	/*
1772 	 * Add some addressing info.
1773 	 */
1774 	memset(&cts, 0, sizeof (cts));
1775 	xpt_setup_ccb(&cts.ccb_h, periph->path, CAM_PRIORITY_NONE);
1776 	cts.ccb_h.func_code = XPT_GET_TRAN_SETTINGS;
1777 	cts.type = CTS_TYPE_CURRENT_SETTINGS;
1778 	cam_periph_lock(periph);
1779 	xpt_action((union ccb *)&cts);
1780 	cam_periph_unlock(periph);
1781 	if (cts.ccb_h.status != CAM_REQ_CMP) {
1782 		cam_periph_release(periph);
1783 		return;
1784 	}
1785 	if (cts.protocol == PROTO_SCSI && cts.transport == XPORT_FC) {
1786 		struct ccb_trans_settings_fc *fc = &cts.xport_specific.fc;
1787 		if (fc->valid & CTS_FC_VALID_WWPN) {
1788 			softc->wwpn = fc->wwpn;
1789 			SYSCTL_ADD_UQUAD(&softc->sysctl_ctx,
1790 			    SYSCTL_CHILDREN(softc->sysctl_tree),
1791 			    OID_AUTO, "wwpn", CTLFLAG_RD,
1792 			    &softc->wwpn, "World Wide Port Name");
1793 		}
1794 	}
1795 	cam_periph_release(periph);
1796 }
1797 
1798 static int
1799 dadeletemaxsysctl(SYSCTL_HANDLER_ARGS)
1800 {
1801 	int error;
1802 	uint64_t value;
1803 	struct da_softc *softc;
1804 
1805 	softc = (struct da_softc *)arg1;
1806 
1807 	value = softc->disk->d_delmaxsize;
1808 	error = sysctl_handle_64(oidp, &value, 0, req);
1809 	if ((error != 0) || (req->newptr == NULL))
1810 		return (error);
1811 
1812 	/* only accept values smaller than the calculated value */
1813 	if (value > dadeletemaxsize(softc, softc->delete_method)) {
1814 		return (EINVAL);
1815 	}
1816 	softc->disk->d_delmaxsize = value;
1817 
1818 	return (0);
1819 }
1820 
1821 static int
1822 dacmdsizesysctl(SYSCTL_HANDLER_ARGS)
1823 {
1824 	int error, value;
1825 
1826 	value = *(int *)arg1;
1827 
1828 	error = sysctl_handle_int(oidp, &value, 0, req);
1829 
1830 	if ((error != 0)
1831 	 || (req->newptr == NULL))
1832 		return (error);
1833 
1834 	/*
1835 	 * Acceptable values here are 6, 10, 12 or 16.
1836 	 */
1837 	if (value < 6)
1838 		value = 6;
1839 	else if ((value > 6)
1840 	      && (value <= 10))
1841 		value = 10;
1842 	else if ((value > 10)
1843 	      && (value <= 12))
1844 		value = 12;
1845 	else if (value > 12)
1846 		value = 16;
1847 
1848 	*(int *)arg1 = value;
1849 
1850 	return (0);
1851 }
1852 
1853 static void
1854 dadeletemethodset(struct da_softc *softc, da_delete_methods delete_method)
1855 {
1856 
1857 
1858 	softc->delete_method = delete_method;
1859 	softc->disk->d_delmaxsize = dadeletemaxsize(softc, delete_method);
1860 	softc->delete_func = da_delete_functions[delete_method];
1861 
1862 	if (softc->delete_method > DA_DELETE_DISABLE)
1863 		softc->disk->d_flags |= DISKFLAG_CANDELETE;
1864 	else
1865 		softc->disk->d_flags &= ~DISKFLAG_CANDELETE;
1866 }
1867 
1868 static off_t
1869 dadeletemaxsize(struct da_softc *softc, da_delete_methods delete_method)
1870 {
1871 	off_t sectors;
1872 
1873 	switch(delete_method) {
1874 	case DA_DELETE_UNMAP:
1875 		sectors = (off_t)softc->unmap_max_lba;
1876 		break;
1877 	case DA_DELETE_ATA_TRIM:
1878 		sectors = (off_t)ATA_DSM_RANGE_MAX * softc->trim_max_ranges;
1879 		break;
1880 	case DA_DELETE_WS16:
1881 		sectors = (off_t)min(softc->ws_max_blks, WS16_MAX_BLKS);
1882 		break;
1883 	case DA_DELETE_ZERO:
1884 	case DA_DELETE_WS10:
1885 		sectors = (off_t)min(softc->ws_max_blks, WS10_MAX_BLKS);
1886 		break;
1887 	default:
1888 		return 0;
1889 	}
1890 
1891 	return (off_t)softc->params.secsize *
1892 	    min(sectors, (off_t)softc->params.sectors);
1893 }
1894 
1895 static void
1896 daprobedone(struct cam_periph *periph, union ccb *ccb)
1897 {
1898 	struct da_softc *softc;
1899 
1900 	softc = (struct da_softc *)periph->softc;
1901 
1902 	dadeletemethodchoose(softc, DA_DELETE_NONE);
1903 
1904 	if (bootverbose && (softc->flags & DA_FLAG_ANNOUNCED) == 0) {
1905 		char buf[80];
1906 		int i, sep;
1907 
1908 		snprintf(buf, sizeof(buf), "Delete methods: <");
1909 		sep = 0;
1910 		for (i = DA_DELETE_MIN; i <= DA_DELETE_MAX; i++) {
1911 			if (softc->delete_available & (1 << i)) {
1912 				if (sep) {
1913 					strlcat(buf, ",", sizeof(buf));
1914 				} else {
1915 				    sep = 1;
1916 				}
1917 				strlcat(buf, da_delete_method_names[i],
1918 				    sizeof(buf));
1919 				if (i == softc->delete_method) {
1920 					strlcat(buf, "(*)", sizeof(buf));
1921 				}
1922 			}
1923 		}
1924 		if (sep == 0) {
1925 			if (softc->delete_method == DA_DELETE_NONE)
1926 				strlcat(buf, "NONE(*)", sizeof(buf));
1927 			else
1928 				strlcat(buf, "DISABLED(*)", sizeof(buf));
1929 		}
1930 		strlcat(buf, ">", sizeof(buf));
1931 		printf("%s%d: %s\n", periph->periph_name,
1932 		    periph->unit_number, buf);
1933 	}
1934 
1935 	/*
1936 	 * Since our peripheral may be invalidated by an error
1937 	 * above or an external event, we must release our CCB
1938 	 * before releasing the probe lock on the peripheral.
1939 	 * The peripheral will only go away once the last lock
1940 	 * is removed, and we need it around for the CCB release
1941 	 * operation.
1942 	 */
1943 	xpt_release_ccb(ccb);
1944 	softc->state = DA_STATE_NORMAL;
1945 	softc->flags |= DA_FLAG_PROBED;
1946 	daschedule(periph);
1947 	wakeup(&softc->disk->d_mediasize);
1948 	if ((softc->flags & DA_FLAG_ANNOUNCED) == 0) {
1949 		softc->flags |= DA_FLAG_ANNOUNCED;
1950 		cam_periph_unhold(periph);
1951 	} else
1952 		cam_periph_release_locked(periph);
1953 }
1954 
1955 static void
1956 dadeletemethodchoose(struct da_softc *softc, da_delete_methods default_method)
1957 {
1958 	int i, delete_method;
1959 
1960 	delete_method = default_method;
1961 
1962 	/*
1963 	 * Use the pre-defined order to choose the best
1964 	 * performing delete.
1965 	 */
1966 	for (i = DA_DELETE_MIN; i <= DA_DELETE_MAX; i++) {
1967 		if (softc->delete_available & (1 << i)) {
1968 			dadeletemethodset(softc, i);
1969 			return;
1970 		}
1971 	}
1972 	dadeletemethodset(softc, delete_method);
1973 }
1974 
1975 static int
1976 dadeletemethodsysctl(SYSCTL_HANDLER_ARGS)
1977 {
1978 	char buf[16];
1979 	const char *p;
1980 	struct da_softc *softc;
1981 	int i, error, methods, value;
1982 
1983 	softc = (struct da_softc *)arg1;
1984 
1985 	value = softc->delete_method;
1986 	if (value < 0 || value > DA_DELETE_MAX)
1987 		p = "UNKNOWN";
1988 	else
1989 		p = da_delete_method_names[value];
1990 	strncpy(buf, p, sizeof(buf));
1991 	error = sysctl_handle_string(oidp, buf, sizeof(buf), req);
1992 	if (error != 0 || req->newptr == NULL)
1993 		return (error);
1994 	methods = softc->delete_available | (1 << DA_DELETE_DISABLE);
1995 	for (i = 0; i <= DA_DELETE_MAX; i++) {
1996 		if (!(methods & (1 << i)) ||
1997 		    strcmp(buf, da_delete_method_names[i]) != 0)
1998 			continue;
1999 		dadeletemethodset(softc, i);
2000 		return (0);
2001 	}
2002 	return (EINVAL);
2003 }
2004 
2005 static cam_status
2006 daregister(struct cam_periph *periph, void *arg)
2007 {
2008 	struct da_softc *softc;
2009 	struct ccb_pathinq cpi;
2010 	struct ccb_getdev *cgd;
2011 	char tmpstr[80];
2012 	caddr_t match;
2013 
2014 	cgd = (struct ccb_getdev *)arg;
2015 	if (cgd == NULL) {
2016 		printf("daregister: no getdev CCB, can't register device\n");
2017 		return(CAM_REQ_CMP_ERR);
2018 	}
2019 
2020 	softc = (struct da_softc *)malloc(sizeof(*softc), M_DEVBUF,
2021 	    M_NOWAIT|M_ZERO);
2022 
2023 	if (softc == NULL) {
2024 		printf("daregister: Unable to probe new device. "
2025 		       "Unable to allocate softc\n");
2026 		return(CAM_REQ_CMP_ERR);
2027 	}
2028 
2029 	LIST_INIT(&softc->pending_ccbs);
2030 	softc->state = DA_STATE_PROBE_RC;
2031 	bioq_init(&softc->bio_queue);
2032 	bioq_init(&softc->delete_queue);
2033 	bioq_init(&softc->delete_run_queue);
2034 	if (SID_IS_REMOVABLE(&cgd->inq_data))
2035 		softc->flags |= DA_FLAG_PACK_REMOVABLE;
2036 	softc->unmap_max_ranges = UNMAP_MAX_RANGES;
2037 	softc->unmap_max_lba = UNMAP_RANGE_MAX;
2038 	softc->ws_max_blks = WS16_MAX_BLKS;
2039 	softc->trim_max_ranges = ATA_TRIM_MAX_RANGES;
2040 	softc->sort_io_queue = -1;
2041 
2042 	periph->softc = softc;
2043 
2044 	/*
2045 	 * See if this device has any quirks.
2046 	 */
2047 	match = cam_quirkmatch((caddr_t)&cgd->inq_data,
2048 			       (caddr_t)da_quirk_table,
2049 			       sizeof(da_quirk_table)/sizeof(*da_quirk_table),
2050 			       sizeof(*da_quirk_table), scsi_inquiry_match);
2051 
2052 	if (match != NULL)
2053 		softc->quirks = ((struct da_quirk_entry *)match)->quirks;
2054 	else
2055 		softc->quirks = DA_Q_NONE;
2056 
2057 	/* Check if the SIM does not want 6 byte commands */
2058 	bzero(&cpi, sizeof(cpi));
2059 	xpt_setup_ccb(&cpi.ccb_h, periph->path, CAM_PRIORITY_NORMAL);
2060 	cpi.ccb_h.func_code = XPT_PATH_INQ;
2061 	xpt_action((union ccb *)&cpi);
2062 	if (cpi.ccb_h.status == CAM_REQ_CMP && (cpi.hba_misc & PIM_NO_6_BYTE))
2063 		softc->quirks |= DA_Q_NO_6_BYTE;
2064 
2065 	TASK_INIT(&softc->sysctl_task, 0, dasysctlinit, periph);
2066 
2067 	/*
2068 	 * Take an exclusive refcount on the periph while dastart is called
2069 	 * to finish the probe.  The reference will be dropped in dadone at
2070 	 * the end of probe.
2071 	 */
2072 	(void)cam_periph_hold(periph, PRIBIO);
2073 
2074 	/*
2075 	 * Schedule a periodic event to occasionally send an
2076 	 * ordered tag to a device.
2077 	 */
2078 	callout_init_mtx(&softc->sendordered_c, cam_periph_mtx(periph), 0);
2079 	callout_reset(&softc->sendordered_c,
2080 	    (da_default_timeout * hz) / DA_ORDEREDTAG_INTERVAL,
2081 	    dasendorderedtag, softc);
2082 
2083 	cam_periph_unlock(periph);
2084 	/*
2085 	 * RBC devices don't have to support READ(6), only READ(10).
2086 	 */
2087 	if (softc->quirks & DA_Q_NO_6_BYTE || SID_TYPE(&cgd->inq_data) == T_RBC)
2088 		softc->minimum_cmd_size = 10;
2089 	else
2090 		softc->minimum_cmd_size = 6;
2091 
2092 	/*
2093 	 * Load the user's default, if any.
2094 	 */
2095 	snprintf(tmpstr, sizeof(tmpstr), "kern.cam.da.%d.minimum_cmd_size",
2096 		 periph->unit_number);
2097 	TUNABLE_INT_FETCH(tmpstr, &softc->minimum_cmd_size);
2098 
2099 	/*
2100 	 * 6, 10, 12 and 16 are the currently permissible values.
2101 	 */
2102 	if (softc->minimum_cmd_size < 6)
2103 		softc->minimum_cmd_size = 6;
2104 	else if ((softc->minimum_cmd_size > 6)
2105 	      && (softc->minimum_cmd_size <= 10))
2106 		softc->minimum_cmd_size = 10;
2107 	else if ((softc->minimum_cmd_size > 10)
2108 	      && (softc->minimum_cmd_size <= 12))
2109 		softc->minimum_cmd_size = 12;
2110 	else if (softc->minimum_cmd_size > 12)
2111 		softc->minimum_cmd_size = 16;
2112 
2113 	/* Predict whether device may support READ CAPACITY(16). */
2114 	if (SID_ANSI_REV(&cgd->inq_data) >= SCSI_REV_SPC3 &&
2115 	    (softc->quirks & DA_Q_NO_RC16) == 0) {
2116 		softc->flags |= DA_FLAG_CAN_RC16;
2117 		softc->state = DA_STATE_PROBE_RC16;
2118 	}
2119 
2120 	/*
2121 	 * Register this media as a disk.
2122 	 */
2123 	softc->disk = disk_alloc();
2124 	softc->disk->d_devstat = devstat_new_entry(periph->periph_name,
2125 			  periph->unit_number, 0,
2126 			  DEVSTAT_BS_UNAVAILABLE,
2127 			  SID_TYPE(&cgd->inq_data) |
2128 			  XPORT_DEVSTAT_TYPE(cpi.transport),
2129 			  DEVSTAT_PRIORITY_DISK);
2130 	softc->disk->d_open = daopen;
2131 	softc->disk->d_close = daclose;
2132 	softc->disk->d_strategy = dastrategy;
2133 	softc->disk->d_dump = dadump;
2134 	softc->disk->d_getattr = dagetattr;
2135 	softc->disk->d_gone = dadiskgonecb;
2136 	softc->disk->d_name = "da";
2137 	softc->disk->d_drv1 = periph;
2138 	if (cpi.maxio == 0)
2139 		softc->maxio = DFLTPHYS;	/* traditional default */
2140 	else if (cpi.maxio > MAXPHYS)
2141 		softc->maxio = MAXPHYS;		/* for safety */
2142 	else
2143 		softc->maxio = cpi.maxio;
2144 	softc->disk->d_maxsize = softc->maxio;
2145 	softc->disk->d_unit = periph->unit_number;
2146 	softc->disk->d_flags = DISKFLAG_DIRECT_COMPLETION;
2147 	if ((softc->quirks & DA_Q_NO_SYNC_CACHE) == 0)
2148 		softc->disk->d_flags |= DISKFLAG_CANFLUSHCACHE;
2149 	if ((cpi.hba_misc & PIM_UNMAPPED) != 0)
2150 		softc->disk->d_flags |= DISKFLAG_UNMAPPED_BIO;
2151 	cam_strvis(softc->disk->d_descr, cgd->inq_data.vendor,
2152 	    sizeof(cgd->inq_data.vendor), sizeof(softc->disk->d_descr));
2153 	strlcat(softc->disk->d_descr, " ", sizeof(softc->disk->d_descr));
2154 	cam_strvis(&softc->disk->d_descr[strlen(softc->disk->d_descr)],
2155 	    cgd->inq_data.product, sizeof(cgd->inq_data.product),
2156 	    sizeof(softc->disk->d_descr) - strlen(softc->disk->d_descr));
2157 	softc->disk->d_hba_vendor = cpi.hba_vendor;
2158 	softc->disk->d_hba_device = cpi.hba_device;
2159 	softc->disk->d_hba_subvendor = cpi.hba_subvendor;
2160 	softc->disk->d_hba_subdevice = cpi.hba_subdevice;
2161 
2162 	/*
2163 	 * Acquire a reference to the periph before we register with GEOM.
2164 	 * We'll release this reference once GEOM calls us back (via
2165 	 * dadiskgonecb()) telling us that our provider has been freed.
2166 	 */
2167 	if (cam_periph_acquire(periph) != CAM_REQ_CMP) {
2168 		xpt_print(periph->path, "%s: lost periph during "
2169 			  "registration!\n", __func__);
2170 		cam_periph_lock(periph);
2171 		return (CAM_REQ_CMP_ERR);
2172 	}
2173 
2174 	disk_create(softc->disk, DISK_VERSION);
2175 	cam_periph_lock(periph);
2176 
2177 	/*
2178 	 * Add async callbacks for events of interest.
2179 	 * I don't bother checking if this fails as,
2180 	 * in most cases, the system will function just
2181 	 * fine without them and the only alternative
2182 	 * would be to not attach the device on failure.
2183 	 */
2184 	xpt_register_async(AC_SENT_BDR | AC_BUS_RESET | AC_LOST_DEVICE |
2185 	    AC_ADVINFO_CHANGED | AC_SCSI_AEN | AC_UNIT_ATTENTION,
2186 	    daasync, periph, periph->path);
2187 
2188 	/*
2189 	 * Emit an attribute changed notification just in case
2190 	 * physical path information arrived before our async
2191 	 * event handler was registered, but after anyone attaching
2192 	 * to our disk device polled it.
2193 	 */
2194 	disk_attr_changed(softc->disk, "GEOM::physpath", M_NOWAIT);
2195 
2196 	/*
2197 	 * Schedule a periodic media polling events.
2198 	 */
2199 	callout_init_mtx(&softc->mediapoll_c, cam_periph_mtx(periph), 0);
2200 	if ((softc->flags & DA_FLAG_PACK_REMOVABLE) &&
2201 	    (cgd->inq_flags & SID_AEN) == 0 &&
2202 	    da_poll_period != 0)
2203 		callout_reset(&softc->mediapoll_c, da_poll_period * hz,
2204 		    damediapoll, periph);
2205 
2206 	xpt_schedule(periph, CAM_PRIORITY_DEV);
2207 
2208 	return(CAM_REQ_CMP);
2209 }
2210 
2211 static void
2212 dastart(struct cam_periph *periph, union ccb *start_ccb)
2213 {
2214 	struct da_softc *softc;
2215 
2216 	softc = (struct da_softc *)periph->softc;
2217 
2218 	CAM_DEBUG(periph->path, CAM_DEBUG_TRACE, ("dastart\n"));
2219 
2220 skipstate:
2221 	switch (softc->state) {
2222 	case DA_STATE_NORMAL:
2223 	{
2224 		struct bio *bp;
2225 		uint8_t tag_code;
2226 
2227 		/* Run BIO_DELETE if not running yet. */
2228 		if (!softc->delete_running &&
2229 		    (bp = bioq_first(&softc->delete_queue)) != NULL) {
2230 			if (softc->delete_func != NULL) {
2231 				softc->delete_func(periph, start_ccb, bp);
2232 				goto out;
2233 			} else {
2234 				bioq_flush(&softc->delete_queue, NULL, 0);
2235 				/* FALLTHROUGH */
2236 			}
2237 		}
2238 
2239 		/* Run regular command. */
2240 		bp = bioq_takefirst(&softc->bio_queue);
2241 		if (bp == NULL) {
2242 			if (softc->tur) {
2243 				softc->tur = 0;
2244 				scsi_test_unit_ready(&start_ccb->csio,
2245 				     /*retries*/ da_retry_count,
2246 				     dadone,
2247 				     MSG_SIMPLE_Q_TAG,
2248 				     SSD_FULL_SIZE,
2249 				     da_default_timeout * 1000);
2250 				start_ccb->ccb_h.ccb_bp = NULL;
2251 				start_ccb->ccb_h.ccb_state = DA_CCB_TUR;
2252 				xpt_action(start_ccb);
2253 			} else
2254 				xpt_release_ccb(start_ccb);
2255 			break;
2256 		}
2257 		if (softc->tur) {
2258 			softc->tur = 0;
2259 			cam_periph_release_locked(periph);
2260 		}
2261 
2262 		if ((bp->bio_flags & BIO_ORDERED) != 0 ||
2263 		    (softc->flags & DA_FLAG_NEED_OTAG) != 0) {
2264 			softc->flags &= ~DA_FLAG_NEED_OTAG;
2265 			softc->flags |= DA_FLAG_WAS_OTAG;
2266 			tag_code = MSG_ORDERED_Q_TAG;
2267 		} else {
2268 			tag_code = MSG_SIMPLE_Q_TAG;
2269 		}
2270 
2271 		switch (bp->bio_cmd) {
2272 		case BIO_WRITE:
2273 			softc->flags |= DA_FLAG_DIRTY;
2274 			/* FALLTHROUGH */
2275 		case BIO_READ:
2276 			scsi_read_write(&start_ccb->csio,
2277 					/*retries*/da_retry_count,
2278 					/*cbfcnp*/dadone,
2279 					/*tag_action*/tag_code,
2280 					/*read_op*/(bp->bio_cmd == BIO_READ ?
2281 					SCSI_RW_READ : SCSI_RW_WRITE) |
2282 					((bp->bio_flags & BIO_UNMAPPED) != 0 ?
2283 					SCSI_RW_BIO : 0),
2284 					/*byte2*/0,
2285 					softc->minimum_cmd_size,
2286 					/*lba*/bp->bio_pblkno,
2287 					/*block_count*/bp->bio_bcount /
2288 					softc->params.secsize,
2289 					/*data_ptr*/ (bp->bio_flags &
2290 					BIO_UNMAPPED) != 0 ? (void *)bp :
2291 					bp->bio_data,
2292 					/*dxfer_len*/ bp->bio_bcount,
2293 					/*sense_len*/SSD_FULL_SIZE,
2294 					da_default_timeout * 1000);
2295 			break;
2296 		case BIO_FLUSH:
2297 			/*
2298 			 * BIO_FLUSH doesn't currently communicate
2299 			 * range data, so we synchronize the cache
2300 			 * over the whole disk.  We also force
2301 			 * ordered tag semantics the flush applies
2302 			 * to all previously queued I/O.
2303 			 */
2304 			scsi_synchronize_cache(&start_ccb->csio,
2305 					       /*retries*/1,
2306 					       /*cbfcnp*/dadone,
2307 					       MSG_ORDERED_Q_TAG,
2308 					       /*begin_lba*/0,
2309 					       /*lb_count*/0,
2310 					       SSD_FULL_SIZE,
2311 					       da_default_timeout*1000);
2312 			break;
2313 		}
2314 		start_ccb->ccb_h.ccb_state = DA_CCB_BUFFER_IO;
2315 		start_ccb->ccb_h.flags |= CAM_UNLOCKED;
2316 
2317 out:
2318 		LIST_INSERT_HEAD(&softc->pending_ccbs,
2319 				 &start_ccb->ccb_h, periph_links.le);
2320 
2321 		/* We expect a unit attention from this device */
2322 		if ((softc->flags & DA_FLAG_RETRY_UA) != 0) {
2323 			start_ccb->ccb_h.ccb_state |= DA_CCB_RETRY_UA;
2324 			softc->flags &= ~DA_FLAG_RETRY_UA;
2325 		}
2326 
2327 		start_ccb->ccb_h.ccb_bp = bp;
2328 		softc->refcount++;
2329 		cam_periph_unlock(periph);
2330 		xpt_action(start_ccb);
2331 		cam_periph_lock(periph);
2332 		softc->refcount--;
2333 
2334 		/* May have more work to do, so ensure we stay scheduled */
2335 		daschedule(periph);
2336 		break;
2337 	}
2338 	case DA_STATE_PROBE_RC:
2339 	{
2340 		struct scsi_read_capacity_data *rcap;
2341 
2342 		rcap = (struct scsi_read_capacity_data *)
2343 		    malloc(sizeof(*rcap), M_SCSIDA, M_NOWAIT|M_ZERO);
2344 		if (rcap == NULL) {
2345 			printf("dastart: Couldn't malloc read_capacity data\n");
2346 			/* da_free_periph??? */
2347 			break;
2348 		}
2349 		scsi_read_capacity(&start_ccb->csio,
2350 				   /*retries*/da_retry_count,
2351 				   dadone,
2352 				   MSG_SIMPLE_Q_TAG,
2353 				   rcap,
2354 				   SSD_FULL_SIZE,
2355 				   /*timeout*/5000);
2356 		start_ccb->ccb_h.ccb_bp = NULL;
2357 		start_ccb->ccb_h.ccb_state = DA_CCB_PROBE_RC;
2358 		xpt_action(start_ccb);
2359 		break;
2360 	}
2361 	case DA_STATE_PROBE_RC16:
2362 	{
2363 		struct scsi_read_capacity_data_long *rcaplong;
2364 
2365 		rcaplong = (struct scsi_read_capacity_data_long *)
2366 			malloc(sizeof(*rcaplong), M_SCSIDA, M_NOWAIT|M_ZERO);
2367 		if (rcaplong == NULL) {
2368 			printf("dastart: Couldn't malloc read_capacity data\n");
2369 			/* da_free_periph??? */
2370 			break;
2371 		}
2372 		scsi_read_capacity_16(&start_ccb->csio,
2373 				      /*retries*/ da_retry_count,
2374 				      /*cbfcnp*/ dadone,
2375 				      /*tag_action*/ MSG_SIMPLE_Q_TAG,
2376 				      /*lba*/ 0,
2377 				      /*reladr*/ 0,
2378 				      /*pmi*/ 0,
2379 				      /*rcap_buf*/ (uint8_t *)rcaplong,
2380 				      /*rcap_buf_len*/ sizeof(*rcaplong),
2381 				      /*sense_len*/ SSD_FULL_SIZE,
2382 				      /*timeout*/ da_default_timeout * 1000);
2383 		start_ccb->ccb_h.ccb_bp = NULL;
2384 		start_ccb->ccb_h.ccb_state = DA_CCB_PROBE_RC16;
2385 		xpt_action(start_ccb);
2386 		break;
2387 	}
2388 	case DA_STATE_PROBE_LBP:
2389 	{
2390 		struct scsi_vpd_logical_block_prov *lbp;
2391 
2392 		if (!scsi_vpd_supported_page(periph, SVPD_LBP)) {
2393 			/*
2394 			 * If we get here we don't support any SBC-3 delete
2395 			 * methods with UNMAP as the Logical Block Provisioning
2396 			 * VPD page support is required for devices which
2397 			 * support it according to T10/1799-D Revision 31
2398 			 * however older revisions of the spec don't mandate
2399 			 * this so we currently don't remove these methods
2400 			 * from the available set.
2401 			 */
2402 			softc->state = DA_STATE_PROBE_BLK_LIMITS;
2403 			goto skipstate;
2404 		}
2405 
2406 		lbp = (struct scsi_vpd_logical_block_prov *)
2407 			malloc(sizeof(*lbp), M_SCSIDA, M_NOWAIT|M_ZERO);
2408 
2409 		if (lbp == NULL) {
2410 			printf("dastart: Couldn't malloc lbp data\n");
2411 			/* da_free_periph??? */
2412 			break;
2413 		}
2414 
2415 		scsi_inquiry(&start_ccb->csio,
2416 			     /*retries*/da_retry_count,
2417 			     /*cbfcnp*/dadone,
2418 			     /*tag_action*/MSG_SIMPLE_Q_TAG,
2419 			     /*inq_buf*/(u_int8_t *)lbp,
2420 			     /*inq_len*/sizeof(*lbp),
2421 			     /*evpd*/TRUE,
2422 			     /*page_code*/SVPD_LBP,
2423 			     /*sense_len*/SSD_MIN_SIZE,
2424 			     /*timeout*/da_default_timeout * 1000);
2425 		start_ccb->ccb_h.ccb_bp = NULL;
2426 		start_ccb->ccb_h.ccb_state = DA_CCB_PROBE_LBP;
2427 		xpt_action(start_ccb);
2428 		break;
2429 	}
2430 	case DA_STATE_PROBE_BLK_LIMITS:
2431 	{
2432 		struct scsi_vpd_block_limits *block_limits;
2433 
2434 		if (!scsi_vpd_supported_page(periph, SVPD_BLOCK_LIMITS)) {
2435 			/* Not supported skip to next probe */
2436 			softc->state = DA_STATE_PROBE_BDC;
2437 			goto skipstate;
2438 		}
2439 
2440 		block_limits = (struct scsi_vpd_block_limits *)
2441 			malloc(sizeof(*block_limits), M_SCSIDA, M_NOWAIT|M_ZERO);
2442 
2443 		if (block_limits == NULL) {
2444 			printf("dastart: Couldn't malloc block_limits data\n");
2445 			/* da_free_periph??? */
2446 			break;
2447 		}
2448 
2449 		scsi_inquiry(&start_ccb->csio,
2450 			     /*retries*/da_retry_count,
2451 			     /*cbfcnp*/dadone,
2452 			     /*tag_action*/MSG_SIMPLE_Q_TAG,
2453 			     /*inq_buf*/(u_int8_t *)block_limits,
2454 			     /*inq_len*/sizeof(*block_limits),
2455 			     /*evpd*/TRUE,
2456 			     /*page_code*/SVPD_BLOCK_LIMITS,
2457 			     /*sense_len*/SSD_MIN_SIZE,
2458 			     /*timeout*/da_default_timeout * 1000);
2459 		start_ccb->ccb_h.ccb_bp = NULL;
2460 		start_ccb->ccb_h.ccb_state = DA_CCB_PROBE_BLK_LIMITS;
2461 		xpt_action(start_ccb);
2462 		break;
2463 	}
2464 	case DA_STATE_PROBE_BDC:
2465 	{
2466 		struct scsi_vpd_block_characteristics *bdc;
2467 
2468 		if (!scsi_vpd_supported_page(periph, SVPD_BDC)) {
2469 			softc->state = DA_STATE_PROBE_ATA;
2470 			goto skipstate;
2471 		}
2472 
2473 		bdc = (struct scsi_vpd_block_characteristics *)
2474 			malloc(sizeof(*bdc), M_SCSIDA, M_NOWAIT|M_ZERO);
2475 
2476 		if (bdc == NULL) {
2477 			printf("dastart: Couldn't malloc bdc data\n");
2478 			/* da_free_periph??? */
2479 			break;
2480 		}
2481 
2482 		scsi_inquiry(&start_ccb->csio,
2483 			     /*retries*/da_retry_count,
2484 			     /*cbfcnp*/dadone,
2485 			     /*tag_action*/MSG_SIMPLE_Q_TAG,
2486 			     /*inq_buf*/(u_int8_t *)bdc,
2487 			     /*inq_len*/sizeof(*bdc),
2488 			     /*evpd*/TRUE,
2489 			     /*page_code*/SVPD_BDC,
2490 			     /*sense_len*/SSD_MIN_SIZE,
2491 			     /*timeout*/da_default_timeout * 1000);
2492 		start_ccb->ccb_h.ccb_bp = NULL;
2493 		start_ccb->ccb_h.ccb_state = DA_CCB_PROBE_BDC;
2494 		xpt_action(start_ccb);
2495 		break;
2496 	}
2497 	case DA_STATE_PROBE_ATA:
2498 	{
2499 		struct ata_params *ata_params;
2500 
2501 		if (!scsi_vpd_supported_page(periph, SVPD_ATA_INFORMATION)) {
2502 			daprobedone(periph, start_ccb);
2503 			break;
2504 		}
2505 
2506 		ata_params = (struct ata_params*)
2507 			malloc(sizeof(*ata_params), M_SCSIDA, M_NOWAIT|M_ZERO);
2508 
2509 		if (ata_params == NULL) {
2510 			printf("dastart: Couldn't malloc ata_params data\n");
2511 			/* da_free_periph??? */
2512 			break;
2513 		}
2514 
2515 		scsi_ata_identify(&start_ccb->csio,
2516 				  /*retries*/da_retry_count,
2517 				  /*cbfcnp*/dadone,
2518                                   /*tag_action*/MSG_SIMPLE_Q_TAG,
2519 				  /*data_ptr*/(u_int8_t *)ata_params,
2520 				  /*dxfer_len*/sizeof(*ata_params),
2521 				  /*sense_len*/SSD_FULL_SIZE,
2522 				  /*timeout*/da_default_timeout * 1000);
2523 		start_ccb->ccb_h.ccb_bp = NULL;
2524 		start_ccb->ccb_h.ccb_state = DA_CCB_PROBE_ATA;
2525 		xpt_action(start_ccb);
2526 		break;
2527 	}
2528 	}
2529 }
2530 
2531 /*
2532  * In each of the methods below, while its the caller's
2533  * responsibility to ensure the request will fit into a
2534  * single device request, we might have changed the delete
2535  * method due to the device incorrectly advertising either
2536  * its supported methods or limits.
2537  *
2538  * To prevent this causing further issues we validate the
2539  * against the methods limits, and warn which would
2540  * otherwise be unnecessary.
2541  */
2542 static void
2543 da_delete_unmap(struct cam_periph *periph, union ccb *ccb, struct bio *bp)
2544 {
2545 	struct da_softc *softc = (struct da_softc *)periph->softc;;
2546 	struct bio *bp1;
2547 	uint8_t *buf = softc->unmap_buf;
2548 	uint64_t lba, lastlba = (uint64_t)-1;
2549 	uint64_t totalcount = 0;
2550 	uint64_t count;
2551 	uint32_t lastcount = 0, c;
2552 	uint32_t off, ranges = 0;
2553 
2554 	/*
2555 	 * Currently this doesn't take the UNMAP
2556 	 * Granularity and Granularity Alignment
2557 	 * fields into account.
2558 	 *
2559 	 * This could result in both unoptimal unmap
2560 	 * requests as as well as UNMAP calls unmapping
2561 	 * fewer LBA's than requested.
2562 	 */
2563 
2564 	softc->delete_running = 1;
2565 	bzero(softc->unmap_buf, sizeof(softc->unmap_buf));
2566 	bp1 = bp;
2567 	do {
2568 		bioq_remove(&softc->delete_queue, bp1);
2569 		if (bp1 != bp)
2570 			bioq_insert_tail(&softc->delete_run_queue, bp1);
2571 		lba = bp1->bio_pblkno;
2572 		count = bp1->bio_bcount / softc->params.secsize;
2573 
2574 		/* Try to extend the previous range. */
2575 		if (lba == lastlba) {
2576 			c = omin(count, UNMAP_RANGE_MAX - lastcount);
2577 			lastcount += c;
2578 			off = ((ranges - 1) * UNMAP_RANGE_SIZE) +
2579 			      UNMAP_HEAD_SIZE;
2580 			scsi_ulto4b(lastcount, &buf[off + 8]);
2581 			count -= c;
2582 			lba +=c;
2583 			totalcount += c;
2584 		}
2585 
2586 		while (count > 0) {
2587 			c = omin(count, UNMAP_RANGE_MAX);
2588 			if (totalcount + c > softc->unmap_max_lba ||
2589 			    ranges >= softc->unmap_max_ranges) {
2590 				xpt_print(periph->path,
2591 				    "%s issuing short delete %ld > %ld"
2592 				    "|| %d >= %d",
2593 				    da_delete_method_desc[softc->delete_method],
2594 				    totalcount + c, softc->unmap_max_lba,
2595 				    ranges, softc->unmap_max_ranges);
2596 				break;
2597 			}
2598 			off = (ranges * UNMAP_RANGE_SIZE) + UNMAP_HEAD_SIZE;
2599 			scsi_u64to8b(lba, &buf[off + 0]);
2600 			scsi_ulto4b(c, &buf[off + 8]);
2601 			lba += c;
2602 			totalcount += c;
2603 			ranges++;
2604 			count -= c;
2605 			lastcount = c;
2606 		}
2607 		lastlba = lba;
2608 		bp1 = bioq_first(&softc->delete_queue);
2609 		if (bp1 == NULL || ranges >= softc->unmap_max_ranges ||
2610 		    totalcount + bp1->bio_bcount /
2611 		    softc->params.secsize > softc->unmap_max_lba)
2612 			break;
2613 	} while (1);
2614 	scsi_ulto2b(ranges * 16 + 6, &buf[0]);
2615 	scsi_ulto2b(ranges * 16, &buf[2]);
2616 
2617 	scsi_unmap(&ccb->csio,
2618 		   /*retries*/da_retry_count,
2619 		   /*cbfcnp*/dadone,
2620 		   /*tag_action*/MSG_SIMPLE_Q_TAG,
2621 		   /*byte2*/0,
2622 		   /*data_ptr*/ buf,
2623 		   /*dxfer_len*/ ranges * 16 + 8,
2624 		   /*sense_len*/SSD_FULL_SIZE,
2625 		   da_default_timeout * 1000);
2626 	ccb->ccb_h.ccb_state = DA_CCB_DELETE;
2627 	ccb->ccb_h.flags |= CAM_UNLOCKED;
2628 }
2629 
2630 static void
2631 da_delete_trim(struct cam_periph *periph, union ccb *ccb, struct bio *bp)
2632 {
2633 	struct da_softc *softc = (struct da_softc *)periph->softc;
2634 	struct bio *bp1;
2635 	uint8_t *buf = softc->unmap_buf;
2636 	uint64_t lastlba = (uint64_t)-1;
2637 	uint64_t count;
2638 	uint64_t lba;
2639 	uint32_t lastcount = 0, c, requestcount;
2640 	int ranges = 0, off, block_count;
2641 
2642 	softc->delete_running = 1;
2643 	bzero(softc->unmap_buf, sizeof(softc->unmap_buf));
2644 	bp1 = bp;
2645 	do {
2646 		bioq_remove(&softc->delete_queue, bp1);
2647 		if (bp1 != bp)
2648 			bioq_insert_tail(&softc->delete_run_queue, bp1);
2649 		lba = bp1->bio_pblkno;
2650 		count = bp1->bio_bcount / softc->params.secsize;
2651 		requestcount = count;
2652 
2653 		/* Try to extend the previous range. */
2654 		if (lba == lastlba) {
2655 			c = min(count, ATA_DSM_RANGE_MAX - lastcount);
2656 			lastcount += c;
2657 			off = (ranges - 1) * 8;
2658 			buf[off + 6] = lastcount & 0xff;
2659 			buf[off + 7] = (lastcount >> 8) & 0xff;
2660 			count -= c;
2661 			lba += c;
2662 		}
2663 
2664 		while (count > 0) {
2665 			c = min(count, ATA_DSM_RANGE_MAX);
2666 			off = ranges * 8;
2667 
2668 			buf[off + 0] = lba & 0xff;
2669 			buf[off + 1] = (lba >> 8) & 0xff;
2670 			buf[off + 2] = (lba >> 16) & 0xff;
2671 			buf[off + 3] = (lba >> 24) & 0xff;
2672 			buf[off + 4] = (lba >> 32) & 0xff;
2673 			buf[off + 5] = (lba >> 40) & 0xff;
2674 			buf[off + 6] = c & 0xff;
2675 			buf[off + 7] = (c >> 8) & 0xff;
2676 			lba += c;
2677 			ranges++;
2678 			count -= c;
2679 			lastcount = c;
2680 			if (count != 0 && ranges == softc->trim_max_ranges) {
2681 				xpt_print(periph->path,
2682 				    "%s issuing short delete %ld > %ld\n",
2683 				    da_delete_method_desc[softc->delete_method],
2684 				    requestcount,
2685 				    (softc->trim_max_ranges - ranges) *
2686 				    ATA_DSM_RANGE_MAX);
2687 				break;
2688 			}
2689 		}
2690 		lastlba = lba;
2691 		bp1 = bioq_first(&softc->delete_queue);
2692 		if (bp1 == NULL || bp1->bio_bcount / softc->params.secsize >
2693 		    (softc->trim_max_ranges - ranges) * ATA_DSM_RANGE_MAX)
2694 			break;
2695 	} while (1);
2696 
2697 	block_count = (ranges + ATA_DSM_BLK_RANGES - 1) / ATA_DSM_BLK_RANGES;
2698 	scsi_ata_trim(&ccb->csio,
2699 		      /*retries*/da_retry_count,
2700 		      /*cbfcnp*/dadone,
2701 		      /*tag_action*/MSG_SIMPLE_Q_TAG,
2702 		      block_count,
2703 		      /*data_ptr*/buf,
2704 		      /*dxfer_len*/block_count * ATA_DSM_BLK_SIZE,
2705 		      /*sense_len*/SSD_FULL_SIZE,
2706 		      da_default_timeout * 1000);
2707 	ccb->ccb_h.ccb_state = DA_CCB_DELETE;
2708 	ccb->ccb_h.flags |= CAM_UNLOCKED;
2709 }
2710 
2711 /*
2712  * We calculate ws_max_blks here based off d_delmaxsize instead
2713  * of using softc->ws_max_blks as it is absolute max for the
2714  * device not the protocol max which may well be lower.
2715  */
2716 static void
2717 da_delete_ws(struct cam_periph *periph, union ccb *ccb, struct bio *bp)
2718 {
2719 	struct da_softc *softc;
2720 	struct bio *bp1;
2721 	uint64_t ws_max_blks;
2722 	uint64_t lba;
2723 	uint64_t count; /* forward compat with WS32 */
2724 
2725 	softc = (struct da_softc *)periph->softc;
2726 	ws_max_blks = softc->disk->d_delmaxsize / softc->params.secsize;
2727 	softc->delete_running = 1;
2728 	lba = bp->bio_pblkno;
2729 	count = 0;
2730 	bp1 = bp;
2731 	do {
2732 		bioq_remove(&softc->delete_queue, bp1);
2733 		if (bp1 != bp)
2734 			bioq_insert_tail(&softc->delete_run_queue, bp1);
2735 		count += bp1->bio_bcount / softc->params.secsize;
2736 		if (count > ws_max_blks) {
2737 			xpt_print(periph->path,
2738 			    "%s issuing short delete %ld > %ld\n",
2739 			    da_delete_method_desc[softc->delete_method],
2740 			    count, ws_max_blks);
2741 			count = min(count, ws_max_blks);
2742 			break;
2743 		}
2744 		bp1 = bioq_first(&softc->delete_queue);
2745 		if (bp1 == NULL || lba + count != bp1->bio_pblkno ||
2746 		    count + bp1->bio_bcount /
2747 		    softc->params.secsize > ws_max_blks)
2748 			break;
2749 	} while (1);
2750 
2751 	scsi_write_same(&ccb->csio,
2752 			/*retries*/da_retry_count,
2753 			/*cbfcnp*/dadone,
2754 			/*tag_action*/MSG_SIMPLE_Q_TAG,
2755 			/*byte2*/softc->delete_method ==
2756 			    DA_DELETE_ZERO ? 0 : SWS_UNMAP,
2757 			softc->delete_method == DA_DELETE_WS16 ? 16 : 10,
2758 			/*lba*/lba,
2759 			/*block_count*/count,
2760 			/*data_ptr*/ __DECONST(void *, zero_region),
2761 			/*dxfer_len*/ softc->params.secsize,
2762 			/*sense_len*/SSD_FULL_SIZE,
2763 			da_default_timeout * 1000);
2764 	ccb->ccb_h.ccb_state = DA_CCB_DELETE;
2765 	ccb->ccb_h.flags |= CAM_UNLOCKED;
2766 }
2767 
2768 static int
2769 cmd6workaround(union ccb *ccb)
2770 {
2771 	struct scsi_rw_6 cmd6;
2772 	struct scsi_rw_10 *cmd10;
2773 	struct da_softc *softc;
2774 	u_int8_t *cdb;
2775 	struct bio *bp;
2776 	int frozen;
2777 
2778 	cdb = ccb->csio.cdb_io.cdb_bytes;
2779 	softc = (struct da_softc *)xpt_path_periph(ccb->ccb_h.path)->softc;
2780 
2781 	if (ccb->ccb_h.ccb_state == DA_CCB_DELETE) {
2782 		da_delete_methods old_method = softc->delete_method;
2783 
2784 		/*
2785 		 * Typically there are two reasons for failure here
2786 		 * 1. Delete method was detected as supported but isn't
2787 		 * 2. Delete failed due to invalid params e.g. too big
2788 		 *
2789 		 * While we will attempt to choose an alternative delete method
2790 		 * this may result in short deletes if the existing delete
2791 		 * requests from geom are big for the new method choosen.
2792 		 *
2793 		 * This method assumes that the error which triggered this
2794 		 * will not retry the io otherwise a panic will occur
2795 		 */
2796 		dadeleteflag(softc, old_method, 0);
2797 		dadeletemethodchoose(softc, DA_DELETE_DISABLE);
2798 		if (softc->delete_method == DA_DELETE_DISABLE)
2799 			xpt_print(ccb->ccb_h.path,
2800 				  "%s failed, disabling BIO_DELETE\n",
2801 				  da_delete_method_desc[old_method]);
2802 		else
2803 			xpt_print(ccb->ccb_h.path,
2804 				  "%s failed, switching to %s BIO_DELETE\n",
2805 				  da_delete_method_desc[old_method],
2806 				  da_delete_method_desc[softc->delete_method]);
2807 
2808 		if (DA_SIO) {
2809 			while ((bp = bioq_takefirst(&softc->delete_run_queue))
2810 			    != NULL)
2811 				bioq_disksort(&softc->delete_queue, bp);
2812 		} else {
2813 			while ((bp = bioq_takefirst(&softc->delete_run_queue))
2814 			    != NULL)
2815 				bioq_insert_tail(&softc->delete_queue, bp);
2816 		}
2817 		bioq_insert_tail(&softc->delete_queue,
2818 		    (struct bio *)ccb->ccb_h.ccb_bp);
2819 		ccb->ccb_h.ccb_bp = NULL;
2820 		return (0);
2821 	}
2822 
2823 	/* Detect unsupported PREVENT ALLOW MEDIUM REMOVAL. */
2824 	if ((ccb->ccb_h.flags & CAM_CDB_POINTER) == 0 &&
2825 	    (*cdb == PREVENT_ALLOW) &&
2826 	    (softc->quirks & DA_Q_NO_PREVENT) == 0) {
2827 		if (bootverbose)
2828 			xpt_print(ccb->ccb_h.path,
2829 			    "PREVENT ALLOW MEDIUM REMOVAL not supported.\n");
2830 		softc->quirks |= DA_Q_NO_PREVENT;
2831 		return (0);
2832 	}
2833 
2834 	/* Detect unsupported SYNCHRONIZE CACHE(10). */
2835 	if ((ccb->ccb_h.flags & CAM_CDB_POINTER) == 0 &&
2836 	    (*cdb == SYNCHRONIZE_CACHE) &&
2837 	    (softc->quirks & DA_Q_NO_SYNC_CACHE) == 0) {
2838 		if (bootverbose)
2839 			xpt_print(ccb->ccb_h.path,
2840 			    "SYNCHRONIZE CACHE(10) not supported.\n");
2841 		softc->quirks |= DA_Q_NO_SYNC_CACHE;
2842 		softc->disk->d_flags &= ~DISKFLAG_CANFLUSHCACHE;
2843 		return (0);
2844 	}
2845 
2846 	/* Translation only possible if CDB is an array and cmd is R/W6 */
2847 	if ((ccb->ccb_h.flags & CAM_CDB_POINTER) != 0 ||
2848 	    (*cdb != READ_6 && *cdb != WRITE_6))
2849 		return 0;
2850 
2851 	xpt_print(ccb->ccb_h.path, "READ(6)/WRITE(6) not supported, "
2852 	    "increasing minimum_cmd_size to 10.\n");
2853  	softc->minimum_cmd_size = 10;
2854 
2855 	bcopy(cdb, &cmd6, sizeof(struct scsi_rw_6));
2856 	cmd10 = (struct scsi_rw_10 *)cdb;
2857 	cmd10->opcode = (cmd6.opcode == READ_6) ? READ_10 : WRITE_10;
2858 	cmd10->byte2 = 0;
2859 	scsi_ulto4b(scsi_3btoul(cmd6.addr), cmd10->addr);
2860 	cmd10->reserved = 0;
2861 	scsi_ulto2b(cmd6.length, cmd10->length);
2862 	cmd10->control = cmd6.control;
2863 	ccb->csio.cdb_len = sizeof(*cmd10);
2864 
2865 	/* Requeue request, unfreezing queue if necessary */
2866 	frozen = (ccb->ccb_h.status & CAM_DEV_QFRZN) != 0;
2867  	ccb->ccb_h.status = CAM_REQUEUE_REQ;
2868 	xpt_action(ccb);
2869 	if (frozen) {
2870 		cam_release_devq(ccb->ccb_h.path,
2871 				 /*relsim_flags*/0,
2872 				 /*reduction*/0,
2873 				 /*timeout*/0,
2874 				 /*getcount_only*/0);
2875 	}
2876 	return (ERESTART);
2877 }
2878 
2879 static void
2880 dadone(struct cam_periph *periph, union ccb *done_ccb)
2881 {
2882 	struct da_softc *softc;
2883 	struct ccb_scsiio *csio;
2884 	u_int32_t  priority;
2885 	da_ccb_state state;
2886 
2887 	softc = (struct da_softc *)periph->softc;
2888 	priority = done_ccb->ccb_h.pinfo.priority;
2889 
2890 	CAM_DEBUG(periph->path, CAM_DEBUG_TRACE, ("dadone\n"));
2891 
2892 	csio = &done_ccb->csio;
2893 	state = csio->ccb_h.ccb_state & DA_CCB_TYPE_MASK;
2894 	switch (state) {
2895 	case DA_CCB_BUFFER_IO:
2896 	case DA_CCB_DELETE:
2897 	{
2898 		struct bio *bp, *bp1;
2899 
2900 		cam_periph_lock(periph);
2901 		bp = (struct bio *)done_ccb->ccb_h.ccb_bp;
2902 		if ((done_ccb->ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) {
2903 			int error;
2904 			int sf;
2905 
2906 			if ((csio->ccb_h.ccb_state & DA_CCB_RETRY_UA) != 0)
2907 				sf = SF_RETRY_UA;
2908 			else
2909 				sf = 0;
2910 
2911 			error = daerror(done_ccb, CAM_RETRY_SELTO, sf);
2912 			if (error == ERESTART) {
2913 				/*
2914 				 * A retry was scheduled, so
2915 				 * just return.
2916 				 */
2917 				cam_periph_unlock(periph);
2918 				return;
2919 			}
2920 			bp = (struct bio *)done_ccb->ccb_h.ccb_bp;
2921 			if (error != 0) {
2922 				int queued_error;
2923 
2924 				/*
2925 				 * return all queued I/O with EIO, so that
2926 				 * the client can retry these I/Os in the
2927 				 * proper order should it attempt to recover.
2928 				 */
2929 				queued_error = EIO;
2930 
2931 				if (error == ENXIO
2932 				 && (softc->flags & DA_FLAG_PACK_INVALID)== 0) {
2933 					/*
2934 					 * Catastrophic error.  Mark our pack as
2935 					 * invalid.
2936 					 */
2937 					/*
2938 					 * XXX See if this is really a media
2939 					 * XXX change first?
2940 					 */
2941 					xpt_print(periph->path,
2942 					    "Invalidating pack\n");
2943 					softc->flags |= DA_FLAG_PACK_INVALID;
2944 					queued_error = ENXIO;
2945 				}
2946 				bioq_flush(&softc->bio_queue, NULL,
2947 					   queued_error);
2948 				if (bp != NULL) {
2949 					bp->bio_error = error;
2950 					bp->bio_resid = bp->bio_bcount;
2951 					bp->bio_flags |= BIO_ERROR;
2952 				}
2953 			} else if (bp != NULL) {
2954 				if (state == DA_CCB_DELETE)
2955 					bp->bio_resid = 0;
2956 				else
2957 					bp->bio_resid = csio->resid;
2958 				bp->bio_error = 0;
2959 				if (bp->bio_resid != 0)
2960 					bp->bio_flags |= BIO_ERROR;
2961 			}
2962 			if ((done_ccb->ccb_h.status & CAM_DEV_QFRZN) != 0)
2963 				cam_release_devq(done_ccb->ccb_h.path,
2964 						 /*relsim_flags*/0,
2965 						 /*reduction*/0,
2966 						 /*timeout*/0,
2967 						 /*getcount_only*/0);
2968 		} else if (bp != NULL) {
2969 			if ((done_ccb->ccb_h.status & CAM_DEV_QFRZN) != 0)
2970 				panic("REQ_CMP with QFRZN");
2971 			if (state == DA_CCB_DELETE)
2972 				bp->bio_resid = 0;
2973 			else
2974 				bp->bio_resid = csio->resid;
2975 			if (csio->resid > 0)
2976 				bp->bio_flags |= BIO_ERROR;
2977 			if (softc->error_inject != 0) {
2978 				bp->bio_error = softc->error_inject;
2979 				bp->bio_resid = bp->bio_bcount;
2980 				bp->bio_flags |= BIO_ERROR;
2981 				softc->error_inject = 0;
2982 			}
2983 		}
2984 
2985 		LIST_REMOVE(&done_ccb->ccb_h, periph_links.le);
2986 		if (LIST_EMPTY(&softc->pending_ccbs))
2987 			softc->flags |= DA_FLAG_WAS_OTAG;
2988 
2989 		xpt_release_ccb(done_ccb);
2990 		if (state == DA_CCB_DELETE) {
2991 			TAILQ_HEAD(, bio) queue;
2992 
2993 			TAILQ_INIT(&queue);
2994 			TAILQ_CONCAT(&queue, &softc->delete_run_queue.queue, bio_queue);
2995 			softc->delete_run_queue.insert_point = NULL;
2996 			softc->delete_running = 0;
2997 			daschedule(periph);
2998 			cam_periph_unlock(periph);
2999 			while ((bp1 = TAILQ_FIRST(&queue)) != NULL) {
3000 				TAILQ_REMOVE(&queue, bp1, bio_queue);
3001 				bp1->bio_error = bp->bio_error;
3002 				if (bp->bio_flags & BIO_ERROR) {
3003 					bp1->bio_flags |= BIO_ERROR;
3004 					bp1->bio_resid = bp1->bio_bcount;
3005 				} else
3006 					bp1->bio_resid = 0;
3007 				biodone(bp1);
3008 			}
3009 		} else
3010 			cam_periph_unlock(periph);
3011 		if (bp != NULL)
3012 			biodone(bp);
3013 		return;
3014 	}
3015 	case DA_CCB_PROBE_RC:
3016 	case DA_CCB_PROBE_RC16:
3017 	{
3018 		struct	   scsi_read_capacity_data *rdcap;
3019 		struct     scsi_read_capacity_data_long *rcaplong;
3020 		char	   announce_buf[80];
3021 		int	   lbp;
3022 
3023 		lbp = 0;
3024 		rdcap = NULL;
3025 		rcaplong = NULL;
3026 		if (state == DA_CCB_PROBE_RC)
3027 			rdcap =(struct scsi_read_capacity_data *)csio->data_ptr;
3028 		else
3029 			rcaplong = (struct scsi_read_capacity_data_long *)
3030 				csio->data_ptr;
3031 
3032 		if ((csio->ccb_h.status & CAM_STATUS_MASK) == CAM_REQ_CMP) {
3033 			struct disk_params *dp;
3034 			uint32_t block_size;
3035 			uint64_t maxsector;
3036 			u_int lalba;	/* Lowest aligned LBA. */
3037 
3038 			if (state == DA_CCB_PROBE_RC) {
3039 				block_size = scsi_4btoul(rdcap->length);
3040 				maxsector = scsi_4btoul(rdcap->addr);
3041 				lalba = 0;
3042 
3043 				/*
3044 				 * According to SBC-2, if the standard 10
3045 				 * byte READ CAPACITY command returns 2^32,
3046 				 * we should issue the 16 byte version of
3047 				 * the command, since the device in question
3048 				 * has more sectors than can be represented
3049 				 * with the short version of the command.
3050 				 */
3051 				if (maxsector == 0xffffffff) {
3052 					free(rdcap, M_SCSIDA);
3053 					xpt_release_ccb(done_ccb);
3054 					softc->state = DA_STATE_PROBE_RC16;
3055 					xpt_schedule(periph, priority);
3056 					return;
3057 				}
3058 			} else {
3059 				block_size = scsi_4btoul(rcaplong->length);
3060 				maxsector = scsi_8btou64(rcaplong->addr);
3061 				lalba = scsi_2btoul(rcaplong->lalba_lbp);
3062 			}
3063 
3064 			/*
3065 			 * Because GEOM code just will panic us if we
3066 			 * give them an 'illegal' value we'll avoid that
3067 			 * here.
3068 			 */
3069 			if (block_size == 0 && maxsector == 0) {
3070 				block_size = 512;
3071 				maxsector = -1;
3072 			}
3073 			if (block_size >= MAXPHYS || block_size == 0) {
3074 				xpt_print(periph->path,
3075 				    "unsupportable block size %ju\n",
3076 				    (uintmax_t) block_size);
3077 				announce_buf[0] = '\0';
3078 				cam_periph_invalidate(periph);
3079 			} else {
3080 				/*
3081 				 * We pass rcaplong into dasetgeom(),
3082 				 * because it will only use it if it is
3083 				 * non-NULL.
3084 				 */
3085 				dasetgeom(periph, block_size, maxsector,
3086 					  rcaplong, sizeof(*rcaplong));
3087 				lbp = (lalba & SRC16_LBPME_A);
3088 				dp = &softc->params;
3089 				snprintf(announce_buf, sizeof(announce_buf),
3090 				        "%juMB (%ju %u byte sectors: %dH %dS/T "
3091                                         "%dC)", (uintmax_t)
3092 	                                (((uintmax_t)dp->secsize *
3093 				        dp->sectors) / (1024*1024)),
3094 			                (uintmax_t)dp->sectors,
3095 				        dp->secsize, dp->heads,
3096                                         dp->secs_per_track, dp->cylinders);
3097 			}
3098 		} else {
3099 			int	error;
3100 
3101 			announce_buf[0] = '\0';
3102 
3103 			/*
3104 			 * Retry any UNIT ATTENTION type errors.  They
3105 			 * are expected at boot.
3106 			 */
3107 			error = daerror(done_ccb, CAM_RETRY_SELTO,
3108 					SF_RETRY_UA|SF_NO_PRINT);
3109 			if (error == ERESTART) {
3110 				/*
3111 				 * A retry was scheuled, so
3112 				 * just return.
3113 				 */
3114 				return;
3115 			} else if (error != 0) {
3116 				int asc, ascq;
3117 				int sense_key, error_code;
3118 				int have_sense;
3119 				cam_status status;
3120 				struct ccb_getdev cgd;
3121 
3122 				/* Don't wedge this device's queue */
3123 				status = done_ccb->ccb_h.status;
3124 				if ((status & CAM_DEV_QFRZN) != 0)
3125 					cam_release_devq(done_ccb->ccb_h.path,
3126 							 /*relsim_flags*/0,
3127 							 /*reduction*/0,
3128 							 /*timeout*/0,
3129 							 /*getcount_only*/0);
3130 
3131 
3132 				xpt_setup_ccb(&cgd.ccb_h,
3133 					      done_ccb->ccb_h.path,
3134 					      CAM_PRIORITY_NORMAL);
3135 				cgd.ccb_h.func_code = XPT_GDEV_TYPE;
3136 				xpt_action((union ccb *)&cgd);
3137 
3138 				if (scsi_extract_sense_ccb(done_ccb,
3139 				    &error_code, &sense_key, &asc, &ascq))
3140 					have_sense = TRUE;
3141 				else
3142 					have_sense = FALSE;
3143 
3144 				/*
3145 				 * If we tried READ CAPACITY(16) and failed,
3146 				 * fallback to READ CAPACITY(10).
3147 				 */
3148 				if ((state == DA_CCB_PROBE_RC16) &&
3149 				    (softc->flags & DA_FLAG_CAN_RC16) &&
3150 				    (((csio->ccb_h.status & CAM_STATUS_MASK) ==
3151 					CAM_REQ_INVALID) ||
3152 				     ((have_sense) &&
3153 				      (error_code == SSD_CURRENT_ERROR) &&
3154 				      (sense_key == SSD_KEY_ILLEGAL_REQUEST)))) {
3155 					softc->flags &= ~DA_FLAG_CAN_RC16;
3156 					free(rdcap, M_SCSIDA);
3157 					xpt_release_ccb(done_ccb);
3158 					softc->state = DA_STATE_PROBE_RC;
3159 					xpt_schedule(periph, priority);
3160 					return;
3161 				} else
3162 				/*
3163 				 * Attach to anything that claims to be a
3164 				 * direct access or optical disk device,
3165 				 * as long as it doesn't return a "Logical
3166 				 * unit not supported" (0x25) error.
3167 				 */
3168 				if ((have_sense) && (asc != 0x25)
3169 				 && (error_code == SSD_CURRENT_ERROR)) {
3170 					const char *sense_key_desc;
3171 					const char *asc_desc;
3172 
3173 					dasetgeom(periph, 512, -1, NULL, 0);
3174 					scsi_sense_desc(sense_key, asc, ascq,
3175 							&cgd.inq_data,
3176 							&sense_key_desc,
3177 							&asc_desc);
3178 					snprintf(announce_buf,
3179 					    sizeof(announce_buf),
3180 						"Attempt to query device "
3181 						"size failed: %s, %s",
3182 						sense_key_desc,
3183 						asc_desc);
3184 				} else {
3185 					if (have_sense)
3186 						scsi_sense_print(
3187 							&done_ccb->csio);
3188 					else {
3189 						xpt_print(periph->path,
3190 						    "got CAM status %#x\n",
3191 						    done_ccb->ccb_h.status);
3192 					}
3193 
3194 					xpt_print(periph->path, "fatal error, "
3195 					    "failed to attach to device\n");
3196 
3197 					/*
3198 					 * Free up resources.
3199 					 */
3200 					cam_periph_invalidate(periph);
3201 				}
3202 			}
3203 		}
3204 		free(csio->data_ptr, M_SCSIDA);
3205 		if (announce_buf[0] != '\0' &&
3206 		    ((softc->flags & DA_FLAG_ANNOUNCED) == 0)) {
3207 			/*
3208 			 * Create our sysctl variables, now that we know
3209 			 * we have successfully attached.
3210 			 */
3211 			/* increase the refcount */
3212 			if (cam_periph_acquire(periph) == CAM_REQ_CMP) {
3213 				taskqueue_enqueue(taskqueue_thread,
3214 						  &softc->sysctl_task);
3215 				xpt_announce_periph(periph, announce_buf);
3216 				xpt_announce_quirks(periph, softc->quirks,
3217 				    DA_Q_BIT_STRING);
3218 			} else {
3219 				xpt_print(periph->path, "fatal error, "
3220 				    "could not acquire reference count\n");
3221 			}
3222 		}
3223 
3224 		/* We already probed the device. */
3225 		if (softc->flags & DA_FLAG_PROBED) {
3226 			daprobedone(periph, done_ccb);
3227 			return;
3228 		}
3229 
3230 		/* Ensure re-probe doesn't see old delete. */
3231 		softc->delete_available = 0;
3232 		if (lbp && (softc->quirks & DA_Q_NO_UNMAP) == 0) {
3233 			/*
3234 			 * Based on older SBC-3 spec revisions
3235 			 * any of the UNMAP methods "may" be
3236 			 * available via LBP given this flag so
3237 			 * we flag all of them as availble and
3238 			 * then remove those which further
3239 			 * probes confirm aren't available
3240 			 * later.
3241 			 *
3242 			 * We could also check readcap(16) p_type
3243 			 * flag to exclude one or more invalid
3244 			 * write same (X) types here
3245 			 */
3246 			dadeleteflag(softc, DA_DELETE_WS16, 1);
3247 			dadeleteflag(softc, DA_DELETE_WS10, 1);
3248 			dadeleteflag(softc, DA_DELETE_ZERO, 1);
3249 			dadeleteflag(softc, DA_DELETE_UNMAP, 1);
3250 
3251 			xpt_release_ccb(done_ccb);
3252 			softc->state = DA_STATE_PROBE_LBP;
3253 			xpt_schedule(periph, priority);
3254 			return;
3255 		}
3256 
3257 		xpt_release_ccb(done_ccb);
3258 		softc->state = DA_STATE_PROBE_BDC;
3259 		xpt_schedule(periph, priority);
3260 		return;
3261 	}
3262 	case DA_CCB_PROBE_LBP:
3263 	{
3264 		struct scsi_vpd_logical_block_prov *lbp;
3265 
3266 		lbp = (struct scsi_vpd_logical_block_prov *)csio->data_ptr;
3267 
3268 		if ((csio->ccb_h.status & CAM_STATUS_MASK) == CAM_REQ_CMP) {
3269 			/*
3270 			 * T10/1799-D Revision 31 states at least one of these
3271 			 * must be supported but we don't currently enforce this.
3272 			 */
3273 			dadeleteflag(softc, DA_DELETE_WS16,
3274 				     (lbp->flags & SVPD_LBP_WS16));
3275 			dadeleteflag(softc, DA_DELETE_WS10,
3276 				     (lbp->flags & SVPD_LBP_WS10));
3277 			dadeleteflag(softc, DA_DELETE_ZERO,
3278 				     (lbp->flags & SVPD_LBP_WS10));
3279 			dadeleteflag(softc, DA_DELETE_UNMAP,
3280 				     (lbp->flags & SVPD_LBP_UNMAP));
3281 		} else {
3282 			int error;
3283 			error = daerror(done_ccb, CAM_RETRY_SELTO,
3284 					SF_RETRY_UA|SF_NO_PRINT);
3285 			if (error == ERESTART)
3286 				return;
3287 			else if (error != 0) {
3288 				if ((done_ccb->ccb_h.status & CAM_DEV_QFRZN) != 0) {
3289 					/* Don't wedge this device's queue */
3290 					cam_release_devq(done_ccb->ccb_h.path,
3291 							 /*relsim_flags*/0,
3292 							 /*reduction*/0,
3293 							 /*timeout*/0,
3294 							 /*getcount_only*/0);
3295 				}
3296 
3297 				/*
3298 				 * Failure indicates we don't support any SBC-3
3299 				 * delete methods with UNMAP
3300 				 */
3301 			}
3302 		}
3303 
3304 		free(lbp, M_SCSIDA);
3305 		xpt_release_ccb(done_ccb);
3306 		softc->state = DA_STATE_PROBE_BLK_LIMITS;
3307 		xpt_schedule(periph, priority);
3308 		return;
3309 	}
3310 	case DA_CCB_PROBE_BLK_LIMITS:
3311 	{
3312 		struct scsi_vpd_block_limits *block_limits;
3313 
3314 		block_limits = (struct scsi_vpd_block_limits *)csio->data_ptr;
3315 
3316 		if ((csio->ccb_h.status & CAM_STATUS_MASK) == CAM_REQ_CMP) {
3317 			uint32_t max_txfer_len = scsi_4btoul(
3318 				block_limits->max_txfer_len);
3319 			uint32_t max_unmap_lba_cnt = scsi_4btoul(
3320 				block_limits->max_unmap_lba_cnt);
3321 			uint32_t max_unmap_blk_cnt = scsi_4btoul(
3322 				block_limits->max_unmap_blk_cnt);
3323 			uint64_t ws_max_blks = scsi_8btou64(
3324 				block_limits->max_write_same_length);
3325 
3326 			if (max_txfer_len != 0) {
3327 				softc->disk->d_maxsize = MIN(softc->maxio,
3328 				    (off_t)max_txfer_len * softc->params.secsize);
3329 			}
3330 
3331 			/*
3332 			 * We should already support UNMAP but we check lba
3333 			 * and block count to be sure
3334 			 */
3335 			if (max_unmap_lba_cnt != 0x00L &&
3336 			    max_unmap_blk_cnt != 0x00L) {
3337 				softc->unmap_max_lba = max_unmap_lba_cnt;
3338 				softc->unmap_max_ranges = min(max_unmap_blk_cnt,
3339 					UNMAP_MAX_RANGES);
3340 			} else {
3341 				/*
3342 				 * Unexpected UNMAP limits which means the
3343 				 * device doesn't actually support UNMAP
3344 				 */
3345 				dadeleteflag(softc, DA_DELETE_UNMAP, 0);
3346 			}
3347 
3348 			if (ws_max_blks != 0x00L)
3349 				softc->ws_max_blks = ws_max_blks;
3350 		} else {
3351 			int error;
3352 			error = daerror(done_ccb, CAM_RETRY_SELTO,
3353 					SF_RETRY_UA|SF_NO_PRINT);
3354 			if (error == ERESTART)
3355 				return;
3356 			else if (error != 0) {
3357 				if ((done_ccb->ccb_h.status & CAM_DEV_QFRZN) != 0) {
3358 					/* Don't wedge this device's queue */
3359 					cam_release_devq(done_ccb->ccb_h.path,
3360 							 /*relsim_flags*/0,
3361 							 /*reduction*/0,
3362 							 /*timeout*/0,
3363 							 /*getcount_only*/0);
3364 				}
3365 
3366 				/*
3367 				 * Failure here doesn't mean UNMAP is not
3368 				 * supported as this is an optional page.
3369 				 */
3370 				softc->unmap_max_lba = 1;
3371 				softc->unmap_max_ranges = 1;
3372 			}
3373 		}
3374 
3375 		free(block_limits, M_SCSIDA);
3376 		xpt_release_ccb(done_ccb);
3377 		softc->state = DA_STATE_PROBE_BDC;
3378 		xpt_schedule(periph, priority);
3379 		return;
3380 	}
3381 	case DA_CCB_PROBE_BDC:
3382 	{
3383 		struct scsi_vpd_block_characteristics *bdc;
3384 
3385 		bdc = (struct scsi_vpd_block_characteristics *)csio->data_ptr;
3386 
3387 		if ((csio->ccb_h.status & CAM_STATUS_MASK) == CAM_REQ_CMP) {
3388 			/*
3389 			 * Disable queue sorting for non-rotational media
3390 			 * by default.
3391 			 */
3392 			u_int16_t old_rate = softc->disk->d_rotation_rate;
3393 
3394 			softc->disk->d_rotation_rate =
3395 				scsi_2btoul(bdc->medium_rotation_rate);
3396 			if (softc->disk->d_rotation_rate ==
3397 			    SVPD_BDC_RATE_NON_ROTATING) {
3398 				softc->sort_io_queue = 0;
3399 			}
3400 			if (softc->disk->d_rotation_rate != old_rate) {
3401 				disk_attr_changed(softc->disk,
3402 				    "GEOM::rotation_rate", M_NOWAIT);
3403 			}
3404 		} else {
3405 			int error;
3406 			error = daerror(done_ccb, CAM_RETRY_SELTO,
3407 					SF_RETRY_UA|SF_NO_PRINT);
3408 			if (error == ERESTART)
3409 				return;
3410 			else if (error != 0) {
3411 				if ((done_ccb->ccb_h.status & CAM_DEV_QFRZN) != 0) {
3412 					/* Don't wedge this device's queue */
3413 					cam_release_devq(done_ccb->ccb_h.path,
3414 							 /*relsim_flags*/0,
3415 							 /*reduction*/0,
3416 							 /*timeout*/0,
3417 							 /*getcount_only*/0);
3418 				}
3419 			}
3420 		}
3421 
3422 		free(bdc, M_SCSIDA);
3423 		xpt_release_ccb(done_ccb);
3424 		softc->state = DA_STATE_PROBE_ATA;
3425 		xpt_schedule(periph, priority);
3426 		return;
3427 	}
3428 	case DA_CCB_PROBE_ATA:
3429 	{
3430 		int i;
3431 		struct ata_params *ata_params;
3432 		int16_t *ptr;
3433 
3434 		ata_params = (struct ata_params *)csio->data_ptr;
3435 		ptr = (uint16_t *)ata_params;
3436 
3437 		if ((csio->ccb_h.status & CAM_STATUS_MASK) == CAM_REQ_CMP) {
3438 			uint16_t old_rate;
3439 
3440 			for (i = 0; i < sizeof(*ata_params) / 2; i++)
3441 				ptr[i] = le16toh(ptr[i]);
3442 			if (ata_params->support_dsm & ATA_SUPPORT_DSM_TRIM &&
3443 			    (softc->quirks & DA_Q_NO_UNMAP) == 0) {
3444 				dadeleteflag(softc, DA_DELETE_ATA_TRIM, 1);
3445 				if (ata_params->max_dsm_blocks != 0)
3446 					softc->trim_max_ranges = min(
3447 					  softc->trim_max_ranges,
3448 					  ata_params->max_dsm_blocks *
3449 					  ATA_DSM_BLK_RANGES);
3450 			}
3451 			/*
3452 			 * Disable queue sorting for non-rotational media
3453 			 * by default.
3454 			 */
3455 			old_rate = softc->disk->d_rotation_rate;
3456 			softc->disk->d_rotation_rate =
3457 			    ata_params->media_rotation_rate;
3458 			if (softc->disk->d_rotation_rate ==
3459 			    ATA_RATE_NON_ROTATING) {
3460 				softc->sort_io_queue = 0;
3461 			}
3462 
3463 			if (softc->disk->d_rotation_rate != old_rate) {
3464 				disk_attr_changed(softc->disk,
3465 				    "GEOM::rotation_rate", M_NOWAIT);
3466 			}
3467 		} else {
3468 			int error;
3469 			error = daerror(done_ccb, CAM_RETRY_SELTO,
3470 					SF_RETRY_UA|SF_NO_PRINT);
3471 			if (error == ERESTART)
3472 				return;
3473 			else if (error != 0) {
3474 				if ((done_ccb->ccb_h.status & CAM_DEV_QFRZN) != 0) {
3475 					/* Don't wedge this device's queue */
3476 					cam_release_devq(done_ccb->ccb_h.path,
3477 							 /*relsim_flags*/0,
3478 							 /*reduction*/0,
3479 							 /*timeout*/0,
3480 							 /*getcount_only*/0);
3481 				}
3482 			}
3483 		}
3484 
3485 		free(ata_params, M_SCSIDA);
3486 		daprobedone(periph, done_ccb);
3487 		return;
3488 	}
3489 	case DA_CCB_DUMP:
3490 		/* No-op.  We're polling */
3491 		return;
3492 	case DA_CCB_TUR:
3493 	{
3494 		if ((done_ccb->ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) {
3495 
3496 			if (daerror(done_ccb, CAM_RETRY_SELTO,
3497 			    SF_RETRY_UA | SF_NO_RECOVERY | SF_NO_PRINT) ==
3498 			    ERESTART)
3499 				return;
3500 			if ((done_ccb->ccb_h.status & CAM_DEV_QFRZN) != 0)
3501 				cam_release_devq(done_ccb->ccb_h.path,
3502 						 /*relsim_flags*/0,
3503 						 /*reduction*/0,
3504 						 /*timeout*/0,
3505 						 /*getcount_only*/0);
3506 		}
3507 		xpt_release_ccb(done_ccb);
3508 		cam_periph_release_locked(periph);
3509 		return;
3510 	}
3511 	default:
3512 		break;
3513 	}
3514 	xpt_release_ccb(done_ccb);
3515 }
3516 
3517 static void
3518 dareprobe(struct cam_periph *periph)
3519 {
3520 	struct da_softc	  *softc;
3521 	cam_status status;
3522 
3523 	softc = (struct da_softc *)periph->softc;
3524 
3525 	/* Probe in progress; don't interfere. */
3526 	if (softc->state != DA_STATE_NORMAL)
3527 		return;
3528 
3529 	status = cam_periph_acquire(periph);
3530 	KASSERT(status == CAM_REQ_CMP,
3531 	    ("dareprobe: cam_periph_acquire failed"));
3532 
3533 	if (softc->flags & DA_FLAG_CAN_RC16)
3534 		softc->state = DA_STATE_PROBE_RC16;
3535 	else
3536 		softc->state = DA_STATE_PROBE_RC;
3537 
3538 	xpt_schedule(periph, CAM_PRIORITY_DEV);
3539 }
3540 
3541 static int
3542 daerror(union ccb *ccb, u_int32_t cam_flags, u_int32_t sense_flags)
3543 {
3544 	struct da_softc	  *softc;
3545 	struct cam_periph *periph;
3546 	int error, error_code, sense_key, asc, ascq;
3547 
3548 	periph = xpt_path_periph(ccb->ccb_h.path);
3549 	softc = (struct da_softc *)periph->softc;
3550 
3551  	/*
3552 	 * Automatically detect devices that do not support
3553  	 * READ(6)/WRITE(6) and upgrade to using 10 byte cdbs.
3554  	 */
3555 	error = 0;
3556 	if ((ccb->ccb_h.status & CAM_STATUS_MASK) == CAM_REQ_INVALID) {
3557 		error = cmd6workaround(ccb);
3558 	} else if (scsi_extract_sense_ccb(ccb,
3559 	    &error_code, &sense_key, &asc, &ascq)) {
3560 		if (sense_key == SSD_KEY_ILLEGAL_REQUEST)
3561  			error = cmd6workaround(ccb);
3562 		/*
3563 		 * If the target replied with CAPACITY DATA HAS CHANGED UA,
3564 		 * query the capacity and notify upper layers.
3565 		 */
3566 		else if (sense_key == SSD_KEY_UNIT_ATTENTION &&
3567 		    asc == 0x2A && ascq == 0x09) {
3568 			xpt_print(periph->path, "Capacity data has changed\n");
3569 			softc->flags &= ~DA_FLAG_PROBED;
3570 			dareprobe(periph);
3571 			sense_flags |= SF_NO_PRINT;
3572 		} else if (sense_key == SSD_KEY_UNIT_ATTENTION &&
3573 		    asc == 0x28 && ascq == 0x00) {
3574 			softc->flags &= ~DA_FLAG_PROBED;
3575 			disk_media_changed(softc->disk, M_NOWAIT);
3576 		} else if (sense_key == SSD_KEY_UNIT_ATTENTION &&
3577 		    asc == 0x3F && ascq == 0x03) {
3578 			xpt_print(periph->path, "INQUIRY data has changed\n");
3579 			softc->flags &= ~DA_FLAG_PROBED;
3580 			dareprobe(periph);
3581 			sense_flags |= SF_NO_PRINT;
3582 		} else if (sense_key == SSD_KEY_NOT_READY &&
3583 		    asc == 0x3a && (softc->flags & DA_FLAG_PACK_INVALID) == 0) {
3584 			softc->flags |= DA_FLAG_PACK_INVALID;
3585 			disk_media_gone(softc->disk, M_NOWAIT);
3586 		}
3587 	}
3588 	if (error == ERESTART)
3589 		return (ERESTART);
3590 
3591 	/*
3592 	 * XXX
3593 	 * Until we have a better way of doing pack validation,
3594 	 * don't treat UAs as errors.
3595 	 */
3596 	sense_flags |= SF_RETRY_UA;
3597 	return(cam_periph_error(ccb, cam_flags, sense_flags,
3598 				&softc->saved_ccb));
3599 }
3600 
3601 static void
3602 damediapoll(void *arg)
3603 {
3604 	struct cam_periph *periph = arg;
3605 	struct da_softc *softc = periph->softc;
3606 
3607 	if (!softc->tur && LIST_EMPTY(&softc->pending_ccbs)) {
3608 		if (cam_periph_acquire(periph) == CAM_REQ_CMP) {
3609 			softc->tur = 1;
3610 			daschedule(periph);
3611 		}
3612 	}
3613 	/* Queue us up again */
3614 	if (da_poll_period != 0)
3615 		callout_schedule(&softc->mediapoll_c, da_poll_period * hz);
3616 }
3617 
3618 static void
3619 daprevent(struct cam_periph *periph, int action)
3620 {
3621 	struct	da_softc *softc;
3622 	union	ccb *ccb;
3623 	int	error;
3624 
3625 	softc = (struct da_softc *)periph->softc;
3626 
3627 	if (((action == PR_ALLOW)
3628 	  && (softc->flags & DA_FLAG_PACK_LOCKED) == 0)
3629 	 || ((action == PR_PREVENT)
3630 	  && (softc->flags & DA_FLAG_PACK_LOCKED) != 0)) {
3631 		return;
3632 	}
3633 
3634 	ccb = cam_periph_getccb(periph, CAM_PRIORITY_NORMAL);
3635 
3636 	scsi_prevent(&ccb->csio,
3637 		     /*retries*/1,
3638 		     /*cbcfp*/dadone,
3639 		     MSG_SIMPLE_Q_TAG,
3640 		     action,
3641 		     SSD_FULL_SIZE,
3642 		     5000);
3643 
3644 	error = cam_periph_runccb(ccb, daerror, CAM_RETRY_SELTO,
3645 	    SF_RETRY_UA | SF_NO_PRINT, softc->disk->d_devstat);
3646 
3647 	if (error == 0) {
3648 		if (action == PR_ALLOW)
3649 			softc->flags &= ~DA_FLAG_PACK_LOCKED;
3650 		else
3651 			softc->flags |= DA_FLAG_PACK_LOCKED;
3652 	}
3653 
3654 	xpt_release_ccb(ccb);
3655 }
3656 
3657 static void
3658 dasetgeom(struct cam_periph *periph, uint32_t block_len, uint64_t maxsector,
3659 	  struct scsi_read_capacity_data_long *rcaplong, size_t rcap_len)
3660 {
3661 	struct ccb_calc_geometry ccg;
3662 	struct da_softc *softc;
3663 	struct disk_params *dp;
3664 	u_int lbppbe, lalba;
3665 	int error;
3666 
3667 	softc = (struct da_softc *)periph->softc;
3668 
3669 	dp = &softc->params;
3670 	dp->secsize = block_len;
3671 	dp->sectors = maxsector + 1;
3672 	if (rcaplong != NULL) {
3673 		lbppbe = rcaplong->prot_lbppbe & SRC16_LBPPBE;
3674 		lalba = scsi_2btoul(rcaplong->lalba_lbp);
3675 		lalba &= SRC16_LALBA_A;
3676 	} else {
3677 		lbppbe = 0;
3678 		lalba = 0;
3679 	}
3680 
3681 	if (lbppbe > 0) {
3682 		dp->stripesize = block_len << lbppbe;
3683 		dp->stripeoffset = (dp->stripesize - block_len * lalba) %
3684 		    dp->stripesize;
3685 	} else if (softc->quirks & DA_Q_4K) {
3686 		dp->stripesize = 4096;
3687 		dp->stripeoffset = 0;
3688 	} else {
3689 		dp->stripesize = 0;
3690 		dp->stripeoffset = 0;
3691 	}
3692 	/*
3693 	 * Have the controller provide us with a geometry
3694 	 * for this disk.  The only time the geometry
3695 	 * matters is when we boot and the controller
3696 	 * is the only one knowledgeable enough to come
3697 	 * up with something that will make this a bootable
3698 	 * device.
3699 	 */
3700 	xpt_setup_ccb(&ccg.ccb_h, periph->path, CAM_PRIORITY_NORMAL);
3701 	ccg.ccb_h.func_code = XPT_CALC_GEOMETRY;
3702 	ccg.block_size = dp->secsize;
3703 	ccg.volume_size = dp->sectors;
3704 	ccg.heads = 0;
3705 	ccg.secs_per_track = 0;
3706 	ccg.cylinders = 0;
3707 	xpt_action((union ccb*)&ccg);
3708 	if ((ccg.ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) {
3709 		/*
3710 		 * We don't know what went wrong here- but just pick
3711 		 * a geometry so we don't have nasty things like divide
3712 		 * by zero.
3713 		 */
3714 		dp->heads = 255;
3715 		dp->secs_per_track = 255;
3716 		dp->cylinders = dp->sectors / (255 * 255);
3717 		if (dp->cylinders == 0) {
3718 			dp->cylinders = 1;
3719 		}
3720 	} else {
3721 		dp->heads = ccg.heads;
3722 		dp->secs_per_track = ccg.secs_per_track;
3723 		dp->cylinders = ccg.cylinders;
3724 	}
3725 
3726 	/*
3727 	 * If the user supplied a read capacity buffer, and if it is
3728 	 * different than the previous buffer, update the data in the EDT.
3729 	 * If it's the same, we don't bother.  This avoids sending an
3730 	 * update every time someone opens this device.
3731 	 */
3732 	if ((rcaplong != NULL)
3733 	 && (bcmp(rcaplong, &softc->rcaplong,
3734 		  min(sizeof(softc->rcaplong), rcap_len)) != 0)) {
3735 		struct ccb_dev_advinfo cdai;
3736 
3737 		xpt_setup_ccb(&cdai.ccb_h, periph->path, CAM_PRIORITY_NORMAL);
3738 		cdai.ccb_h.func_code = XPT_DEV_ADVINFO;
3739 		cdai.buftype = CDAI_TYPE_RCAPLONG;
3740 		cdai.flags |= CDAI_FLAG_STORE;
3741 		cdai.bufsiz = rcap_len;
3742 		cdai.buf = (uint8_t *)rcaplong;
3743 		xpt_action((union ccb *)&cdai);
3744 		if ((cdai.ccb_h.status & CAM_DEV_QFRZN) != 0)
3745 			cam_release_devq(cdai.ccb_h.path, 0, 0, 0, FALSE);
3746 		if (cdai.ccb_h.status != CAM_REQ_CMP) {
3747 			xpt_print(periph->path, "%s: failed to set read "
3748 				  "capacity advinfo\n", __func__);
3749 			/* Use cam_error_print() to decode the status */
3750 			cam_error_print((union ccb *)&cdai, CAM_ESF_CAM_STATUS,
3751 					CAM_EPF_ALL);
3752 		} else {
3753 			bcopy(rcaplong, &softc->rcaplong,
3754 			      min(sizeof(softc->rcaplong), rcap_len));
3755 		}
3756 	}
3757 
3758 	softc->disk->d_sectorsize = softc->params.secsize;
3759 	softc->disk->d_mediasize = softc->params.secsize * (off_t)softc->params.sectors;
3760 	softc->disk->d_stripesize = softc->params.stripesize;
3761 	softc->disk->d_stripeoffset = softc->params.stripeoffset;
3762 	/* XXX: these are not actually "firmware" values, so they may be wrong */
3763 	softc->disk->d_fwsectors = softc->params.secs_per_track;
3764 	softc->disk->d_fwheads = softc->params.heads;
3765 	softc->disk->d_devstat->block_size = softc->params.secsize;
3766 	softc->disk->d_devstat->flags &= ~DEVSTAT_BS_UNAVAILABLE;
3767 
3768 	error = disk_resize(softc->disk, M_NOWAIT);
3769 	if (error != 0)
3770 		xpt_print(periph->path, "disk_resize(9) failed, error = %d\n", error);
3771 }
3772 
3773 static void
3774 dasendorderedtag(void *arg)
3775 {
3776 	struct da_softc *softc = arg;
3777 
3778 	if (da_send_ordered) {
3779 		if (!LIST_EMPTY(&softc->pending_ccbs)) {
3780 			if ((softc->flags & DA_FLAG_WAS_OTAG) == 0)
3781 				softc->flags |= DA_FLAG_NEED_OTAG;
3782 			softc->flags &= ~DA_FLAG_WAS_OTAG;
3783 		}
3784 	}
3785 	/* Queue us up again */
3786 	callout_reset(&softc->sendordered_c,
3787 	    (da_default_timeout * hz) / DA_ORDEREDTAG_INTERVAL,
3788 	    dasendorderedtag, softc);
3789 }
3790 
3791 /*
3792  * Step through all DA peripheral drivers, and if the device is still open,
3793  * sync the disk cache to physical media.
3794  */
3795 static void
3796 dashutdown(void * arg, int howto)
3797 {
3798 	struct cam_periph *periph;
3799 	struct da_softc *softc;
3800 	union ccb *ccb;
3801 	int error;
3802 
3803 	CAM_PERIPH_FOREACH(periph, &dadriver) {
3804 		softc = (struct da_softc *)periph->softc;
3805 		if (SCHEDULER_STOPPED()) {
3806 			/* If we paniced with the lock held, do not recurse. */
3807 			if (!cam_periph_owned(periph) &&
3808 			    (softc->flags & DA_FLAG_OPEN)) {
3809 				dadump(softc->disk, NULL, 0, 0, 0);
3810 			}
3811 			continue;
3812 		}
3813 		cam_periph_lock(periph);
3814 
3815 		/*
3816 		 * We only sync the cache if the drive is still open, and
3817 		 * if the drive is capable of it..
3818 		 */
3819 		if (((softc->flags & DA_FLAG_OPEN) == 0)
3820 		 || (softc->quirks & DA_Q_NO_SYNC_CACHE)) {
3821 			cam_periph_unlock(periph);
3822 			continue;
3823 		}
3824 
3825 		ccb = cam_periph_getccb(periph, CAM_PRIORITY_NORMAL);
3826 		scsi_synchronize_cache(&ccb->csio,
3827 				       /*retries*/0,
3828 				       /*cbfcnp*/dadone,
3829 				       MSG_SIMPLE_Q_TAG,
3830 				       /*begin_lba*/0, /* whole disk */
3831 				       /*lb_count*/0,
3832 				       SSD_FULL_SIZE,
3833 				       60 * 60 * 1000);
3834 
3835 		error = cam_periph_runccb(ccb, daerror, /*cam_flags*/0,
3836 		    /*sense_flags*/ SF_NO_RECOVERY | SF_NO_RETRY | SF_QUIET_IR,
3837 		    softc->disk->d_devstat);
3838 		if (error != 0)
3839 			xpt_print(periph->path, "Synchronize cache failed\n");
3840 		xpt_release_ccb(ccb);
3841 		cam_periph_unlock(periph);
3842 	}
3843 }
3844 
3845 #else /* !_KERNEL */
3846 
3847 /*
3848  * XXX This is only left out of the kernel build to silence warnings.  If,
3849  * for some reason this function is used in the kernel, the ifdefs should
3850  * be moved so it is included both in the kernel and userland.
3851  */
3852 void
3853 scsi_format_unit(struct ccb_scsiio *csio, u_int32_t retries,
3854 		 void (*cbfcnp)(struct cam_periph *, union ccb *),
3855 		 u_int8_t tag_action, u_int8_t byte2, u_int16_t ileave,
3856 		 u_int8_t *data_ptr, u_int32_t dxfer_len, u_int8_t sense_len,
3857 		 u_int32_t timeout)
3858 {
3859 	struct scsi_format_unit *scsi_cmd;
3860 
3861 	scsi_cmd = (struct scsi_format_unit *)&csio->cdb_io.cdb_bytes;
3862 	scsi_cmd->opcode = FORMAT_UNIT;
3863 	scsi_cmd->byte2 = byte2;
3864 	scsi_ulto2b(ileave, scsi_cmd->interleave);
3865 
3866 	cam_fill_csio(csio,
3867 		      retries,
3868 		      cbfcnp,
3869 		      /*flags*/ (dxfer_len > 0) ? CAM_DIR_OUT : CAM_DIR_NONE,
3870 		      tag_action,
3871 		      data_ptr,
3872 		      dxfer_len,
3873 		      sense_len,
3874 		      sizeof(*scsi_cmd),
3875 		      timeout);
3876 }
3877 
3878 void
3879 scsi_sanitize(struct ccb_scsiio *csio, u_int32_t retries,
3880 	      void (*cbfcnp)(struct cam_periph *, union ccb *),
3881 	      u_int8_t tag_action, u_int8_t byte2, u_int16_t control,
3882 	      u_int8_t *data_ptr, u_int32_t dxfer_len, u_int8_t sense_len,
3883 	      u_int32_t timeout)
3884 {
3885 	struct scsi_sanitize *scsi_cmd;
3886 
3887 	scsi_cmd = (struct scsi_sanitize *)&csio->cdb_io.cdb_bytes;
3888 	scsi_cmd->opcode = SANITIZE;
3889 	scsi_cmd->byte2 = byte2;
3890 	scsi_cmd->control = control;
3891 	scsi_ulto2b(dxfer_len, scsi_cmd->length);
3892 
3893 	cam_fill_csio(csio,
3894 		      retries,
3895 		      cbfcnp,
3896 		      /*flags*/ (dxfer_len > 0) ? CAM_DIR_OUT : CAM_DIR_NONE,
3897 		      tag_action,
3898 		      data_ptr,
3899 		      dxfer_len,
3900 		      sense_len,
3901 		      sizeof(*scsi_cmd),
3902 		      timeout);
3903 }
3904 
3905 #endif /* _KERNEL */
3906