]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - sys/cam/scsi/scsi_da.c
MFC r236604, r236639:
[FreeBSD/stable/9.git] / sys / cam / scsi / scsi_da.c
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.h>
48 #include <geom/geom_disk.h>
49 #endif /* _KERNEL */
50
51 #ifndef _KERNEL
52 #include <stdio.h>
53 #include <string.h>
54 #endif /* _KERNEL */
55
56 #include <cam/cam.h>
57 #include <cam/cam_ccb.h>
58 #include <cam/cam_periph.h>
59 #include <cam/cam_xpt_periph.h>
60 #include <cam/cam_sim.h>
61
62 #include <cam/scsi/scsi_message.h>
63
64 #ifndef _KERNEL 
65 #include <cam/scsi/scsi_da.h>
66 #endif /* !_KERNEL */
67
68 #ifdef _KERNEL
69 typedef enum {
70         DA_STATE_PROBE,
71         DA_STATE_PROBE2,
72         DA_STATE_NORMAL
73 } da_state;
74
75 typedef enum {
76         DA_FLAG_PACK_INVALID    = 0x001,
77         DA_FLAG_NEW_PACK        = 0x002,
78         DA_FLAG_PACK_LOCKED     = 0x004,
79         DA_FLAG_PACK_REMOVABLE  = 0x008,
80         DA_FLAG_TAGGED_QUEUING  = 0x010,
81         DA_FLAG_NEED_OTAG       = 0x020,
82         DA_FLAG_WENT_IDLE       = 0x040,
83         DA_FLAG_RETRY_UA        = 0x080,
84         DA_FLAG_OPEN            = 0x100,
85         DA_FLAG_SCTX_INIT       = 0x200,
86         DA_FLAG_CAN_RC16        = 0x400
87 } da_flags;
88
89 typedef enum {
90         DA_Q_NONE               = 0x00,
91         DA_Q_NO_SYNC_CACHE      = 0x01,
92         DA_Q_NO_6_BYTE          = 0x02,
93         DA_Q_NO_PREVENT         = 0x04,
94         DA_Q_4K                 = 0x08
95 } da_quirks;
96
97 typedef enum {
98         DA_CCB_PROBE            = 0x01,
99         DA_CCB_PROBE2           = 0x02,
100         DA_CCB_BUFFER_IO        = 0x03,
101         DA_CCB_WAITING          = 0x04,
102         DA_CCB_DUMP             = 0x05,
103         DA_CCB_DELETE           = 0x06,
104         DA_CCB_TYPE_MASK        = 0x0F,
105         DA_CCB_RETRY_UA         = 0x10
106 } da_ccb_state;
107
108 typedef enum {
109         DA_DELETE_NONE,
110         DA_DELETE_DISABLE,
111         DA_DELETE_ZERO,
112         DA_DELETE_WS10,
113         DA_DELETE_WS16,
114         DA_DELETE_UNMAP,
115         DA_DELETE_MAX = DA_DELETE_UNMAP
116 } da_delete_methods;
117
118 static const char *da_delete_method_names[] =
119     { "NONE", "DISABLE", "ZERO", "WS10", "WS16", "UNMAP" };
120
121 /* Offsets into our private area for storing information */
122 #define ccb_state       ppriv_field0
123 #define ccb_bp          ppriv_ptr1
124
125 struct disk_params {
126         u_int8_t  heads;
127         u_int32_t cylinders;
128         u_int8_t  secs_per_track;
129         u_int32_t secsize;      /* Number of bytes/sector */
130         u_int64_t sectors;      /* total number sectors */
131         u_int     stripesize;
132         u_int     stripeoffset;
133 };
134
135 #define UNMAP_MAX_RANGES        512
136
137 struct da_softc {
138         struct   bio_queue_head bio_queue;
139         struct   bio_queue_head delete_queue;
140         struct   bio_queue_head delete_run_queue;
141         SLIST_ENTRY(da_softc) links;
142         LIST_HEAD(, ccb_hdr) pending_ccbs;
143         da_state state;
144         da_flags flags; 
145         da_quirks quirks;
146         int      minimum_cmd_size;
147         int      error_inject;
148         int      ordered_tag_count;
149         int      outstanding_cmds;
150         int      unmap_max_ranges;
151         int      unmap_max_lba;
152         int      delete_running;
153         da_delete_methods        delete_method;
154         struct   disk_params params;
155         struct   disk *disk;
156         union    ccb saved_ccb;
157         struct task             sysctl_task;
158         struct sysctl_ctx_list  sysctl_ctx;
159         struct sysctl_oid       *sysctl_tree;
160         struct callout          sendordered_c;
161         uint64_t wwpn;
162         uint8_t  unmap_buf[UNMAP_MAX_RANGES * 16 + 8];
163 };
164
165 struct da_quirk_entry {
166         struct scsi_inquiry_pattern inq_pat;
167         da_quirks quirks;
168 };
169
170 static const char quantum[] = "QUANTUM";
171 static const char microp[] = "MICROP";
172
173 static struct da_quirk_entry da_quirk_table[] =
174 {
175         /* SPI, FC devices */
176         {
177                 /*
178                  * Fujitsu M2513A MO drives.
179                  * Tested devices: M2513A2 firmware versions 1200 & 1300.
180                  * (dip switch selects whether T_DIRECT or T_OPTICAL device)
181                  * Reported by: W.Scholten <whs@xs4all.nl>
182                  */
183                 {T_DIRECT, SIP_MEDIA_REMOVABLE, "FUJITSU", "M2513A", "*"},
184                 /*quirks*/ DA_Q_NO_SYNC_CACHE
185         },
186         {
187                 /* See above. */
188                 {T_OPTICAL, SIP_MEDIA_REMOVABLE, "FUJITSU", "M2513A", "*"},
189                 /*quirks*/ DA_Q_NO_SYNC_CACHE
190         },
191         {
192                 /*
193                  * This particular Fujitsu drive doesn't like the
194                  * synchronize cache command.
195                  * Reported by: Tom Jackson <toj@gorilla.net>
196                  */
197                 {T_DIRECT, SIP_MEDIA_FIXED, "FUJITSU", "M2954*", "*"},
198                 /*quirks*/ DA_Q_NO_SYNC_CACHE
199         },
200         {
201                 /*
202                  * This drive doesn't like the synchronize cache command
203                  * either.  Reported by: Matthew Jacob <mjacob@feral.com>
204                  * in NetBSD PR kern/6027, August 24, 1998.
205                  */
206                 {T_DIRECT, SIP_MEDIA_FIXED, microp, "2217*", "*"},
207                 /*quirks*/ DA_Q_NO_SYNC_CACHE
208         },
209         {
210                 /*
211                  * This drive doesn't like the synchronize cache command
212                  * either.  Reported by: Hellmuth Michaelis (hm@kts.org)
213                  * (PR 8882).
214                  */
215                 {T_DIRECT, SIP_MEDIA_FIXED, microp, "2112*", "*"},
216                 /*quirks*/ DA_Q_NO_SYNC_CACHE
217         },
218         {
219                 /*
220                  * Doesn't like the synchronize cache command.
221                  * Reported by: Blaz Zupan <blaz@gold.amis.net>
222                  */
223                 {T_DIRECT, SIP_MEDIA_FIXED, "NEC", "D3847*", "*"},
224                 /*quirks*/ DA_Q_NO_SYNC_CACHE
225         },
226         {
227                 /*
228                  * Doesn't like the synchronize cache command.
229                  * Reported by: Blaz Zupan <blaz@gold.amis.net>
230                  */
231                 {T_DIRECT, SIP_MEDIA_FIXED, quantum, "MAVERICK 540S", "*"},
232                 /*quirks*/ DA_Q_NO_SYNC_CACHE
233         },
234         {
235                 /*
236                  * Doesn't like the synchronize cache command.
237                  */
238                 {T_DIRECT, SIP_MEDIA_FIXED, quantum, "LPS525S", "*"},
239                 /*quirks*/ DA_Q_NO_SYNC_CACHE
240         },
241         {
242                 /*
243                  * Doesn't like the synchronize cache command.
244                  * Reported by: walter@pelissero.de
245                  */
246                 {T_DIRECT, SIP_MEDIA_FIXED, quantum, "LPS540S", "*"},
247                 /*quirks*/ DA_Q_NO_SYNC_CACHE
248         },
249         {
250                 /*
251                  * Doesn't work correctly with 6 byte reads/writes.
252                  * Returns illegal request, and points to byte 9 of the
253                  * 6-byte CDB.
254                  * Reported by:  Adam McDougall <bsdx@spawnet.com>
255                  */
256                 {T_DIRECT, SIP_MEDIA_FIXED, quantum, "VIKING 4*", "*"},
257                 /*quirks*/ DA_Q_NO_6_BYTE
258         },
259         {
260                 /* See above. */
261                 {T_DIRECT, SIP_MEDIA_FIXED, quantum, "VIKING 2*", "*"},
262                 /*quirks*/ DA_Q_NO_6_BYTE
263         },
264         {
265                 /*
266                  * Doesn't like the synchronize cache command.
267                  * Reported by: walter@pelissero.de
268                  */
269                 {T_DIRECT, SIP_MEDIA_FIXED, "CONNER", "CP3500*", "*"},
270                 /*quirks*/ DA_Q_NO_SYNC_CACHE
271         },
272         {
273                 /*
274                  * The CISS RAID controllers do not support SYNC_CACHE
275                  */
276                 {T_DIRECT, SIP_MEDIA_FIXED, "COMPAQ", "RAID*", "*"},
277                 /*quirks*/ DA_Q_NO_SYNC_CACHE
278         },
279         /* USB mass storage devices supported by umass(4) */
280         {
281                 /*
282                  * EXATELECOM (Sigmatel) i-Bead 100/105 USB Flash MP3 Player
283                  * PR: kern/51675
284                  */
285                 {T_DIRECT, SIP_MEDIA_REMOVABLE, "EXATEL", "i-BEAD10*", "*"},
286                 /*quirks*/ DA_Q_NO_SYNC_CACHE
287         },
288         {
289                 /*
290                  * Power Quotient Int. (PQI) USB flash key
291                  * PR: kern/53067
292                  */
293                 {T_DIRECT, SIP_MEDIA_REMOVABLE, "Generic*", "USB Flash Disk*",
294                 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
295         },
296         {
297                 /*
298                  * Creative Nomad MUVO mp3 player (USB)
299                  * PR: kern/53094
300                  */
301                 {T_DIRECT, SIP_MEDIA_REMOVABLE, "CREATIVE", "NOMAD_MUVO", "*"},
302                 /*quirks*/ DA_Q_NO_SYNC_CACHE|DA_Q_NO_PREVENT
303         },
304         {
305                 /*
306                  * Jungsoft NEXDISK USB flash key
307                  * PR: kern/54737
308                  */
309                 {T_DIRECT, SIP_MEDIA_REMOVABLE, "JUNGSOFT", "NEXDISK*", "*"},
310                 /*quirks*/ DA_Q_NO_SYNC_CACHE
311         },
312         {
313                 /*
314                  * FreeDik USB Mini Data Drive
315                  * PR: kern/54786
316                  */
317                 {T_DIRECT, SIP_MEDIA_REMOVABLE, "FreeDik*", "Mini Data Drive",
318                 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
319         },
320         {
321                 /*
322                  * Sigmatel USB Flash MP3 Player
323                  * PR: kern/57046
324                  */
325                 {T_DIRECT, SIP_MEDIA_REMOVABLE, "SigmaTel", "MSCN", "*"},
326                 /*quirks*/ DA_Q_NO_SYNC_CACHE|DA_Q_NO_PREVENT
327         },
328         {
329                 /*
330                  * Neuros USB Digital Audio Computer
331                  * PR: kern/63645
332                  */
333                 {T_DIRECT, SIP_MEDIA_REMOVABLE, "NEUROS", "dig. audio comp.",
334                 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
335         },
336         {
337                 /*
338                  * SEAGRAND NP-900 MP3 Player
339                  * PR: kern/64563
340                  */
341                 {T_DIRECT, SIP_MEDIA_REMOVABLE, "SEAGRAND", "NP-900*", "*"},
342                 /*quirks*/ DA_Q_NO_SYNC_CACHE|DA_Q_NO_PREVENT
343         },
344         {
345                 /*
346                  * iRiver iFP MP3 player (with UMS Firmware)
347                  * PR: kern/54881, i386/63941, kern/66124
348                  */
349                 {T_DIRECT, SIP_MEDIA_REMOVABLE, "iRiver", "iFP*", "*"},
350                 /*quirks*/ DA_Q_NO_SYNC_CACHE
351         },
352         {
353                 /*
354                  * Frontier Labs NEX IA+ Digital Audio Player, rev 1.10/0.01
355                  * PR: kern/70158
356                  */
357                 {T_DIRECT, SIP_MEDIA_REMOVABLE, "FL" , "Nex*", "*"},
358                 /*quirks*/ DA_Q_NO_SYNC_CACHE
359         },
360         {
361                 /*
362                  * ZICPlay USB MP3 Player with FM
363                  * PR: kern/75057
364                  */
365                 {T_DIRECT, SIP_MEDIA_REMOVABLE, "ACTIONS*" , "USB DISK*", "*"},
366                 /*quirks*/ DA_Q_NO_SYNC_CACHE
367         },
368         {
369                 /*
370                  * TEAC USB floppy mechanisms
371                  */
372                 {T_DIRECT, SIP_MEDIA_REMOVABLE, "TEAC" , "FD-05*", "*"},
373                 /*quirks*/ DA_Q_NO_SYNC_CACHE
374         },
375         {
376                 /*
377                  * Kingston DataTraveler II+ USB Pen-Drive.
378                  * Reported by: Pawel Jakub Dawidek <pjd@FreeBSD.org>
379                  */
380                 {T_DIRECT, SIP_MEDIA_REMOVABLE, "Kingston" , "DataTraveler II+",
381                 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
382         },
383         {
384                 /*
385                  * Motorola E398 Mobile Phone (TransFlash memory card).
386                  * Reported by: Wojciech A. Koszek <dunstan@FreeBSD.czest.pl>
387                  * PR: usb/89889
388                  */
389                 {T_DIRECT, SIP_MEDIA_REMOVABLE, "Motorola" , "Motorola Phone",
390                 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
391         },
392         {
393                 /*
394                  * Qware BeatZkey! Pro
395                  * PR: usb/79164
396                  */
397                 {T_DIRECT, SIP_MEDIA_REMOVABLE, "GENERIC", "USB DISK DEVICE",
398                 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
399         },
400         {
401                 /*
402                  * Time DPA20B 1GB MP3 Player
403                  * PR: usb/81846
404                  */
405                 {T_DIRECT, SIP_MEDIA_REMOVABLE, "USB2.0*", "(FS) FLASH DISK*",
406                 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
407         },
408         {
409                 /*
410                  * Samsung USB key 128Mb
411                  * PR: usb/90081
412                  */
413                 {T_DIRECT, SIP_MEDIA_REMOVABLE, "USB-DISK", "FreeDik-FlashUsb",
414                 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
415         },
416         {
417                 /*
418                  * Kingston DataTraveler 2.0 USB Flash memory.
419                  * PR: usb/89196
420                  */
421                 {T_DIRECT, SIP_MEDIA_REMOVABLE, "Kingston", "DataTraveler 2.0",
422                 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
423         },
424         {
425                 /*
426                  * Creative MUVO Slim mp3 player (USB)
427                  * PR: usb/86131
428                  */
429                 {T_DIRECT, SIP_MEDIA_REMOVABLE, "CREATIVE", "MuVo Slim",
430                 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE|DA_Q_NO_PREVENT
431                 },
432         {
433                 /*
434                  * United MP5512 Portable MP3 Player (2-in-1 USB DISK/MP3)
435                  * PR: usb/80487
436                  */
437                 {T_DIRECT, SIP_MEDIA_REMOVABLE, "Generic*", "MUSIC DISK",
438                 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
439         },
440         {
441                 /*
442                  * SanDisk Micro Cruzer 128MB
443                  * PR: usb/75970
444                  */
445                 {T_DIRECT, SIP_MEDIA_REMOVABLE, "SanDisk" , "Micro Cruzer",
446                 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
447         },
448         {
449                 /*
450                  * TOSHIBA TransMemory USB sticks
451                  * PR: kern/94660
452                  */
453                 {T_DIRECT, SIP_MEDIA_REMOVABLE, "TOSHIBA", "TransMemory",
454                 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
455         },
456         {
457                 /*
458                  * PNY USB Flash keys
459                  * PR: usb/75578, usb/72344, usb/65436 
460                  */
461                 {T_DIRECT, SIP_MEDIA_REMOVABLE, "*" , "USB DISK*",
462                 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
463         },
464         {
465                 /*
466                  * Genesys 6-in-1 Card Reader
467                  * PR: usb/94647
468                  */
469                 {T_DIRECT, SIP_MEDIA_REMOVABLE, "Generic*", "STORAGE DEVICE*",
470                 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
471         },
472         {
473                 /*
474                  * Rekam Digital CAMERA
475                  * PR: usb/98713
476                  */
477                 {T_DIRECT, SIP_MEDIA_REMOVABLE, "CAMERA*", "4MP-9J6*",
478                 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
479         },
480         {
481                 /*
482                  * iRiver H10 MP3 player
483                  * PR: usb/102547
484                  */
485                 {T_DIRECT, SIP_MEDIA_REMOVABLE, "iriver", "H10*",
486                 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
487         },
488         {
489                 /*
490                  * iRiver U10 MP3 player
491                  * PR: usb/92306
492                  */
493                 {T_DIRECT, SIP_MEDIA_REMOVABLE, "iriver", "U10*",
494                 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
495         },
496         {
497                 /*
498                  * X-Micro Flash Disk
499                  * PR: usb/96901
500                  */
501                 {T_DIRECT, SIP_MEDIA_REMOVABLE, "X-Micro", "Flash Disk",
502                 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
503         },
504         {
505                 /*
506                  * EasyMP3 EM732X USB 2.0 Flash MP3 Player
507                  * PR: usb/96546
508                  */
509                 {T_DIRECT, SIP_MEDIA_REMOVABLE, "EM732X", "MP3 Player*",
510                 "1.00"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
511         },
512         {
513                 /*
514                  * Denver MP3 player
515                  * PR: usb/107101
516                  */
517                 {T_DIRECT, SIP_MEDIA_REMOVABLE, "DENVER", "MP3 PLAYER",
518                  "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
519         },
520         {
521                 /*
522                  * Philips USB Key Audio KEY013
523                  * PR: usb/68412
524                  */
525                 {T_DIRECT, SIP_MEDIA_REMOVABLE, "PHILIPS", "Key*", "*"},
526                 /*quirks*/ DA_Q_NO_SYNC_CACHE | DA_Q_NO_PREVENT
527         },
528         {
529                 /*
530                  * JNC MP3 Player
531                  * PR: usb/94439
532                  */
533                 {T_DIRECT, SIP_MEDIA_REMOVABLE, "JNC*" , "MP3 Player*",
534                  "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
535         },
536         {
537                 /*
538                  * SAMSUNG MP0402H
539                  * PR: usb/108427
540                  */
541                 {T_DIRECT, SIP_MEDIA_FIXED, "SAMSUNG", "MP0402H", "*"},
542                 /*quirks*/ DA_Q_NO_SYNC_CACHE
543         },
544         {
545                 /*
546                  * I/O Magic USB flash - Giga Bank
547                  * PR: usb/108810
548                  */
549                 {T_DIRECT, SIP_MEDIA_FIXED, "GS-Magic", "stor*", "*"},
550                 /*quirks*/ DA_Q_NO_SYNC_CACHE
551         },
552         {
553                 /*
554                  * JoyFly 128mb USB Flash Drive
555                  * PR: 96133
556                  */
557                 {T_DIRECT, SIP_MEDIA_REMOVABLE, "USB 2.0", "Flash Disk*",
558                  "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
559         },
560         {
561                 /*
562                  * ChipsBnk usb stick
563                  * PR: 103702
564                  */
565                 {T_DIRECT, SIP_MEDIA_REMOVABLE, "ChipsBnk", "USB*",
566                  "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
567         },
568         {
569                 /*
570                  * Storcase (Kingston) InfoStation IFS FC2/SATA-R 201A
571                  * PR: 129858
572                  */
573                 {T_DIRECT, SIP_MEDIA_FIXED, "IFS", "FC2/SATA-R*",
574                  "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
575         },
576         {
577                 /*
578                  * Samsung YP-U3 mp3-player
579                  * PR: 125398
580                  */
581                 {T_DIRECT, SIP_MEDIA_REMOVABLE, "Samsung", "YP-U3",
582                  "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
583         },
584         {
585                 {T_DIRECT, SIP_MEDIA_REMOVABLE, "Netac", "OnlyDisk*",
586                  "2000"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
587         },
588         {
589                 /*
590                  * Sony Cyber-Shot DSC cameras
591                  * PR: usb/137035
592                  */
593                 {T_DIRECT, SIP_MEDIA_REMOVABLE, "Sony", "Sony DSC", "*"},
594                 /*quirks*/ DA_Q_NO_SYNC_CACHE | DA_Q_NO_PREVENT
595         },
596         /* ATA/SATA devices over SAS/USB/... */
597         {
598                 /* Hitachi Advanced Format (4k) drives */
599                 { T_DIRECT, SIP_MEDIA_FIXED, "Hitachi", "H??????????E3*", "*" },
600                 /*quirks*/DA_Q_4K
601         },
602         {
603                 /* Samsung Advanced Format (4k) drives */
604                 { T_DIRECT, SIP_MEDIA_FIXED, "ATA", "SAMSUNG HD155UI*", "*" },
605                 /*quirks*/DA_Q_4K
606         },
607         {
608                 /* Samsung Advanced Format (4k) drives */
609                 { T_DIRECT, SIP_MEDIA_FIXED, "SAMSUNG", "HD155UI*", "*" },
610                 /*quirks*/DA_Q_4K
611         },
612         {
613                 /* Samsung Advanced Format (4k) drives */
614                 { T_DIRECT, SIP_MEDIA_FIXED, "ATA", "SAMSUNG HD204UI*", "*" },
615                 /*quirks*/DA_Q_4K
616         },
617         {
618                 /* Samsung Advanced Format (4k) drives */
619                 { T_DIRECT, SIP_MEDIA_FIXED, "SAMSUNG", "HD204UI*", "*" },
620                 /*quirks*/DA_Q_4K
621         },
622         {
623                 /* Seagate Barracuda Green Advanced Format (4k) drives */
624                 { T_DIRECT, SIP_MEDIA_FIXED, "ATA", "ST????DL*", "*" },
625                 /*quirks*/DA_Q_4K
626         },
627         {
628                 /* Seagate Barracuda Green Advanced Format (4k) drives */
629                 { T_DIRECT, SIP_MEDIA_FIXED, "ST????DL", "*", "*" },
630                 /*quirks*/DA_Q_4K
631         },
632         {
633                 /* Seagate Barracuda Green Advanced Format (4k) drives */
634                 { T_DIRECT, SIP_MEDIA_FIXED, "ATA", "ST???DM*", "*" },
635                 /*quirks*/DA_Q_4K
636         },
637         {
638                 /* Seagate Barracuda Green Advanced Format (4k) drives */
639                 { T_DIRECT, SIP_MEDIA_FIXED, "ST???DM*", "*", "*" },
640                 /*quirks*/DA_Q_4K
641         },
642         {
643                 /* Seagate Barracuda Green Advanced Format (4k) drives */
644                 { T_DIRECT, SIP_MEDIA_FIXED, "ATA", "ST????DM*", "*" },
645                 /*quirks*/DA_Q_4K
646         },
647         {
648                 /* Seagate Barracuda Green Advanced Format (4k) drives */
649                 { T_DIRECT, SIP_MEDIA_FIXED, "ST????DM", "*", "*" },
650                 /*quirks*/DA_Q_4K
651         },
652         {
653                 /* Seagate Momentus Advanced Format (4k) drives */
654                 { T_DIRECT, SIP_MEDIA_FIXED, "ATA", "ST9500423AS*", "*" },
655                 /*quirks*/DA_Q_4K
656         },
657         {
658                 /* Seagate Momentus Advanced Format (4k) drives */
659                 { T_DIRECT, SIP_MEDIA_FIXED, "ST950042", "3AS*", "*" },
660                 /*quirks*/DA_Q_4K
661         },
662         {
663                 /* Seagate Momentus Advanced Format (4k) drives */
664                 { T_DIRECT, SIP_MEDIA_FIXED, "ATA", "ST9500424AS*", "*" },
665                 /*quirks*/DA_Q_4K
666         },
667         {
668                 /* Seagate Momentus Advanced Format (4k) drives */
669                 { T_DIRECT, SIP_MEDIA_FIXED, "ST950042", "4AS*", "*" },
670                 /*quirks*/DA_Q_4K
671         },
672         {
673                 /* Seagate Momentus Advanced Format (4k) drives */
674                 { T_DIRECT, SIP_MEDIA_FIXED, "ATA", "ST9640423AS*", "*" },
675                 /*quirks*/DA_Q_4K
676         },
677         {
678                 /* Seagate Momentus Advanced Format (4k) drives */
679                 { T_DIRECT, SIP_MEDIA_FIXED, "ST964042", "3AS*", "*" },
680                 /*quirks*/DA_Q_4K
681         },
682         {
683                 /* Seagate Momentus Advanced Format (4k) drives */
684                 { T_DIRECT, SIP_MEDIA_FIXED, "ATA", "ST9640424AS*", "*" },
685                 /*quirks*/DA_Q_4K
686         },
687         {
688                 /* Seagate Momentus Advanced Format (4k) drives */
689                 { T_DIRECT, SIP_MEDIA_FIXED, "ST964042", "4AS*", "*" },
690                 /*quirks*/DA_Q_4K
691         },
692         {
693                 /* Seagate Momentus Advanced Format (4k) drives */
694                 { T_DIRECT, SIP_MEDIA_FIXED, "ATA", "ST9750420AS*", "*" },
695                 /*quirks*/DA_Q_4K
696         },
697         {
698                 /* Seagate Momentus Advanced Format (4k) drives */
699                 { T_DIRECT, SIP_MEDIA_FIXED, "ST975042", "0AS*", "*" },
700                 /*quirks*/DA_Q_4K
701         },
702         {
703                 /* Seagate Momentus Advanced Format (4k) drives */
704                 { T_DIRECT, SIP_MEDIA_FIXED, "ATA", "ST9750422AS*", "*" },
705                 /*quirks*/DA_Q_4K
706         },
707         {
708                 /* Seagate Momentus Advanced Format (4k) drives */
709                 { T_DIRECT, SIP_MEDIA_FIXED, "ST975042", "2AS*", "*" },
710                 /*quirks*/DA_Q_4K
711         },
712         {
713                 /* Seagate Momentus Advanced Format (4k) drives */
714                 { T_DIRECT, SIP_MEDIA_FIXED, "ATA", "ST9750423AS*", "*" },
715                 /*quirks*/DA_Q_4K
716         },
717         {
718                 /* Seagate Momentus Advanced Format (4k) drives */
719                 { T_DIRECT, SIP_MEDIA_FIXED, "ST975042", "3AS*", "*" },
720                 /*quirks*/DA_Q_4K
721         },
722         {
723                 /* Seagate Momentus Thin Advanced Format (4k) drives */
724                 { T_DIRECT, SIP_MEDIA_FIXED, "ATA", "ST???LT*", "*" },
725                 /*quirks*/DA_Q_4K
726         },
727         {
728                 /* Seagate Momentus Thin Advanced Format (4k) drives */
729                 { T_DIRECT, SIP_MEDIA_FIXED, "ST???LT*", "*", "*" },
730                 /*quirks*/DA_Q_4K
731         },
732         {
733                 /* WDC Caviar Green Advanced Format (4k) drives */
734                 { T_DIRECT, SIP_MEDIA_FIXED, "ATA", "WDC WD????RS*", "*" },
735                 /*quirks*/DA_Q_4K
736         },
737         {
738                 /* WDC Caviar Green Advanced Format (4k) drives */
739                 { T_DIRECT, SIP_MEDIA_FIXED, "WDC WD??", "??RS*", "*" },
740                 /*quirks*/DA_Q_4K
741         },
742         {
743                 /* WDC Caviar Green Advanced Format (4k) drives */
744                 { T_DIRECT, SIP_MEDIA_FIXED, "ATA", "WDC WD????RX*", "*" },
745                 /*quirks*/DA_Q_4K
746         },
747         {
748                 /* WDC Caviar Green Advanced Format (4k) drives */
749                 { T_DIRECT, SIP_MEDIA_FIXED, "WDC WD??", "??RX*", "*" },
750                 /*quirks*/DA_Q_4K
751         },
752         {
753                 /* WDC Caviar Green Advanced Format (4k) drives */
754                 { T_DIRECT, SIP_MEDIA_FIXED, "ATA", "WDC WD??????RS*", "*" },
755                 /*quirks*/DA_Q_4K
756         },
757         {
758                 /* WDC Caviar Green Advanced Format (4k) drives */
759                 { T_DIRECT, SIP_MEDIA_FIXED, "WDC WD??", "????RS*", "*" },
760                 /*quirks*/DA_Q_4K
761         },
762         {
763                 /* WDC Caviar Green Advanced Format (4k) drives */
764                 { T_DIRECT, SIP_MEDIA_FIXED, "ATA", "WDC WD??????RX*", "*" },
765                 /*quirks*/DA_Q_4K
766         },
767         {
768                 /* WDC Caviar Green Advanced Format (4k) drives */
769                 { T_DIRECT, SIP_MEDIA_FIXED, "WDC WD??", "????RX*", "*" },
770                 /*quirks*/DA_Q_4K
771         },
772         {
773                 /* WDC Scorpio Black Advanced Format (4k) drives */
774                 { T_DIRECT, SIP_MEDIA_FIXED, "ATA", "WDC WD???PKT*", "*" },
775                 /*quirks*/DA_Q_4K
776         },
777         {
778                 /* WDC Scorpio Black Advanced Format (4k) drives */
779                 { T_DIRECT, SIP_MEDIA_FIXED, "WDC WD??", "?PKT*", "*" },
780                 /*quirks*/DA_Q_4K
781         },
782         {
783                 /* WDC Scorpio Black Advanced Format (4k) drives */
784                 { T_DIRECT, SIP_MEDIA_FIXED, "ATA", "WDC WD?????PKT*", "*" },
785                 /*quirks*/DA_Q_4K
786         },
787         {
788                 /* WDC Scorpio Black Advanced Format (4k) drives */
789                 { T_DIRECT, SIP_MEDIA_FIXED, "WDC WD??", "???PKT*", "*" },
790                 /*quirks*/DA_Q_4K
791         },
792         {
793                 /* WDC Scorpio Blue Advanced Format (4k) drives */
794                 { T_DIRECT, SIP_MEDIA_FIXED, "ATA", "WDC WD???PVT*", "*" },
795                 /*quirks*/DA_Q_4K
796         },
797         {
798                 /* WDC Scorpio Blue Advanced Format (4k) drives */
799                 { T_DIRECT, SIP_MEDIA_FIXED, "WDC WD??", "?PVT*", "*" },
800                 /*quirks*/DA_Q_4K
801         },
802         {
803                 /* WDC Scorpio Blue Advanced Format (4k) drives */
804                 { T_DIRECT, SIP_MEDIA_FIXED, "ATA", "WDC WD?????PVT*", "*" },
805                 /*quirks*/DA_Q_4K
806         },
807         {
808                 /* WDC Scorpio Blue Advanced Format (4k) drives */
809                 { T_DIRECT, SIP_MEDIA_FIXED, "WDC WD??", "???PVT*", "*" },
810                 /*quirks*/DA_Q_4K
811         },
812         {
813                 /*
814                  * Olympus FE-210 camera
815                  */
816                 {T_DIRECT, SIP_MEDIA_REMOVABLE, "OLYMPUS", "FE210*",
817                 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
818         },
819         {
820                 /*
821                  * LG UP3S MP3 player
822                  */
823                 {T_DIRECT, SIP_MEDIA_REMOVABLE, "LG", "UP3S",
824                 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
825         },
826         {
827                 /*
828                  * Laser MP3-2GA13 MP3 player
829                  */
830                 {T_DIRECT, SIP_MEDIA_REMOVABLE, "USB 2.0", "(HS) Flash Disk",
831                 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
832         },
833 };
834
835 static  disk_strategy_t dastrategy;
836 static  dumper_t        dadump;
837 static  periph_init_t   dainit;
838 static  void            daasync(void *callback_arg, u_int32_t code,
839                                 struct cam_path *path, void *arg);
840 static  void            dasysctlinit(void *context, int pending);
841 static  int             dacmdsizesysctl(SYSCTL_HANDLER_ARGS);
842 static  int             dadeletemethodsysctl(SYSCTL_HANDLER_ARGS);
843 static  periph_ctor_t   daregister;
844 static  periph_dtor_t   dacleanup;
845 static  periph_start_t  dastart;
846 static  periph_oninv_t  daoninvalidate;
847 static  void            dadone(struct cam_periph *periph,
848                                union ccb *done_ccb);
849 static  int             daerror(union ccb *ccb, u_int32_t cam_flags,
850                                 u_int32_t sense_flags);
851 static void             daprevent(struct cam_periph *periph, int action);
852 static int              dagetcapacity(struct cam_periph *periph);
853 static void             dasetgeom(struct cam_periph *periph, uint32_t block_len,
854                                   uint64_t maxsector, u_int lbppbe, u_int lalba);
855 static timeout_t        dasendorderedtag;
856 static void             dashutdown(void *arg, int howto);
857
858 #ifndef DA_DEFAULT_TIMEOUT
859 #define DA_DEFAULT_TIMEOUT 60   /* Timeout in seconds */
860 #endif
861
862 #ifndef DA_DEFAULT_RETRY
863 #define DA_DEFAULT_RETRY        4
864 #endif
865
866 #ifndef DA_DEFAULT_SEND_ORDERED
867 #define DA_DEFAULT_SEND_ORDERED 1
868 #endif
869
870
871 static int da_retry_count = DA_DEFAULT_RETRY;
872 static int da_default_timeout = DA_DEFAULT_TIMEOUT;
873 static int da_send_ordered = DA_DEFAULT_SEND_ORDERED;
874
875 SYSCTL_NODE(_kern_cam, OID_AUTO, da, CTLFLAG_RD, 0,
876             "CAM Direct Access Disk driver");
877 SYSCTL_INT(_kern_cam_da, OID_AUTO, retry_count, CTLFLAG_RW,
878            &da_retry_count, 0, "Normal I/O retry count");
879 TUNABLE_INT("kern.cam.da.retry_count", &da_retry_count);
880 SYSCTL_INT(_kern_cam_da, OID_AUTO, default_timeout, CTLFLAG_RW,
881            &da_default_timeout, 0, "Normal I/O timeout (in seconds)");
882 TUNABLE_INT("kern.cam.da.default_timeout", &da_default_timeout);
883 SYSCTL_INT(_kern_cam_da, OID_AUTO, da_send_ordered, CTLFLAG_RW,
884            &da_send_ordered, 0, "Send Ordered Tags");
885 TUNABLE_INT("kern.cam.da.da_send_ordered", &da_send_ordered);
886
887 /*
888  * DA_ORDEREDTAG_INTERVAL determines how often, relative
889  * to the default timeout, we check to see whether an ordered
890  * tagged transaction is appropriate to prevent simple tag
891  * starvation.  Since we'd like to ensure that there is at least
892  * 1/2 of the timeout length left for a starved transaction to
893  * complete after we've sent an ordered tag, we must poll at least
894  * four times in every timeout period.  This takes care of the worst
895  * case where a starved transaction starts during an interval that
896  * meets the requirement "don't send an ordered tag" test so it takes
897  * us two intervals to determine that a tag must be sent.
898  */
899 #ifndef DA_ORDEREDTAG_INTERVAL
900 #define DA_ORDEREDTAG_INTERVAL 4
901 #endif
902
903 static struct periph_driver dadriver =
904 {
905         dainit, "da",
906         TAILQ_HEAD_INITIALIZER(dadriver.units), /* generation */ 0
907 };
908
909 PERIPHDRIVER_DECLARE(da, dadriver);
910
911 MALLOC_DEFINE(M_SCSIDA, "scsi_da", "scsi_da buffers");
912
913 static int
914 daopen(struct disk *dp)
915 {
916         struct cam_periph *periph;
917         struct da_softc *softc;
918         int unit;
919         int error;
920
921         periph = (struct cam_periph *)dp->d_drv1;
922         if (periph == NULL) {
923                 return (ENXIO); 
924         }
925
926         if (cam_periph_acquire(periph) != CAM_REQ_CMP) {
927                 return (ENXIO);
928         }
929
930         cam_periph_lock(periph);
931         if ((error = cam_periph_hold(periph, PRIBIO|PCATCH)) != 0) {
932                 cam_periph_unlock(periph);
933                 cam_periph_release(periph);
934                 return (error);
935         }
936
937         unit = periph->unit_number;
938         softc = (struct da_softc *)periph->softc;
939         softc->flags |= DA_FLAG_OPEN;
940
941         CAM_DEBUG(periph->path, CAM_DEBUG_TRACE | CAM_DEBUG_PERIPH,
942             ("daopen\n"));
943
944         if ((softc->flags & DA_FLAG_PACK_INVALID) != 0) {
945                 /* Invalidate our pack information. */
946                 softc->flags &= ~DA_FLAG_PACK_INVALID;
947         }
948
949         error = dagetcapacity(periph);
950
951         if (error == 0) {
952
953                 softc->disk->d_sectorsize = softc->params.secsize;
954                 softc->disk->d_mediasize = softc->params.secsize * (off_t)softc->params.sectors;
955                 softc->disk->d_stripesize = softc->params.stripesize;
956                 softc->disk->d_stripeoffset = softc->params.stripeoffset;
957                 /* XXX: these are not actually "firmware" values, so they may be wrong */
958                 softc->disk->d_fwsectors = softc->params.secs_per_track;
959                 softc->disk->d_fwheads = softc->params.heads;
960                 softc->disk->d_devstat->block_size = softc->params.secsize;
961                 softc->disk->d_devstat->flags &= ~DEVSTAT_BS_UNAVAILABLE;
962                 if (softc->delete_method > DA_DELETE_DISABLE)
963                         softc->disk->d_flags |= DISKFLAG_CANDELETE;
964                 else
965                         softc->disk->d_flags &= ~DISKFLAG_CANDELETE;
966
967                 if ((softc->flags & DA_FLAG_PACK_REMOVABLE) != 0 &&
968                     (softc->quirks & DA_Q_NO_PREVENT) == 0)
969                         daprevent(periph, PR_PREVENT);
970         } else
971                 softc->flags &= ~DA_FLAG_OPEN;
972
973         cam_periph_unhold(periph);
974         cam_periph_unlock(periph);
975
976         if (error != 0) {
977                 cam_periph_release(periph);
978         }
979         return (error);
980 }
981
982 static int
983 daclose(struct disk *dp)
984 {
985         struct  cam_periph *periph;
986         struct  da_softc *softc;
987         int error;
988
989         periph = (struct cam_periph *)dp->d_drv1;
990         if (periph == NULL)
991                 return (0);     
992
993         cam_periph_lock(periph);
994         if ((error = cam_periph_hold(periph, PRIBIO)) != 0) {
995                 cam_periph_unlock(periph);
996                 cam_periph_release(periph);
997                 return (0);
998         }
999
1000         softc = (struct da_softc *)periph->softc;
1001
1002         CAM_DEBUG(periph->path, CAM_DEBUG_TRACE | CAM_DEBUG_PERIPH,
1003             ("daclose\n"));
1004
1005         if ((softc->quirks & DA_Q_NO_SYNC_CACHE) == 0
1006          && (softc->flags & DA_FLAG_PACK_INVALID) == 0) {
1007                 union   ccb *ccb;
1008
1009                 ccb = cam_periph_getccb(periph, CAM_PRIORITY_NORMAL);
1010
1011                 scsi_synchronize_cache(&ccb->csio,
1012                                        /*retries*/1,
1013                                        /*cbfcnp*/dadone,
1014                                        MSG_SIMPLE_Q_TAG,
1015                                        /*begin_lba*/0,/* Cover the whole disk */
1016                                        /*lb_count*/0,
1017                                        SSD_FULL_SIZE,
1018                                        5 * 60 * 1000);
1019
1020                 cam_periph_runccb(ccb, daerror, /*cam_flags*/0,
1021                                   /*sense_flags*/SF_RETRY_UA | SF_QUIET_IR,
1022                                   softc->disk->d_devstat);
1023                 xpt_release_ccb(ccb);
1024
1025         }
1026
1027         if ((softc->flags & DA_FLAG_PACK_REMOVABLE) != 0) {
1028                 if ((softc->quirks & DA_Q_NO_PREVENT) == 0)
1029                         daprevent(periph, PR_ALLOW);
1030                 /*
1031                  * If we've got removeable media, mark the blocksize as
1032                  * unavailable, since it could change when new media is
1033                  * inserted.
1034                  */
1035                 softc->disk->d_devstat->flags |= DEVSTAT_BS_UNAVAILABLE;
1036         }
1037
1038         softc->flags &= ~DA_FLAG_OPEN;
1039         cam_periph_unhold(periph);
1040         cam_periph_unlock(periph);
1041         cam_periph_release(periph);
1042         return (0);     
1043 }
1044
1045 static void
1046 daschedule(struct cam_periph *periph)
1047 {
1048         struct da_softc *softc = (struct da_softc *)periph->softc;
1049         uint32_t prio;
1050
1051         /* Check if cam_periph_getccb() was called. */
1052         prio = periph->immediate_priority;
1053
1054         /* Check if we have more work to do. */
1055         if (bioq_first(&softc->bio_queue) ||
1056             (!softc->delete_running && bioq_first(&softc->delete_queue))) {
1057                 prio = CAM_PRIORITY_NORMAL;
1058         }
1059
1060         /* Schedule CCB if any of above is true. */
1061         if (prio != CAM_PRIORITY_NONE)
1062                 xpt_schedule(periph, prio);
1063 }
1064
1065 /*
1066  * Actually translate the requested transfer into one the physical driver
1067  * can understand.  The transfer is described by a buf and will include
1068  * only one physical transfer.
1069  */
1070 static void
1071 dastrategy(struct bio *bp)
1072 {
1073         struct cam_periph *periph;
1074         struct da_softc *softc;
1075         
1076         periph = (struct cam_periph *)bp->bio_disk->d_drv1;
1077         if (periph == NULL) {
1078                 biofinish(bp, NULL, ENXIO);
1079                 return;
1080         }
1081         softc = (struct da_softc *)periph->softc;
1082
1083         cam_periph_lock(periph);
1084
1085         /*
1086          * If the device has been made invalid, error out
1087          */
1088         if ((softc->flags & DA_FLAG_PACK_INVALID)) {
1089                 cam_periph_unlock(periph);
1090                 biofinish(bp, NULL, ENXIO);
1091                 return;
1092         }
1093
1094         CAM_DEBUG(periph->path, CAM_DEBUG_TRACE, ("dastrategy(%p)\n", bp));
1095
1096         /*
1097          * Place it in the queue of disk activities for this disk
1098          */
1099         if (bp->bio_cmd == BIO_DELETE) {
1100                 if (bp->bio_bcount == 0)
1101                         biodone(bp);
1102                 else
1103                         bioq_disksort(&softc->delete_queue, bp);
1104         } else
1105                 bioq_disksort(&softc->bio_queue, bp);
1106
1107         /*
1108          * Schedule ourselves for performing the work.
1109          */
1110         daschedule(periph);
1111         cam_periph_unlock(periph);
1112
1113         return;
1114 }
1115
1116 static int
1117 dadump(void *arg, void *virtual, vm_offset_t physical, off_t offset, size_t length)
1118 {
1119         struct      cam_periph *periph;
1120         struct      da_softc *softc;
1121         u_int       secsize;
1122         struct      ccb_scsiio csio;
1123         struct      disk *dp;
1124
1125         dp = arg;
1126         periph = dp->d_drv1;
1127         if (periph == NULL)
1128                 return (ENXIO);
1129         softc = (struct da_softc *)periph->softc;
1130         cam_periph_lock(periph);
1131         secsize = softc->params.secsize;
1132         
1133         if ((softc->flags & DA_FLAG_PACK_INVALID) != 0) {
1134                 cam_periph_unlock(periph);
1135                 return (ENXIO);
1136         }
1137
1138         if (length > 0) {
1139                 xpt_setup_ccb(&csio.ccb_h, periph->path, CAM_PRIORITY_NORMAL);
1140                 csio.ccb_h.ccb_state = DA_CCB_DUMP;
1141                 scsi_read_write(&csio,
1142                                 /*retries*/1,
1143                                 dadone,
1144                                 MSG_ORDERED_Q_TAG,
1145                                 /*read*/FALSE,
1146                                 /*byte2*/0,
1147                                 /*minimum_cmd_size*/ softc->minimum_cmd_size,
1148                                 offset / secsize,
1149                                 length / secsize,
1150                                 /*data_ptr*/(u_int8_t *) virtual,
1151                                 /*dxfer_len*/length,
1152                                 /*sense_len*/SSD_FULL_SIZE,
1153                                 da_default_timeout * 1000);
1154                 xpt_polled_action((union ccb *)&csio);
1155                 cam_periph_unlock(periph);
1156
1157                 if ((csio.ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) {
1158                         printf("Aborting dump due to I/O error.\n");
1159                         if ((csio.ccb_h.status & CAM_STATUS_MASK) ==
1160                              CAM_SCSI_STATUS_ERROR)
1161                                 scsi_sense_print(&csio);
1162                         else
1163                                 printf("status == 0x%x, scsi status == 0x%x\n",
1164                                        csio.ccb_h.status, csio.scsi_status);
1165                         return(EIO);
1166                 }
1167                 return(0);
1168         }
1169                 
1170         /*
1171          * Sync the disk cache contents to the physical media.
1172          */
1173         if ((softc->quirks & DA_Q_NO_SYNC_CACHE) == 0) {
1174
1175                 xpt_setup_ccb(&csio.ccb_h, periph->path, CAM_PRIORITY_NORMAL);
1176                 csio.ccb_h.ccb_state = DA_CCB_DUMP;
1177                 scsi_synchronize_cache(&csio,
1178                                        /*retries*/1,
1179                                        /*cbfcnp*/dadone,
1180                                        MSG_SIMPLE_Q_TAG,
1181                                        /*begin_lba*/0,/* Cover the whole disk */
1182                                        /*lb_count*/0,
1183                                        SSD_FULL_SIZE,
1184                                        5 * 60 * 1000);
1185                 xpt_polled_action((union ccb *)&csio);
1186
1187                 if ((csio.ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) {
1188                         if ((csio.ccb_h.status & CAM_STATUS_MASK) ==
1189                              CAM_SCSI_STATUS_ERROR) {
1190                                 int asc, ascq;
1191                                 int sense_key, error_code;
1192
1193                                 scsi_extract_sense_len(&csio.sense_data,
1194                                     csio.sense_len - csio.sense_resid,
1195                                     &error_code, &sense_key, &asc, &ascq,
1196                                     /*show_errors*/ 1);
1197                                 if (sense_key != SSD_KEY_ILLEGAL_REQUEST)
1198                                         scsi_sense_print(&csio);
1199                         } else {
1200                                 xpt_print(periph->path, "Synchronize cache "
1201                                     "failed, status == 0x%x, scsi status == "
1202                                     "0x%x\n", csio.ccb_h.status,
1203                                     csio.scsi_status);
1204                         }
1205                 }
1206         }
1207         cam_periph_unlock(periph);
1208         return (0);
1209 }
1210
1211 static int
1212 dagetattr(struct bio *bp)
1213 {
1214         int ret = -1;
1215         struct cam_periph *periph;
1216
1217         if (bp->bio_disk == NULL || bp->bio_disk->d_drv1 == NULL)
1218                 return ENXIO;
1219         periph = (struct cam_periph *)bp->bio_disk->d_drv1;
1220         if (periph->path == NULL)
1221                 return ENXIO;
1222
1223         ret = xpt_getattr(bp->bio_data, bp->bio_length, bp->bio_attribute,
1224             periph->path);
1225         if (ret == 0)
1226                 bp->bio_completed = bp->bio_length;
1227         return ret;
1228 }
1229
1230 static void
1231 dainit(void)
1232 {
1233         cam_status status;
1234
1235         /*
1236          * Install a global async callback.  This callback will
1237          * receive async callbacks like "new device found".
1238          */
1239         status = xpt_register_async(AC_FOUND_DEVICE, daasync, NULL, NULL);
1240
1241         if (status != CAM_REQ_CMP) {
1242                 printf("da: Failed to attach master async callback "
1243                        "due to status 0x%x!\n", status);
1244         } else if (da_send_ordered) {
1245
1246                 /* Register our shutdown event handler */
1247                 if ((EVENTHANDLER_REGISTER(shutdown_post_sync, dashutdown, 
1248                                            NULL, SHUTDOWN_PRI_DEFAULT)) == NULL)
1249                     printf("dainit: shutdown event registration failed!\n");
1250         }
1251 }
1252
1253 static void
1254 daoninvalidate(struct cam_periph *periph)
1255 {
1256         struct da_softc *softc;
1257
1258         softc = (struct da_softc *)periph->softc;
1259
1260         /*
1261          * De-register any async callbacks.
1262          */
1263         xpt_register_async(0, daasync, periph, periph->path);
1264
1265         softc->flags |= DA_FLAG_PACK_INVALID;
1266
1267         /*
1268          * Return all queued I/O with ENXIO.
1269          * XXX Handle any transactions queued to the card
1270          *     with XPT_ABORT_CCB.
1271          */
1272         bioq_flush(&softc->bio_queue, NULL, ENXIO);
1273         bioq_flush(&softc->delete_queue, NULL, ENXIO);
1274
1275         disk_gone(softc->disk);
1276         xpt_print(periph->path, "lost device - %d outstanding, %d refs\n",
1277                   softc->outstanding_cmds, periph->refcount);
1278 }
1279
1280 static void
1281 dacleanup(struct cam_periph *periph)
1282 {
1283         struct da_softc *softc;
1284
1285         softc = (struct da_softc *)periph->softc;
1286
1287         xpt_print(periph->path, "removing device entry\n");
1288         cam_periph_unlock(periph);
1289
1290         /*
1291          * If we can't free the sysctl tree, oh well...
1292          */
1293         if ((softc->flags & DA_FLAG_SCTX_INIT) != 0
1294             && sysctl_ctx_free(&softc->sysctl_ctx) != 0) {
1295                 xpt_print(periph->path, "can't remove sysctl context\n");
1296         }
1297
1298         disk_destroy(softc->disk);
1299         callout_drain(&softc->sendordered_c);
1300         free(softc, M_DEVBUF);
1301         cam_periph_lock(periph);
1302 }
1303
1304 static void
1305 daasync(void *callback_arg, u_int32_t code,
1306         struct cam_path *path, void *arg)
1307 {
1308         struct cam_periph *periph;
1309
1310         periph = (struct cam_periph *)callback_arg;
1311         switch (code) {
1312         case AC_FOUND_DEVICE:
1313         {
1314                 struct ccb_getdev *cgd;
1315                 cam_status status;
1316  
1317                 cgd = (struct ccb_getdev *)arg;
1318                 if (cgd == NULL)
1319                         break;
1320
1321                 if (cgd->protocol != PROTO_SCSI)
1322                         break;
1323
1324                 if (SID_TYPE(&cgd->inq_data) != T_DIRECT
1325                     && SID_TYPE(&cgd->inq_data) != T_RBC
1326                     && SID_TYPE(&cgd->inq_data) != T_OPTICAL)
1327                         break;
1328
1329                 /*
1330                  * Allocate a peripheral instance for
1331                  * this device and start the probe
1332                  * process.
1333                  */
1334                 status = cam_periph_alloc(daregister, daoninvalidate,
1335                                           dacleanup, dastart,
1336                                           "da", CAM_PERIPH_BIO,
1337                                           cgd->ccb_h.path, daasync,
1338                                           AC_FOUND_DEVICE, cgd);
1339
1340                 if (status != CAM_REQ_CMP
1341                  && status != CAM_REQ_INPROG)
1342                         printf("daasync: Unable to attach to new device "
1343                                 "due to status 0x%x\n", status);
1344                 return;
1345         }
1346         case AC_ADVINFO_CHANGED:
1347         {
1348                 uintptr_t buftype;
1349
1350                 buftype = (uintptr_t)arg;
1351                 if (buftype == CDAI_TYPE_PHYS_PATH) {
1352                         struct da_softc *softc;
1353
1354                         softc = periph->softc;
1355                         disk_attr_changed(softc->disk, "GEOM::physpath",
1356                                           M_NOWAIT);
1357                 }
1358                 break;
1359         }
1360         case AC_SENT_BDR:
1361         case AC_BUS_RESET:
1362         {
1363                 struct da_softc *softc;
1364                 struct ccb_hdr *ccbh;
1365
1366                 softc = (struct da_softc *)periph->softc;
1367                 /*
1368                  * Don't fail on the expected unit attention
1369                  * that will occur.
1370                  */
1371                 softc->flags |= DA_FLAG_RETRY_UA;
1372                 LIST_FOREACH(ccbh, &softc->pending_ccbs, periph_links.le)
1373                         ccbh->ccb_state |= DA_CCB_RETRY_UA;
1374                 break;
1375         }
1376         default:
1377                 break;
1378         }
1379         cam_periph_async(periph, code, path, arg);
1380 }
1381
1382 static void
1383 dasysctlinit(void *context, int pending)
1384 {
1385         struct cam_periph *periph;
1386         struct da_softc *softc;
1387         char tmpstr[80], tmpstr2[80];
1388         struct ccb_trans_settings cts;
1389
1390         periph = (struct cam_periph *)context;
1391         /*
1392          * periph was held for us when this task was enqueued
1393          */
1394         if (periph->flags & CAM_PERIPH_INVALID) {
1395                 cam_periph_release(periph);
1396                 return;
1397         }
1398
1399         softc = (struct da_softc *)periph->softc;
1400         snprintf(tmpstr, sizeof(tmpstr), "CAM DA unit %d", periph->unit_number);
1401         snprintf(tmpstr2, sizeof(tmpstr2), "%d", periph->unit_number);
1402
1403         sysctl_ctx_init(&softc->sysctl_ctx);
1404         softc->flags |= DA_FLAG_SCTX_INIT;
1405         softc->sysctl_tree = SYSCTL_ADD_NODE(&softc->sysctl_ctx,
1406                 SYSCTL_STATIC_CHILDREN(_kern_cam_da), OID_AUTO, tmpstr2,
1407                 CTLFLAG_RD, 0, tmpstr);
1408         if (softc->sysctl_tree == NULL) {
1409                 printf("dasysctlinit: unable to allocate sysctl tree\n");
1410                 cam_periph_release(periph);
1411                 return;
1412         }
1413
1414         /*
1415          * Now register the sysctl handler, so the user can change the value on
1416          * the fly.
1417          */
1418         SYSCTL_ADD_PROC(&softc->sysctl_ctx, SYSCTL_CHILDREN(softc->sysctl_tree),
1419                 OID_AUTO, "delete_method", CTLTYPE_STRING | CTLFLAG_RW,
1420                 &softc->delete_method, 0, dadeletemethodsysctl, "A",
1421                 "BIO_DELETE execution method");
1422         SYSCTL_ADD_PROC(&softc->sysctl_ctx, SYSCTL_CHILDREN(softc->sysctl_tree),
1423                 OID_AUTO, "minimum_cmd_size", CTLTYPE_INT | CTLFLAG_RW,
1424                 &softc->minimum_cmd_size, 0, dacmdsizesysctl, "I",
1425                 "Minimum CDB size");
1426
1427         SYSCTL_ADD_INT(&softc->sysctl_ctx,
1428                        SYSCTL_CHILDREN(softc->sysctl_tree),
1429                        OID_AUTO,
1430                        "error_inject",
1431                        CTLFLAG_RW,
1432                        &softc->error_inject,
1433                        0,
1434                        "error_inject leaf");
1435
1436
1437         /*
1438          * Add some addressing info.
1439          */
1440         memset(&cts, 0, sizeof (cts));
1441         xpt_setup_ccb(&cts.ccb_h, periph->path, /*priority*/1);
1442         cts.ccb_h.func_code = XPT_GET_TRAN_SETTINGS;
1443         cts.type = CTS_TYPE_CURRENT_SETTINGS;
1444         cam_periph_lock(periph);
1445         xpt_action((union ccb *)&cts);
1446         cam_periph_unlock(periph);
1447         if (cts.ccb_h.status != CAM_REQ_CMP) {
1448                 cam_periph_release(periph);
1449                 return;
1450         }
1451         if (cts.protocol == PROTO_SCSI && cts.transport == XPORT_FC) {
1452                 struct ccb_trans_settings_fc *fc = &cts.xport_specific.fc;
1453                 if (fc->valid & CTS_FC_VALID_WWPN) {
1454                         softc->wwpn = fc->wwpn;
1455                         SYSCTL_ADD_UQUAD(&softc->sysctl_ctx,
1456                             SYSCTL_CHILDREN(softc->sysctl_tree),
1457                             OID_AUTO, "wwpn", CTLFLAG_RD,
1458                             &softc->wwpn, "World Wide Port Name");
1459                 }
1460         }
1461         cam_periph_release(periph);
1462 }
1463
1464 static int
1465 dacmdsizesysctl(SYSCTL_HANDLER_ARGS)
1466 {
1467         int error, value;
1468
1469         value = *(int *)arg1;
1470
1471         error = sysctl_handle_int(oidp, &value, 0, req);
1472
1473         if ((error != 0)
1474          || (req->newptr == NULL))
1475                 return (error);
1476
1477         /*
1478          * Acceptable values here are 6, 10, 12 or 16.
1479          */
1480         if (value < 6)
1481                 value = 6;
1482         else if ((value > 6)
1483               && (value <= 10))
1484                 value = 10;
1485         else if ((value > 10)
1486               && (value <= 12))
1487                 value = 12;
1488         else if (value > 12)
1489                 value = 16;
1490
1491         *(int *)arg1 = value;
1492
1493         return (0);
1494 }
1495
1496 static int
1497 dadeletemethodsysctl(SYSCTL_HANDLER_ARGS)
1498 {
1499         char buf[16];
1500         int error;
1501         const char *p;
1502         int i, value;
1503
1504         value = *(int *)arg1;
1505         if (value < 0 || value > DA_DELETE_MAX)
1506                 p = "UNKNOWN";
1507         else
1508                 p = da_delete_method_names[value];
1509         strncpy(buf, p, sizeof(buf));
1510         error = sysctl_handle_string(oidp, buf, sizeof(buf), req);
1511         if (error != 0 || req->newptr == NULL)
1512                 return (error);
1513         for (i = 0; i <= DA_DELETE_MAX; i++) {
1514                 if (strcmp(buf, da_delete_method_names[i]) != 0)
1515                         continue;
1516                 *(int *)arg1 = i;
1517                 return (0);
1518         }
1519         return (EINVAL);
1520 }
1521
1522 static cam_status
1523 daregister(struct cam_periph *periph, void *arg)
1524 {
1525         struct da_softc *softc;
1526         struct ccb_pathinq cpi;
1527         struct ccb_getdev *cgd;
1528         char tmpstr[80];
1529         caddr_t match;
1530
1531         cgd = (struct ccb_getdev *)arg;
1532         if (periph == NULL) {
1533                 printf("daregister: periph was NULL!!\n");
1534                 return(CAM_REQ_CMP_ERR);
1535         }
1536
1537         if (cgd == NULL) {
1538                 printf("daregister: no getdev CCB, can't register device\n");
1539                 return(CAM_REQ_CMP_ERR);
1540         }
1541
1542         softc = (struct da_softc *)malloc(sizeof(*softc), M_DEVBUF,
1543             M_NOWAIT|M_ZERO);
1544
1545         if (softc == NULL) {
1546                 printf("daregister: Unable to probe new device. "
1547                        "Unable to allocate softc\n");                           
1548                 return(CAM_REQ_CMP_ERR);
1549         }
1550
1551         LIST_INIT(&softc->pending_ccbs);
1552         softc->state = DA_STATE_PROBE;
1553         bioq_init(&softc->bio_queue);
1554         bioq_init(&softc->delete_queue);
1555         bioq_init(&softc->delete_run_queue);
1556         if (SID_IS_REMOVABLE(&cgd->inq_data))
1557                 softc->flags |= DA_FLAG_PACK_REMOVABLE;
1558         if ((cgd->inq_data.flags & SID_CmdQue) != 0)
1559                 softc->flags |= DA_FLAG_TAGGED_QUEUING;
1560         softc->unmap_max_ranges = UNMAP_MAX_RANGES;
1561         softc->unmap_max_lba = 1024*1024*2;
1562
1563         periph->softc = softc;
1564
1565         /*
1566          * See if this device has any quirks.
1567          */
1568         match = cam_quirkmatch((caddr_t)&cgd->inq_data,
1569                                (caddr_t)da_quirk_table,
1570                                sizeof(da_quirk_table)/sizeof(*da_quirk_table),
1571                                sizeof(*da_quirk_table), scsi_inquiry_match);
1572
1573         if (match != NULL)
1574                 softc->quirks = ((struct da_quirk_entry *)match)->quirks;
1575         else
1576                 softc->quirks = DA_Q_NONE;
1577
1578         /* Check if the SIM does not want 6 byte commands */
1579         bzero(&cpi, sizeof(cpi));
1580         xpt_setup_ccb(&cpi.ccb_h, periph->path, CAM_PRIORITY_NORMAL);
1581         cpi.ccb_h.func_code = XPT_PATH_INQ;
1582         xpt_action((union ccb *)&cpi);
1583         if (cpi.ccb_h.status == CAM_REQ_CMP && (cpi.hba_misc & PIM_NO_6_BYTE))
1584                 softc->quirks |= DA_Q_NO_6_BYTE;
1585
1586         TASK_INIT(&softc->sysctl_task, 0, dasysctlinit, periph);
1587
1588         /*
1589          * Take an exclusive refcount on the periph while dastart is called
1590          * to finish the probe.  The reference will be dropped in dadone at
1591          * the end of probe.
1592          */
1593         (void)cam_periph_hold(periph, PRIBIO);
1594
1595         /*
1596          * Schedule a periodic event to occasionally send an
1597          * ordered tag to a device.
1598          */
1599         callout_init_mtx(&softc->sendordered_c, periph->sim->mtx, 0);
1600         callout_reset(&softc->sendordered_c,
1601             (da_default_timeout * hz) / DA_ORDEREDTAG_INTERVAL,
1602             dasendorderedtag, softc);
1603
1604         mtx_unlock(periph->sim->mtx);
1605         /*
1606          * RBC devices don't have to support READ(6), only READ(10).
1607          */
1608         if (softc->quirks & DA_Q_NO_6_BYTE || SID_TYPE(&cgd->inq_data) == T_RBC)
1609                 softc->minimum_cmd_size = 10;
1610         else
1611                 softc->minimum_cmd_size = 6;
1612
1613         /*
1614          * Load the user's default, if any.
1615          */
1616         snprintf(tmpstr, sizeof(tmpstr), "kern.cam.da.%d.minimum_cmd_size",
1617                  periph->unit_number);
1618         TUNABLE_INT_FETCH(tmpstr, &softc->minimum_cmd_size);
1619
1620         /*
1621          * 6, 10, 12 and 16 are the currently permissible values.
1622          */
1623         if (softc->minimum_cmd_size < 6)
1624                 softc->minimum_cmd_size = 6;
1625         else if ((softc->minimum_cmd_size > 6)
1626               && (softc->minimum_cmd_size <= 10))
1627                 softc->minimum_cmd_size = 10;
1628         else if ((softc->minimum_cmd_size > 10)
1629               && (softc->minimum_cmd_size <= 12))
1630                 softc->minimum_cmd_size = 12;
1631         else if (softc->minimum_cmd_size > 12)
1632                 softc->minimum_cmd_size = 16;
1633
1634         /* Predict whether device may support READ CAPACITY(16). */
1635         if (SID_ANSI_REV(&cgd->inq_data) >= SCSI_REV_SPC3) {
1636                 softc->flags |= DA_FLAG_CAN_RC16;
1637                 softc->state = DA_STATE_PROBE2;
1638         }
1639
1640         /*
1641          * Register this media as a disk.
1642          */
1643         softc->disk = disk_alloc();
1644         softc->disk->d_devstat = devstat_new_entry(periph->periph_name,
1645                           periph->unit_number, 0,
1646                           DEVSTAT_BS_UNAVAILABLE,
1647                           SID_TYPE(&cgd->inq_data) |
1648                           XPORT_DEVSTAT_TYPE(cpi.transport),
1649                           DEVSTAT_PRIORITY_DISK);
1650         softc->disk->d_open = daopen;
1651         softc->disk->d_close = daclose;
1652         softc->disk->d_strategy = dastrategy;
1653         softc->disk->d_dump = dadump;
1654         softc->disk->d_getattr = dagetattr;
1655         softc->disk->d_name = "da";
1656         softc->disk->d_drv1 = periph;
1657         if (cpi.maxio == 0)
1658                 softc->disk->d_maxsize = DFLTPHYS;      /* traditional default */
1659         else if (cpi.maxio > MAXPHYS)
1660                 softc->disk->d_maxsize = MAXPHYS;       /* for safety */
1661         else
1662                 softc->disk->d_maxsize = cpi.maxio;
1663         softc->disk->d_unit = periph->unit_number;
1664         softc->disk->d_flags = 0;
1665         if ((softc->quirks & DA_Q_NO_SYNC_CACHE) == 0)
1666                 softc->disk->d_flags |= DISKFLAG_CANFLUSHCACHE;
1667         cam_strvis(softc->disk->d_descr, cgd->inq_data.vendor,
1668             sizeof(cgd->inq_data.vendor), sizeof(softc->disk->d_descr));
1669         strlcat(softc->disk->d_descr, " ", sizeof(softc->disk->d_descr));
1670         cam_strvis(&softc->disk->d_descr[strlen(softc->disk->d_descr)],
1671             cgd->inq_data.product, sizeof(cgd->inq_data.product),
1672             sizeof(softc->disk->d_descr) - strlen(softc->disk->d_descr));
1673         softc->disk->d_hba_vendor = cpi.hba_vendor;
1674         softc->disk->d_hba_device = cpi.hba_device;
1675         softc->disk->d_hba_subvendor = cpi.hba_subvendor;
1676         softc->disk->d_hba_subdevice = cpi.hba_subdevice;
1677         disk_create(softc->disk, DISK_VERSION);
1678         mtx_lock(periph->sim->mtx);
1679
1680         /*
1681          * Add async callbacks for events of interest.
1682          * I don't bother checking if this fails as,
1683          * in most cases, the system will function just
1684          * fine without them and the only alternative
1685          * would be to not attach the device on failure.
1686          */
1687         xpt_register_async(AC_SENT_BDR | AC_BUS_RESET
1688                          | AC_LOST_DEVICE | AC_ADVINFO_CHANGED,
1689                            daasync, periph, periph->path);
1690
1691         /*
1692          * Emit an attribute changed notification just in case 
1693          * physical path information arrived before our async
1694          * event handler was registered, but after anyone attaching
1695          * to our disk device polled it.
1696          */
1697         disk_attr_changed(softc->disk, "GEOM::physpath", M_NOWAIT);
1698
1699         xpt_schedule(periph, CAM_PRIORITY_DEV);
1700
1701         return(CAM_REQ_CMP);
1702 }
1703
1704 static void
1705 dastart(struct cam_periph *periph, union ccb *start_ccb)
1706 {
1707         struct da_softc *softc;
1708
1709         softc = (struct da_softc *)periph->softc;
1710
1711         CAM_DEBUG(periph->path, CAM_DEBUG_TRACE, ("dastart\n"));
1712
1713         switch (softc->state) {
1714         case DA_STATE_NORMAL:
1715         {
1716                 struct bio *bp, *bp1;
1717                 uint8_t tag_code;
1718
1719                 /* Execute immediate CCB if waiting. */
1720                 if (periph->immediate_priority <= periph->pinfo.priority) {
1721                         CAM_DEBUG(periph->path, CAM_DEBUG_SUBTRACE,
1722                                         ("queuing for immediate ccb\n"));
1723                         start_ccb->ccb_h.ccb_state = DA_CCB_WAITING;
1724                         SLIST_INSERT_HEAD(&periph->ccb_list, &start_ccb->ccb_h,
1725                                           periph_links.sle);
1726                         periph->immediate_priority = CAM_PRIORITY_NONE;
1727                         wakeup(&periph->ccb_list);
1728                         /* May have more work to do, so ensure we stay scheduled */
1729                         daschedule(periph);
1730                         break;
1731                 }
1732
1733                 /* Run BIO_DELETE if not running yet. */
1734                 if (!softc->delete_running &&
1735                     (bp = bioq_first(&softc->delete_queue)) != NULL) {
1736                     uint64_t lba;
1737                     u_int count;
1738
1739                     if (softc->delete_method == DA_DELETE_UNMAP) {
1740                         uint8_t *buf = softc->unmap_buf;
1741                         uint64_t lastlba = (uint64_t)-1;
1742                         uint32_t lastcount = 0;
1743                         int blocks = 0, off, ranges = 0;
1744
1745                         softc->delete_running = 1;
1746                         bzero(softc->unmap_buf, sizeof(softc->unmap_buf));
1747                         bp1 = bp;
1748                         do {
1749                                 bioq_remove(&softc->delete_queue, bp1);
1750                                 if (bp1 != bp)
1751                                         bioq_insert_tail(&softc->delete_run_queue, bp1);
1752                                 lba = bp1->bio_pblkno;
1753                                 count = bp1->bio_bcount / softc->params.secsize;
1754
1755                                 /* Try to extend the previous range. */
1756                                 if (lba == lastlba) {
1757                                         lastcount += count;
1758                                         off = (ranges - 1) * 16 + 8;
1759                                         scsi_ulto4b(lastcount, &buf[off + 8]);
1760                                 } else if (count > 0) {
1761                                         off = ranges * 16 + 8;
1762                                         scsi_u64to8b(lba, &buf[off + 0]);
1763                                         scsi_ulto4b(count, &buf[off + 8]);
1764                                         lastcount = count;
1765                                         ranges++;
1766                                 }
1767                                 blocks += count;
1768                                 lastlba = lba + count;
1769                                 bp1 = bioq_first(&softc->delete_queue);
1770                                 if (bp1 == NULL ||
1771                                     ranges >= softc->unmap_max_ranges ||
1772                                     blocks + bp1->bio_bcount /
1773                                      softc->params.secsize > softc->unmap_max_lba)
1774                                         break;
1775                         } while (1);
1776                         scsi_ulto2b(count * 16 + 6, &buf[0]);
1777                         scsi_ulto2b(count * 16, &buf[2]);
1778
1779                         scsi_unmap(&start_ccb->csio,
1780                                         /*retries*/da_retry_count,
1781                                         /*cbfcnp*/dadone,
1782                                         /*tag_action*/MSG_SIMPLE_Q_TAG,
1783                                         /*byte2*/0,
1784                                         /*data_ptr*/ buf,
1785                                         /*dxfer_len*/ count * 16 + 8,
1786                                         /*sense_len*/SSD_FULL_SIZE,
1787                                         da_default_timeout * 1000);
1788                         start_ccb->ccb_h.ccb_state = DA_CCB_DELETE;
1789                         goto out;
1790                     } else if (softc->delete_method == DA_DELETE_ZERO ||
1791                                softc->delete_method == DA_DELETE_WS10 ||
1792                                softc->delete_method == DA_DELETE_WS16) {
1793                         softc->delete_running = 1;
1794                         lba = bp->bio_pblkno;
1795                         count = 0;
1796                         bp1 = bp;
1797                         do {
1798                                 bioq_remove(&softc->delete_queue, bp1);
1799                                 if (bp1 != bp)
1800                                         bioq_insert_tail(&softc->delete_run_queue, bp1);
1801                                 count += bp1->bio_bcount / softc->params.secsize;
1802                                 bp1 = bioq_first(&softc->delete_queue);
1803                                 if (bp1 == NULL ||
1804                                     lba + count != bp1->bio_pblkno ||
1805                                     count + bp1->bio_bcount /
1806                                      softc->params.secsize > 0xffff)
1807                                         break;
1808                         } while (1);
1809
1810                         scsi_write_same(&start_ccb->csio,
1811                                         /*retries*/da_retry_count,
1812                                         /*cbfcnp*/dadone,
1813                                         /*tag_action*/MSG_SIMPLE_Q_TAG,
1814                                         /*byte2*/softc->delete_method ==
1815                                             DA_DELETE_ZERO ? 0 : SWS_UNMAP,
1816                                         softc->delete_method ==
1817                                             DA_DELETE_WS16 ? 16 : 10,
1818                                         /*lba*/lba,
1819                                         /*block_count*/count,
1820                                         /*data_ptr*/ __DECONST(void *,
1821                                             zero_region),
1822                                         /*dxfer_len*/ softc->params.secsize,
1823                                         /*sense_len*/SSD_FULL_SIZE,
1824                                         da_default_timeout * 1000);
1825                         start_ccb->ccb_h.ccb_state = DA_CCB_DELETE;
1826                         goto out;
1827                     } else {
1828                         bioq_flush(&softc->delete_queue, NULL, 0);
1829                         /* FALLTHROUGH */
1830                     }
1831                 }
1832
1833                 /* Run regular command. */
1834                 bp = bioq_takefirst(&softc->bio_queue);
1835                 if (bp == NULL) {
1836                         xpt_release_ccb(start_ccb);
1837                         break;
1838                 }
1839
1840                 if ((bp->bio_flags & BIO_ORDERED) != 0 ||
1841                     (softc->flags & DA_FLAG_NEED_OTAG) != 0) {
1842                         softc->flags &= ~DA_FLAG_NEED_OTAG;
1843                         softc->ordered_tag_count++;
1844                         tag_code = MSG_ORDERED_Q_TAG;
1845                 } else {
1846                         tag_code = MSG_SIMPLE_Q_TAG;
1847                 }
1848
1849                 switch (bp->bio_cmd) {
1850                 case BIO_READ:
1851                 case BIO_WRITE:
1852                         scsi_read_write(&start_ccb->csio,
1853                                         /*retries*/da_retry_count,
1854                                         /*cbfcnp*/dadone,
1855                                         /*tag_action*/tag_code,
1856                                         /*read_op*/bp->bio_cmd
1857                                                 == BIO_READ,
1858                                         /*byte2*/0,
1859                                         softc->minimum_cmd_size,
1860                                         /*lba*/bp->bio_pblkno,
1861                                         /*block_count*/bp->bio_bcount /
1862                                         softc->params.secsize,
1863                                         /*data_ptr*/ bp->bio_data,
1864                                         /*dxfer_len*/ bp->bio_bcount,
1865                                         /*sense_len*/SSD_FULL_SIZE,
1866                                         da_default_timeout * 1000);
1867                         break;
1868                 case BIO_FLUSH:
1869                         /*
1870                          * BIO_FLUSH doesn't currently communicate
1871                          * range data, so we synchronize the cache
1872                          * over the whole disk.  We also force
1873                          * ordered tag semantics the flush applies
1874                          * to all previously queued I/O.
1875                          */
1876                         scsi_synchronize_cache(&start_ccb->csio,
1877                                                /*retries*/1,
1878                                                /*cbfcnp*/dadone,
1879                                                MSG_ORDERED_Q_TAG,
1880                                                /*begin_lba*/0,
1881                                                /*lb_count*/0,
1882                                                SSD_FULL_SIZE,
1883                                                da_default_timeout*1000);
1884                         break;
1885                 }
1886                 start_ccb->ccb_h.ccb_state = DA_CCB_BUFFER_IO;
1887
1888 out:
1889                 /*
1890                  * Block out any asyncronous callbacks
1891                  * while we touch the pending ccb list.
1892                  */
1893                 LIST_INSERT_HEAD(&softc->pending_ccbs,
1894                                  &start_ccb->ccb_h, periph_links.le);
1895                 softc->outstanding_cmds++;
1896
1897                 /* We expect a unit attention from this device */
1898                 if ((softc->flags & DA_FLAG_RETRY_UA) != 0) {
1899                         start_ccb->ccb_h.ccb_state |= DA_CCB_RETRY_UA;
1900                         softc->flags &= ~DA_FLAG_RETRY_UA;
1901                 }
1902
1903                 start_ccb->ccb_h.ccb_bp = bp;
1904                 xpt_action(start_ccb);
1905
1906                 /* May have more work to do, so ensure we stay scheduled */
1907                 daschedule(periph);
1908                 break;
1909         }
1910         case DA_STATE_PROBE:
1911         {
1912                 struct ccb_scsiio *csio;
1913                 struct scsi_read_capacity_data *rcap;
1914
1915                 rcap = (struct scsi_read_capacity_data *)
1916                     malloc(sizeof(*rcap), M_SCSIDA, M_NOWAIT|M_ZERO);
1917                 if (rcap == NULL) {
1918                         printf("dastart: Couldn't malloc read_capacity data\n");
1919                         /* da_free_periph??? */
1920                         break;
1921                 }
1922                 csio = &start_ccb->csio;
1923                 scsi_read_capacity(csio,
1924                                    /*retries*/4,
1925                                    dadone,
1926                                    MSG_SIMPLE_Q_TAG,
1927                                    rcap,
1928                                    SSD_FULL_SIZE,
1929                                    /*timeout*/5000);
1930                 start_ccb->ccb_h.ccb_bp = NULL;
1931                 start_ccb->ccb_h.ccb_state = DA_CCB_PROBE;
1932                 xpt_action(start_ccb);
1933                 break;
1934         }
1935         case DA_STATE_PROBE2:
1936         {
1937                 struct ccb_scsiio *csio;
1938                 struct scsi_read_capacity_data_long *rcaplong;
1939
1940                 rcaplong = (struct scsi_read_capacity_data_long *)
1941                         malloc(sizeof(*rcaplong), M_SCSIDA, M_NOWAIT|M_ZERO);
1942                 if (rcaplong == NULL) {
1943                         printf("dastart: Couldn't malloc read_capacity data\n");
1944                         /* da_free_periph??? */
1945                         break;
1946                 }
1947                 csio = &start_ccb->csio;
1948                 scsi_read_capacity_16(csio,
1949                                       /*retries*/ 4,
1950                                       /*cbfcnp*/ dadone,
1951                                       /*tag_action*/ MSG_SIMPLE_Q_TAG,
1952                                       /*lba*/ 0,
1953                                       /*reladr*/ 0,
1954                                       /*pmi*/ 0,
1955                                       rcaplong,
1956                                       /*sense_len*/ SSD_FULL_SIZE,
1957                                       /*timeout*/ 60000);
1958                 start_ccb->ccb_h.ccb_bp = NULL;
1959                 start_ccb->ccb_h.ccb_state = DA_CCB_PROBE2;
1960                 xpt_action(start_ccb);  
1961                 break;
1962         }
1963         }
1964 }
1965
1966 static int
1967 cmd6workaround(union ccb *ccb)
1968 {
1969         struct scsi_rw_6 cmd6;
1970         struct scsi_rw_10 *cmd10;
1971         struct da_softc *softc;
1972         u_int8_t *cdb;
1973         struct bio *bp;
1974         int frozen;
1975
1976         cdb = ccb->csio.cdb_io.cdb_bytes;
1977         softc = (struct da_softc *)xpt_path_periph(ccb->ccb_h.path)->softc;
1978
1979         if (ccb->ccb_h.ccb_state == DA_CCB_DELETE) {
1980                 if (softc->delete_method == DA_DELETE_UNMAP) {
1981                         xpt_print(ccb->ccb_h.path, "UNMAP is not supported, "
1982                             "switching to WRITE SAME(16) with UNMAP.\n");
1983                         softc->delete_method = DA_DELETE_WS16;
1984                 } else if (softc->delete_method == DA_DELETE_WS16) {
1985                         xpt_print(ccb->ccb_h.path,
1986                             "WRITE SAME(16) with UNMAP is not supported, "
1987                             "disabling BIO_DELETE.\n");
1988                         softc->delete_method = DA_DELETE_DISABLE;
1989                 } else if (softc->delete_method == DA_DELETE_WS10) {
1990                         xpt_print(ccb->ccb_h.path,
1991                             "WRITE SAME(10) with UNMAP is not supported, "
1992                             "disabling BIO_DELETE.\n");
1993                         softc->delete_method = DA_DELETE_DISABLE;
1994                 } else if (softc->delete_method == DA_DELETE_ZERO) {
1995                         xpt_print(ccb->ccb_h.path,
1996                             "WRITE SAME(10) is not supported, "
1997                             "disabling BIO_DELETE.\n");
1998                         softc->delete_method = DA_DELETE_DISABLE;
1999                 } else
2000                         softc->delete_method = DA_DELETE_DISABLE;
2001                 while ((bp = bioq_takefirst(&softc->delete_run_queue))
2002                     != NULL)
2003                         bioq_disksort(&softc->delete_queue, bp);
2004                 bioq_insert_tail(&softc->delete_queue,
2005                     (struct bio *)ccb->ccb_h.ccb_bp);
2006                 ccb->ccb_h.ccb_bp = NULL;
2007                 return (0);
2008         }
2009
2010         /* Translation only possible if CDB is an array and cmd is R/W6 */
2011         if ((ccb->ccb_h.flags & CAM_CDB_POINTER) != 0 ||
2012             (*cdb != READ_6 && *cdb != WRITE_6))
2013                 return 0;
2014
2015         xpt_print(ccb->ccb_h.path, "READ(6)/WRITE(6) not supported, "
2016             "increasing minimum_cmd_size to 10.\n");
2017         softc->minimum_cmd_size = 10;
2018
2019         bcopy(cdb, &cmd6, sizeof(struct scsi_rw_6));
2020         cmd10 = (struct scsi_rw_10 *)cdb;
2021         cmd10->opcode = (cmd6.opcode == READ_6) ? READ_10 : WRITE_10;
2022         cmd10->byte2 = 0;
2023         scsi_ulto4b(scsi_3btoul(cmd6.addr), cmd10->addr);
2024         cmd10->reserved = 0;
2025         scsi_ulto2b(cmd6.length, cmd10->length);
2026         cmd10->control = cmd6.control;
2027         ccb->csio.cdb_len = sizeof(*cmd10);
2028
2029         /* Requeue request, unfreezing queue if necessary */
2030         frozen = (ccb->ccb_h.status & CAM_DEV_QFRZN) != 0;
2031         ccb->ccb_h.status = CAM_REQUEUE_REQ;
2032         xpt_action(ccb);
2033         if (frozen) {
2034                 cam_release_devq(ccb->ccb_h.path,
2035                                  /*relsim_flags*/0,
2036                                  /*reduction*/0,
2037                                  /*timeout*/0,
2038                                  /*getcount_only*/0);
2039         }
2040         return (ERESTART);
2041 }
2042
2043 static void
2044 dadone(struct cam_periph *periph, union ccb *done_ccb)
2045 {
2046         struct da_softc *softc;
2047         struct ccb_scsiio *csio;
2048         u_int32_t  priority;
2049
2050         softc = (struct da_softc *)periph->softc;
2051         priority = done_ccb->ccb_h.pinfo.priority;
2052
2053         CAM_DEBUG(periph->path, CAM_DEBUG_TRACE, ("dadone\n"));
2054
2055         csio = &done_ccb->csio;
2056         switch (csio->ccb_h.ccb_state & DA_CCB_TYPE_MASK) {
2057         case DA_CCB_BUFFER_IO:
2058         case DA_CCB_DELETE:
2059         {
2060                 struct bio *bp, *bp1;
2061
2062                 bp = (struct bio *)done_ccb->ccb_h.ccb_bp;
2063                 if ((done_ccb->ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) {
2064                         int error;
2065                         int sf;
2066
2067                         if ((csio->ccb_h.ccb_state & DA_CCB_RETRY_UA) != 0)
2068                                 sf = SF_RETRY_UA;
2069                         else
2070                                 sf = 0;
2071
2072                         error = daerror(done_ccb, CAM_RETRY_SELTO, sf);
2073                         if (error == ERESTART) {
2074                                 /*
2075                                  * A retry was scheuled, so
2076                                  * just return.
2077                                  */
2078                                 return;
2079                         }
2080                         bp = (struct bio *)done_ccb->ccb_h.ccb_bp;
2081                         if (error != 0) {
2082                                 int queued_error;
2083
2084                                 /*
2085                                  * return all queued I/O with EIO, so that
2086                                  * the client can retry these I/Os in the
2087                                  * proper order should it attempt to recover.
2088                                  */
2089                                 queued_error = EIO;
2090
2091                                 if (error == ENXIO
2092                                  && (softc->flags & DA_FLAG_PACK_INVALID)== 0) {
2093                                         /*
2094                                          * Catastrophic error.  Mark our pack as
2095                                          * invalid.
2096                                          */
2097                                         /*
2098                                          * XXX See if this is really a media
2099                                          * XXX change first?
2100                                          */
2101                                         xpt_print(periph->path,
2102                                             "Invalidating pack\n");
2103                                         softc->flags |= DA_FLAG_PACK_INVALID;
2104                                         queued_error = ENXIO;
2105                                 }
2106                                 bioq_flush(&softc->bio_queue, NULL,
2107                                            queued_error);
2108                                 if (bp != NULL) {
2109                                         bp->bio_error = error;
2110                                         bp->bio_resid = bp->bio_bcount;
2111                                         bp->bio_flags |= BIO_ERROR;
2112                                 }
2113                         } else if (bp != NULL) {
2114                                 bp->bio_resid = csio->resid;
2115                                 bp->bio_error = 0;
2116                                 if (bp->bio_resid != 0)
2117                                         bp->bio_flags |= BIO_ERROR;
2118                         }
2119                         if ((done_ccb->ccb_h.status & CAM_DEV_QFRZN) != 0)
2120                                 cam_release_devq(done_ccb->ccb_h.path,
2121                                                  /*relsim_flags*/0,
2122                                                  /*reduction*/0,
2123                                                  /*timeout*/0,
2124                                                  /*getcount_only*/0);
2125                 } else if (bp != NULL) {
2126                         if ((done_ccb->ccb_h.status & CAM_DEV_QFRZN) != 0)
2127                                 panic("REQ_CMP with QFRZN");
2128                         bp->bio_resid = csio->resid;
2129                         if (csio->resid > 0)
2130                                 bp->bio_flags |= BIO_ERROR;
2131                         if (softc->error_inject != 0) {
2132                                 bp->bio_error = softc->error_inject;
2133                                 bp->bio_resid = bp->bio_bcount;
2134                                 bp->bio_flags |= BIO_ERROR;
2135                                 softc->error_inject = 0;
2136                         }
2137
2138                 }
2139
2140                 /*
2141                  * Block out any asyncronous callbacks
2142                  * while we touch the pending ccb list.
2143                  */
2144                 LIST_REMOVE(&done_ccb->ccb_h, periph_links.le);
2145                 softc->outstanding_cmds--;
2146                 if (softc->outstanding_cmds == 0)
2147                         softc->flags |= DA_FLAG_WENT_IDLE;
2148
2149                 if ((softc->flags & DA_FLAG_PACK_INVALID) != 0) {
2150                         xpt_print(periph->path, "oustanding %d\n",
2151                                   softc->outstanding_cmds);
2152                 }
2153
2154                 if ((csio->ccb_h.ccb_state & DA_CCB_TYPE_MASK) ==
2155                     DA_CCB_DELETE) {
2156                         while ((bp1 = bioq_takefirst(&softc->delete_run_queue))
2157                             != NULL) {
2158                                 bp1->bio_resid = bp->bio_resid;
2159                                 bp1->bio_error = bp->bio_error;
2160                                 if (bp->bio_flags & BIO_ERROR)
2161                                         bp1->bio_flags |= BIO_ERROR;
2162                                 biodone(bp1);
2163                         }
2164                         softc->delete_running = 0;
2165                         if (bp != NULL)
2166                                 biodone(bp);
2167                         daschedule(periph);
2168                 } else if (bp != NULL)
2169                         biodone(bp);
2170                 break;
2171         }
2172         case DA_CCB_PROBE:
2173         case DA_CCB_PROBE2:
2174         {
2175                 struct     scsi_read_capacity_data *rdcap;
2176                 struct     scsi_read_capacity_data_long *rcaplong;
2177                 char       announce_buf[80];
2178
2179                 rdcap = NULL;
2180                 rcaplong = NULL;
2181                 if (softc->state == DA_STATE_PROBE)
2182                         rdcap =(struct scsi_read_capacity_data *)csio->data_ptr;
2183                 else
2184                         rcaplong = (struct scsi_read_capacity_data_long *)
2185                                 csio->data_ptr;
2186
2187                 if ((csio->ccb_h.status & CAM_STATUS_MASK) == CAM_REQ_CMP) {
2188                         struct disk_params *dp;
2189                         uint32_t block_size;
2190                         uint64_t maxsector;
2191                         u_int lbppbe;   /* LB per physical block exponent. */
2192                         u_int lalba;    /* Lowest aligned LBA. */
2193
2194                         if (softc->state == DA_STATE_PROBE) {
2195                                 block_size = scsi_4btoul(rdcap->length);
2196                                 maxsector = scsi_4btoul(rdcap->addr);
2197                                 lbppbe = 0;
2198                                 lalba = 0;
2199
2200                                 /*
2201                                  * According to SBC-2, if the standard 10
2202                                  * byte READ CAPACITY command returns 2^32,
2203                                  * we should issue the 16 byte version of
2204                                  * the command, since the device in question
2205                                  * has more sectors than can be represented
2206                                  * with the short version of the command.
2207                                  */
2208                                 if (maxsector == 0xffffffff) {
2209                                         softc->state = DA_STATE_PROBE2;
2210                                         free(rdcap, M_SCSIDA);
2211                                         xpt_release_ccb(done_ccb);
2212                                         xpt_schedule(periph, priority);
2213                                         return;
2214                                 }
2215                         } else {
2216                                 block_size = scsi_4btoul(rcaplong->length);
2217                                 maxsector = scsi_8btou64(rcaplong->addr);
2218                                 lbppbe = rcaplong->prot_lbppbe & SRC16_LBPPBE;
2219                                 lalba = scsi_2btoul(rcaplong->lalba_lbp);
2220                         }
2221
2222                         /*
2223                          * Because GEOM code just will panic us if we
2224                          * give them an 'illegal' value we'll avoid that
2225                          * here.
2226                          */
2227                         if (block_size == 0 && maxsector == 0) {
2228                                 snprintf(announce_buf, sizeof(announce_buf),
2229                                         "0MB (no media?)");
2230                         } else if (block_size >= MAXPHYS || block_size == 0) {
2231                                 xpt_print(periph->path,
2232                                     "unsupportable block size %ju\n",
2233                                     (uintmax_t) block_size);
2234                                 announce_buf[0] = '\0';
2235                                 cam_periph_invalidate(periph);
2236                         } else {
2237                                 dasetgeom(periph, block_size, maxsector,
2238                                     lbppbe, lalba & SRC16_LALBA);
2239                                 if ((lalba & SRC16_LBPME) &&
2240                                     softc->delete_method == DA_DELETE_NONE)
2241                                         softc->delete_method = DA_DELETE_UNMAP;
2242                                 dp = &softc->params;
2243                                 snprintf(announce_buf, sizeof(announce_buf),
2244                                         "%juMB (%ju %u byte sectors: %dH %dS/T "
2245                                         "%dC)", (uintmax_t)
2246                                         (((uintmax_t)dp->secsize *
2247                                         dp->sectors) / (1024*1024)),
2248                                         (uintmax_t)dp->sectors,
2249                                         dp->secsize, dp->heads,
2250                                         dp->secs_per_track, dp->cylinders);
2251                         }
2252                 } else {
2253                         int     error;
2254
2255                         announce_buf[0] = '\0';
2256
2257                         /*
2258                          * Retry any UNIT ATTENTION type errors.  They
2259                          * are expected at boot.
2260                          */
2261                         error = daerror(done_ccb, CAM_RETRY_SELTO,
2262                                         SF_RETRY_UA|SF_NO_PRINT);
2263                         if (error == ERESTART) {
2264                                 /*
2265                                  * A retry was scheuled, so
2266                                  * just return.
2267                                  */
2268                                 return;
2269                         } else if (error != 0) {
2270                                 struct scsi_sense_data *sense;
2271                                 int asc, ascq;
2272                                 int sense_key, error_code;
2273                                 int have_sense;
2274                                 cam_status status;
2275                                 struct ccb_getdev cgd;
2276
2277                                 /* Don't wedge this device's queue */
2278                                 status = done_ccb->ccb_h.status;
2279                                 if ((status & CAM_DEV_QFRZN) != 0)
2280                                         cam_release_devq(done_ccb->ccb_h.path,
2281                                                          /*relsim_flags*/0,
2282                                                          /*reduction*/0,
2283                                                          /*timeout*/0,
2284                                                          /*getcount_only*/0);
2285
2286
2287                                 xpt_setup_ccb(&cgd.ccb_h, 
2288                                               done_ccb->ccb_h.path,
2289                                               CAM_PRIORITY_NORMAL);
2290                                 cgd.ccb_h.func_code = XPT_GDEV_TYPE;
2291                                 xpt_action((union ccb *)&cgd);
2292
2293                                 if (((csio->ccb_h.flags & CAM_SENSE_PHYS) != 0)
2294                                  || ((csio->ccb_h.flags & CAM_SENSE_PTR) != 0)
2295                                  || ((status & CAM_AUTOSNS_VALID) == 0))
2296                                         have_sense = FALSE;
2297                                 else
2298                                         have_sense = TRUE;
2299
2300                                 if (have_sense) {
2301                                         sense = &csio->sense_data;
2302                                         scsi_extract_sense_len(sense,
2303                                             csio->sense_len - csio->sense_resid,
2304                                             &error_code, &sense_key, &asc,
2305                                             &ascq, /*show_errors*/ 1);
2306                                 }
2307                                 /*
2308                                  * If we tried READ CAPACITY(16) and failed,
2309                                  * fallback to READ CAPACITY(10).
2310                                  */
2311                                 if ((softc->state == DA_STATE_PROBE2) &&
2312                                     (softc->flags & DA_FLAG_CAN_RC16) &&
2313                                     (((csio->ccb_h.status & CAM_STATUS_MASK) ==
2314                                         CAM_REQ_INVALID) ||
2315                                      ((have_sense) &&
2316                                       (error_code == SSD_CURRENT_ERROR) &&
2317                                       (sense_key == SSD_KEY_ILLEGAL_REQUEST)))) {
2318                                         softc->flags &= ~DA_FLAG_CAN_RC16;
2319                                         softc->state = DA_STATE_PROBE;
2320                                         free(rdcap, M_SCSIDA);
2321                                         xpt_release_ccb(done_ccb);
2322                                         xpt_schedule(periph, priority);
2323                                         return;
2324                                 } else
2325                                 /*
2326                                  * Attach to anything that claims to be a
2327                                  * direct access or optical disk device,
2328                                  * as long as it doesn't return a "Logical
2329                                  * unit not supported" (0x25) error.
2330                                  */
2331                                 if ((have_sense) && (asc != 0x25)
2332                                  && (error_code == SSD_CURRENT_ERROR)) {
2333                                         const char *sense_key_desc;
2334                                         const char *asc_desc;
2335
2336                                         scsi_sense_desc(sense_key, asc, ascq,
2337                                                         &cgd.inq_data,
2338                                                         &sense_key_desc,
2339                                                         &asc_desc);
2340                                         snprintf(announce_buf,
2341                                             sizeof(announce_buf),
2342                                                 "Attempt to query device "
2343                                                 "size failed: %s, %s",
2344                                                 sense_key_desc,
2345                                                 asc_desc);
2346                                 } else { 
2347                                         if (have_sense)
2348                                                 scsi_sense_print(
2349                                                         &done_ccb->csio);
2350                                         else {
2351                                                 xpt_print(periph->path,
2352                                                     "got CAM status %#x\n",
2353                                                     done_ccb->ccb_h.status);
2354                                         }
2355
2356                                         xpt_print(periph->path, "fatal error, "
2357                                             "failed to attach to device\n");
2358
2359                                         /*
2360                                          * Free up resources.
2361                                          */
2362                                         cam_periph_invalidate(periph);
2363                                 } 
2364                         }
2365                 }
2366                 free(csio->data_ptr, M_SCSIDA);
2367                 if (announce_buf[0] != '\0') {
2368                         /*
2369                          * Create our sysctl variables, now that we know
2370                          * we have successfully attached.
2371                          */
2372                         /* increase the refcount */
2373                         if (cam_periph_acquire(periph) == CAM_REQ_CMP) {
2374                                 taskqueue_enqueue(taskqueue_thread,
2375                                                   &softc->sysctl_task);
2376                                 xpt_announce_periph(periph, announce_buf);
2377                         } else {
2378                                 xpt_print(periph->path, "fatal error, "
2379                                     "could not acquire reference count\n");
2380                         }
2381                                 
2382                 }
2383                 softc->state = DA_STATE_NORMAL; 
2384                 /*
2385                  * Since our peripheral may be invalidated by an error
2386                  * above or an external event, we must release our CCB
2387                  * before releasing the probe lock on the peripheral.
2388                  * The peripheral will only go away once the last lock
2389                  * is removed, and we need it around for the CCB release
2390                  * operation.
2391                  */
2392                 xpt_release_ccb(done_ccb);
2393                 cam_periph_unhold(periph);
2394                 return;
2395         }
2396         case DA_CCB_WAITING:
2397         {
2398                 /* Caller will release the CCB */
2399                 wakeup(&done_ccb->ccb_h.cbfcnp);
2400                 return;
2401         }
2402         case DA_CCB_DUMP:
2403                 /* No-op.  We're polling */
2404                 return;
2405         default:
2406                 break;
2407         }
2408         xpt_release_ccb(done_ccb);
2409 }
2410
2411 static int
2412 daerror(union ccb *ccb, u_int32_t cam_flags, u_int32_t sense_flags)
2413 {
2414         struct da_softc   *softc;
2415         struct cam_periph *periph;
2416         int error;
2417
2418         periph = xpt_path_periph(ccb->ccb_h.path);
2419         softc = (struct da_softc *)periph->softc;
2420
2421         /*
2422          * Automatically detect devices that do not support
2423          * READ(6)/WRITE(6) and upgrade to using 10 byte cdbs.
2424          */
2425         error = 0;
2426         if ((ccb->ccb_h.status & CAM_STATUS_MASK) == CAM_REQ_INVALID) {
2427                 error = cmd6workaround(ccb);
2428         } else if (((ccb->ccb_h.status & CAM_STATUS_MASK) ==
2429                    CAM_SCSI_STATUS_ERROR)
2430          && (ccb->ccb_h.status & CAM_AUTOSNS_VALID)
2431          && (ccb->csio.scsi_status == SCSI_STATUS_CHECK_COND)
2432          && ((ccb->ccb_h.flags & CAM_SENSE_PHYS) == 0)
2433          && ((ccb->ccb_h.flags & CAM_SENSE_PTR) == 0)) {
2434                 int sense_key, error_code, asc, ascq;
2435
2436                 scsi_extract_sense(&ccb->csio.sense_data,
2437                                    &error_code, &sense_key, &asc, &ascq);
2438                 if (sense_key == SSD_KEY_ILLEGAL_REQUEST)
2439                         error = cmd6workaround(ccb);
2440         }
2441         if (error == ERESTART)
2442                 return (ERESTART);
2443
2444         /*
2445          * XXX
2446          * Until we have a better way of doing pack validation,
2447          * don't treat UAs as errors.
2448          */
2449         sense_flags |= SF_RETRY_UA;
2450         return(cam_periph_error(ccb, cam_flags, sense_flags,
2451                                 &softc->saved_ccb));
2452 }
2453
2454 static void
2455 daprevent(struct cam_periph *periph, int action)
2456 {
2457         struct  da_softc *softc;
2458         union   ccb *ccb;               
2459         int     error;
2460                 
2461         softc = (struct da_softc *)periph->softc;
2462
2463         if (((action == PR_ALLOW)
2464           && (softc->flags & DA_FLAG_PACK_LOCKED) == 0)
2465          || ((action == PR_PREVENT)
2466           && (softc->flags & DA_FLAG_PACK_LOCKED) != 0)) {
2467                 return;
2468         }
2469
2470         ccb = cam_periph_getccb(periph, CAM_PRIORITY_NORMAL);
2471
2472         scsi_prevent(&ccb->csio,
2473                      /*retries*/1,
2474                      /*cbcfp*/dadone,
2475                      MSG_SIMPLE_Q_TAG,
2476                      action,
2477                      SSD_FULL_SIZE,
2478                      5000);
2479
2480         error = cam_periph_runccb(ccb, daerror, CAM_RETRY_SELTO,
2481             SF_RETRY_UA | SF_QUIET_IR, softc->disk->d_devstat);
2482
2483         if (error == 0) {
2484                 if (action == PR_ALLOW)
2485                         softc->flags &= ~DA_FLAG_PACK_LOCKED;
2486                 else
2487                         softc->flags |= DA_FLAG_PACK_LOCKED;
2488         }
2489
2490         xpt_release_ccb(ccb);
2491 }
2492
2493 static int
2494 dagetcapacity(struct cam_periph *periph)
2495 {
2496         struct da_softc *softc;
2497         union ccb *ccb;
2498         struct scsi_read_capacity_data *rcap;
2499         struct scsi_read_capacity_data_long *rcaplong;
2500         uint32_t block_len;
2501         uint64_t maxsector;
2502         int error, rc16failed;
2503         u_int32_t sense_flags;
2504         u_int lbppbe;   /* Logical blocks per physical block exponent. */
2505         u_int lalba;    /* Lowest aligned LBA. */
2506
2507         softc = (struct da_softc *)periph->softc;
2508         block_len = 0;
2509         maxsector = 0;
2510         lbppbe = 0;
2511         lalba = 0;
2512         error = 0;
2513         rc16failed = 0;
2514         sense_flags = SF_RETRY_UA;
2515         if (softc->flags & DA_FLAG_PACK_REMOVABLE)
2516                 sense_flags |= SF_NO_PRINT;
2517
2518         /* Do a read capacity */
2519         rcap = (struct scsi_read_capacity_data *)malloc(sizeof(*rcaplong),
2520                                                         M_SCSIDA,
2521                                                         M_NOWAIT | M_ZERO);
2522         if (rcap == NULL)
2523                 return (ENOMEM);
2524         rcaplong = (struct scsi_read_capacity_data_long *)rcap;
2525
2526         ccb = cam_periph_getccb(periph, CAM_PRIORITY_NORMAL);
2527
2528         /* Try READ CAPACITY(16) first if we think it should work. */
2529         if (softc->flags & DA_FLAG_CAN_RC16) {
2530                 scsi_read_capacity_16(&ccb->csio,
2531                               /*retries*/ 4,
2532                               /*cbfcnp*/ dadone,
2533                               /*tag_action*/ MSG_SIMPLE_Q_TAG,
2534                               /*lba*/ 0,
2535                               /*reladr*/ 0,
2536                               /*pmi*/ 0,
2537                               rcaplong,
2538                               /*sense_len*/ SSD_FULL_SIZE,
2539                               /*timeout*/ 60000);
2540                 ccb->ccb_h.ccb_bp = NULL;
2541
2542                 error = cam_periph_runccb(ccb, daerror,
2543                                   /*cam_flags*/CAM_RETRY_SELTO,
2544                                   sense_flags,
2545                                   softc->disk->d_devstat);
2546                 if (error == 0)
2547                         goto rc16ok;
2548
2549                 /* If we got ILLEGAL REQUEST, do not prefer RC16 any more. */
2550                 if ((ccb->ccb_h.status & CAM_STATUS_MASK) ==
2551                      CAM_REQ_INVALID) {
2552                         softc->flags &= ~DA_FLAG_CAN_RC16;
2553                 } else if (((ccb->ccb_h.status & CAM_STATUS_MASK) ==
2554                      CAM_SCSI_STATUS_ERROR) &&
2555                     (ccb->csio.scsi_status == SCSI_STATUS_CHECK_COND) &&
2556                     (ccb->ccb_h.status & CAM_AUTOSNS_VALID) &&
2557                     ((ccb->ccb_h.flags & CAM_SENSE_PHYS) == 0) &&
2558                     ((ccb->ccb_h.flags & CAM_SENSE_PTR) == 0)) {
2559                         int sense_key, error_code, asc, ascq;
2560
2561                         scsi_extract_sense(&ccb->csio.sense_data,
2562                                    &error_code, &sense_key, &asc, &ascq);
2563                         if (sense_key == SSD_KEY_ILLEGAL_REQUEST)
2564                                 softc->flags &= ~DA_FLAG_CAN_RC16;
2565                 }
2566                 rc16failed = 1;
2567         }
2568
2569         /* Do READ CAPACITY(10). */
2570         scsi_read_capacity(&ccb->csio,
2571                            /*retries*/4,
2572                            /*cbfncp*/dadone,
2573                            MSG_SIMPLE_Q_TAG,
2574                            rcap,
2575                            SSD_FULL_SIZE,
2576                            /*timeout*/60000);
2577         ccb->ccb_h.ccb_bp = NULL;
2578
2579         error = cam_periph_runccb(ccb, daerror,
2580                                   /*cam_flags*/CAM_RETRY_SELTO,
2581                                   sense_flags,
2582                                   softc->disk->d_devstat);
2583         if (error == 0) {
2584                 block_len = scsi_4btoul(rcap->length);
2585                 maxsector = scsi_4btoul(rcap->addr);
2586
2587                 if (maxsector != 0xffffffff || rc16failed)
2588                         goto done;
2589         } else
2590                 goto done;
2591
2592         /* If READ CAPACITY(10) returned overflow, use READ CAPACITY(16) */
2593         scsi_read_capacity_16(&ccb->csio,
2594                               /*retries*/ 4,
2595                               /*cbfcnp*/ dadone,
2596                               /*tag_action*/ MSG_SIMPLE_Q_TAG,
2597                               /*lba*/ 0,
2598                               /*reladr*/ 0,
2599                               /*pmi*/ 0,
2600                               rcaplong,
2601                               /*sense_len*/ SSD_FULL_SIZE,
2602                               /*timeout*/ 60000);
2603         ccb->ccb_h.ccb_bp = NULL;
2604
2605         error = cam_periph_runccb(ccb, daerror,
2606                                   /*cam_flags*/CAM_RETRY_SELTO,
2607                                   sense_flags,
2608                                   softc->disk->d_devstat);
2609         if (error == 0) {
2610 rc16ok:
2611                 block_len = scsi_4btoul(rcaplong->length);
2612                 maxsector = scsi_8btou64(rcaplong->addr);
2613                 lbppbe = rcaplong->prot_lbppbe & SRC16_LBPPBE;
2614                 lalba = scsi_2btoul(rcaplong->lalba_lbp);
2615         }
2616
2617 done:
2618
2619         if (error == 0) {
2620                 if (block_len >= MAXPHYS || block_len == 0) {
2621                         xpt_print(periph->path,
2622                             "unsupportable block size %ju\n",
2623                             (uintmax_t) block_len);
2624                         error = EINVAL;
2625                 } else {
2626                         dasetgeom(periph, block_len, maxsector,
2627                             lbppbe, lalba & SRC16_LALBA);
2628                         if ((lalba & SRC16_LBPME) &&
2629                             softc->delete_method == DA_DELETE_NONE)
2630                                 softc->delete_method = DA_DELETE_UNMAP;
2631                 }
2632         }
2633
2634         xpt_release_ccb(ccb);
2635
2636         free(rcap, M_SCSIDA);
2637
2638         return (error);
2639 }
2640
2641 static void
2642 dasetgeom(struct cam_periph *periph, uint32_t block_len, uint64_t maxsector,
2643     u_int lbppbe, u_int lalba)
2644 {
2645         struct ccb_calc_geometry ccg;
2646         struct da_softc *softc;
2647         struct disk_params *dp;
2648
2649         softc = (struct da_softc *)periph->softc;
2650
2651         dp = &softc->params;
2652         dp->secsize = block_len;
2653         dp->sectors = maxsector + 1;
2654         if (lbppbe > 0) {
2655                 dp->stripesize = block_len << lbppbe;
2656                 dp->stripeoffset = (dp->stripesize - block_len * lalba) %
2657                     dp->stripesize;
2658         } else if (softc->quirks & DA_Q_4K) {
2659                 dp->stripesize = 4096;
2660                 dp->stripeoffset = 0;
2661         } else {
2662                 dp->stripesize = 0;
2663                 dp->stripeoffset = 0;
2664         }
2665         /*
2666          * Have the controller provide us with a geometry
2667          * for this disk.  The only time the geometry
2668          * matters is when we boot and the controller
2669          * is the only one knowledgeable enough to come
2670          * up with something that will make this a bootable
2671          * device.
2672          */
2673         xpt_setup_ccb(&ccg.ccb_h, periph->path, CAM_PRIORITY_NORMAL);
2674         ccg.ccb_h.func_code = XPT_CALC_GEOMETRY;
2675         ccg.block_size = dp->secsize;
2676         ccg.volume_size = dp->sectors;
2677         ccg.heads = 0;
2678         ccg.secs_per_track = 0;
2679         ccg.cylinders = 0;
2680         xpt_action((union ccb*)&ccg);
2681         if ((ccg.ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) {
2682                 /*
2683                  * We don't know what went wrong here- but just pick
2684                  * a geometry so we don't have nasty things like divide
2685                  * by zero.
2686                  */
2687                 dp->heads = 255;
2688                 dp->secs_per_track = 255;
2689                 dp->cylinders = dp->sectors / (255 * 255);
2690                 if (dp->cylinders == 0) {
2691                         dp->cylinders = 1;
2692                 }
2693         } else {
2694                 dp->heads = ccg.heads;
2695                 dp->secs_per_track = ccg.secs_per_track;
2696                 dp->cylinders = ccg.cylinders;
2697         }
2698 }
2699
2700 static void
2701 dasendorderedtag(void *arg)
2702 {
2703         struct da_softc *softc = arg;
2704
2705         if (da_send_ordered) {
2706                 if ((softc->ordered_tag_count == 0) 
2707                  && ((softc->flags & DA_FLAG_WENT_IDLE) == 0)) {
2708                         softc->flags |= DA_FLAG_NEED_OTAG;
2709                 }
2710                 if (softc->outstanding_cmds > 0)
2711                         softc->flags &= ~DA_FLAG_WENT_IDLE;
2712
2713                 softc->ordered_tag_count = 0;
2714         }
2715         /* Queue us up again */
2716         callout_reset(&softc->sendordered_c,
2717             (da_default_timeout * hz) / DA_ORDEREDTAG_INTERVAL,
2718             dasendorderedtag, softc);
2719 }
2720
2721 /*
2722  * Step through all DA peripheral drivers, and if the device is still open,
2723  * sync the disk cache to physical media.
2724  */
2725 static void
2726 dashutdown(void * arg, int howto)
2727 {
2728         struct cam_periph *periph;
2729         struct da_softc *softc;
2730
2731         TAILQ_FOREACH(periph, &dadriver.units, unit_links) {
2732                 union ccb ccb;
2733
2734                 cam_periph_lock(periph);
2735                 softc = (struct da_softc *)periph->softc;
2736
2737                 /*
2738                  * We only sync the cache if the drive is still open, and
2739                  * if the drive is capable of it..
2740                  */
2741                 if (((softc->flags & DA_FLAG_OPEN) == 0)
2742                  || (softc->quirks & DA_Q_NO_SYNC_CACHE)) {
2743                         cam_periph_unlock(periph);
2744                         continue;
2745                 }
2746
2747                 xpt_setup_ccb(&ccb.ccb_h, periph->path, CAM_PRIORITY_NORMAL);
2748
2749                 ccb.ccb_h.ccb_state = DA_CCB_DUMP;
2750                 scsi_synchronize_cache(&ccb.csio,
2751                                        /*retries*/1,
2752                                        /*cbfcnp*/dadone,
2753                                        MSG_SIMPLE_Q_TAG,
2754                                        /*begin_lba*/0, /* whole disk */
2755                                        /*lb_count*/0,
2756                                        SSD_FULL_SIZE,
2757                                        60 * 60 * 1000);
2758
2759                 xpt_polled_action(&ccb);
2760
2761                 if ((ccb.ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) {
2762                         if (((ccb.ccb_h.status & CAM_STATUS_MASK) ==
2763                              CAM_SCSI_STATUS_ERROR)
2764                          && (ccb.csio.scsi_status == SCSI_STATUS_CHECK_COND)){
2765                                 int error_code, sense_key, asc, ascq;
2766
2767                                 scsi_extract_sense(&ccb.csio.sense_data,
2768                                                    &error_code, &sense_key,
2769                                                    &asc, &ascq);
2770
2771                                 if (sense_key != SSD_KEY_ILLEGAL_REQUEST)
2772                                         scsi_sense_print(&ccb.csio);
2773                         } else {
2774                                 xpt_print(periph->path, "Synchronize "
2775                                     "cache failed, status == 0x%x, scsi status "
2776                                     "== 0x%x\n", ccb.ccb_h.status,
2777                                     ccb.csio.scsi_status);
2778                         }
2779                 }
2780
2781                 if ((ccb.ccb_h.status & CAM_DEV_QFRZN) != 0)
2782                         cam_release_devq(ccb.ccb_h.path,
2783                                          /*relsim_flags*/0,
2784                                          /*reduction*/0,
2785                                          /*timeout*/0,
2786                                          /*getcount_only*/0);
2787                 cam_periph_unlock(periph);
2788         }
2789 }
2790
2791 #else /* !_KERNEL */
2792
2793 /*
2794  * XXX This is only left out of the kernel build to silence warnings.  If,
2795  * for some reason this function is used in the kernel, the ifdefs should
2796  * be moved so it is included both in the kernel and userland.
2797  */
2798 void
2799 scsi_format_unit(struct ccb_scsiio *csio, u_int32_t retries,
2800                  void (*cbfcnp)(struct cam_periph *, union ccb *),
2801                  u_int8_t tag_action, u_int8_t byte2, u_int16_t ileave,
2802                  u_int8_t *data_ptr, u_int32_t dxfer_len, u_int8_t sense_len,
2803                  u_int32_t timeout)
2804 {
2805         struct scsi_format_unit *scsi_cmd;
2806
2807         scsi_cmd = (struct scsi_format_unit *)&csio->cdb_io.cdb_bytes;
2808         scsi_cmd->opcode = FORMAT_UNIT;
2809         scsi_cmd->byte2 = byte2;
2810         scsi_ulto2b(ileave, scsi_cmd->interleave);
2811
2812         cam_fill_csio(csio,
2813                       retries,
2814                       cbfcnp,
2815                       /*flags*/ (dxfer_len > 0) ? CAM_DIR_OUT : CAM_DIR_NONE,
2816                       tag_action,
2817                       data_ptr,
2818                       dxfer_len,
2819                       sense_len,
2820                       sizeof(*scsi_cmd),
2821                       timeout);
2822 }
2823
2824 #endif /* _KERNEL */