xref: /freebsd/sys/cam/scsi/scsi_da.c (revision 4f1f4356f3012928b463f9ef1710fb908e48b1e2)
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 <geom/geom_disk.h>
48 #endif /* _KERNEL */
49 
50 #ifndef _KERNEL
51 #include <stdio.h>
52 #include <string.h>
53 #endif /* _KERNEL */
54 
55 #include <cam/cam.h>
56 #include <cam/cam_ccb.h>
57 #include <cam/cam_periph.h>
58 #include <cam/cam_xpt_periph.h>
59 #include <cam/cam_sim.h>
60 
61 #include <cam/scsi/scsi_message.h>
62 
63 #ifndef _KERNEL
64 #include <cam/scsi/scsi_da.h>
65 #endif /* !_KERNEL */
66 
67 #ifdef _KERNEL
68 typedef enum {
69 	DA_STATE_PROBE,
70 	DA_STATE_PROBE2,
71 	DA_STATE_NORMAL
72 } da_state;
73 
74 typedef enum {
75 	DA_FLAG_PACK_INVALID	= 0x001,
76 	DA_FLAG_NEW_PACK	= 0x002,
77 	DA_FLAG_PACK_LOCKED	= 0x004,
78 	DA_FLAG_PACK_REMOVABLE	= 0x008,
79 	DA_FLAG_TAGGED_QUEUING	= 0x010,
80 	DA_FLAG_NEED_OTAG	= 0x020,
81 	DA_FLAG_WENT_IDLE	= 0x040,
82 	DA_FLAG_RETRY_UA	= 0x080,
83 	DA_FLAG_OPEN		= 0x100,
84 	DA_FLAG_SCTX_INIT	= 0x200
85 } da_flags;
86 
87 typedef enum {
88 	DA_Q_NONE		= 0x00,
89 	DA_Q_NO_SYNC_CACHE	= 0x01,
90 	DA_Q_NO_6_BYTE		= 0x02,
91 	DA_Q_NO_PREVENT		= 0x04
92 } da_quirks;
93 
94 typedef enum {
95 	DA_CCB_PROBE		= 0x01,
96 	DA_CCB_PROBE2		= 0x02,
97 	DA_CCB_BUFFER_IO	= 0x03,
98 	DA_CCB_WAITING		= 0x04,
99 	DA_CCB_DUMP		= 0x05,
100 	DA_CCB_TYPE_MASK	= 0x0F,
101 	DA_CCB_RETRY_UA		= 0x10
102 } da_ccb_state;
103 
104 /* Offsets into our private area for storing information */
105 #define ccb_state	ppriv_field0
106 #define ccb_bp		ppriv_ptr1
107 
108 struct disk_params {
109 	u_int8_t  heads;
110 	u_int32_t cylinders;
111 	u_int8_t  secs_per_track;
112 	u_int32_t secsize;	/* Number of bytes/sector */
113 	u_int64_t sectors;	/* total number sectors */
114 };
115 
116 struct da_softc {
117 	struct	 bio_queue_head bio_queue;
118 	SLIST_ENTRY(da_softc) links;
119 	LIST_HEAD(, ccb_hdr) pending_ccbs;
120 	da_state state;
121 	da_flags flags;
122 	da_quirks quirks;
123 	int	 minimum_cmd_size;
124 	int	 ordered_tag_count;
125 	int	 outstanding_cmds;
126 	struct	 disk_params params;
127 	struct	 disk *disk;
128 	union	 ccb saved_ccb;
129 	struct task		sysctl_task;
130 	struct sysctl_ctx_list	sysctl_ctx;
131 	struct sysctl_oid	*sysctl_tree;
132 	struct callout		sendordered_c;
133 	uint64_t wwpn;
134 };
135 
136 struct da_quirk_entry {
137 	struct scsi_inquiry_pattern inq_pat;
138 	da_quirks quirks;
139 };
140 
141 static const char quantum[] = "QUANTUM";
142 static const char microp[] = "MICROP";
143 
144 static struct da_quirk_entry da_quirk_table[] =
145 {
146 	/* SPI, FC devices */
147 	{
148 		/*
149 		 * Fujitsu M2513A MO drives.
150 		 * Tested devices: M2513A2 firmware versions 1200 & 1300.
151 		 * (dip switch selects whether T_DIRECT or T_OPTICAL device)
152 		 * Reported by: W.Scholten <whs@xs4all.nl>
153 		 */
154 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "FUJITSU", "M2513A", "*"},
155 		/*quirks*/ DA_Q_NO_SYNC_CACHE
156 	},
157 	{
158 		/* See above. */
159 		{T_OPTICAL, SIP_MEDIA_REMOVABLE, "FUJITSU", "M2513A", "*"},
160 		/*quirks*/ DA_Q_NO_SYNC_CACHE
161 	},
162 	{
163 		/*
164 		 * This particular Fujitsu drive doesn't like the
165 		 * synchronize cache command.
166 		 * Reported by: Tom Jackson <toj@gorilla.net>
167 		 */
168 		{T_DIRECT, SIP_MEDIA_FIXED, "FUJITSU", "M2954*", "*"},
169 		/*quirks*/ DA_Q_NO_SYNC_CACHE
170 	},
171 	{
172 		/*
173 		 * This drive doesn't like the synchronize cache command
174 		 * either.  Reported by: Matthew Jacob <mjacob@feral.com>
175 		 * in NetBSD PR kern/6027, August 24, 1998.
176 		 */
177 		{T_DIRECT, SIP_MEDIA_FIXED, microp, "2217*", "*"},
178 		/*quirks*/ DA_Q_NO_SYNC_CACHE
179 	},
180 	{
181 		/*
182 		 * This drive doesn't like the synchronize cache command
183 		 * either.  Reported by: Hellmuth Michaelis (hm@kts.org)
184 		 * (PR 8882).
185 		 */
186 		{T_DIRECT, SIP_MEDIA_FIXED, microp, "2112*", "*"},
187 		/*quirks*/ DA_Q_NO_SYNC_CACHE
188 	},
189 	{
190 		/*
191 		 * Doesn't like the synchronize cache command.
192 		 * Reported by: Blaz Zupan <blaz@gold.amis.net>
193 		 */
194 		{T_DIRECT, SIP_MEDIA_FIXED, "NEC", "D3847*", "*"},
195 		/*quirks*/ DA_Q_NO_SYNC_CACHE
196 	},
197 	{
198 		/*
199 		 * Doesn't like the synchronize cache command.
200 		 * Reported by: Blaz Zupan <blaz@gold.amis.net>
201 		 */
202 		{T_DIRECT, SIP_MEDIA_FIXED, quantum, "MAVERICK 540S", "*"},
203 		/*quirks*/ DA_Q_NO_SYNC_CACHE
204 	},
205 	{
206 		/*
207 		 * Doesn't like the synchronize cache command.
208 		 */
209 		{T_DIRECT, SIP_MEDIA_FIXED, quantum, "LPS525S", "*"},
210 		/*quirks*/ DA_Q_NO_SYNC_CACHE
211 	},
212 	{
213 		/*
214 		 * Doesn't like the synchronize cache command.
215 		 * Reported by: walter@pelissero.de
216 		 */
217 		{T_DIRECT, SIP_MEDIA_FIXED, quantum, "LPS540S", "*"},
218 		/*quirks*/ DA_Q_NO_SYNC_CACHE
219 	},
220 	{
221 		/*
222 		 * Doesn't work correctly with 6 byte reads/writes.
223 		 * Returns illegal request, and points to byte 9 of the
224 		 * 6-byte CDB.
225 		 * Reported by:  Adam McDougall <bsdx@spawnet.com>
226 		 */
227 		{T_DIRECT, SIP_MEDIA_FIXED, quantum, "VIKING 4*", "*"},
228 		/*quirks*/ DA_Q_NO_6_BYTE
229 	},
230 	{
231 		/* See above. */
232 		{T_DIRECT, SIP_MEDIA_FIXED, quantum, "VIKING 2*", "*"},
233 		/*quirks*/ DA_Q_NO_6_BYTE
234 	},
235 	{
236 		/*
237 		 * Doesn't like the synchronize cache command.
238 		 * Reported by: walter@pelissero.de
239 		 */
240 		{T_DIRECT, SIP_MEDIA_FIXED, "CONNER", "CP3500*", "*"},
241 		/*quirks*/ DA_Q_NO_SYNC_CACHE
242 	},
243 	{
244 		/*
245 		 * The CISS RAID controllers do not support SYNC_CACHE
246 		 */
247 		{T_DIRECT, SIP_MEDIA_FIXED, "COMPAQ", "RAID*", "*"},
248 		/*quirks*/ DA_Q_NO_SYNC_CACHE
249 	},
250 	/* USB mass storage devices supported by umass(4) */
251 	{
252 		/*
253 		 * EXATELECOM (Sigmatel) i-Bead 100/105 USB Flash MP3 Player
254 		 * PR: kern/51675
255 		 */
256 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "EXATEL", "i-BEAD10*", "*"},
257 		/*quirks*/ DA_Q_NO_SYNC_CACHE
258 	},
259 	{
260 		/*
261 		 * Power Quotient Int. (PQI) USB flash key
262 		 * PR: kern/53067
263 		 */
264 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "Generic*", "USB Flash Disk*",
265 		"*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
266 	},
267  	{
268  		/*
269  		 * Creative Nomad MUVO mp3 player (USB)
270  		 * PR: kern/53094
271  		 */
272  		{T_DIRECT, SIP_MEDIA_REMOVABLE, "CREATIVE", "NOMAD_MUVO", "*"},
273  		/*quirks*/ DA_Q_NO_SYNC_CACHE|DA_Q_NO_PREVENT
274  	},
275 	{
276 		/*
277 		 * Jungsoft NEXDISK USB flash key
278 		 * PR: kern/54737
279 		 */
280 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "JUNGSOFT", "NEXDISK*", "*"},
281 		/*quirks*/ DA_Q_NO_SYNC_CACHE
282 	},
283 	{
284 		/*
285 		 * FreeDik USB Mini Data Drive
286 		 * PR: kern/54786
287 		 */
288 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "FreeDik*", "Mini Data Drive",
289 		"*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
290 	},
291 	{
292 		/*
293 		 * Sigmatel USB Flash MP3 Player
294 		 * PR: kern/57046
295 		 */
296 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "SigmaTel", "MSCN", "*"},
297 		/*quirks*/ DA_Q_NO_SYNC_CACHE|DA_Q_NO_PREVENT
298 	},
299 	{
300 		/*
301 		 * Neuros USB Digital Audio Computer
302 		 * PR: kern/63645
303 		 */
304 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "NEUROS", "dig. audio comp.",
305 		"*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
306 	},
307 	{
308 		/*
309 		 * SEAGRAND NP-900 MP3 Player
310 		 * PR: kern/64563
311 		 */
312 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "SEAGRAND", "NP-900*", "*"},
313 		/*quirks*/ DA_Q_NO_SYNC_CACHE|DA_Q_NO_PREVENT
314 	},
315 	{
316 		/*
317 		 * iRiver iFP MP3 player (with UMS Firmware)
318 		 * PR: kern/54881, i386/63941, kern/66124
319 		 */
320 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "iRiver", "iFP*", "*"},
321 		/*quirks*/ DA_Q_NO_SYNC_CACHE
322  	},
323 	{
324 		/*
325 		 * Frontier Labs NEX IA+ Digital Audio Player, rev 1.10/0.01
326 		 * PR: kern/70158
327 		 */
328 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "FL" , "Nex*", "*"},
329 		/*quirks*/ DA_Q_NO_SYNC_CACHE
330 	},
331 	{
332 		/*
333 		 * ZICPlay USB MP3 Player with FM
334 		 * PR: kern/75057
335 		 */
336 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "ACTIONS*" , "USB DISK*", "*"},
337 		/*quirks*/ DA_Q_NO_SYNC_CACHE
338 	},
339 	{
340 		/*
341 		 * TEAC USB floppy mechanisms
342 		 */
343 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "TEAC" , "FD-05*", "*"},
344 		/*quirks*/ DA_Q_NO_SYNC_CACHE
345 	},
346 	{
347 		/*
348 		 * Kingston DataTraveler II+ USB Pen-Drive.
349 		 * Reported by: Pawel Jakub Dawidek <pjd@FreeBSD.org>
350 		 */
351 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "Kingston" , "DataTraveler II+",
352 		"*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
353 	},
354 	{
355 		/*
356 		 * Motorola E398 Mobile Phone (TransFlash memory card).
357 		 * Reported by: Wojciech A. Koszek <dunstan@FreeBSD.czest.pl>
358 		 * PR: usb/89889
359 		 */
360 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "Motorola" , "Motorola Phone",
361 		"*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
362 	},
363 	{
364 		/*
365 		 * Qware BeatZkey! Pro
366 		 * PR: usb/79164
367 		 */
368 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "GENERIC", "USB DISK DEVICE",
369 		"*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
370 	},
371 	{
372 		/*
373 		 * Time DPA20B 1GB MP3 Player
374 		 * PR: usb/81846
375 		 */
376 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "USB2.0*", "(FS) FLASH DISK*",
377 		"*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
378 	},
379 	{
380 		/*
381 		 * Samsung USB key 128Mb
382 		 * PR: usb/90081
383 		 */
384 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "USB-DISK", "FreeDik-FlashUsb",
385 		"*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
386 	},
387 	{
388 		/*
389 		 * Kingston DataTraveler 2.0 USB Flash memory.
390 		 * PR: usb/89196
391 		 */
392 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "Kingston", "DataTraveler 2.0",
393 		"*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
394 	},
395 	{
396 		/*
397 		 * Creative MUVO Slim mp3 player (USB)
398 		 * PR: usb/86131
399 		 */
400 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "CREATIVE", "MuVo Slim",
401 		"*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE|DA_Q_NO_PREVENT
402 		},
403 	{
404 		/*
405 		 * United MP5512 Portable MP3 Player (2-in-1 USB DISK/MP3)
406 		 * PR: usb/80487
407 		 */
408 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "Generic*", "MUSIC DISK",
409 		"*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
410 	},
411 	{
412 		/*
413 		 * SanDisk Micro Cruzer 128MB
414 		 * PR: usb/75970
415 		 */
416 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "SanDisk" , "Micro Cruzer",
417 		"*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
418 	},
419 	{
420 		/*
421 		 * TOSHIBA TransMemory USB sticks
422 		 * PR: kern/94660
423 		 */
424 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "TOSHIBA", "TransMemory",
425 		"*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
426 	},
427 	{
428 		/*
429 		 * PNY USB Flash keys
430 		 * PR: usb/75578, usb/72344, usb/65436
431 		 */
432 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "*" , "USB DISK*",
433 		"*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
434 	},
435 	{
436 		/*
437 		 * Genesys 6-in-1 Card Reader
438 		 * PR: usb/94647
439 		 */
440 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "Generic*", "STORAGE DEVICE*",
441 		"*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
442 	},
443 	{
444 		/*
445 		 * Rekam Digital CAMERA
446 		 * PR: usb/98713
447 		 */
448 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "CAMERA*", "4MP-9J6*",
449 		"*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
450 	},
451 	{
452 		/*
453 		 * iRiver H10 MP3 player
454 		 * PR: usb/102547
455 		 */
456 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "iriver", "H10*",
457 		"*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
458 	},
459 	{
460 		/*
461 		 * iRiver U10 MP3 player
462 		 * PR: usb/92306
463 		 */
464 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "iriver", "U10*",
465 		"*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
466 	},
467 	{
468 		/*
469 		 * X-Micro Flash Disk
470 		 * PR: usb/96901
471 		 */
472 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "X-Micro", "Flash Disk",
473 		"*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
474 	},
475 	{
476 		/*
477 		 * EasyMP3 EM732X USB 2.0 Flash MP3 Player
478 		 * PR: usb/96546
479 		 */
480 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "EM732X", "MP3 Player*",
481 		"1.00"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
482 	},
483 	{
484 		/*
485 		 * Denver MP3 player
486 		 * PR: usb/107101
487 		 */
488 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "DENVER", "MP3 PLAYER",
489 		 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
490 	},
491 	{
492 		/*
493 		 * Philips USB Key Audio KEY013
494 		 * PR: usb/68412
495 		 */
496 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "PHILIPS", "Key*", "*"},
497 		/*quirks*/ DA_Q_NO_SYNC_CACHE | DA_Q_NO_PREVENT
498 	},
499 	{
500 		/*
501 		 * JNC MP3 Player
502 		 * PR: usb/94439
503 		 */
504 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "JNC*" , "MP3 Player*",
505 		 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
506 	},
507 	{
508 		/*
509 		 * SAMSUNG MP0402H
510 		 * PR: usb/108427
511 		 */
512 		{T_DIRECT, SIP_MEDIA_FIXED, "SAMSUNG", "MP0402H", "*"},
513 		/*quirks*/ DA_Q_NO_SYNC_CACHE
514 	},
515 	{
516 		/*
517 		 * I/O Magic USB flash - Giga Bank
518 		 * PR: usb/108810
519 		 */
520 		{T_DIRECT, SIP_MEDIA_FIXED, "GS-Magic", "stor*", "*"},
521 		/*quirks*/ DA_Q_NO_SYNC_CACHE
522 	},
523 	{
524 		/*
525 		 * JoyFly 128mb USB Flash Drive
526 		 * PR: 96133
527 		 */
528 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "USB 2.0", "Flash Disk*",
529 		 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
530 	},
531 	{
532 		/*
533 		 * ChipsBnk usb stick
534 		 * PR: 103702
535 		 */
536 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "ChipsBnk", "USB*",
537 		 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
538 	},
539 	{
540 		/*
541 		 * Storcase (Kingston) InfoStation IFS FC2/SATA-R 201A
542 		 * PR: 129858
543 		 */
544 		{T_DIRECT, SIP_MEDIA_FIXED, "IFS", "FC2/SATA-R*",
545 		 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
546 	},
547 	{
548 		/*
549 		 * Samsung YP-U3 mp3-player
550 		 * PR: 125398
551 		 */
552 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "Samsung", "YP-U3",
553 		 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
554 	},
555 	{
556 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "Netac", "OnlyDisk*",
557 		 "2000"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
558 	},
559 	{
560 		/*
561 		 * Sony Cyber-Shot DSC cameras
562 		 * PR: usb/137035
563 		 */
564 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "Sony", "Sony DSC", "*"},
565 		/*quirks*/ DA_Q_NO_SYNC_CACHE | DA_Q_NO_PREVENT
566 	}
567 };
568 
569 static	disk_strategy_t	dastrategy;
570 static	dumper_t	dadump;
571 static	periph_init_t	dainit;
572 static	void		daasync(void *callback_arg, u_int32_t code,
573 				struct cam_path *path, void *arg);
574 static	void		dasysctlinit(void *context, int pending);
575 static	int		dacmdsizesysctl(SYSCTL_HANDLER_ARGS);
576 static	periph_ctor_t	daregister;
577 static	periph_dtor_t	dacleanup;
578 static	periph_start_t	dastart;
579 static	periph_oninv_t	daoninvalidate;
580 static	void		dadone(struct cam_periph *periph,
581 			       union ccb *done_ccb);
582 static  int		daerror(union ccb *ccb, u_int32_t cam_flags,
583 				u_int32_t sense_flags);
584 static void		daprevent(struct cam_periph *periph, int action);
585 static int		dagetcapacity(struct cam_periph *periph);
586 static void		dasetgeom(struct cam_periph *periph, uint32_t block_len,
587 				  uint64_t maxsector);
588 static timeout_t	dasendorderedtag;
589 static void		dashutdown(void *arg, int howto);
590 
591 #ifndef DA_DEFAULT_TIMEOUT
592 #define DA_DEFAULT_TIMEOUT 60	/* Timeout in seconds */
593 #endif
594 
595 #ifndef	DA_DEFAULT_RETRY
596 #define	DA_DEFAULT_RETRY	4
597 #endif
598 
599 #ifndef	DA_DEFAULT_SEND_ORDERED
600 #define	DA_DEFAULT_SEND_ORDERED	1
601 #endif
602 
603 
604 static int da_retry_count = DA_DEFAULT_RETRY;
605 static int da_default_timeout = DA_DEFAULT_TIMEOUT;
606 static int da_send_ordered = DA_DEFAULT_SEND_ORDERED;
607 
608 SYSCTL_NODE(_kern_cam, OID_AUTO, da, CTLFLAG_RD, 0,
609             "CAM Direct Access Disk driver");
610 SYSCTL_INT(_kern_cam_da, OID_AUTO, retry_count, CTLFLAG_RW,
611            &da_retry_count, 0, "Normal I/O retry count");
612 TUNABLE_INT("kern.cam.da.retry_count", &da_retry_count);
613 SYSCTL_INT(_kern_cam_da, OID_AUTO, default_timeout, CTLFLAG_RW,
614            &da_default_timeout, 0, "Normal I/O timeout (in seconds)");
615 TUNABLE_INT("kern.cam.da.default_timeout", &da_default_timeout);
616 SYSCTL_INT(_kern_cam_da, OID_AUTO, da_send_ordered, CTLFLAG_RW,
617            &da_send_ordered, 0, "Send Ordered Tags");
618 TUNABLE_INT("kern.cam.da.da_send_ordered", &da_send_ordered);
619 
620 /*
621  * DA_ORDEREDTAG_INTERVAL determines how often, relative
622  * to the default timeout, we check to see whether an ordered
623  * tagged transaction is appropriate to prevent simple tag
624  * starvation.  Since we'd like to ensure that there is at least
625  * 1/2 of the timeout length left for a starved transaction to
626  * complete after we've sent an ordered tag, we must poll at least
627  * four times in every timeout period.  This takes care of the worst
628  * case where a starved transaction starts during an interval that
629  * meets the requirement "don't send an ordered tag" test so it takes
630  * us two intervals to determine that a tag must be sent.
631  */
632 #ifndef DA_ORDEREDTAG_INTERVAL
633 #define DA_ORDEREDTAG_INTERVAL 4
634 #endif
635 
636 static struct periph_driver dadriver =
637 {
638 	dainit, "da",
639 	TAILQ_HEAD_INITIALIZER(dadriver.units), /* generation */ 0
640 };
641 
642 PERIPHDRIVER_DECLARE(da, dadriver);
643 
644 MALLOC_DEFINE(M_SCSIDA, "scsi_da", "scsi_da buffers");
645 
646 static int
647 daopen(struct disk *dp)
648 {
649 	struct cam_periph *periph;
650 	struct da_softc *softc;
651 	int unit;
652 	int error;
653 
654 	periph = (struct cam_periph *)dp->d_drv1;
655 	if (periph == NULL) {
656 		return (ENXIO);
657 	}
658 
659 	if (cam_periph_acquire(periph) != CAM_REQ_CMP) {
660 		return(ENXIO);
661 	}
662 
663 	cam_periph_lock(periph);
664 	if ((error = cam_periph_hold(periph, PRIBIO|PCATCH)) != 0) {
665 		cam_periph_unlock(periph);
666 		cam_periph_release(periph);
667 		return (error);
668 	}
669 
670 	unit = periph->unit_number;
671 	softc = (struct da_softc *)periph->softc;
672 	softc->flags |= DA_FLAG_OPEN;
673 
674 	CAM_DEBUG(periph->path, CAM_DEBUG_TRACE,
675 	    ("daopen: disk=%s%d (unit %d)\n", dp->d_name, dp->d_unit,
676 	     unit));
677 
678 	if ((softc->flags & DA_FLAG_PACK_INVALID) != 0) {
679 		/* Invalidate our pack information. */
680 		softc->flags &= ~DA_FLAG_PACK_INVALID;
681 	}
682 
683 	error = dagetcapacity(periph);
684 
685 	if (error == 0) {
686 
687 		softc->disk->d_sectorsize = softc->params.secsize;
688 		softc->disk->d_mediasize = softc->params.secsize * (off_t)softc->params.sectors;
689 		/* XXX: these are not actually "firmware" values, so they may be wrong */
690 		softc->disk->d_fwsectors = softc->params.secs_per_track;
691 		softc->disk->d_fwheads = softc->params.heads;
692 		softc->disk->d_devstat->block_size = softc->params.secsize;
693 		softc->disk->d_devstat->flags &= ~DEVSTAT_BS_UNAVAILABLE;
694 
695 		if ((softc->flags & DA_FLAG_PACK_REMOVABLE) != 0 &&
696 		    (softc->quirks & DA_Q_NO_PREVENT) == 0)
697 			daprevent(periph, PR_PREVENT);
698 	} else
699 		softc->flags &= ~DA_FLAG_OPEN;
700 
701 	cam_periph_unhold(periph);
702 	cam_periph_unlock(periph);
703 
704 	if (error != 0) {
705 		cam_periph_release(periph);
706 	}
707 	return (error);
708 }
709 
710 static int
711 daclose(struct disk *dp)
712 {
713 	struct	cam_periph *periph;
714 	struct	da_softc *softc;
715 	int error;
716 
717 	periph = (struct cam_periph *)dp->d_drv1;
718 	if (periph == NULL)
719 		return (ENXIO);
720 
721 	cam_periph_lock(periph);
722 	if ((error = cam_periph_hold(periph, PRIBIO)) != 0) {
723 		cam_periph_unlock(periph);
724 		cam_periph_release(periph);
725 		return (error);
726 	}
727 
728 	softc = (struct da_softc *)periph->softc;
729 
730 	if ((softc->quirks & DA_Q_NO_SYNC_CACHE) == 0) {
731 		union	ccb *ccb;
732 
733 		ccb = cam_periph_getccb(periph, CAM_PRIORITY_NORMAL);
734 
735 		scsi_synchronize_cache(&ccb->csio,
736 				       /*retries*/1,
737 				       /*cbfcnp*/dadone,
738 				       MSG_SIMPLE_Q_TAG,
739 				       /*begin_lba*/0,/* Cover the whole disk */
740 				       /*lb_count*/0,
741 				       SSD_FULL_SIZE,
742 				       5 * 60 * 1000);
743 
744 		cam_periph_runccb(ccb, /*error_routine*/NULL, /*cam_flags*/0,
745 				  /*sense_flags*/SF_RETRY_UA,
746 				  softc->disk->d_devstat);
747 
748 		if ((ccb->ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) {
749 			if ((ccb->ccb_h.status & CAM_STATUS_MASK) ==
750 			     CAM_SCSI_STATUS_ERROR) {
751 				int asc, ascq;
752 				int sense_key, error_code;
753 
754 				scsi_extract_sense(&ccb->csio.sense_data,
755 						   &error_code,
756 						   &sense_key,
757 						   &asc, &ascq);
758 				if (sense_key != SSD_KEY_ILLEGAL_REQUEST)
759 					scsi_sense_print(&ccb->csio);
760 			} else {
761 				xpt_print(periph->path, "Synchronize cache "
762 				    "failed, status == 0x%x, scsi status == "
763 				    "0x%x\n", ccb->csio.ccb_h.status,
764 				    ccb->csio.scsi_status);
765 			}
766 		}
767 
768 		if ((ccb->ccb_h.status & CAM_DEV_QFRZN) != 0)
769 			cam_release_devq(ccb->ccb_h.path,
770 					 /*relsim_flags*/0,
771 					 /*reduction*/0,
772 					 /*timeout*/0,
773 					 /*getcount_only*/0);
774 
775 		xpt_release_ccb(ccb);
776 
777 	}
778 
779 	if ((softc->flags & DA_FLAG_PACK_REMOVABLE) != 0) {
780 		if ((softc->quirks & DA_Q_NO_PREVENT) == 0)
781 			daprevent(periph, PR_ALLOW);
782 		/*
783 		 * If we've got removeable media, mark the blocksize as
784 		 * unavailable, since it could change when new media is
785 		 * inserted.
786 		 */
787 		softc->disk->d_devstat->flags |= DEVSTAT_BS_UNAVAILABLE;
788 	}
789 
790 	softc->flags &= ~DA_FLAG_OPEN;
791 	cam_periph_unhold(periph);
792 	cam_periph_unlock(periph);
793 	cam_periph_release(periph);
794 	return (0);
795 }
796 
797 /*
798  * Actually translate the requested transfer into one the physical driver
799  * can understand.  The transfer is described by a buf and will include
800  * only one physical transfer.
801  */
802 static void
803 dastrategy(struct bio *bp)
804 {
805 	struct cam_periph *periph;
806 	struct da_softc *softc;
807 
808 	periph = (struct cam_periph *)bp->bio_disk->d_drv1;
809 	if (periph == NULL) {
810 		biofinish(bp, NULL, ENXIO);
811 		return;
812 	}
813 	softc = (struct da_softc *)periph->softc;
814 
815 	cam_periph_lock(periph);
816 
817 	/*
818 	 * If the device has been made invalid, error out
819 	 */
820 	if ((softc->flags & DA_FLAG_PACK_INVALID)) {
821 		cam_periph_unlock(periph);
822 		biofinish(bp, NULL, ENXIO);
823 		return;
824 	}
825 
826 	/*
827 	 * Place it in the queue of disk activities for this disk
828 	 */
829 	bioq_disksort(&softc->bio_queue, bp);
830 
831 	/*
832 	 * Schedule ourselves for performing the work.
833 	 */
834 	xpt_schedule(periph, CAM_PRIORITY_NORMAL);
835 	cam_periph_unlock(periph);
836 
837 	return;
838 }
839 
840 static int
841 dadump(void *arg, void *virtual, vm_offset_t physical, off_t offset, size_t length)
842 {
843 	struct	    cam_periph *periph;
844 	struct	    da_softc *softc;
845 	u_int	    secsize;
846 	struct	    ccb_scsiio csio;
847 	struct	    disk *dp;
848 
849 	dp = arg;
850 	periph = dp->d_drv1;
851 	if (periph == NULL)
852 		return (ENXIO);
853 	softc = (struct da_softc *)periph->softc;
854 	cam_periph_lock(periph);
855 	secsize = softc->params.secsize;
856 
857 	if ((softc->flags & DA_FLAG_PACK_INVALID) != 0) {
858 		cam_periph_unlock(periph);
859 		return (ENXIO);
860 	}
861 
862 	if (length > 0) {
863 		xpt_setup_ccb(&csio.ccb_h, periph->path, CAM_PRIORITY_NORMAL);
864 		csio.ccb_h.ccb_state = DA_CCB_DUMP;
865 		scsi_read_write(&csio,
866 				/*retries*/1,
867 				dadone,
868 				MSG_ORDERED_Q_TAG,
869 				/*read*/FALSE,
870 				/*byte2*/0,
871 				/*minimum_cmd_size*/ softc->minimum_cmd_size,
872 				offset / secsize,
873 				length / secsize,
874 				/*data_ptr*/(u_int8_t *) virtual,
875 				/*dxfer_len*/length,
876 				/*sense_len*/SSD_FULL_SIZE,
877 				DA_DEFAULT_TIMEOUT * 1000);
878 		xpt_polled_action((union ccb *)&csio);
879 
880 		if ((csio.ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) {
881 			printf("Aborting dump due to I/O error.\n");
882 			if ((csio.ccb_h.status & CAM_STATUS_MASK) ==
883 			     CAM_SCSI_STATUS_ERROR)
884 				scsi_sense_print(&csio);
885 			else
886 				printf("status == 0x%x, scsi status == 0x%x\n",
887 				       csio.ccb_h.status, csio.scsi_status);
888 			return(EIO);
889 		}
890 		cam_periph_unlock(periph);
891 		return(0);
892 	}
893 
894 	/*
895 	 * Sync the disk cache contents to the physical media.
896 	 */
897 	if ((softc->quirks & DA_Q_NO_SYNC_CACHE) == 0) {
898 
899 		xpt_setup_ccb(&csio.ccb_h, periph->path, CAM_PRIORITY_NORMAL);
900 		csio.ccb_h.ccb_state = DA_CCB_DUMP;
901 		scsi_synchronize_cache(&csio,
902 				       /*retries*/1,
903 				       /*cbfcnp*/dadone,
904 				       MSG_SIMPLE_Q_TAG,
905 				       /*begin_lba*/0,/* Cover the whole disk */
906 				       /*lb_count*/0,
907 				       SSD_FULL_SIZE,
908 				       5 * 60 * 1000);
909 		xpt_polled_action((union ccb *)&csio);
910 
911 		if ((csio.ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) {
912 			if ((csio.ccb_h.status & CAM_STATUS_MASK) ==
913 			     CAM_SCSI_STATUS_ERROR) {
914 				int asc, ascq;
915 				int sense_key, error_code;
916 
917 				scsi_extract_sense(&csio.sense_data,
918 						   &error_code,
919 						   &sense_key,
920 						   &asc, &ascq);
921 				if (sense_key != SSD_KEY_ILLEGAL_REQUEST)
922 					scsi_sense_print(&csio);
923 			} else {
924 				xpt_print(periph->path, "Synchronize cache "
925 				    "failed, status == 0x%x, scsi status == "
926 				    "0x%x\n", csio.ccb_h.status,
927 				    csio.scsi_status);
928 			}
929 		}
930 	}
931 	cam_periph_unlock(periph);
932 	return (0);
933 }
934 
935 static void
936 dainit(void)
937 {
938 	cam_status status;
939 
940 	/*
941 	 * Install a global async callback.  This callback will
942 	 * receive async callbacks like "new device found".
943 	 */
944 	status = xpt_register_async(AC_FOUND_DEVICE, daasync, NULL, NULL);
945 
946 	if (status != CAM_REQ_CMP) {
947 		printf("da: Failed to attach master async callback "
948 		       "due to status 0x%x!\n", status);
949 	} else if (da_send_ordered) {
950 
951 		/* Register our shutdown event handler */
952 		if ((EVENTHANDLER_REGISTER(shutdown_post_sync, dashutdown,
953 					   NULL, SHUTDOWN_PRI_DEFAULT)) == NULL)
954 		    printf("dainit: shutdown event registration failed!\n");
955 	}
956 }
957 
958 static void
959 daoninvalidate(struct cam_periph *periph)
960 {
961 	struct da_softc *softc;
962 
963 	softc = (struct da_softc *)periph->softc;
964 
965 	/*
966 	 * De-register any async callbacks.
967 	 */
968 	xpt_register_async(0, daasync, periph, periph->path);
969 
970 	softc->flags |= DA_FLAG_PACK_INVALID;
971 
972 	/*
973 	 * Return all queued I/O with ENXIO.
974 	 * XXX Handle any transactions queued to the card
975 	 *     with XPT_ABORT_CCB.
976 	 */
977 	bioq_flush(&softc->bio_queue, NULL, ENXIO);
978 
979 	disk_gone(softc->disk);
980 	xpt_print(periph->path, "lost device\n");
981 }
982 
983 static void
984 dacleanup(struct cam_periph *periph)
985 {
986 	struct da_softc *softc;
987 
988 	softc = (struct da_softc *)periph->softc;
989 
990 	xpt_print(periph->path, "removing device entry\n");
991 	cam_periph_unlock(periph);
992 
993 	/*
994 	 * If we can't free the sysctl tree, oh well...
995 	 */
996 	if ((softc->flags & DA_FLAG_SCTX_INIT) != 0
997 	    && sysctl_ctx_free(&softc->sysctl_ctx) != 0) {
998 		xpt_print(periph->path, "can't remove sysctl context\n");
999 	}
1000 
1001 	disk_destroy(softc->disk);
1002 	callout_drain(&softc->sendordered_c);
1003 	free(softc, M_DEVBUF);
1004 	cam_periph_lock(periph);
1005 }
1006 
1007 static void
1008 daasync(void *callback_arg, u_int32_t code,
1009 	struct cam_path *path, void *arg)
1010 {
1011 	struct cam_periph *periph;
1012 
1013 	periph = (struct cam_periph *)callback_arg;
1014 	switch (code) {
1015 	case AC_FOUND_DEVICE:
1016 	{
1017 		struct ccb_getdev *cgd;
1018 		cam_status status;
1019 
1020 		cgd = (struct ccb_getdev *)arg;
1021 		if (cgd == NULL)
1022 			break;
1023 
1024 		if (cgd->protocol != PROTO_SCSI)
1025 			break;
1026 
1027 		if (SID_TYPE(&cgd->inq_data) != T_DIRECT
1028 		    && SID_TYPE(&cgd->inq_data) != T_RBC
1029 		    && SID_TYPE(&cgd->inq_data) != T_OPTICAL)
1030 			break;
1031 
1032 		/*
1033 		 * Allocate a peripheral instance for
1034 		 * this device and start the probe
1035 		 * process.
1036 		 */
1037 		status = cam_periph_alloc(daregister, daoninvalidate,
1038 					  dacleanup, dastart,
1039 					  "da", CAM_PERIPH_BIO,
1040 					  cgd->ccb_h.path, daasync,
1041 					  AC_FOUND_DEVICE, cgd);
1042 
1043 		if (status != CAM_REQ_CMP
1044 		 && status != CAM_REQ_INPROG)
1045 			printf("daasync: Unable to attach to new device "
1046 				"due to status 0x%x\n", status);
1047 		break;
1048 	}
1049 	case AC_SENT_BDR:
1050 	case AC_BUS_RESET:
1051 	{
1052 		struct da_softc *softc;
1053 		struct ccb_hdr *ccbh;
1054 
1055 		softc = (struct da_softc *)periph->softc;
1056 		/*
1057 		 * Don't fail on the expected unit attention
1058 		 * that will occur.
1059 		 */
1060 		softc->flags |= DA_FLAG_RETRY_UA;
1061 		LIST_FOREACH(ccbh, &softc->pending_ccbs, periph_links.le)
1062 			ccbh->ccb_state |= DA_CCB_RETRY_UA;
1063 		/* FALLTHROUGH*/
1064 	}
1065 	default:
1066 		cam_periph_async(periph, code, path, arg);
1067 		break;
1068 	}
1069 }
1070 
1071 static void
1072 dasysctlinit(void *context, int pending)
1073 {
1074 	struct cam_periph *periph;
1075 	struct da_softc *softc;
1076 	char tmpstr[80], tmpstr2[80];
1077 	struct ccb_trans_settings cts;
1078 
1079 	periph = (struct cam_periph *)context;
1080 	/*
1081 	 * periph was held for us when this task was enqueued
1082 	 */
1083 	if (periph->flags & CAM_PERIPH_INVALID) {
1084 		cam_periph_release(periph);
1085 		return;
1086 	}
1087 
1088 	softc = (struct da_softc *)periph->softc;
1089 	snprintf(tmpstr, sizeof(tmpstr), "CAM DA unit %d", periph->unit_number);
1090 	snprintf(tmpstr2, sizeof(tmpstr2), "%d", periph->unit_number);
1091 
1092 	sysctl_ctx_init(&softc->sysctl_ctx);
1093 	softc->flags |= DA_FLAG_SCTX_INIT;
1094 	softc->sysctl_tree = SYSCTL_ADD_NODE(&softc->sysctl_ctx,
1095 		SYSCTL_STATIC_CHILDREN(_kern_cam_da), OID_AUTO, tmpstr2,
1096 		CTLFLAG_RD, 0, tmpstr);
1097 	if (softc->sysctl_tree == NULL) {
1098 		printf("dasysctlinit: unable to allocate sysctl tree\n");
1099 		cam_periph_release(periph);
1100 		return;
1101 	}
1102 
1103 	/*
1104 	 * Now register the sysctl handler, so the user can change the value on
1105 	 * the fly.
1106 	 */
1107 	SYSCTL_ADD_PROC(&softc->sysctl_ctx, SYSCTL_CHILDREN(softc->sysctl_tree),
1108 		OID_AUTO, "minimum_cmd_size", CTLTYPE_INT | CTLFLAG_RW,
1109 		&softc->minimum_cmd_size, 0, dacmdsizesysctl, "I",
1110 		"Minimum CDB size");
1111 
1112 	/*
1113 	 * Add some addressing info.
1114 	 */
1115 	memset(&cts, 0, sizeof (cts));
1116 	xpt_setup_ccb(&cts.ccb_h, periph->path, /*priority*/1);
1117 	cts.ccb_h.func_code = XPT_GET_TRAN_SETTINGS;
1118 	cts.type = CTS_TYPE_CURRENT_SETTINGS;
1119 	cam_periph_lock(periph);
1120 	xpt_action((union ccb *)&cts);
1121 	cam_periph_unlock(periph);
1122 	if (cts.ccb_h.status != CAM_REQ_CMP) {
1123 		cam_periph_release(periph);
1124 		return;
1125 	}
1126 	if (cts.protocol == PROTO_SCSI && cts.transport == XPORT_FC) {
1127 		struct ccb_trans_settings_fc *fc = &cts.xport_specific.fc;
1128 		if (fc->valid & CTS_FC_VALID_WWPN) {
1129 			softc->wwpn = fc->wwpn;
1130 			SYSCTL_ADD_XLONG(&softc->sysctl_ctx,
1131 			    SYSCTL_CHILDREN(softc->sysctl_tree),
1132 			    OID_AUTO, "wwpn", CTLTYPE_QUAD | CTLFLAG_RD,
1133 			    &softc->wwpn, "World Wide Port Name");
1134 		}
1135 	}
1136 	cam_periph_release(periph);
1137 }
1138 
1139 static int
1140 dacmdsizesysctl(SYSCTL_HANDLER_ARGS)
1141 {
1142 	int error, value;
1143 
1144 	value = *(int *)arg1;
1145 
1146 	error = sysctl_handle_int(oidp, &value, 0, req);
1147 
1148 	if ((error != 0)
1149 	 || (req->newptr == NULL))
1150 		return (error);
1151 
1152 	/*
1153 	 * Acceptable values here are 6, 10, 12 or 16.
1154 	 */
1155 	if (value < 6)
1156 		value = 6;
1157 	else if ((value > 6)
1158 	      && (value <= 10))
1159 		value = 10;
1160 	else if ((value > 10)
1161 	      && (value <= 12))
1162 		value = 12;
1163 	else if (value > 12)
1164 		value = 16;
1165 
1166 	*(int *)arg1 = value;
1167 
1168 	return (0);
1169 }
1170 
1171 static cam_status
1172 daregister(struct cam_periph *periph, void *arg)
1173 {
1174 	struct da_softc *softc;
1175 	struct ccb_pathinq cpi;
1176 	struct ccb_getdev *cgd;
1177 	char tmpstr[80];
1178 	caddr_t match;
1179 
1180 	cgd = (struct ccb_getdev *)arg;
1181 	if (periph == NULL) {
1182 		printf("daregister: periph was NULL!!\n");
1183 		return(CAM_REQ_CMP_ERR);
1184 	}
1185 
1186 	if (cgd == NULL) {
1187 		printf("daregister: no getdev CCB, can't register device\n");
1188 		return(CAM_REQ_CMP_ERR);
1189 	}
1190 
1191 	softc = (struct da_softc *)malloc(sizeof(*softc), M_DEVBUF,
1192 	    M_NOWAIT|M_ZERO);
1193 
1194 	if (softc == NULL) {
1195 		printf("daregister: Unable to probe new device. "
1196 		       "Unable to allocate softc\n");
1197 		return(CAM_REQ_CMP_ERR);
1198 	}
1199 
1200 	LIST_INIT(&softc->pending_ccbs);
1201 	softc->state = DA_STATE_PROBE;
1202 	bioq_init(&softc->bio_queue);
1203 	if (SID_IS_REMOVABLE(&cgd->inq_data))
1204 		softc->flags |= DA_FLAG_PACK_REMOVABLE;
1205 	if ((cgd->inq_data.flags & SID_CmdQue) != 0)
1206 		softc->flags |= DA_FLAG_TAGGED_QUEUING;
1207 
1208 	periph->softc = softc;
1209 
1210 	/*
1211 	 * See if this device has any quirks.
1212 	 */
1213 	match = cam_quirkmatch((caddr_t)&cgd->inq_data,
1214 			       (caddr_t)da_quirk_table,
1215 			       sizeof(da_quirk_table)/sizeof(*da_quirk_table),
1216 			       sizeof(*da_quirk_table), scsi_inquiry_match);
1217 
1218 	if (match != NULL)
1219 		softc->quirks = ((struct da_quirk_entry *)match)->quirks;
1220 	else
1221 		softc->quirks = DA_Q_NONE;
1222 
1223 	/* Check if the SIM does not want 6 byte commands */
1224 	bzero(&cpi, sizeof(cpi));
1225 	xpt_setup_ccb(&cpi.ccb_h, periph->path, CAM_PRIORITY_NORMAL);
1226 	cpi.ccb_h.func_code = XPT_PATH_INQ;
1227 	xpt_action((union ccb *)&cpi);
1228 	if (cpi.ccb_h.status == CAM_REQ_CMP && (cpi.hba_misc & PIM_NO_6_BYTE))
1229 		softc->quirks |= DA_Q_NO_6_BYTE;
1230 
1231 	TASK_INIT(&softc->sysctl_task, 0, dasysctlinit, periph);
1232 
1233 	/*
1234 	 * RBC devices don't have to support READ(6), only READ(10).
1235 	 */
1236 	if (softc->quirks & DA_Q_NO_6_BYTE || SID_TYPE(&cgd->inq_data) == T_RBC)
1237 		softc->minimum_cmd_size = 10;
1238 	else
1239 		softc->minimum_cmd_size = 6;
1240 
1241 	/*
1242 	 * Load the user's default, if any.
1243 	 */
1244 	snprintf(tmpstr, sizeof(tmpstr), "kern.cam.da.%d.minimum_cmd_size",
1245 		 periph->unit_number);
1246 	TUNABLE_INT_FETCH(tmpstr, &softc->minimum_cmd_size);
1247 
1248 	/*
1249 	 * 6, 10, 12 and 16 are the currently permissible values.
1250 	 */
1251 	if (softc->minimum_cmd_size < 6)
1252 		softc->minimum_cmd_size = 6;
1253 	else if ((softc->minimum_cmd_size > 6)
1254 	      && (softc->minimum_cmd_size <= 10))
1255 		softc->minimum_cmd_size = 10;
1256 	else if ((softc->minimum_cmd_size > 10)
1257 	      && (softc->minimum_cmd_size <= 12))
1258 		softc->minimum_cmd_size = 12;
1259 	else if (softc->minimum_cmd_size > 12)
1260 		softc->minimum_cmd_size = 16;
1261 
1262 	/*
1263 	 * Register this media as a disk
1264 	 */
1265 
1266 	/*
1267 	 * Add async callbacks for bus reset and
1268 	 * bus device reset calls.  I don't bother
1269 	 * checking if this fails as, in most cases,
1270 	 * the system will function just fine without
1271 	 * them and the only alternative would be to
1272 	 * not attach the device on failure.
1273 	 */
1274 	xpt_register_async(AC_SENT_BDR | AC_BUS_RESET | AC_LOST_DEVICE,
1275 			   daasync, periph, periph->path);
1276 
1277 	/*
1278 	 * Take an exclusive refcount on the periph while dastart is called
1279 	 * to finish the probe.  The reference will be dropped in dadone at
1280 	 * the end of probe.
1281 	 */
1282 	(void)cam_periph_hold(periph, PRIBIO);
1283 
1284 	/*
1285 	 * Schedule a periodic event to occasionally send an
1286 	 * ordered tag to a device.
1287 	 */
1288 	callout_init_mtx(&softc->sendordered_c, periph->sim->mtx, 0);
1289 	callout_reset(&softc->sendordered_c,
1290 	    (DA_DEFAULT_TIMEOUT * hz) / DA_ORDEREDTAG_INTERVAL,
1291 	    dasendorderedtag, softc);
1292 
1293 	mtx_unlock(periph->sim->mtx);
1294 	softc->disk = disk_alloc();
1295 	softc->disk->d_open = daopen;
1296 	softc->disk->d_close = daclose;
1297 	softc->disk->d_strategy = dastrategy;
1298 	softc->disk->d_dump = dadump;
1299 	softc->disk->d_name = "da";
1300 	softc->disk->d_drv1 = periph;
1301 	if (cpi.maxio == 0)
1302 		softc->disk->d_maxsize = DFLTPHYS;	/* traditional default */
1303 	else if (cpi.maxio > MAXPHYS)
1304 		softc->disk->d_maxsize = MAXPHYS;	/* for safety */
1305 	else
1306 		softc->disk->d_maxsize = cpi.maxio;
1307 	softc->disk->d_unit = periph->unit_number;
1308 	softc->disk->d_flags = 0;
1309 	if ((softc->quirks & DA_Q_NO_SYNC_CACHE) == 0)
1310 		softc->disk->d_flags |= DISKFLAG_CANFLUSHCACHE;
1311 	strlcpy(softc->disk->d_ident, cgd->serial_num,
1312 	    MIN(sizeof(softc->disk->d_ident), cgd->serial_num_len + 1));
1313 	softc->disk->d_hba_vendor = cpi.hba_vendor;
1314 	softc->disk->d_hba_device = cpi.hba_device;
1315 	softc->disk->d_hba_subvendor = cpi.hba_subvendor;
1316 	softc->disk->d_hba_subdevice = cpi.hba_subdevice;
1317 	disk_create(softc->disk, DISK_VERSION);
1318 	mtx_lock(periph->sim->mtx);
1319 
1320 	xpt_schedule(periph, CAM_PRIORITY_DEV);
1321 
1322 	return(CAM_REQ_CMP);
1323 }
1324 
1325 static void
1326 dastart(struct cam_periph *periph, union ccb *start_ccb)
1327 {
1328 	struct da_softc *softc;
1329 
1330 	softc = (struct da_softc *)periph->softc;
1331 
1332 	switch (softc->state) {
1333 	case DA_STATE_NORMAL:
1334 	{
1335 		/* Pull a buffer from the queue and get going on it */
1336 		struct bio *bp;
1337 
1338 		/*
1339 		 * See if there is a buf with work for us to do..
1340 		 */
1341 		bp = bioq_first(&softc->bio_queue);
1342 		if (periph->immediate_priority <= periph->pinfo.priority) {
1343 			CAM_DEBUG_PRINT(CAM_DEBUG_SUBTRACE,
1344 					("queuing for immediate ccb\n"));
1345 			start_ccb->ccb_h.ccb_state = DA_CCB_WAITING;
1346 			SLIST_INSERT_HEAD(&periph->ccb_list, &start_ccb->ccb_h,
1347 					  periph_links.sle);
1348 			periph->immediate_priority = CAM_PRIORITY_NONE;
1349 			wakeup(&periph->ccb_list);
1350 		} else if (bp == NULL) {
1351 			xpt_release_ccb(start_ccb);
1352 		} else {
1353 			u_int8_t tag_code;
1354 
1355 			bioq_remove(&softc->bio_queue, bp);
1356 
1357 			if ((softc->flags & DA_FLAG_NEED_OTAG) != 0) {
1358 				softc->flags &= ~DA_FLAG_NEED_OTAG;
1359 				softc->ordered_tag_count++;
1360 				tag_code = MSG_ORDERED_Q_TAG;
1361 			} else {
1362 				tag_code = MSG_SIMPLE_Q_TAG;
1363 			}
1364 			switch (bp->bio_cmd) {
1365 			case BIO_READ:
1366 			case BIO_WRITE:
1367 				scsi_read_write(&start_ccb->csio,
1368 						/*retries*/da_retry_count,
1369 						/*cbfcnp*/dadone,
1370 						/*tag_action*/tag_code,
1371 						/*read_op*/bp->bio_cmd == BIO_READ,
1372 						/*byte2*/0,
1373 						softc->minimum_cmd_size,
1374 						/*lba*/bp->bio_pblkno,
1375 						/*block_count*/bp->bio_bcount /
1376 						softc->params.secsize,
1377 						/*data_ptr*/ bp->bio_data,
1378 						/*dxfer_len*/ bp->bio_bcount,
1379 						/*sense_len*/SSD_FULL_SIZE,
1380 						/*timeout*/da_default_timeout*1000);
1381 				break;
1382 			case BIO_FLUSH:
1383 				scsi_synchronize_cache(&start_ccb->csio,
1384 						       /*retries*/1,
1385 						       /*cbfcnp*/dadone,
1386 						       MSG_SIMPLE_Q_TAG,
1387 						       /*begin_lba*/0,/* Cover the whole disk */
1388 						       /*lb_count*/0,
1389 						       SSD_FULL_SIZE,
1390 						       /*timeout*/da_default_timeout*1000);
1391 				break;
1392 			}
1393 			start_ccb->ccb_h.ccb_state = DA_CCB_BUFFER_IO;
1394 
1395 			/*
1396 			 * Block out any asyncronous callbacks
1397 			 * while we touch the pending ccb list.
1398 			 */
1399 			LIST_INSERT_HEAD(&softc->pending_ccbs,
1400 					 &start_ccb->ccb_h, periph_links.le);
1401 			softc->outstanding_cmds++;
1402 
1403 			/* We expect a unit attention from this device */
1404 			if ((softc->flags & DA_FLAG_RETRY_UA) != 0) {
1405 				start_ccb->ccb_h.ccb_state |= DA_CCB_RETRY_UA;
1406 				softc->flags &= ~DA_FLAG_RETRY_UA;
1407 			}
1408 
1409 			start_ccb->ccb_h.ccb_bp = bp;
1410 			bp = bioq_first(&softc->bio_queue);
1411 
1412 			xpt_action(start_ccb);
1413 		}
1414 
1415 		if (bp != NULL) {
1416 			/* Have more work to do, so ensure we stay scheduled */
1417 			xpt_schedule(periph, CAM_PRIORITY_NORMAL);
1418 		}
1419 		break;
1420 	}
1421 	case DA_STATE_PROBE:
1422 	{
1423 		struct ccb_scsiio *csio;
1424 		struct scsi_read_capacity_data *rcap;
1425 
1426 		rcap = (struct scsi_read_capacity_data *)
1427 		    malloc(sizeof(*rcap), M_SCSIDA, M_NOWAIT|M_ZERO);
1428 		if (rcap == NULL) {
1429 			printf("dastart: Couldn't malloc read_capacity data\n");
1430 			/* da_free_periph??? */
1431 			break;
1432 		}
1433 		csio = &start_ccb->csio;
1434 		scsi_read_capacity(csio,
1435 				   /*retries*/4,
1436 				   dadone,
1437 				   MSG_SIMPLE_Q_TAG,
1438 				   rcap,
1439 				   SSD_FULL_SIZE,
1440 				   /*timeout*/5000);
1441 		start_ccb->ccb_h.ccb_bp = NULL;
1442 		start_ccb->ccb_h.ccb_state = DA_CCB_PROBE;
1443 		xpt_action(start_ccb);
1444 		break;
1445 	}
1446 	case DA_STATE_PROBE2:
1447 	{
1448 		struct ccb_scsiio *csio;
1449 		struct scsi_read_capacity_data_long *rcaplong;
1450 
1451 		rcaplong = (struct scsi_read_capacity_data_long *)
1452 			malloc(sizeof(*rcaplong), M_SCSIDA, M_NOWAIT|M_ZERO);
1453 		if (rcaplong == NULL) {
1454 			printf("dastart: Couldn't malloc read_capacity data\n");
1455 			/* da_free_periph??? */
1456 			break;
1457 		}
1458 		csio = &start_ccb->csio;
1459 		scsi_read_capacity_16(csio,
1460 				      /*retries*/ 4,
1461 				      /*cbfcnp*/ dadone,
1462 				      /*tag_action*/ MSG_SIMPLE_Q_TAG,
1463 				      /*lba*/ 0,
1464 				      /*reladr*/ 0,
1465 				      /*pmi*/ 0,
1466 				      rcaplong,
1467 				      /*sense_len*/ SSD_FULL_SIZE,
1468 				      /*timeout*/ 60000);
1469 		start_ccb->ccb_h.ccb_bp = NULL;
1470 		start_ccb->ccb_h.ccb_state = DA_CCB_PROBE2;
1471 		xpt_action(start_ccb);
1472 		break;
1473 	}
1474 	}
1475 }
1476 
1477 static int
1478 cmd6workaround(union ccb *ccb)
1479 {
1480 	struct scsi_rw_6 cmd6;
1481 	struct scsi_rw_10 *cmd10;
1482 	struct da_softc *softc;
1483 	u_int8_t *cdb;
1484 	int frozen;
1485 
1486 	cdb = ccb->csio.cdb_io.cdb_bytes;
1487 
1488 	/* Translation only possible if CDB is an array and cmd is R/W6 */
1489 	if ((ccb->ccb_h.flags & CAM_CDB_POINTER) != 0 ||
1490 	    (*cdb != READ_6 && *cdb != WRITE_6))
1491 		return 0;
1492 
1493 	xpt_print(ccb->ccb_h.path, "READ(6)/WRITE(6) not supported, "
1494 	    "increasing minimum_cmd_size to 10.\n");
1495  	softc = (struct da_softc *)xpt_path_periph(ccb->ccb_h.path)->softc;
1496 	softc->minimum_cmd_size = 10;
1497 
1498 	bcopy(cdb, &cmd6, sizeof(struct scsi_rw_6));
1499 	cmd10 = (struct scsi_rw_10 *)cdb;
1500 	cmd10->opcode = (cmd6.opcode == READ_6) ? READ_10 : WRITE_10;
1501 	cmd10->byte2 = 0;
1502 	scsi_ulto4b(scsi_3btoul(cmd6.addr), cmd10->addr);
1503 	cmd10->reserved = 0;
1504 	scsi_ulto2b(cmd6.length, cmd10->length);
1505 	cmd10->control = cmd6.control;
1506 	ccb->csio.cdb_len = sizeof(*cmd10);
1507 
1508 	/* Requeue request, unfreezing queue if necessary */
1509 	frozen = (ccb->ccb_h.status & CAM_DEV_QFRZN) != 0;
1510  	ccb->ccb_h.status = CAM_REQUEUE_REQ;
1511 	xpt_action(ccb);
1512 	if (frozen) {
1513 		cam_release_devq(ccb->ccb_h.path,
1514 				 /*relsim_flags*/0,
1515 				 /*reduction*/0,
1516 				 /*timeout*/0,
1517 				 /*getcount_only*/0);
1518 	}
1519 	return (ERESTART);
1520 }
1521 
1522 static void
1523 dadone(struct cam_periph *periph, union ccb *done_ccb)
1524 {
1525 	struct da_softc *softc;
1526 	struct ccb_scsiio *csio;
1527 	u_int32_t  priority;
1528 
1529 	softc = (struct da_softc *)periph->softc;
1530 	priority = done_ccb->ccb_h.pinfo.priority;
1531 	csio = &done_ccb->csio;
1532 	switch (csio->ccb_h.ccb_state & DA_CCB_TYPE_MASK) {
1533 	case DA_CCB_BUFFER_IO:
1534 	{
1535 		struct bio *bp;
1536 
1537 		bp = (struct bio *)done_ccb->ccb_h.ccb_bp;
1538 		if ((done_ccb->ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) {
1539 			int error;
1540 			int sf;
1541 
1542 			if ((csio->ccb_h.ccb_state & DA_CCB_RETRY_UA) != 0)
1543 				sf = SF_RETRY_UA;
1544 			else
1545 				sf = 0;
1546 
1547 			error = daerror(done_ccb, CAM_RETRY_SELTO, sf);
1548 			if (error == ERESTART) {
1549 				/*
1550 				 * A retry was scheuled, so
1551 				 * just return.
1552 				 */
1553 				return;
1554 			}
1555 			if (error != 0) {
1556 
1557 				if (error == ENXIO) {
1558 					/*
1559 					 * Catastrophic error.  Mark our pack as
1560 					 * invalid.
1561 					 */
1562 					/*
1563 					 * XXX See if this is really a media
1564 					 * XXX change first?
1565 					 */
1566 					xpt_print(periph->path,
1567 					    "Invalidating pack\n");
1568 					softc->flags |= DA_FLAG_PACK_INVALID;
1569 				}
1570 
1571 				/*
1572 				 * return all queued I/O with EIO, so that
1573 				 * the client can retry these I/Os in the
1574 				 * proper order should it attempt to recover.
1575 				 */
1576 				bioq_flush(&softc->bio_queue, NULL, EIO);
1577 				bp->bio_error = error;
1578 				bp->bio_resid = bp->bio_bcount;
1579 				bp->bio_flags |= BIO_ERROR;
1580 			} else {
1581 				bp->bio_resid = csio->resid;
1582 				bp->bio_error = 0;
1583 				if (bp->bio_resid != 0)
1584 					bp->bio_flags |= BIO_ERROR;
1585 			}
1586 			if ((done_ccb->ccb_h.status & CAM_DEV_QFRZN) != 0)
1587 				cam_release_devq(done_ccb->ccb_h.path,
1588 						 /*relsim_flags*/0,
1589 						 /*reduction*/0,
1590 						 /*timeout*/0,
1591 						 /*getcount_only*/0);
1592 		} else {
1593 			if ((done_ccb->ccb_h.status & CAM_DEV_QFRZN) != 0)
1594 				panic("REQ_CMP with QFRZN");
1595 			bp->bio_resid = csio->resid;
1596 			if (csio->resid > 0)
1597 				bp->bio_flags |= BIO_ERROR;
1598 		}
1599 
1600 		/*
1601 		 * Block out any asyncronous callbacks
1602 		 * while we touch the pending ccb list.
1603 		 */
1604 		LIST_REMOVE(&done_ccb->ccb_h, periph_links.le);
1605 		softc->outstanding_cmds--;
1606 		if (softc->outstanding_cmds == 0)
1607 			softc->flags |= DA_FLAG_WENT_IDLE;
1608 
1609 		biodone(bp);
1610 		break;
1611 	}
1612 	case DA_CCB_PROBE:
1613 	case DA_CCB_PROBE2:
1614 	{
1615 		struct	   scsi_read_capacity_data *rdcap;
1616 		struct     scsi_read_capacity_data_long *rcaplong;
1617 		char	   announce_buf[80];
1618 
1619 		rdcap = NULL;
1620 		rcaplong = NULL;
1621 		if (softc->state == DA_STATE_PROBE)
1622 			rdcap =(struct scsi_read_capacity_data *)csio->data_ptr;
1623 		else
1624 			rcaplong = (struct scsi_read_capacity_data_long *)
1625 				csio->data_ptr;
1626 
1627 		if ((csio->ccb_h.status & CAM_STATUS_MASK) == CAM_REQ_CMP) {
1628 			struct disk_params *dp;
1629 			uint32_t block_size;
1630 			uint64_t maxsector;
1631 
1632 			if (softc->state == DA_STATE_PROBE) {
1633 				block_size = scsi_4btoul(rdcap->length);
1634 				maxsector = scsi_4btoul(rdcap->addr);
1635 
1636 				/*
1637 				 * According to SBC-2, if the standard 10
1638 				 * byte READ CAPACITY command returns 2^32,
1639 				 * we should issue the 16 byte version of
1640 				 * the command, since the device in question
1641 				 * has more sectors than can be represented
1642 				 * with the short version of the command.
1643 				 */
1644 				if (maxsector == 0xffffffff) {
1645 					softc->state = DA_STATE_PROBE2;
1646 					free(rdcap, M_SCSIDA);
1647 					xpt_release_ccb(done_ccb);
1648 					xpt_schedule(periph, priority);
1649 					return;
1650 				}
1651 			} else {
1652 				block_size = scsi_4btoul(rcaplong->length);
1653 				maxsector = scsi_8btou64(rcaplong->addr);
1654 			}
1655 
1656 			/*
1657 			 * Because GEOM code just will panic us if we
1658 			 * give them an 'illegal' value we'll avoid that
1659 			 * here.
1660 			 */
1661 			if (block_size >= MAXPHYS || block_size == 0) {
1662 				xpt_print(periph->path,
1663 				    "unsupportable block size %ju\n",
1664 				    (uintmax_t) block_size);
1665 				announce_buf[0] = '\0';
1666 				cam_periph_invalidate(periph);
1667 			} else {
1668 				dasetgeom(periph, block_size, maxsector);
1669 				dp = &softc->params;
1670 				snprintf(announce_buf, sizeof(announce_buf),
1671 				        "%juMB (%ju %u byte sectors: %dH %dS/T "
1672                                         "%dC)", (uintmax_t)
1673 	                                (((uintmax_t)dp->secsize *
1674 				        dp->sectors) / (1024*1024)),
1675 			                (uintmax_t)dp->sectors,
1676 				        dp->secsize, dp->heads,
1677                                         dp->secs_per_track, dp->cylinders);
1678 			}
1679 		} else {
1680 			int	error;
1681 
1682 			announce_buf[0] = '\0';
1683 
1684 			/*
1685 			 * Retry any UNIT ATTENTION type errors.  They
1686 			 * are expected at boot.
1687 			 */
1688 			error = daerror(done_ccb, CAM_RETRY_SELTO,
1689 					SF_RETRY_UA|SF_NO_PRINT);
1690 			if (error == ERESTART) {
1691 				/*
1692 				 * A retry was scheuled, so
1693 				 * just return.
1694 				 */
1695 				return;
1696 			} else if (error != 0) {
1697 				struct scsi_sense_data *sense;
1698 				int asc, ascq;
1699 				int sense_key, error_code;
1700 				int have_sense;
1701 				cam_status status;
1702 				struct ccb_getdev cgd;
1703 
1704 				/* Don't wedge this device's queue */
1705 				status = done_ccb->ccb_h.status;
1706 				if ((status & CAM_DEV_QFRZN) != 0)
1707 					cam_release_devq(done_ccb->ccb_h.path,
1708 							 /*relsim_flags*/0,
1709 							 /*reduction*/0,
1710 							 /*timeout*/0,
1711 							 /*getcount_only*/0);
1712 
1713 
1714 				xpt_setup_ccb(&cgd.ccb_h,
1715 					      done_ccb->ccb_h.path,
1716 					      CAM_PRIORITY_NORMAL);
1717 				cgd.ccb_h.func_code = XPT_GDEV_TYPE;
1718 				xpt_action((union ccb *)&cgd);
1719 
1720 				if (((csio->ccb_h.flags & CAM_SENSE_PHYS) != 0)
1721 				 || ((csio->ccb_h.flags & CAM_SENSE_PTR) != 0)
1722 				 || ((status & CAM_AUTOSNS_VALID) == 0))
1723 					have_sense = FALSE;
1724 				else
1725 					have_sense = TRUE;
1726 
1727 				if (have_sense) {
1728 					sense = &csio->sense_data;
1729 					scsi_extract_sense(sense, &error_code,
1730 							   &sense_key,
1731 							   &asc, &ascq);
1732 				}
1733 				/*
1734 				 * Attach to anything that claims to be a
1735 				 * direct access or optical disk device,
1736 				 * as long as it doesn't return a "Logical
1737 				 * unit not supported" (0x25) error.
1738 				 */
1739 				if ((have_sense) && (asc != 0x25)
1740 				 && (error_code == SSD_CURRENT_ERROR)) {
1741 					const char *sense_key_desc;
1742 					const char *asc_desc;
1743 
1744 					scsi_sense_desc(sense_key, asc, ascq,
1745 							&cgd.inq_data,
1746 							&sense_key_desc,
1747 							&asc_desc);
1748 					snprintf(announce_buf,
1749 					    sizeof(announce_buf),
1750 						"Attempt to query device "
1751 						"size failed: %s, %s",
1752 						sense_key_desc,
1753 						asc_desc);
1754 				} else {
1755 					if (have_sense)
1756 						scsi_sense_print(
1757 							&done_ccb->csio);
1758 					else {
1759 						xpt_print(periph->path,
1760 						    "got CAM status %#x\n",
1761 						    done_ccb->ccb_h.status);
1762 					}
1763 
1764 					xpt_print(periph->path, "fatal error, "
1765 					    "failed to attach to device\n");
1766 
1767 					/*
1768 					 * Free up resources.
1769 					 */
1770 					cam_periph_invalidate(periph);
1771 				}
1772 			}
1773 		}
1774 		free(csio->data_ptr, M_SCSIDA);
1775 		if (announce_buf[0] != '\0') {
1776 			xpt_announce_periph(periph, announce_buf);
1777 			/*
1778 			 * Create our sysctl variables, now that we know
1779 			 * we have successfully attached.
1780 			 */
1781 			(void) cam_periph_acquire(periph);	/* increase the refcount */
1782 			taskqueue_enqueue(taskqueue_thread,&softc->sysctl_task);
1783 		}
1784 		softc->state = DA_STATE_NORMAL;
1785 		/*
1786 		 * Since our peripheral may be invalidated by an error
1787 		 * above or an external event, we must release our CCB
1788 		 * before releasing the probe lock on the peripheral.
1789 		 * The peripheral will only go away once the last lock
1790 		 * is removed, and we need it around for the CCB release
1791 		 * operation.
1792 		 */
1793 		xpt_release_ccb(done_ccb);
1794 		cam_periph_unhold(periph);
1795 		return;
1796 	}
1797 	case DA_CCB_WAITING:
1798 	{
1799 		/* Caller will release the CCB */
1800 		wakeup(&done_ccb->ccb_h.cbfcnp);
1801 		return;
1802 	}
1803 	case DA_CCB_DUMP:
1804 		/* No-op.  We're polling */
1805 		return;
1806 	default:
1807 		break;
1808 	}
1809 	xpt_release_ccb(done_ccb);
1810 }
1811 
1812 static int
1813 daerror(union ccb *ccb, u_int32_t cam_flags, u_int32_t sense_flags)
1814 {
1815 	struct da_softc	  *softc;
1816 	struct cam_periph *periph;
1817 	int error;
1818 
1819 	periph = xpt_path_periph(ccb->ccb_h.path);
1820 	softc = (struct da_softc *)periph->softc;
1821 
1822  	/*
1823 	 * Automatically detect devices that do not support
1824  	 * READ(6)/WRITE(6) and upgrade to using 10 byte cdbs.
1825  	 */
1826 	error = 0;
1827 	if ((ccb->ccb_h.status & CAM_STATUS_MASK) == CAM_REQ_INVALID) {
1828 		error = cmd6workaround(ccb);
1829 	} else if (((ccb->ccb_h.status & CAM_STATUS_MASK) ==
1830 		   CAM_SCSI_STATUS_ERROR)
1831 	 && (ccb->ccb_h.status & CAM_AUTOSNS_VALID)
1832 	 && (ccb->csio.scsi_status == SCSI_STATUS_CHECK_COND)
1833 	 && ((ccb->ccb_h.flags & CAM_SENSE_PHYS) == 0)
1834 	 && ((ccb->ccb_h.flags & CAM_SENSE_PTR) == 0)) {
1835 		int sense_key, error_code, asc, ascq;
1836 
1837  		scsi_extract_sense(&ccb->csio.sense_data,
1838 				   &error_code, &sense_key, &asc, &ascq);
1839 		if (sense_key == SSD_KEY_ILLEGAL_REQUEST)
1840  			error = cmd6workaround(ccb);
1841 	}
1842 	if (error == ERESTART)
1843 		return (ERESTART);
1844 
1845 	/*
1846 	 * XXX
1847 	 * Until we have a better way of doing pack validation,
1848 	 * don't treat UAs as errors.
1849 	 */
1850 	sense_flags |= SF_RETRY_UA;
1851 	return(cam_periph_error(ccb, cam_flags, sense_flags,
1852 				&softc->saved_ccb));
1853 }
1854 
1855 static void
1856 daprevent(struct cam_periph *periph, int action)
1857 {
1858 	struct	da_softc *softc;
1859 	union	ccb *ccb;
1860 	int	error;
1861 
1862 	softc = (struct da_softc *)periph->softc;
1863 
1864 	if (((action == PR_ALLOW)
1865 	  && (softc->flags & DA_FLAG_PACK_LOCKED) == 0)
1866 	 || ((action == PR_PREVENT)
1867 	  && (softc->flags & DA_FLAG_PACK_LOCKED) != 0)) {
1868 		return;
1869 	}
1870 
1871 	ccb = cam_periph_getccb(periph, CAM_PRIORITY_NORMAL);
1872 
1873 	scsi_prevent(&ccb->csio,
1874 		     /*retries*/1,
1875 		     /*cbcfp*/dadone,
1876 		     MSG_SIMPLE_Q_TAG,
1877 		     action,
1878 		     SSD_FULL_SIZE,
1879 		     5000);
1880 
1881 	error = cam_periph_runccb(ccb, /*error_routine*/NULL, CAM_RETRY_SELTO,
1882 				  SF_RETRY_UA, softc->disk->d_devstat);
1883 
1884 	if (error == 0) {
1885 		if (action == PR_ALLOW)
1886 			softc->flags &= ~DA_FLAG_PACK_LOCKED;
1887 		else
1888 			softc->flags |= DA_FLAG_PACK_LOCKED;
1889 	}
1890 
1891 	xpt_release_ccb(ccb);
1892 }
1893 
1894 static int
1895 dagetcapacity(struct cam_periph *periph)
1896 {
1897 	struct da_softc *softc;
1898 	union ccb *ccb;
1899 	struct scsi_read_capacity_data *rcap;
1900 	struct scsi_read_capacity_data_long *rcaplong;
1901 	uint32_t block_len;
1902 	uint64_t maxsector;
1903 	int error;
1904 	u_int32_t sense_flags;
1905 
1906 	softc = (struct da_softc *)periph->softc;
1907 	block_len = 0;
1908 	maxsector = 0;
1909 	error = 0;
1910 	sense_flags = SF_RETRY_UA;
1911 	if (softc->flags & DA_FLAG_PACK_REMOVABLE)
1912 		sense_flags |= SF_NO_PRINT;
1913 
1914 	/* Do a read capacity */
1915 	rcap = (struct scsi_read_capacity_data *)malloc(sizeof(*rcaplong),
1916 							M_SCSIDA,
1917 							M_NOWAIT);
1918 	if (rcap == NULL)
1919 		return (ENOMEM);
1920 
1921 	ccb = cam_periph_getccb(periph, CAM_PRIORITY_NORMAL);
1922 	scsi_read_capacity(&ccb->csio,
1923 			   /*retries*/4,
1924 			   /*cbfncp*/dadone,
1925 			   MSG_SIMPLE_Q_TAG,
1926 			   rcap,
1927 			   SSD_FULL_SIZE,
1928 			   /*timeout*/60000);
1929 	ccb->ccb_h.ccb_bp = NULL;
1930 
1931 	error = cam_periph_runccb(ccb, daerror,
1932 				  /*cam_flags*/CAM_RETRY_SELTO,
1933 				  sense_flags,
1934 				  softc->disk->d_devstat);
1935 
1936 	if ((ccb->ccb_h.status & CAM_DEV_QFRZN) != 0)
1937 		cam_release_devq(ccb->ccb_h.path,
1938 				 /*relsim_flags*/0,
1939 				 /*reduction*/0,
1940 				 /*timeout*/0,
1941 				 /*getcount_only*/0);
1942 
1943 	if (error == 0) {
1944 		block_len = scsi_4btoul(rcap->length);
1945 		maxsector = scsi_4btoul(rcap->addr);
1946 
1947 		if (maxsector != 0xffffffff)
1948 			goto done;
1949 	} else
1950 		goto done;
1951 
1952 	rcaplong = (struct scsi_read_capacity_data_long *)rcap;
1953 
1954 	scsi_read_capacity_16(&ccb->csio,
1955 			      /*retries*/ 4,
1956 			      /*cbfcnp*/ dadone,
1957 			      /*tag_action*/ MSG_SIMPLE_Q_TAG,
1958 			      /*lba*/ 0,
1959 			      /*reladr*/ 0,
1960 			      /*pmi*/ 0,
1961 			      rcaplong,
1962 			      /*sense_len*/ SSD_FULL_SIZE,
1963 			      /*timeout*/ 60000);
1964 	ccb->ccb_h.ccb_bp = NULL;
1965 
1966 	error = cam_periph_runccb(ccb, daerror,
1967 				  /*cam_flags*/CAM_RETRY_SELTO,
1968 				  sense_flags,
1969 				  softc->disk->d_devstat);
1970 
1971 	if ((ccb->ccb_h.status & CAM_DEV_QFRZN) != 0)
1972 		cam_release_devq(ccb->ccb_h.path,
1973 				 /*relsim_flags*/0,
1974 				 /*reduction*/0,
1975 				 /*timeout*/0,
1976 				 /*getcount_only*/0);
1977 
1978 	if (error == 0) {
1979 		block_len = scsi_4btoul(rcaplong->length);
1980 		maxsector = scsi_8btou64(rcaplong->addr);
1981 	}
1982 
1983 done:
1984 
1985 	if (error == 0) {
1986 		if (block_len >= MAXPHYS || block_len == 0) {
1987 			xpt_print(periph->path,
1988 			    "unsupportable block size %ju\n",
1989 			    (uintmax_t) block_len);
1990 			error = EINVAL;
1991 		} else
1992 			dasetgeom(periph, block_len, maxsector);
1993 	}
1994 
1995 	xpt_release_ccb(ccb);
1996 
1997 	free(rcap, M_SCSIDA);
1998 
1999 	return (error);
2000 }
2001 
2002 static void
2003 dasetgeom(struct cam_periph *periph, uint32_t block_len, uint64_t maxsector)
2004 {
2005 	struct ccb_calc_geometry ccg;
2006 	struct da_softc *softc;
2007 	struct disk_params *dp;
2008 
2009 	softc = (struct da_softc *)periph->softc;
2010 
2011 	dp = &softc->params;
2012 	dp->secsize = block_len;
2013 	dp->sectors = maxsector + 1;
2014 	/*
2015 	 * Have the controller provide us with a geometry
2016 	 * for this disk.  The only time the geometry
2017 	 * matters is when we boot and the controller
2018 	 * is the only one knowledgeable enough to come
2019 	 * up with something that will make this a bootable
2020 	 * device.
2021 	 */
2022 	xpt_setup_ccb(&ccg.ccb_h, periph->path, CAM_PRIORITY_NORMAL);
2023 	ccg.ccb_h.func_code = XPT_CALC_GEOMETRY;
2024 	ccg.block_size = dp->secsize;
2025 	ccg.volume_size = dp->sectors;
2026 	ccg.heads = 0;
2027 	ccg.secs_per_track = 0;
2028 	ccg.cylinders = 0;
2029 	xpt_action((union ccb*)&ccg);
2030 	if ((ccg.ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) {
2031 		/*
2032 		 * We don't know what went wrong here- but just pick
2033 		 * a geometry so we don't have nasty things like divide
2034 		 * by zero.
2035 		 */
2036 		dp->heads = 255;
2037 		dp->secs_per_track = 255;
2038 		dp->cylinders = dp->sectors / (255 * 255);
2039 		if (dp->cylinders == 0) {
2040 			dp->cylinders = 1;
2041 		}
2042 	} else {
2043 		dp->heads = ccg.heads;
2044 		dp->secs_per_track = ccg.secs_per_track;
2045 		dp->cylinders = ccg.cylinders;
2046 	}
2047 }
2048 
2049 static void
2050 dasendorderedtag(void *arg)
2051 {
2052 	struct da_softc *softc = arg;
2053 
2054 	if (da_send_ordered) {
2055 		if ((softc->ordered_tag_count == 0)
2056 		 && ((softc->flags & DA_FLAG_WENT_IDLE) == 0)) {
2057 			softc->flags |= DA_FLAG_NEED_OTAG;
2058 		}
2059 		if (softc->outstanding_cmds > 0)
2060 			softc->flags &= ~DA_FLAG_WENT_IDLE;
2061 
2062 		softc->ordered_tag_count = 0;
2063 	}
2064 	/* Queue us up again */
2065 	callout_reset(&softc->sendordered_c,
2066 	    (DA_DEFAULT_TIMEOUT * hz) / DA_ORDEREDTAG_INTERVAL,
2067 	    dasendorderedtag, softc);
2068 }
2069 
2070 /*
2071  * Step through all DA peripheral drivers, and if the device is still open,
2072  * sync the disk cache to physical media.
2073  */
2074 static void
2075 dashutdown(void * arg, int howto)
2076 {
2077 	struct cam_periph *periph;
2078 	struct da_softc *softc;
2079 
2080 	TAILQ_FOREACH(periph, &dadriver.units, unit_links) {
2081 		union ccb ccb;
2082 
2083 		cam_periph_lock(periph);
2084 		softc = (struct da_softc *)periph->softc;
2085 
2086 		/*
2087 		 * We only sync the cache if the drive is still open, and
2088 		 * if the drive is capable of it..
2089 		 */
2090 		if (((softc->flags & DA_FLAG_OPEN) == 0)
2091 		 || (softc->quirks & DA_Q_NO_SYNC_CACHE)) {
2092 			cam_periph_unlock(periph);
2093 			continue;
2094 		}
2095 
2096 		xpt_setup_ccb(&ccb.ccb_h, periph->path, CAM_PRIORITY_NORMAL);
2097 
2098 		ccb.ccb_h.ccb_state = DA_CCB_DUMP;
2099 		scsi_synchronize_cache(&ccb.csio,
2100 				       /*retries*/1,
2101 				       /*cbfcnp*/dadone,
2102 				       MSG_SIMPLE_Q_TAG,
2103 				       /*begin_lba*/0, /* whole disk */
2104 				       /*lb_count*/0,
2105 				       SSD_FULL_SIZE,
2106 				       60 * 60 * 1000);
2107 
2108 		xpt_polled_action(&ccb);
2109 
2110 		if ((ccb.ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) {
2111 			if (((ccb.ccb_h.status & CAM_STATUS_MASK) ==
2112 			     CAM_SCSI_STATUS_ERROR)
2113 			 && (ccb.csio.scsi_status == SCSI_STATUS_CHECK_COND)){
2114 				int error_code, sense_key, asc, ascq;
2115 
2116 				scsi_extract_sense(&ccb.csio.sense_data,
2117 						   &error_code, &sense_key,
2118 						   &asc, &ascq);
2119 
2120 				if (sense_key != SSD_KEY_ILLEGAL_REQUEST)
2121 					scsi_sense_print(&ccb.csio);
2122 			} else {
2123 				xpt_print(periph->path, "Synchronize "
2124 				    "cache failed, status == 0x%x, scsi status "
2125 				    "== 0x%x\n", ccb.ccb_h.status,
2126 				    ccb.csio.scsi_status);
2127 			}
2128 		}
2129 
2130 		if ((ccb.ccb_h.status & CAM_DEV_QFRZN) != 0)
2131 			cam_release_devq(ccb.ccb_h.path,
2132 					 /*relsim_flags*/0,
2133 					 /*reduction*/0,
2134 					 /*timeout*/0,
2135 					 /*getcount_only*/0);
2136 		cam_periph_unlock(periph);
2137 	}
2138 }
2139 
2140 #else /* !_KERNEL */
2141 
2142 /*
2143  * XXX This is only left out of the kernel build to silence warnings.  If,
2144  * for some reason this function is used in the kernel, the ifdefs should
2145  * be moved so it is included both in the kernel and userland.
2146  */
2147 void
2148 scsi_format_unit(struct ccb_scsiio *csio, u_int32_t retries,
2149 		 void (*cbfcnp)(struct cam_periph *, union ccb *),
2150 		 u_int8_t tag_action, u_int8_t byte2, u_int16_t ileave,
2151 		 u_int8_t *data_ptr, u_int32_t dxfer_len, u_int8_t sense_len,
2152 		 u_int32_t timeout)
2153 {
2154 	struct scsi_format_unit *scsi_cmd;
2155 
2156 	scsi_cmd = (struct scsi_format_unit *)&csio->cdb_io.cdb_bytes;
2157 	scsi_cmd->opcode = FORMAT_UNIT;
2158 	scsi_cmd->byte2 = byte2;
2159 	scsi_ulto2b(ileave, scsi_cmd->interleave);
2160 
2161 	cam_fill_csio(csio,
2162 		      retries,
2163 		      cbfcnp,
2164 		      /*flags*/ (dxfer_len > 0) ? CAM_DIR_OUT : CAM_DIR_NONE,
2165 		      tag_action,
2166 		      data_ptr,
2167 		      dxfer_len,
2168 		      sense_len,
2169 		      sizeof(*scsi_cmd),
2170 		      timeout);
2171 }
2172 
2173 #endif /* _KERNEL */
2174