kernel: Use NELEM() where we can.
[dragonfly.git] / sys / bus / cam / scsi / scsi_all.c
1 /*
2  * Implementation of Utility functions for all SCSI device types.
3  *
4  * Copyright (c) 1997, 1998 Justin T. Gibbs.
5  * Copyright (c) 1997, 1998, 2003 Kenneth D. Merry.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions, and the following disclaimer,
13  *    without modification, immediately at the beginning of the file.
14  * 2. The name of the author may not be used to endorse or promote products
15  *    derived from this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
21  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  * $FreeBSD: src/sys/cam/scsi/scsi_all.c,v 1.54 2009/01/14 21:25:17 trasz Exp $
30  */
31
32 #include <sys/param.h>
33
34 #ifdef _KERNEL
35
36 #include <opt_scsi.h>
37 #include <sys/systm.h>
38 #include <sys/libkern.h>
39 #include <sys/kernel.h>
40 #include <sys/sysctl.h>
41
42 #else
43
44 #include <errno.h>
45 #include <stdio.h>
46 #include <stdlib.h>
47 #include <string.h>
48
49 #define ksnprintf       snprintf        /* ick, userland uses us too */
50 #define kprintf         printf
51 #define kbsearch        bsearch
52
53 #endif
54
55 #include "../cam.h"
56 #include "../cam_ccb.h"
57 #include "../cam_xpt.h"
58 #include "scsi_all.h"
59 #include <sys/sbuf.h>
60 #ifndef _KERNEL
61 #include <sys/camlib.h>
62
63 #ifndef FALSE
64 #define FALSE   0
65 #endif /* FALSE */
66 #ifndef TRUE
67 #define TRUE    1
68 #endif /* TRUE */
69 #define ERESTART        -1              /* restart syscall */
70 #define EJUSTRETURN     -2              /* don't modify regs, just return */
71 #endif /* !_KERNEL */
72
73 /*
74  * This is the default number of milliseconds we wait for devices to settle
75  * after a SCSI bus reset.
76  */
77 #ifndef SCSI_DELAY
78 #define SCSI_DELAY 2000
79 #endif
80 /*
81  * All devices need _some_ sort of bus settle delay, so we'll set it to
82  * a minimum value of 100ms. Note that this is pertinent only for SPI-
83  * not transport like Fibre Channel or iSCSI where 'delay' is completely
84  * meaningless.
85  */
86 #ifndef SCSI_MIN_DELAY
87 #define SCSI_MIN_DELAY 100
88 #endif
89 /*
90  * Make sure the user isn't using seconds instead of milliseconds.
91  */
92 #if (SCSI_DELAY < SCSI_MIN_DELAY && SCSI_DELAY != 0)
93 #error "SCSI_DELAY is in milliseconds, not seconds!  Please use a larger value"
94 #endif
95
96 int scsi_delay;
97
98 static int      ascentrycomp(const void *key, const void *member);
99 static int      senseentrycomp(const void *key, const void *member);
100 static void     fetchtableentries(int sense_key, int asc, int ascq,
101                                   struct scsi_inquiry_data *,
102                                   const struct sense_key_table_entry **,
103                                   const struct asc_table_entry **);
104 #ifdef _KERNEL
105 static void     init_scsi_delay(void);
106 static int      sysctl_scsi_delay(SYSCTL_HANDLER_ARGS);
107 static int      set_scsi_delay(int delay);
108 #endif
109
110 #if !defined(SCSI_NO_OP_STRINGS)
111
112 #define D       (1 << T_DIRECT)
113 #define T       (1 << T_SEQUENTIAL)
114 #define L       (1 << T_PRINTER)
115 #define P       (1 << T_PROCESSOR)
116 #define W       (1 << T_WORM)
117 #define R       (1 << T_CDROM)
118 #define O       (1 << T_OPTICAL)
119 #define M       (1 << T_CHANGER)
120 #define A       (1 << T_STORARRAY)
121 #define E       (1 << T_ENCLOSURE)
122 #define B       (1 << T_RBC)
123 #define K       (1 << T_OCRW)
124 #define V       (1 << T_ADC)
125 #define F       (1 << T_OSD)
126 #define S       (1 << T_SCANNER)
127 #define C       (1 << T_COMM)
128
129 #define ALL     (D | T | L | P | W | R | O | M | A | E | B | K | V | F | S | C)
130
131 static struct op_table_entry plextor_cd_ops[] = {
132         { 0xD8, R, "CD-DA READ" }
133 };
134
135 static struct scsi_op_quirk_entry scsi_op_quirk_table[] = {
136         {
137                 /*
138                  * I believe that 0xD8 is the Plextor proprietary command
139                  * to read CD-DA data.  I'm not sure which Plextor CDROM
140                  * models support the command, though.  I know for sure
141                  * that the 4X, 8X, and 12X models do, and presumably the
142                  * 12-20X does.  I don't know about any earlier models,
143                  * though.  If anyone has any more complete information,
144                  * feel free to change this quirk entry.
145                  */
146                 {T_CDROM, SIP_MEDIA_REMOVABLE, "PLEXTOR", "CD-ROM PX*", "*"},
147                 sizeof(plextor_cd_ops)/sizeof(struct op_table_entry),
148                 plextor_cd_ops
149         }
150 };
151
152 static struct op_table_entry scsi_op_codes[] = {
153         /*
154          * From: http://www.t10.org/lists/op-num.txt
155          * Modifications by Kenneth Merry (ken@FreeBSD.ORG)
156          *              and Jung-uk Kim (jkim@FreeBSD.org)
157          *
158          * Note:  order is important in this table, scsi_op_desc() currently
159          * depends on the opcodes in the table being in order to save
160          * search time.
161          * Note:  scanner and comm. devices are carried over from the previous
162          * version because they were removed in the latest spec.
163          */
164         /* File: OP-NUM.TXT
165          *
166          * SCSI Operation Codes
167          * Numeric Sorted Listing
168          * as of  3/11/08
169          *
170          *     D - DIRECT ACCESS DEVICE (SBC-2)                device column key
171          *     .T - SEQUENTIAL ACCESS DEVICE (SSC-2)           -----------------
172          *     . L - PRINTER DEVICE (SSC)                      M = Mandatory
173          *     .  P - PROCESSOR DEVICE (SPC)                   O = Optional
174          *     .  .W - WRITE ONCE READ MULTIPLE DEVICE (SBC-2) V = Vendor spec.
175          *     .  . R - CD/DVE DEVICE (MMC-3)                  Z = Obsolete
176          *     .  .  O - OPTICAL MEMORY DEVICE (SBC-2)
177          *     .  .  .M - MEDIA CHANGER DEVICE (SMC-2)
178          *     .  .  . A - STORAGE ARRAY DEVICE (SCC-2)
179          *     .  .  . .E - ENCLOSURE SERVICES DEVICE (SES)
180          *     .  .  .  .B - SIMPLIFIED DIRECT-ACCESS DEVICE (RBC)
181          *     .  .  .  . K - OPTICAL CARD READER/WRITER DEVICE (OCRW)
182          *     .  .  .  .  V - AUTOMATION/DRIVE INTERFACE (ADC)
183          *     .  .  .  .  .F - OBJECT-BASED STORAGE (OSD)
184          * OP  DTLPWROMAEBKVF  Description
185          * --  --------------  ---------------------------------------------- */
186         /* 00  MMMMMMMMMMMMMM  TEST UNIT READY */
187         { 0x00, ALL, "TEST UNIT READY" },
188         /* 01   M              REWIND */
189         { 0x01, T, "REWIND" },
190         /* 01  Z V ZZZZ        REZERO UNIT */
191         { 0x01, D | W | R | O | M, "REZERO UNIT" },
192         /* 02  VVVVVV V */
193         /* 03  MMMMMMMMMMOMMM  REQUEST SENSE */
194         { 0x03, ALL, "REQUEST SENSE" },
195         /* 04  M    OO         FORMAT UNIT */
196         { 0x04, D | R | O, "FORMAT UNIT" },
197         /* 04   O              FORMAT MEDIUM */
198         { 0x04, T, "FORMAT MEDIUM" },
199         /* 04    O             FORMAT */
200         { 0x04, L, "FORMAT" },
201         /* 05  VMVVVV V        READ BLOCK LIMITS */
202         { 0x05, T, "READ BLOCK LIMITS" },
203         /* 06  VVVVVV V */
204         /* 07  OVV O OV        REASSIGN BLOCKS */
205         { 0x07, D | W | O, "REASSIGN BLOCKS" },
206         /* 07         O        INITIALIZE ELEMENT STATUS */
207         { 0x07, M, "INITIALIZE ELEMENT STATUS" },
208         /* 08  MOV O OV        READ(6) */
209         { 0x08, D | T | W | O, "READ(6)" },
210         /* 08     O            RECEIVE */
211         { 0x08, P, "RECEIVE" },
212         /* 08                  GET MESSAGE(6) */
213         { 0x08, C, "GET MESSAGE(6)" },
214         /* 09  VVVVVV V */
215         /* 0A  OO  O OV        WRITE(6) */
216         { 0x0A, D | T | W | O, "WRITE(6)" },
217         /* 0A     M            SEND(6) */
218         { 0x0A, P, "SEND(6)" },
219         /* 0A                  SEND MESSAGE(6) */
220         { 0x0A, C, "SEND MESSAGE(6)" },
221         /* 0A    M             PRINT */
222         { 0x0A, L, "PRINT" },
223         /* 0B  Z   ZOZV        SEEK(6) */
224         { 0x0B, D | W | R | O, "SEEK(6)" },
225         /* 0B   O              SET CAPACITY */
226         { 0x0B, T, "SET CAPACITY" },
227         /* 0B    O             SLEW AND PRINT */
228         { 0x0B, L, "SLEW AND PRINT" },
229         /* 0C  VVVVVV V */
230         /* 0D  VVVVVV V */
231         /* 0E  VVVVVV V */
232         /* 0F  VOVVVV V        READ REVERSE(6) */
233         { 0x0F, T, "READ REVERSE(6)" },
234         /* 10  VM VVV          WRITE FILEMARKS(6) */
235         { 0x10, T, "WRITE FILEMARKS(6)" },
236         /* 10    O             SYNCHRONIZE BUFFER */
237         { 0x10, L, "SYNCHRONIZE BUFFER" },
238         /* 11  VMVVVV          SPACE(6) */
239         { 0x11, T, "SPACE(6)" },
240         /* 12  MMMMMMMMMMMMMM  INQUIRY */
241         { 0x12, ALL, "INQUIRY" },
242         /* 13  V VVVV */
243         /* 13   O              VERIFY(6) */
244         { 0x13, T, "VERIFY(6)" },
245         /* 14  VOOVVV          RECOVER BUFFERED DATA */
246         { 0x14, T | L, "RECOVER BUFFERED DATA" },
247         /* 15  OMO O OOOO OO   MODE SELECT(6) */
248         { 0x15, ALL & ~(P | R | B | F), "MODE SELECT(6)" },
249         /* 16  ZZMZO OOOZ O    RESERVE(6) */
250         { 0x16, ALL & ~(R | B | V | F | C), "RESERVE(6)" },
251         /* 16         Z        RESERVE ELEMENT(6) */
252         { 0x16, M, "RESERVE ELEMENT(6)" },
253         /* 17  ZZMZO OOOZ O    RELEASE(6) */
254         { 0x17, ALL & ~(R | B | V | F | C), "RELEASE(6)" },
255         /* 17         Z        RELEASE ELEMENT(6) */
256         { 0x17, M, "RELEASE ELEMENT(6)" },
257         /* 18  ZZZZOZO    Z    COPY */
258         { 0x18, D | T | L | P | W | R | O | K | S, "COPY" },
259         /* 19  VMVVVV          ERASE(6) */
260         { 0x19, T, "ERASE(6)" },
261         /* 1A  OMO O OOOO OO   MODE SENSE(6) */
262         { 0x1A, ALL & ~(P | R | B | F), "MODE SENSE(6)" },
263         /* 1B  O   OOO O MO O  START STOP UNIT */
264         { 0x1B, D | W | R | O | A | B | K | F, "START STOP UNIT" },
265         /* 1B   O          M   LOAD UNLOAD */
266         { 0x1B, T | V, "LOAD UNLOAD" },
267         /* 1B                  SCAN */
268         { 0x1B, S, "SCAN" },
269         /* 1B    O             STOP PRINT */
270         { 0x1B, L, "STOP PRINT" },
271         /* 1B         O        OPEN/CLOSE IMPORT/EXPORT ELEMENT */
272         { 0x1B, M, "OPEN/CLOSE IMPORT/EXPORT ELEMENT" },
273         /* 1C  OOOOO OOOM OOO  RECEIVE DIAGNOSTIC RESULTS */
274         { 0x1C, ALL & ~(R | B), "RECEIVE DIAGNOSTIC RESULTS" },
275         /* 1D  MMMMM MMOM MMM  SEND DIAGNOSTIC */
276         { 0x1D, ALL & ~(R | B), "SEND DIAGNOSTIC" },
277         /* 1E  OO  OOOO   O O  PREVENT ALLOW MEDIUM REMOVAL */
278         { 0x1E, D | T | W | R | O | M | K | F, "PREVENT ALLOW MEDIUM REMOVAL" },
279         /* 1F */
280         /* 20  V   VVV    V */
281         /* 21  V   VVV    V */
282         /* 22  V   VVV    V */
283         /* 23  V   V V    V */
284         /* 23       O          READ FORMAT CAPACITIES */
285         { 0x23, R, "READ FORMAT CAPACITIES" },
286         /* 24  V   VV          SET WINDOW */
287         { 0x24, S, "SET WINDOW" },
288         /* 25  M   M M   M     READ CAPACITY(10) */
289         { 0x25, D | W | O | B, "READ CAPACITY(10)" },
290         /* 25       O          READ CAPACITY */
291         { 0x25, R, "READ CAPACITY" },
292         /* 25             M    READ CARD CAPACITY */
293         { 0x25, K, "READ CARD CAPACITY" },
294         /* 25                  GET WINDOW */
295         { 0x25, S, "GET WINDOW" },
296         /* 26  V   VV */
297         /* 27  V   VV */
298         /* 28  M   MOM   MM    READ(10) */
299         { 0x28, D | W | R | O | B | K | S, "READ(10)" },
300         /* 28                  GET MESSAGE(10) */
301         { 0x28, C, "GET MESSAGE(10)" },
302         /* 29  V   VVO         READ GENERATION */
303         { 0x29, O, "READ GENERATION" },
304         /* 2A  O   MOM   MO    WRITE(10) */
305         { 0x2A, D | W | R | O | B | K, "WRITE(10)" },
306         /* 2A                  SEND(10) */
307         { 0x2A, S, "SEND(10)" },
308         /* 2A                  SEND MESSAGE(10) */
309         { 0x2A, C, "SEND MESSAGE(10)" },
310         /* 2B  Z   OOO    O    SEEK(10) */
311         { 0x2B, D | W | R | O | K, "SEEK(10)" },
312         /* 2B   O              LOCATE(10) */
313         { 0x2B, T, "LOCATE(10)" },
314         /* 2B         O        POSITION TO ELEMENT */
315         { 0x2B, M, "POSITION TO ELEMENT" },
316         /* 2C  V    OO         ERASE(10) */
317         { 0x2C, R | O, "ERASE(10)" },
318         /* 2D        O         READ UPDATED BLOCK */
319         { 0x2D, O, "READ UPDATED BLOCK" },
320         /* 2D  V */
321         /* 2E  O   OOO   MO    WRITE AND VERIFY(10) */
322         { 0x2E, D | W | R | O | B | K, "WRITE AND VERIFY(10)" },
323         /* 2F  O   OOO         VERIFY(10) */
324         { 0x2F, D | W | R | O, "VERIFY(10)" },
325         /* 30  Z   ZZZ         SEARCH DATA HIGH(10) */
326         { 0x30, D | W | R | O, "SEARCH DATA HIGH(10)" },
327         /* 31  Z   ZZZ         SEARCH DATA EQUAL(10) */
328         { 0x31, D | W | R | O, "SEARCH DATA EQUAL(10)" },
329         /* 31                  OBJECT POSITION */
330         { 0x31, S, "OBJECT POSITION" },
331         /* 32  Z   ZZZ         SEARCH DATA LOW(10) */
332         { 0x32, D | W | R | O, "SEARCH DATA LOW(10)" },
333         /* 33  Z   OZO         SET LIMITS(10) */
334         { 0x33, D | W | R | O, "SET LIMITS(10)" },
335         /* 34  O   O O    O    PRE-FETCH(10) */
336         { 0x34, D | W | O | K, "PRE-FETCH(10)" },
337         /* 34   M              READ POSITION */
338         { 0x34, T, "READ POSITION" },
339         /* 34                  GET DATA BUFFER STATUS */
340         { 0x34, S, "GET DATA BUFFER STATUS" },
341         /* 35  O   OOO   MO    SYNCHRONIZE CACHE(10) */
342         { 0x35, D | W | R | O | B | K, "SYNCHRONIZE CACHE(10)" },
343         /* 36  Z   O O    O    LOCK UNLOCK CACHE(10) */
344         { 0x36, D | W | O | K, "LOCK UNLOCK CACHE(10)" },
345         /* 37  O     O         READ DEFECT DATA(10) */
346         { 0x37, D | O, "READ DEFECT DATA(10)" },
347         /* 37         O        INITIALIZE ELEMENT STATUS WITH RANGE */
348         { 0x37, M, "INITIALIZE ELEMENT STATUS WITH RANGE" },
349         /* 38      O O    O    MEDIUM SCAN */
350         { 0x38, W | O | K, "MEDIUM SCAN" },
351         /* 39  ZZZZOZO    Z    COMPARE */
352         { 0x39, D | T | L | P | W | R | O | K | S, "COMPARE" },
353         /* 3A  ZZZZOZO    Z    COPY AND VERIFY */
354         { 0x3A, D | T | L | P | W | R | O | K | S, "COPY AND VERIFY" },
355         /* 3B  OOOOOOOOOOMOOO  WRITE BUFFER */
356         { 0x3B, ALL, "WRITE BUFFER" },
357         /* 3C  OOOOOOOOOO OOO  READ BUFFER */
358         { 0x3C, ALL & ~(B), "READ BUFFER" },
359         /* 3D        O         UPDATE BLOCK */
360         { 0x3D, O, "UPDATE BLOCK" },
361         /* 3E  O   O O         READ LONG(10) */
362         { 0x3E, D | W | O, "READ LONG(10)" },
363         /* 3F  O   O O         WRITE LONG(10) */
364         { 0x3F, D | W | O, "WRITE LONG(10)" },
365         /* 40  ZZZZOZOZ        CHANGE DEFINITION */
366         { 0x40, D | T | L | P | W | R | O | M | S | C, "CHANGE DEFINITION" },
367         /* 41  O               WRITE SAME(10) */
368         { 0x41, D, "WRITE SAME(10)" },
369         /* 42       O          READ SUB-CHANNEL */
370         { 0x42, R, "READ SUB-CHANNEL" },
371         /* 43       O          READ TOC/PMA/ATIP */
372         { 0x43, R, "READ TOC/PMA/ATIP" },
373         /* 44   M          M   REPORT DENSITY SUPPORT */
374         { 0x44, T | V, "REPORT DENSITY SUPPORT" },
375         /* 44                  READ HEADER */
376         /* 45       O          PLAY AUDIO(10) */
377         { 0x45, R, "PLAY AUDIO(10)" },
378         /* 46       M          GET CONFIGURATION */
379         { 0x46, R, "GET CONFIGURATION" },
380         /* 47       O          PLAY AUDIO MSF */
381         { 0x47, R, "PLAY AUDIO MSF" },
382         /* 48 */
383         /* 49 */
384         /* 4A       M          GET EVENT STATUS NOTIFICATION */
385         { 0x4A, R, "GET EVENT STATUS NOTIFICATION" },
386         /* 4B       O          PAUSE/RESUME */
387         { 0x4B, R, "PAUSE/RESUME" },
388         /* 4C  OOOOO OOOO OOO  LOG SELECT */
389         { 0x4C, ALL & ~(R | B), "LOG SELECT" },
390         /* 4D  OOOOO OOOO OMO  LOG SENSE */
391         { 0x4D, ALL & ~(R | B), "LOG SENSE" },
392         /* 4E       O          STOP PLAY/SCAN */
393         { 0x4E, R, "STOP PLAY/SCAN" },
394         /* 4F */
395         /* 50  O               XDWRITE(10) */
396         { 0x50, D, "XDWRITE(10)" },
397         /* 51  O               XPWRITE(10) */
398         { 0x51, D, "XPWRITE(10)" },
399         /* 51       O          READ DISC INFORMATION */
400         { 0x51, R, "READ DISC INFORMATION" },
401         /* 52  O               XDREAD(10) */
402         { 0x52, D, "XDREAD(10)" },
403         /* 52       O          READ TRACK INFORMATION */
404         { 0x52, R, "READ TRACK INFORMATION" },
405         /* 53       O          RESERVE TRACK */
406         { 0x53, R, "RESERVE TRACK" },
407         /* 54       O          SEND OPC INFORMATION */
408         { 0x54, R, "SEND OPC INFORMATION" },
409         /* 55  OOO OMOOOOMOMO  MODE SELECT(10) */
410         { 0x55, ALL & ~(P), "MODE SELECT(10)" },
411         /* 56  ZZMZO OOOZ      RESERVE(10) */
412         { 0x56, ALL & ~(R | B | K | V | F | C), "RESERVE(10)" },
413         /* 56         Z        RESERVE ELEMENT(10) */
414         { 0x56, M, "RESERVE ELEMENT(10)" },
415         /* 57  ZZMZO OOOZ      RELEASE(10) */
416         { 0x57, ALL & ~(R | B | K | V | F | C), "RELEASE(10)" },
417         /* 57         Z        RELEASE ELEMENT(10) */
418         { 0x57, M, "RELEASE ELEMENT(10)" },
419         /* 58       O          REPAIR TRACK */
420         { 0x58, R, "REPAIR TRACK" },
421         /* 59 */
422         /* 5A  OOO OMOOOOMOMO  MODE SENSE(10) */
423         { 0x5A, ALL & ~(P), "MODE SENSE(10)" },
424         /* 5B       O          CLOSE TRACK/SESSION */
425         { 0x5B, R, "CLOSE TRACK/SESSION" },
426         /* 5C       O          READ BUFFER CAPACITY */
427         { 0x5C, R, "READ BUFFER CAPACITY" },
428         /* 5D       O          SEND CUE SHEET */
429         { 0x5D, R, "SEND CUE SHEET" },
430         /* 5E  OOOOO OOOO   M  PERSISTENT RESERVE IN */
431         { 0x5E, ALL & ~(R | B | K | V | C), "PERSISTENT RESERVE IN" },
432         /* 5F  OOOOO OOOO   M  PERSISTENT RESERVE OUT */
433         { 0x5F, ALL & ~(R | B | K | V | C), "PERSISTENT RESERVE OUT" },
434         /* 7E  OO   O OOOO O   extended CDB */
435         { 0x7E, D | T | R | M | A | E | B | V, "extended CDB" },
436         /* 7F  O            M  variable length CDB (more than 16 bytes) */
437         { 0x7F, D | F, "variable length CDB (more than 16 bytes)" },
438         /* 80  Z               XDWRITE EXTENDED(16) */
439         { 0x80, D, "XDWRITE EXTENDED(16)" },
440         /* 80   M              WRITE FILEMARKS(16) */
441         { 0x80, T, "WRITE FILEMARKS(16)" },
442         /* 81  Z               REBUILD(16) */
443         { 0x81, D, "REBUILD(16)" },
444         /* 81   O              READ REVERSE(16) */
445         { 0x81, T, "READ REVERSE(16)" },
446         /* 82  Z               REGENERATE(16) */
447         { 0x82, D, "REGENERATE(16)" },
448         /* 83  OOOOO O    OO   EXTENDED COPY */
449         { 0x83, D | T | L | P | W | O | K | V, "EXTENDED COPY" },
450         /* 84  OOOOO O    OO   RECEIVE COPY RESULTS */
451         { 0x84, D | T | L | P | W | O | K | V, "RECEIVE COPY RESULTS" },
452         /* 85  O    O    O     ATA COMMAND PASS THROUGH(16) */
453         { 0x85, D | R | B, "ATA COMMAND PASS THROUGH(16)" },
454         /* 86  OO OO OOOOOOO   ACCESS CONTROL IN */
455         { 0x86, ALL & ~(L | R | F), "ACCESS CONTROL IN" },
456         /* 87  OO OO OOOOOOO   ACCESS CONTROL OUT */
457         { 0x87, ALL & ~(L | R | F), "ACCESS CONTROL OUT" },
458         /*
459          * XXX READ(16)/WRITE(16) were not listed for CD/DVE in op-num.txt
460          * but we had it since r1.40.  Do we really want them?
461          */
462         /* 88  MM  O O   O     READ(16) */
463         { 0x88, D | T | W | O | B, "READ(16)" },
464         /* 89 */
465         /* 8A  OM  O O   O     WRITE(16) */
466         { 0x8A, D | T | W | O | B, "WRITE(16)" },
467         /* 8B  O               ORWRITE */
468         { 0x8B, D, "ORWRITE" },
469         /* 8C  OO  O OO  O M   READ ATTRIBUTE */
470         { 0x8C, D | T | W | O | M | B | V, "READ ATTRIBUTE" },
471         /* 8D  OO  O OO  O O   WRITE ATTRIBUTE */
472         { 0x8D, D | T | W | O | M | B | V, "WRITE ATTRIBUTE" },
473         /* 8E  O   O O   O     WRITE AND VERIFY(16) */
474         { 0x8E, D | W | O | B, "WRITE AND VERIFY(16)" },
475         /* 8F  OO  O O   O     VERIFY(16) */
476         { 0x8F, D | T | W | O | B, "VERIFY(16)" },
477         /* 90  O   O O   O     PRE-FETCH(16) */
478         { 0x90, D | W | O | B, "PRE-FETCH(16)" },
479         /* 91  O   O O   O     SYNCHRONIZE CACHE(16) */
480         { 0x91, D | W | O | B, "SYNCHRONIZE CACHE(16)" },
481         /* 91   O              SPACE(16) */
482         { 0x91, T, "SPACE(16)" },
483         /* 92  Z   O O         LOCK UNLOCK CACHE(16) */
484         { 0x92, D | W | O, "LOCK UNLOCK CACHE(16)" },
485         /* 92   O              LOCATE(16) */
486         { 0x92, T, "LOCATE(16)" },
487         /* 93  O               WRITE SAME(16) */
488         { 0x93, D, "WRITE SAME(16)" },
489         /* 93   M              ERASE(16) */
490         { 0x93, T, "ERASE(16)" },
491         /* 94 [usage proposed by SCSI Socket Services project] */
492         /* 95 [usage proposed by SCSI Socket Services project] */
493         /* 96 [usage proposed by SCSI Socket Services project] */
494         /* 97 [usage proposed by SCSI Socket Services project] */
495         /* 98 */
496         /* 99 */
497         /* 9A */
498         /* 9B */
499         /* 9C */
500         /* 9D */
501         /* XXX KDM ALL for this?  op-num.txt defines it for none.. */
502         /* 9E                  SERVICE ACTION IN(16) */
503         { 0x9E, ALL, "SERVICE ACTION IN(16)" },
504         /* XXX KDM ALL for this?  op-num.txt defines it for ADC.. */
505         /* 9F              M   SERVICE ACTION OUT(16) */
506         { 0x9F, ALL, "SERVICE ACTION OUT(16)" },
507         /* A0  MMOOO OMMM OMO  REPORT LUNS */
508         { 0xA0, ALL & ~(R | B), "REPORT LUNS" },
509         /* A1       O          BLANK */
510         { 0xA1, R, "BLANK" },
511         /* A1  O         O     ATA COMMAND PASS THROUGH(12) */
512         { 0xA1, D | B, "ATA COMMAND PASS THROUGH(12)" },
513         /* A2  OO   O      O   SECURITY PROTOCOL IN */
514         { 0xA2, D | T | R | V, "SECURITY PROTOCOL IN" },
515         /* A3  OOO O OOMOOOM   MAINTENANCE (IN) */
516         { 0xA3, ALL & ~(P | R | F), "MAINTENANCE (IN)" },
517         /* A3       O          SEND KEY */
518         { 0xA3, R, "SEND KEY" },
519         /* A4  OOO O OOOOOOO   MAINTENANCE (OUT) */
520         { 0xA4, ALL & ~(P | R | F), "MAINTENANCE (OUT)" },
521         /* A4       O          REPORT KEY */
522         { 0xA4, R, "REPORT KEY" },
523         /* A5   O  O OM        MOVE MEDIUM */
524         { 0xA5, T | W | O | M, "MOVE MEDIUM" },
525         /* A5       O          PLAY AUDIO(12) */
526         { 0xA5, R, "PLAY AUDIO(12)" },
527         /* A6         O        EXCHANGE MEDIUM */
528         { 0xA6, M, "EXCHANGE MEDIUM" },
529         /* A6       O          LOAD/UNLOAD C/DVD */
530         { 0xA6, R, "LOAD/UNLOAD C/DVD" },
531         /* A7  ZZ  O O         MOVE MEDIUM ATTACHED */
532         { 0xA7, D | T | W | O, "MOVE MEDIUM ATTACHED" },
533         /* A7       O          SET READ AHEAD */
534         { 0xA7, R, "SET READ AHEAD" },
535         /* A8  O   OOO         READ(12) */
536         { 0xA8, D | W | R | O, "READ(12)" },
537         /* A8                  GET MESSAGE(12) */
538         { 0xA8, C, "GET MESSAGE(12)" },
539         /* A9              O   SERVICE ACTION OUT(12) */
540         { 0xA9, V, "SERVICE ACTION OUT(12)" },
541         /* AA  O   OOO         WRITE(12) */
542         { 0xAA, D | W | R | O, "WRITE(12)" },
543         /* AA                  SEND MESSAGE(12) */
544         { 0xAA, C, "SEND MESSAGE(12)" },
545         /* AB       O      O   SERVICE ACTION IN(12) */
546         { 0xAB, R | V, "SERVICE ACTION IN(12)" },
547         /* AC        O         ERASE(12) */
548         { 0xAC, O, "ERASE(12)" },
549         /* AC       O          GET PERFORMANCE */
550         { 0xAC, R, "GET PERFORMANCE" },
551         /* AD       O          READ DVD STRUCTURE */
552         { 0xAD, R, "READ DVD STRUCTURE" },
553         /* AE  O   O O         WRITE AND VERIFY(12) */
554         { 0xAE, D | W | O, "WRITE AND VERIFY(12)" },
555         /* AF  O   OZO         VERIFY(12) */
556         { 0xAF, D | W | R | O, "VERIFY(12)" },
557         /* B0      ZZZ         SEARCH DATA HIGH(12) */
558         { 0xB0, W | R | O, "SEARCH DATA HIGH(12)" },
559         /* B1      ZZZ         SEARCH DATA EQUAL(12) */
560         { 0xB1, W | R | O, "SEARCH DATA EQUAL(12)" },
561         /* B2      ZZZ         SEARCH DATA LOW(12) */
562         { 0xB2, W | R | O, "SEARCH DATA LOW(12)" },
563         /* B3  Z   OZO         SET LIMITS(12) */
564         { 0xB3, D | W | R | O, "SET LIMITS(12)" },
565         /* B4  ZZ  OZO         READ ELEMENT STATUS ATTACHED */
566         { 0xB4, D | T | W | R | O, "READ ELEMENT STATUS ATTACHED" },
567         /* B5  OO   O      O   SECURITY PROTOCOL OUT */
568         { 0xB5, D | T | R | V, "SECURITY PROTOCOL OUT" },
569         /* B5         O        REQUEST VOLUME ELEMENT ADDRESS */
570         { 0xB5, M, "REQUEST VOLUME ELEMENT ADDRESS" },
571         /* B6         O        SEND VOLUME TAG */
572         { 0xB6, M, "SEND VOLUME TAG" },
573         /* B6       O          SET STREAMING */
574         { 0xB6, R, "SET STREAMING" },
575         /* B7  O     O         READ DEFECT DATA(12) */
576         { 0xB7, D | O, "READ DEFECT DATA(12)" },
577         /* B8   O  OZOM        READ ELEMENT STATUS */
578         { 0xB8, T | W | R | O | M, "READ ELEMENT STATUS" },
579         /* B9       O          READ CD MSF */
580         { 0xB9, R, "READ CD MSF" },
581         /* BA  O   O OOMO      REDUNDANCY GROUP (IN) */
582         { 0xBA, D | W | O | M | A | E, "REDUNDANCY GROUP (IN)" },
583         /* BA       O          SCAN */
584         { 0xBA, R, "SCAN" },
585         /* BB  O   O OOOO      REDUNDANCY GROUP (OUT) */
586         { 0xBB, D | W | O | M | A | E, "REDUNDANCY GROUP (OUT)" },
587         /* BB       O          SET CD SPEED */
588         { 0xBB, R, "SET CD SPEED" },
589         /* BC  O   O OOMO      SPARE (IN) */
590         { 0xBC, D | W | O | M | A | E, "SPARE (IN)" },
591         /* BD  O   O OOOO      SPARE (OUT) */
592         { 0xBD, D | W | O | M | A | E, "SPARE (OUT)" },
593         /* BD       O          MECHANISM STATUS */
594         { 0xBD, R, "MECHANISM STATUS" },
595         /* BE  O   O OOMO      VOLUME SET (IN) */
596         { 0xBE, D | W | O | M | A | E, "VOLUME SET (IN)" },
597         /* BE       O          READ CD */
598         { 0xBE, R, "READ CD" },
599         /* BF  O   O OOOO      VOLUME SET (OUT) */
600         { 0xBF, D | W | O | M | A | E, "VOLUME SET (OUT)" },
601         /* BF       O          SEND DVD STRUCTURE */
602         { 0xBF, R, "SEND DVD STRUCTURE" }
603 };
604
605 const char *
606 scsi_op_desc(u_int16_t opcode, struct scsi_inquiry_data *inq_data)
607 {
608         caddr_t match;
609         int i, j;
610         u_int32_t opmask;
611         u_int16_t pd_type;
612         int       num_ops[2];
613         struct op_table_entry *table[2];
614         int num_tables;
615
616         pd_type = SID_TYPE(inq_data);
617
618         match = cam_quirkmatch((caddr_t)inq_data,
619                                (caddr_t)scsi_op_quirk_table,
620                                sizeof(scsi_op_quirk_table)/
621                                sizeof(*scsi_op_quirk_table),
622                                sizeof(*scsi_op_quirk_table),
623                                scsi_inquiry_match);
624
625         if (match != NULL) {
626                 table[0] = ((struct scsi_op_quirk_entry *)match)->op_table;
627                 num_ops[0] = ((struct scsi_op_quirk_entry *)match)->num_ops;
628                 table[1] = scsi_op_codes;
629                 num_ops[1] = NELEM(scsi_op_codes);
630                 num_tables = 2;
631         } else {
632                 /*      
633                  * If this is true, we have a vendor specific opcode that
634                  * wasn't covered in the quirk table.
635                  */
636                 if ((opcode > 0xBF) || ((opcode > 0x5F) && (opcode < 0x80)))
637                         return("Vendor Specific Command");
638
639                 table[0] = scsi_op_codes;
640                 num_ops[0] = NELEM(scsi_op_codes);
641                 num_tables = 1;
642         }
643
644         /* RBC is 'Simplified' Direct Access Device */
645         if (pd_type == T_RBC)
646                 pd_type = T_DIRECT;
647
648         opmask = 1 << pd_type;
649
650         for (j = 0; j < num_tables; j++) {
651                 for (i = 0;i < num_ops[j] && table[j][i].opcode <= opcode; i++){
652                         if ((table[j][i].opcode == opcode) 
653                          && ((table[j][i].opmask & opmask) != 0))
654                                 return(table[j][i].desc);
655                 }
656         }
657         
658         /*
659          * If we can't find a match for the command in the table, we just
660          * assume it's a vendor specifc command.
661          */
662         return("Vendor Specific Command");
663
664 }
665
666 #else /* SCSI_NO_OP_STRINGS */
667
668 const char *
669 scsi_op_desc(u_int16_t opcode, struct scsi_inquiry_data *inq_data)
670 {
671         return("");
672 }
673
674 #endif
675
676
677 #if !defined(SCSI_NO_SENSE_STRINGS)
678 #define SST(asc, ascq, action, desc) \
679         asc, ascq, action, desc
680 #else 
681 const char empty_string[] = "";
682
683 #define SST(asc, ascq, action, desc) \
684         asc, ascq, action, empty_string
685 #endif 
686
687 const struct sense_key_table_entry sense_key_table[] =
688 {
689         { SSD_KEY_NO_SENSE, SS_NOP, "NO SENSE" },
690         { SSD_KEY_RECOVERED_ERROR, SS_NOP|SSQ_PRINT_SENSE, "RECOVERED ERROR" },
691         {
692           SSD_KEY_NOT_READY, SS_TUR|SSQ_MANY|SSQ_DECREMENT_COUNT|EBUSY,
693           "NOT READY"
694         },
695         { SSD_KEY_MEDIUM_ERROR, SS_RDEF, "MEDIUM ERROR" },
696         { SSD_KEY_HARDWARE_ERROR, SS_RDEF, "HARDWARE FAILURE" },
697         { SSD_KEY_ILLEGAL_REQUEST, SS_FATAL|EINVAL, "ILLEGAL REQUEST" },
698         { SSD_KEY_UNIT_ATTENTION, SS_FATAL|ENXIO, "UNIT ATTENTION" },
699         { SSD_KEY_DATA_PROTECT, SS_FATAL|EACCES, "DATA PROTECT" },
700         { SSD_KEY_BLANK_CHECK, SS_FATAL|ENOSPC, "BLANK CHECK" },
701         { SSD_KEY_Vendor_Specific, SS_FATAL|EIO, "Vendor Specific" },
702         { SSD_KEY_COPY_ABORTED, SS_FATAL|EIO, "COPY ABORTED" },
703         { SSD_KEY_ABORTED_COMMAND, SS_RDEF, "ABORTED COMMAND" },
704         { SSD_KEY_EQUAL, SS_NOP, "EQUAL" },
705         { SSD_KEY_VOLUME_OVERFLOW, SS_FATAL|EIO, "VOLUME OVERFLOW" },
706         { SSD_KEY_MISCOMPARE, SS_NOP, "MISCOMPARE" },
707         { SSD_KEY_RESERVED, SS_FATAL|EIO, "RESERVED" }
708 };
709
710 const int sense_key_table_size = NELEM(sense_key_table);
711
712 static struct asc_table_entry quantum_fireball_entries[] = {
713         { SST(0x04, 0x0b, SS_START | SSQ_DECREMENT_COUNT | ENXIO, 
714              "Logical unit not ready, initializing cmd. required") }
715 };
716
717 static struct asc_table_entry sony_mo_entries[] = {
718         { SST(0x04, 0x00, SS_START | SSQ_DECREMENT_COUNT | ENXIO,
719              "Logical unit not ready, cause not reportable") }
720 };
721
722 static struct scsi_sense_quirk_entry sense_quirk_table[] = {
723         {
724                 /*
725                  * XXX The Quantum Fireball ST and SE like to return 0x04 0x0b
726                  * when they really should return 0x04 0x02.
727                  */
728                 {T_DIRECT, SIP_MEDIA_FIXED, "QUANTUM", "FIREBALL S*", "*"},
729                 /*num_sense_keys*/0,
730                 sizeof(quantum_fireball_entries)/sizeof(struct asc_table_entry),
731                 /*sense key entries*/NULL,
732                 quantum_fireball_entries
733         },
734         {
735                 /*
736                  * This Sony MO drive likes to return 0x04, 0x00 when it
737                  * isn't spun up.
738                  */
739                 {T_DIRECT, SIP_MEDIA_REMOVABLE, "SONY", "SMO-*", "*"},
740                 /*num_sense_keys*/0,
741                 sizeof(sony_mo_entries)/sizeof(struct asc_table_entry),
742                 /*sense key entries*/NULL,
743                 sony_mo_entries
744         }
745 };
746
747 const int sense_quirk_table_size = NELEM(sense_quirk_table);
748
749 static struct asc_table_entry asc_table[] = {
750         /*
751          * From: http://www.t10.org/lists/asc-num.txt
752          * Modifications by Jung-uk Kim (jkim@FreeBSD.org)
753          */
754         /*
755          * File: ASC-NUM.TXT
756          *
757          * SCSI ASC/ASCQ Assignments
758          * Numeric Sorted Listing
759          * as of  7/29/08
760          *
761          * D - DIRECT ACCESS DEVICE (SBC-2)                   device column key
762          * .T - SEQUENTIAL ACCESS DEVICE (SSC)               -------------------
763          * . L - PRINTER DEVICE (SSC)                           blank = reserved
764          * .  P - PROCESSOR DEVICE (SPC)                     not blank = allowed
765          * .  .W - WRITE ONCE READ MULTIPLE DEVICE (SBC-2)
766          * .  . R - CD DEVICE (MMC)
767          * .  .  O - OPTICAL MEMORY DEVICE (SBC-2)
768          * .  .  .M - MEDIA CHANGER DEVICE (SMC)
769          * .  .  . A - STORAGE ARRAY DEVICE (SCC)
770          * .  .  .  E - ENCLOSURE SERVICES DEVICE (SES)
771          * .  .  .  .B - SIMPLIFIED DIRECT-ACCESS DEVICE (RBC)
772          * .  .  .  . K - OPTICAL CARD READER/WRITER DEVICE (OCRW)
773          * .  .  .  .  V - AUTOMATION/DRIVE INTERFACE (ADC)
774          * .  .  .  .  .F - OBJECT-BASED STORAGE (OSD)
775          * DTLPWROMAEBKVF
776          * ASC      ASCQ  Action
777          * Description
778          */
779         /* DTLPWROMAEBKVF */
780         { SST(0x00, 0x00, SS_NOP,
781             "No additional sense information") },
782         /*  T             */
783         { SST(0x00, 0x01, SS_RDEF,
784             "Filemark detected") },
785         /*  T             */
786         { SST(0x00, 0x02, SS_RDEF,
787             "End-of-partition/medium detected") },
788         /*  T             */
789         { SST(0x00, 0x03, SS_RDEF,
790             "Setmark detected") },
791         /*  T             */
792         { SST(0x00, 0x04, SS_RDEF,
793             "Beginning-of-partition/medium detected") },
794         /*  TL            */
795         { SST(0x00, 0x05, SS_RDEF,
796             "End-of-data detected") },
797         /* DTLPWROMAEBKVF */
798         { SST(0x00, 0x06, SS_RDEF,
799             "I/O process terminated") },
800         /*  T             */
801         { SST(0x00, 0x07, SS_RDEF,      /* XXX TBD */
802             "Programmable early warning detected") },
803         /*      R         */
804         { SST(0x00, 0x11, SS_FATAL | EBUSY,
805             "Audio play operation in progress") },
806         /*      R         */
807         { SST(0x00, 0x12, SS_NOP,
808             "Audio play operation paused") },
809         /*      R         */
810         { SST(0x00, 0x13, SS_NOP,
811             "Audio play operation successfully completed") },
812         /*      R         */
813         { SST(0x00, 0x14, SS_RDEF,
814             "Audio play operation stopped due to error") },
815         /*      R         */
816         { SST(0x00, 0x15, SS_NOP,
817             "No current audio status to return") },
818         /* DTLPWROMAEBKVF */
819         { SST(0x00, 0x16, SS_FATAL | EBUSY,
820             "Operation in progress") },
821         /* DTL WROMAEBKVF */
822         { SST(0x00, 0x17, SS_RDEF,
823             "Cleaning requested") },
824         /*  T             */
825         { SST(0x00, 0x18, SS_RDEF,      /* XXX TBD */
826             "Erase operation in progress") },
827         /*  T             */
828         { SST(0x00, 0x19, SS_RDEF,      /* XXX TBD */
829             "Locate operation in progress") },
830         /*  T             */
831         { SST(0x00, 0x1A, SS_RDEF,      /* XXX TBD */
832             "Rewind operation in progress") },
833         /*  T             */
834         { SST(0x00, 0x1B, SS_RDEF,      /* XXX TBD */
835             "Set capacity operation in progress") },
836         /*  T             */
837         { SST(0x00, 0x1C, SS_RDEF,      /* XXX TBD */
838             "Verify operation in progress") },
839         /* DT        B    */
840         { SST(0x00, 0x1D, SS_RDEF,      /* XXX TBD */
841             "ATA pass through information available") },
842         /* DT   R MAEBKV  */
843         { SST(0x00, 0x1E, SS_RDEF,      /* XXX TBD */
844             "Conflicting SA creation request") },
845         /* D   W O   BK   */
846         { SST(0x01, 0x00, SS_RDEF,
847             "No index/sector signal") },
848         /* D   WRO   BK   */
849         { SST(0x02, 0x00, SS_RDEF,
850             "No seek complete") },
851         /* DTL W O   BK   */
852         { SST(0x03, 0x00, SS_RDEF,
853             "Peripheral device write fault") },
854         /*  T             */
855         { SST(0x03, 0x01, SS_RDEF,
856             "No write current") },
857         /*  T             */
858         { SST(0x03, 0x02, SS_RDEF,
859             "Excessive write errors") },
860         /* DTLPWROMAEBKVF */
861         { SST(0x04, 0x00, SS_TUR | SSQ_MANY | SSQ_DECREMENT_COUNT | EIO,
862             "Logical unit not ready, cause not reportable") },
863         /* DTLPWROMAEBKVF */
864         { SST(0x04, 0x01, SS_TUR | SSQ_MANY | SSQ_DECREMENT_COUNT | EBUSY,
865             "Logical unit is in process of becoming ready") },
866         /* DTLPWROMAEBKVF */
867         { SST(0x04, 0x02, SS_START | SSQ_DECREMENT_COUNT | ENXIO,
868             "Logical unit not ready, initializing command required") },
869         /* DTLPWROMAEBKVF */
870         { SST(0x04, 0x03, SS_FATAL | ENXIO,
871             "Logical unit not ready, manual intervention required") },
872         /* DTL  RO   B    */
873         { SST(0x04, 0x04, SS_FATAL | EBUSY,
874             "Logical unit not ready, format in progress") },
875         /* DT  W O A BK F */
876         { SST(0x04, 0x05, SS_FATAL | EBUSY,
877             "Logical unit not ready, rebuild in progress") },
878         /* DT  W O A BK   */
879         { SST(0x04, 0x06, SS_FATAL | EBUSY,
880             "Logical unit not ready, recalculation in progress") },
881         /* DTLPWROMAEBKVF */
882         { SST(0x04, 0x07, SS_FATAL | EBUSY,
883             "Logical unit not ready, operation in progress") },
884         /*      R         */
885         { SST(0x04, 0x08, SS_FATAL | EBUSY,
886             "Logical unit not ready, long write in progress") },
887         /* DTLPWROMAEBKVF */
888         { SST(0x04, 0x09, SS_RDEF,      /* XXX TBD */
889             "Logical unit not ready, self-test in progress") },
890         /* DTLPWROMAEBKVF */
891         { SST(0x04, 0x0A, SS_RDEF,      /* XXX TBD */
892             "Logical unit not accessible, asymmetric access state transition")},
893         /* DTLPWROMAEBKVF */
894         { SST(0x04, 0x0B, SS_RDEF,      /* XXX TBD */
895             "Logical unit not accessible, target port in standby state") },
896         /* DTLPWROMAEBKVF */
897         { SST(0x04, 0x0C, SS_RDEF,      /* XXX TBD */
898             "Logical unit not accessible, target port in unavailable state") },
899         /*              F */
900         { SST(0x04, 0x0D, SS_RDEF,      /* XXX TBD */
901             "Logical unit not ready, structure check required") },
902         /* DT  WROM  B    */
903         { SST(0x04, 0x10, SS_RDEF,      /* XXX TBD */
904             "Logical unit not ready, auxiliary memory not accessible") },
905         /* DT  WRO AEB VF */
906         { SST(0x04, 0x11, SS_RDEF,      /* XXX TBD */
907             "Logical unit not ready, notify (enable spinup) required") },
908         /*        M    V  */
909         { SST(0x04, 0x12, SS_RDEF,      /* XXX TBD */
910             "Logical unit not ready, offline") },
911         /* DT   R MAEBKV  */
912         { SST(0x04, 0x13, SS_RDEF,      /* XXX TBD */
913             "Logical unit not ready, SA creation in progress") },
914         /* DTL WROMAEBKVF */
915         { SST(0x05, 0x00, SS_RDEF,
916             "Logical unit does not respond to selection") },
917         /* D   WROM  BK   */
918         { SST(0x06, 0x00, SS_RDEF,
919             "No reference position found") },
920         /* DTL WROM  BK   */
921         { SST(0x07, 0x00, SS_RDEF,
922             "Multiple peripheral devices selected") },
923         /* DTL WROMAEBKVF */
924         { SST(0x08, 0x00, SS_RDEF,
925             "Logical unit communication failure") },
926         /* DTL WROMAEBKVF */
927         { SST(0x08, 0x01, SS_RDEF,
928             "Logical unit communication time-out") },
929         /* DTL WROMAEBKVF */
930         { SST(0x08, 0x02, SS_RDEF,
931             "Logical unit communication parity error") },
932         /* DT   ROM  BK   */
933         { SST(0x08, 0x03, SS_RDEF,
934             "Logical unit communication CRC error (Ultra-DMA/32)") },
935         /* DTLPWRO    K   */
936         { SST(0x08, 0x04, SS_RDEF,      /* XXX TBD */
937             "Unreachable copy target") },
938         /* DT  WRO   B    */
939         { SST(0x09, 0x00, SS_RDEF,
940             "Track following error") },
941         /*     WRO    K   */
942         { SST(0x09, 0x01, SS_RDEF,
943             "Tracking servo failure") },
944         /*     WRO    K   */
945         { SST(0x09, 0x02, SS_RDEF,
946             "Focus servo failure") },
947         /*     WRO        */
948         { SST(0x09, 0x03, SS_RDEF,
949             "Spindle servo failure") },
950         /* DT  WRO   B    */
951         { SST(0x09, 0x04, SS_RDEF,
952             "Head select fault") },
953         /* DTLPWROMAEBKVF */
954         { SST(0x0A, 0x00, SS_FATAL | ENOSPC,
955             "Error log overflow") },
956         /* DTLPWROMAEBKVF */
957         { SST(0x0B, 0x00, SS_RDEF,
958             "Warning") },
959         /* DTLPWROMAEBKVF */
960         { SST(0x0B, 0x01, SS_RDEF,
961             "Warning - specified temperature exceeded") },
962         /* DTLPWROMAEBKVF */
963         { SST(0x0B, 0x02, SS_RDEF,
964             "Warning - enclosure degraded") },
965         /* DTLPWROMAEBKVF */
966         { SST(0x0B, 0x03, SS_RDEF,      /* XXX TBD */
967             "Warning - background self-test failed") },
968         /* DTLPWRO AEBKVF */
969         { SST(0x0B, 0x04, SS_RDEF,      /* XXX TBD */
970             "Warning - background pre-scan detected medium error") },
971         /* DTLPWRO AEBKVF */
972         { SST(0x0B, 0x05, SS_RDEF,      /* XXX TBD */
973             "Warning - background medium scan detected medium error") },
974         /* DTLPWROMAEBKVF */
975         { SST(0x0B, 0x06, SS_RDEF,      /* XXX TBD */
976             "Warning - non-volatile cache now volatile") },
977         /* DTLPWROMAEBKVF */
978         { SST(0x0B, 0x07, SS_RDEF,      /* XXX TBD */
979             "Warning - degraded power to non-volatile cache") },
980         /*  T   R         */
981         { SST(0x0C, 0x00, SS_RDEF,
982             "Write error") },
983         /*            K   */
984         { SST(0x0C, 0x01, SS_NOP | SSQ_PRINT_SENSE,
985             "Write error - recovered with auto reallocation") },
986         /* D   W O   BK   */
987         { SST(0x0C, 0x02, SS_RDEF,
988             "Write error - auto reallocation failed") },
989         /* D   W O   BK   */
990         { SST(0x0C, 0x03, SS_RDEF,
991             "Write error - recommend reassignment") },
992         /* DT  W O   B    */
993         { SST(0x0C, 0x04, SS_RDEF,
994             "Compression check miscompare error") },
995         /* DT  W O   B    */
996         { SST(0x0C, 0x05, SS_RDEF,
997             "Data expansion occurred during compression") },
998         /* DT  W O   B    */
999         { SST(0x0C, 0x06, SS_RDEF,
1000             "Block not compressible") },
1001         /*      R         */
1002         { SST(0x0C, 0x07, SS_RDEF,
1003             "Write error - recovery needed") },
1004         /*      R         */
1005         { SST(0x0C, 0x08, SS_RDEF,
1006             "Write error - recovery failed") },
1007         /*      R         */
1008         { SST(0x0C, 0x09, SS_RDEF,
1009             "Write error - loss of streaming") },
1010         /*      R         */
1011         { SST(0x0C, 0x0A, SS_RDEF,
1012             "Write error - padding blocks added") },
1013         /* DT  WROM  B    */
1014         { SST(0x0C, 0x0B, SS_RDEF,      /* XXX TBD */
1015             "Auxiliary memory write error") },
1016         /* DTLPWRO AEBKVF */
1017         { SST(0x0C, 0x0C, SS_RDEF,      /* XXX TBD */
1018             "Write error - unexpected unsolicited data") },
1019         /* DTLPWRO AEBKVF */
1020         { SST(0x0C, 0x0D, SS_RDEF,      /* XXX TBD */
1021             "Write error - not enough unsolicited data") },
1022         /*      R         */
1023         { SST(0x0C, 0x0F, SS_RDEF,      /* XXX TBD */
1024             "Defects in error window") },
1025         /* DTLPWRO A  K   */
1026         { SST(0x0D, 0x00, SS_RDEF,      /* XXX TBD */
1027             "Error detected by third party temporary initiator") },
1028         /* DTLPWRO A  K   */
1029         { SST(0x0D, 0x01, SS_RDEF,      /* XXX TBD */
1030             "Third party device failure") },
1031         /* DTLPWRO A  K   */
1032         { SST(0x0D, 0x02, SS_RDEF,      /* XXX TBD */
1033             "Copy target device not reachable") },
1034         /* DTLPWRO A  K   */
1035         { SST(0x0D, 0x03, SS_RDEF,      /* XXX TBD */
1036             "Incorrect copy target device type") },
1037         /* DTLPWRO A  K   */
1038         { SST(0x0D, 0x04, SS_RDEF,      /* XXX TBD */
1039             "Copy target device data underrun") },
1040         /* DTLPWRO A  K   */
1041         { SST(0x0D, 0x05, SS_RDEF,      /* XXX TBD */
1042             "Copy target device data overrun") },
1043         /* DT PWROMAEBK F */
1044         { SST(0x0E, 0x00, SS_RDEF,      /* XXX TBD */
1045             "Invalid information unit") },
1046         /* DT PWROMAEBK F */
1047         { SST(0x0E, 0x01, SS_RDEF,      /* XXX TBD */
1048             "Information unit too short") },
1049         /* DT PWROMAEBK F */
1050         { SST(0x0E, 0x02, SS_RDEF,      /* XXX TBD */
1051             "Information unit too long") },
1052         /* DT P R MAEBK F */
1053         { SST(0x0E, 0x03, SS_RDEF,      /* XXX TBD */
1054             "Invalid field in command information unit") },
1055         /* D   W O   BK   */
1056         { SST(0x10, 0x00, SS_RDEF,
1057             "ID CRC or ECC error") },
1058         /* DT  W O        */
1059         { SST(0x10, 0x01, SS_RDEF,      /* XXX TBD */
1060             "Logical block guard check failed") },
1061         /* DT  W O        */
1062         { SST(0x10, 0x02, SS_RDEF,      /* XXX TBD */
1063             "Logical block application tag check failed") },
1064         /* DT  W O        */
1065         { SST(0x10, 0x03, SS_RDEF,      /* XXX TBD */
1066             "Logical block reference tag check failed") },
1067         /* DT  WRO   BK   */
1068         { SST(0x11, 0x00, SS_RDEF,
1069             "Unrecovered read error") },
1070         /* DT  WRO   BK   */
1071         { SST(0x11, 0x01, SS_RDEF,
1072             "Read retries exhausted") },
1073         /* DT  WRO   BK   */
1074         { SST(0x11, 0x02, SS_RDEF,
1075             "Error too long to correct") },
1076         /* DT  W O   BK   */
1077         { SST(0x11, 0x03, SS_RDEF,
1078             "Multiple read errors") },
1079         /* D   W O   BK   */
1080         { SST(0x11, 0x04, SS_RDEF,
1081             "Unrecovered read error - auto reallocate failed") },
1082         /*     WRO   B    */
1083         { SST(0x11, 0x05, SS_RDEF,
1084             "L-EC uncorrectable error") },
1085         /*     WRO   B    */
1086         { SST(0x11, 0x06, SS_RDEF,
1087             "CIRC unrecovered error") },
1088         /*     W O   B    */
1089         { SST(0x11, 0x07, SS_RDEF,
1090             "Data re-synchronization error") },
1091         /*  T             */
1092         { SST(0x11, 0x08, SS_RDEF,
1093             "Incomplete block read") },
1094         /*  T             */
1095         { SST(0x11, 0x09, SS_RDEF,
1096             "No gap found") },
1097         /* DT    O   BK   */
1098         { SST(0x11, 0x0A, SS_RDEF,
1099             "Miscorrected error") },
1100         /* D   W O   BK   */
1101         { SST(0x11, 0x0B, SS_RDEF,
1102             "Unrecovered read error - recommend reassignment") },
1103         /* D   W O   BK   */
1104         { SST(0x11, 0x0C, SS_RDEF,
1105             "Unrecovered read error - recommend rewrite the data") },
1106         /* DT  WRO   B    */
1107         { SST(0x11, 0x0D, SS_RDEF,
1108             "De-compression CRC error") },
1109         /* DT  WRO   B    */
1110         { SST(0x11, 0x0E, SS_RDEF,
1111             "Cannot decompress using declared algorithm") },
1112         /*      R         */
1113         { SST(0x11, 0x0F, SS_RDEF,
1114             "Error reading UPC/EAN number") },
1115         /*      R         */
1116         { SST(0x11, 0x10, SS_RDEF,
1117             "Error reading ISRC number") },
1118         /*      R         */
1119         { SST(0x11, 0x11, SS_RDEF,
1120             "Read error - loss of streaming") },
1121         /* DT  WROM  B    */
1122         { SST(0x11, 0x12, SS_RDEF,      /* XXX TBD */
1123             "Auxiliary memory read error") },
1124         /* DTLPWRO AEBKVF */
1125         { SST(0x11, 0x13, SS_RDEF,      /* XXX TBD */
1126             "Read error - failed retransmission request") },
1127         /* D              */
1128         { SST(0x11, 0x14, SS_RDEF,      /* XXX TBD */
1129             "Read error - LBA marked bad by application client") },
1130         /* D   W O   BK   */
1131         { SST(0x12, 0x00, SS_RDEF,
1132             "Address mark not found for ID field") },
1133         /* D   W O   BK   */
1134         { SST(0x13, 0x00, SS_RDEF,
1135             "Address mark not found for data field") },
1136         /* DTL WRO   BK   */
1137         { SST(0x14, 0x00, SS_RDEF,
1138             "Recorded entity not found") },
1139         /* DT  WRO   BK   */
1140         { SST(0x14, 0x01, SS_RDEF,
1141             "Record not found") },
1142         /*  T             */
1143         { SST(0x14, 0x02, SS_RDEF,
1144             "Filemark or setmark not found") },
1145         /*  T             */
1146         { SST(0x14, 0x03, SS_RDEF,
1147             "End-of-data not found") },
1148         /*  T             */
1149         { SST(0x14, 0x04, SS_RDEF,
1150             "Block sequence error") },
1151         /* DT  W O   BK   */
1152         { SST(0x14, 0x05, SS_RDEF,
1153             "Record not found - recommend reassignment") },
1154         /* DT  W O   BK   */
1155         { SST(0x14, 0x06, SS_RDEF,
1156             "Record not found - data auto-reallocated") },
1157         /*  T             */
1158         { SST(0x14, 0x07, SS_RDEF,      /* XXX TBD */
1159             "Locate operation failure") },
1160         /* DTL WROM  BK   */
1161         { SST(0x15, 0x00, SS_RDEF,
1162             "Random positioning error") },
1163         /* DTL WROM  BK   */
1164         { SST(0x15, 0x01, SS_RDEF,
1165             "Mechanical positioning error") },
1166         /* DT  WRO   BK   */
1167         { SST(0x15, 0x02, SS_RDEF,
1168             "Positioning error detected by read of medium") },
1169         /* D   W O   BK   */
1170         { SST(0x16, 0x00, SS_RDEF,
1171             "Data synchronization mark error") },
1172         /* D   W O   BK   */
1173         { SST(0x16, 0x01, SS_RDEF,
1174             "Data sync error - data rewritten") },
1175         /* D   W O   BK   */
1176         { SST(0x16, 0x02, SS_RDEF,
1177             "Data sync error - recommend rewrite") },
1178         /* D   W O   BK   */
1179         { SST(0x16, 0x03, SS_NOP | SSQ_PRINT_SENSE,
1180             "Data sync error - data auto-reallocated") },
1181         /* D   W O   BK   */
1182         { SST(0x16, 0x04, SS_RDEF,
1183             "Data sync error - recommend reassignment") },
1184         /* DT  WRO   BK   */
1185         { SST(0x17, 0x00, SS_NOP | SSQ_PRINT_SENSE,
1186             "Recovered data with no error correction applied") },
1187         /* DT  WRO   BK   */
1188         { SST(0x17, 0x01, SS_NOP | SSQ_PRINT_SENSE,
1189             "Recovered data with retries") },
1190         /* DT  WRO   BK   */
1191         { SST(0x17, 0x02, SS_NOP | SSQ_PRINT_SENSE,
1192             "Recovered data with positive head offset") },
1193         /* DT  WRO   BK   */
1194         { SST(0x17, 0x03, SS_NOP | SSQ_PRINT_SENSE,
1195             "Recovered data with negative head offset") },
1196         /*     WRO   B    */
1197         { SST(0x17, 0x04, SS_NOP | SSQ_PRINT_SENSE,
1198             "Recovered data with retries and/or CIRC applied") },
1199         /* D   WRO   BK   */
1200         { SST(0x17, 0x05, SS_NOP | SSQ_PRINT_SENSE,
1201             "Recovered data using previous sector ID") },
1202         /* D   W O   BK   */
1203         { SST(0x17, 0x06, SS_NOP | SSQ_PRINT_SENSE,
1204             "Recovered data without ECC - data auto-reallocated") },
1205         /* D   WRO   BK   */
1206         { SST(0x17, 0x07, SS_NOP | SSQ_PRINT_SENSE,
1207             "Recovered data without ECC - recommend reassignment") },
1208         /* D   WRO   BK   */
1209         { SST(0x17, 0x08, SS_NOP | SSQ_PRINT_SENSE,
1210             "Recovered data without ECC - recommend rewrite") },
1211         /* D   WRO   BK   */
1212         { SST(0x17, 0x09, SS_NOP | SSQ_PRINT_SENSE,
1213             "Recovered data without ECC - data rewritten") },
1214         /* DT  WRO   BK   */
1215         { SST(0x18, 0x00, SS_NOP | SSQ_PRINT_SENSE,
1216             "Recovered data with error correction applied") },
1217         /* D   WRO   BK   */
1218         { SST(0x18, 0x01, SS_NOP | SSQ_PRINT_SENSE,
1219             "Recovered data with error corr. & retries applied") },
1220         /* D   WRO   BK   */
1221         { SST(0x18, 0x02, SS_NOP | SSQ_PRINT_SENSE,
1222             "Recovered data - data auto-reallocated") },
1223         /*      R         */
1224         { SST(0x18, 0x03, SS_NOP | SSQ_PRINT_SENSE,
1225             "Recovered data with CIRC") },
1226         /*      R         */
1227         { SST(0x18, 0x04, SS_NOP | SSQ_PRINT_SENSE,
1228             "Recovered data with L-EC") },
1229         /* D   WRO   BK   */
1230         { SST(0x18, 0x05, SS_NOP | SSQ_PRINT_SENSE,
1231             "Recovered data - recommend reassignment") },
1232         /* D   WRO   BK   */
1233         { SST(0x18, 0x06, SS_NOP | SSQ_PRINT_SENSE,
1234             "Recovered data - recommend rewrite") },
1235         /* D   W O   BK   */
1236         { SST(0x18, 0x07, SS_NOP | SSQ_PRINT_SENSE,
1237             "Recovered data with ECC - data rewritten") },
1238         /*      R         */
1239         { SST(0x18, 0x08, SS_RDEF,      /* XXX TBD */
1240             "Recovered data with linking") },
1241         /* D     O    K   */
1242         { SST(0x19, 0x00, SS_RDEF,
1243             "Defect list error") },
1244         /* D     O    K   */
1245         { SST(0x19, 0x01, SS_RDEF,
1246             "Defect list not available") },
1247         /* D     O    K   */
1248         { SST(0x19, 0x02, SS_RDEF,
1249             "Defect list error in primary list") },
1250         /* D     O    K   */
1251         { SST(0x19, 0x03, SS_RDEF,
1252             "Defect list error in grown list") },
1253         /* DTLPWROMAEBKVF */
1254         { SST(0x1A, 0x00, SS_RDEF,
1255             "Parameter list length error") },
1256         /* DTLPWROMAEBKVF */
1257         { SST(0x1B, 0x00, SS_RDEF,
1258             "Synchronous data transfer error") },
1259         /* D     O   BK   */
1260         { SST(0x1C, 0x00, SS_RDEF,
1261             "Defect list not found") },
1262         /* D     O   BK   */
1263         { SST(0x1C, 0x01, SS_RDEF,
1264             "Primary defect list not found") },
1265         /* D     O   BK   */
1266         { SST(0x1C, 0x02, SS_RDEF,
1267             "Grown defect list not found") },
1268         /* DT  WRO   BK   */
1269         { SST(0x1D, 0x00, SS_FATAL,
1270             "Miscompare during verify operation") },
1271         /* D   W O   BK   */
1272         { SST(0x1E, 0x00, SS_NOP | SSQ_PRINT_SENSE,
1273             "Recovered ID with ECC correction") },
1274         /* D     O    K   */
1275         { SST(0x1F, 0x00, SS_RDEF,
1276             "Partial defect list transfer") },
1277         /* DTLPWROMAEBKVF */
1278         { SST(0x20, 0x00, SS_FATAL | EINVAL,
1279             "Invalid command operation code") },
1280         /* DT PWROMAEBK   */
1281         { SST(0x20, 0x01, SS_RDEF,      /* XXX TBD */
1282             "Access denied - initiator pending-enrolled") },
1283         /* DT PWROMAEBK   */
1284         { SST(0x20, 0x02, SS_RDEF,      /* XXX TBD */
1285             "Access denied - no access rights") },
1286         /* DT PWROMAEBK   */
1287         { SST(0x20, 0x03, SS_RDEF,      /* XXX TBD */
1288             "Access denied - invalid mgmt ID key") },
1289         /*  T             */
1290         { SST(0x20, 0x04, SS_RDEF,      /* XXX TBD */
1291             "Illegal command while in write capable state") },
1292         /*  T             */
1293         { SST(0x20, 0x05, SS_RDEF,      /* XXX TBD */
1294             "Obsolete") },
1295         /*  T             */
1296         { SST(0x20, 0x06, SS_RDEF,      /* XXX TBD */
1297             "Illegal command while in explicit address mode") },
1298         /*  T             */
1299         { SST(0x20, 0x07, SS_RDEF,      /* XXX TBD */
1300             "Illegal command while in implicit address mode") },
1301         /* DT PWROMAEBK   */
1302         { SST(0x20, 0x08, SS_RDEF,      /* XXX TBD */
1303             "Access denied - enrollment conflict") },
1304         /* DT PWROMAEBK   */
1305         { SST(0x20, 0x09, SS_RDEF,      /* XXX TBD */
1306             "Access denied - invalid LU identifier") },
1307         /* DT PWROMAEBK   */
1308         { SST(0x20, 0x0A, SS_RDEF,      /* XXX TBD */
1309             "Access denied - invalid proxy token") },
1310         /* DT PWROMAEBK   */
1311         { SST(0x20, 0x0B, SS_RDEF,      /* XXX TBD */
1312             "Access denied - ACL LUN conflict") },
1313         /* DT  WRO   BK   */
1314         { SST(0x21, 0x00, SS_FATAL | EINVAL,
1315             "Logical block address out of range") },
1316         /* DT  WROM  BK   */
1317         { SST(0x21, 0x01, SS_FATAL | EINVAL,
1318             "Invalid element address") },
1319         /*      R         */
1320         { SST(0x21, 0x02, SS_RDEF,      /* XXX TBD */
1321             "Invalid address for write") },
1322         /*      R         */
1323         { SST(0x21, 0x03, SS_RDEF,      /* XXX TBD */
1324             "Invalid write crossing layer jump") },
1325         /* D              */
1326         { SST(0x22, 0x00, SS_FATAL | EINVAL,
1327             "Illegal function (use 20 00, 24 00, or 26 00)") },
1328         /* DTLPWROMAEBKVF */
1329         { SST(0x24, 0x00, SS_FATAL | EINVAL,
1330             "Invalid field in CDB") },
1331         /* DTLPWRO AEBKVF */
1332         { SST(0x24, 0x01, SS_RDEF,      /* XXX TBD */
1333             "CDB decryption error") },
1334         /*  T             */
1335         { SST(0x24, 0x02, SS_RDEF,      /* XXX TBD */
1336             "Obsolete") },
1337         /*  T             */
1338         { SST(0x24, 0x03, SS_RDEF,      /* XXX TBD */
1339             "Obsolete") },
1340         /*              F */
1341         { SST(0x24, 0x04, SS_RDEF,      /* XXX TBD */
1342             "Security audit value frozen") },
1343         /*              F */
1344         { SST(0x24, 0x05, SS_RDEF,      /* XXX TBD */
1345             "Security working key frozen") },
1346         /*              F */
1347         { SST(0x24, 0x06, SS_RDEF,      /* XXX TBD */
1348             "NONCE not unique") },
1349         /*              F */
1350         { SST(0x24, 0x07, SS_RDEF,      /* XXX TBD */
1351             "NONCE timestamp out of range") },
1352         /* DT   R MAEBKV  */
1353         { SST(0x24, 0x08, SS_RDEF,      /* XXX TBD */
1354             "Invalid XCDB") },
1355         /* DTLPWROMAEBKVF */
1356         { SST(0x25, 0x00, SS_FATAL | ENXIO,
1357             "Logical unit not supported") },
1358         /* DTLPWROMAEBKVF */
1359         { SST(0x26, 0x00, SS_FATAL | EINVAL,
1360             "Invalid field in parameter list") },
1361         /* DTLPWROMAEBKVF */
1362         { SST(0x26, 0x01, SS_FATAL | EINVAL,
1363             "Parameter not supported") },
1364         /* DTLPWROMAEBKVF */
1365         { SST(0x26, 0x02, SS_FATAL | EINVAL,
1366             "Parameter value invalid") },
1367         /* DTLPWROMAE K   */
1368         { SST(0x26, 0x03, SS_FATAL | EINVAL,
1369             "Threshold parameters not supported") },
1370         /* DTLPWROMAEBKVF */
1371         { SST(0x26, 0x04, SS_FATAL | EINVAL,
1372             "Invalid release of persistent reservation") },
1373         /* DTLPWRO A BK   */
1374         { SST(0x26, 0x05, SS_RDEF,      /* XXX TBD */
1375             "Data decryption error") },
1376         /* DTLPWRO    K   */
1377         { SST(0x26, 0x06, SS_RDEF,      /* XXX TBD */
1378             "Too many target descriptors") },
1379         /* DTLPWRO    K   */
1380         { SST(0x26, 0x07, SS_RDEF,      /* XXX TBD */
1381             "Unsupported target descriptor type code") },
1382         /* DTLPWRO    K   */
1383         { SST(0x26, 0x08, SS_RDEF,      /* XXX TBD */
1384             "Too many segment descriptors") },
1385         /* DTLPWRO    K   */
1386         { SST(0x26, 0x09, SS_RDEF,      /* XXX TBD */
1387             "Unsupported segment descriptor type code") },
1388         /* DTLPWRO    K   */
1389         { SST(0x26, 0x0A, SS_RDEF,      /* XXX TBD */
1390             "Unexpected inexact segment") },
1391         /* DTLPWRO    K   */
1392         { SST(0x26, 0x0B, SS_RDEF,      /* XXX TBD */
1393             "Inline data length exceeded") },
1394         /* DTLPWRO    K   */
1395         { SST(0x26, 0x0C, SS_RDEF,      /* XXX TBD */
1396             "Invalid operation for copy source or destination") },
1397         /* DTLPWRO    K   */
1398         { SST(0x26, 0x0D, SS_RDEF,      /* XXX TBD */
1399             "Copy segment granularity violation") },
1400         /* DT PWROMAEBK   */
1401         { SST(0x26, 0x0E, SS_RDEF,      /* XXX TBD */
1402             "Invalid parameter while port is enabled") },
1403         /*              F */
1404         { SST(0x26, 0x0F, SS_RDEF,      /* XXX TBD */
1405             "Invalid data-out buffer integrity check value") },
1406         /*  T             */
1407         { SST(0x26, 0x10, SS_RDEF,      /* XXX TBD */
1408             "Data decryption key fail limit reached") },
1409         /*  T             */
1410         { SST(0x26, 0x11, SS_RDEF,      /* XXX TBD */
1411             "Incomplete key-associated data set") },
1412         /*  T             */
1413         { SST(0x26, 0x12, SS_RDEF,      /* XXX TBD */
1414             "Vendor specific key reference not found") },
1415         /* DT  WRO   BK   */
1416         { SST(0x27, 0x00, SS_FATAL | EACCES,
1417             "Write protected") },
1418         /* DT  WRO   BK   */
1419         { SST(0x27, 0x01, SS_FATAL | EACCES,
1420             "Hardware write protected") },
1421         /* DT  WRO   BK   */
1422         { SST(0x27, 0x02, SS_FATAL | EACCES,
1423             "Logical unit software write protected") },
1424         /*  T   R         */
1425         { SST(0x27, 0x03, SS_FATAL | EACCES,
1426             "Associated write protect") },
1427         /*  T   R         */
1428         { SST(0x27, 0x04, SS_FATAL | EACCES,
1429             "Persistent write protect") },
1430         /*  T   R         */
1431         { SST(0x27, 0x05, SS_FATAL | EACCES,
1432             "Permanent write protect") },
1433         /*      R       F */
1434         { SST(0x27, 0x06, SS_RDEF,      /* XXX TBD */
1435             "Conditional write protect") },
1436         /* DTLPWROMAEBKVF */
1437         { SST(0x28, 0x00, SS_FATAL | ENXIO,
1438             "Not ready to ready change, medium may have changed") },
1439         /* DT  WROM  B    */
1440         { SST(0x28, 0x01, SS_FATAL | ENXIO,
1441             "Import or export element accessed") },
1442         /*      R         */
1443         { SST(0x28, 0x02, SS_RDEF,      /* XXX TBD */
1444             "Format-layer may have changed") },
1445         /*        M       */
1446         { SST(0x28, 0x03, SS_RDEF,      /* XXX TBD */
1447             "Import/export element accessed, medium changed") },
1448         /*
1449          * XXX JGibbs - All of these should use the same errno, but I don't
1450          * think ENXIO is the correct choice.  Should we borrow from
1451          * the networking errnos?  ECONNRESET anyone?
1452          */
1453         /* DTLPWROMAEBKVF */
1454         { SST(0x29, 0x00, SS_FATAL | ENXIO,
1455             "Power on, reset, or bus device reset occurred") },
1456         /* DTLPWROMAEBKVF */
1457         { SST(0x29, 0x01, SS_RDEF,
1458             "Power on occurred") },
1459         /* DTLPWROMAEBKVF */
1460         { SST(0x29, 0x02, SS_RDEF,
1461             "SCSI bus reset occurred") },
1462         /* DTLPWROMAEBKVF */
1463         { SST(0x29, 0x03, SS_RDEF,
1464             "Bus device reset function occurred") },
1465         /* DTLPWROMAEBKVF */
1466         { SST(0x29, 0x04, SS_RDEF,
1467             "Device internal reset") },
1468         /* DTLPWROMAEBKVF */
1469         { SST(0x29, 0x05, SS_RDEF,
1470             "Transceiver mode changed to single-ended") },
1471         /* DTLPWROMAEBKVF */
1472         { SST(0x29, 0x06, SS_RDEF,
1473             "Transceiver mode changed to LVD") },
1474         /* DTLPWROMAEBKVF */
1475         { SST(0x29, 0x07, SS_RDEF,      /* XXX TBD */
1476             "I_T nexus loss occurred") },
1477         /* DTL WROMAEBKVF */
1478         { SST(0x2A, 0x00, SS_RDEF,
1479             "Parameters changed") },
1480         /* DTL WROMAEBKVF */
1481         { SST(0x2A, 0x01, SS_RDEF,
1482             "Mode parameters changed") },
1483         /* DTL WROMAE K   */
1484         { SST(0x2A, 0x02, SS_RDEF,
1485             "Log parameters changed") },
1486         /* DTLPWROMAE K   */
1487         { SST(0x2A, 0x03, SS_RDEF,
1488             "Reservations preempted") },
1489         /* DTLPWROMAE     */
1490         { SST(0x2A, 0x04, SS_RDEF,      /* XXX TBD */
1491             "Reservations released") },
1492         /* DTLPWROMAE     */
1493         { SST(0x2A, 0x05, SS_RDEF,      /* XXX TBD */
1494             "Registrations preempted") },
1495         /* DTLPWROMAEBKVF */
1496         { SST(0x2A, 0x06, SS_RDEF,      /* XXX TBD */
1497             "Asymmetric access state changed") },
1498         /* DTLPWROMAEBKVF */
1499         { SST(0x2A, 0x07, SS_RDEF,      /* XXX TBD */
1500             "Implicit asymmetric access state transition failed") },
1501         /* DT  WROMAEBKVF */
1502         { SST(0x2A, 0x08, SS_RDEF,      /* XXX TBD */
1503             "Priority changed") },
1504         /* D              */
1505         { SST(0x2A, 0x09, SS_RDEF,      /* XXX TBD */
1506             "Capacity data has changed") },
1507         /* DT             */
1508         { SST(0x2A, 0x0A, SS_RDEF,      /* XXX TBD */
1509             "Error history I_T nexus cleared") },
1510         /* DT             */
1511         { SST(0x2A, 0x0B, SS_RDEF,      /* XXX TBD */
1512             "Error history snapshot released") },
1513         /*              F */
1514         { SST(0x2A, 0x0C, SS_RDEF,      /* XXX TBD */
1515             "Error recovery attributes have changed") },
1516         /*  T             */
1517         { SST(0x2A, 0x0D, SS_RDEF,      /* XXX TBD */
1518             "Data encryption capabilities changed") },
1519         /* DT     M E  V  */
1520         { SST(0x2A, 0x10, SS_RDEF,      /* XXX TBD */
1521             "Timestamp changed") },
1522         /*  T             */
1523         { SST(0x2A, 0x11, SS_RDEF,      /* XXX TBD */
1524             "Data encryption parameters changed by another I_T nexus") },
1525         /*  T             */
1526         { SST(0x2A, 0x12, SS_RDEF,      /* XXX TBD */
1527             "Data encryption parameters changed by vendor specific event") },
1528         /*  T             */
1529         { SST(0x2A, 0x13, SS_RDEF,      /* XXX TBD */
1530             "Data encryption key instance counter has changed") },
1531         /* DT   R MAEBKV  */
1532         { SST(0x2A, 0x14, SS_RDEF,      /* XXX TBD */
1533             "SA creation capabilities data has changed") },
1534         /* DTLPWRO    K   */
1535         { SST(0x2B, 0x00, SS_RDEF,
1536             "Copy cannot execute since host cannot disconnect") },
1537         /* DTLPWROMAEBKVF */
1538         { SST(0x2C, 0x00, SS_RDEF,
1539             "Command sequence error") },
1540         /*                */
1541         { SST(0x2C, 0x01, SS_RDEF,
1542             "Too many windows specified") },
1543         /*                */
1544         { SST(0x2C, 0x02, SS_RDEF,
1545             "Invalid combination of windows specified") },
1546         /*      R         */
1547         { SST(0x2C, 0x03, SS_RDEF,
1548             "Current program area is not empty") },
1549         /*      R         */
1550         { SST(0x2C, 0x04, SS_RDEF,
1551             "Current program area is empty") },
1552         /*           B    */
1553         { SST(0x2C, 0x05, SS_RDEF,      /* XXX TBD */
1554             "Illegal power condition request") },
1555         /*      R         */
1556         { SST(0x2C, 0x06, SS_RDEF,      /* XXX TBD */
1557             "Persistent prevent conflict") },
1558         /* DTLPWROMAEBKVF */
1559         { SST(0x2C, 0x07, SS_RDEF,      /* XXX TBD */
1560             "Previous busy status") },
1561         /* DTLPWROMAEBKVF */
1562         { SST(0x2C, 0x08, SS_RDEF,      /* XXX TBD */
1563             "Previous task set full status") },
1564         /* DTLPWROM EBKVF */
1565         { SST(0x2C, 0x09, SS_RDEF,      /* XXX TBD */
1566             "Previous reservation conflict status") },
1567         /*              F */
1568         { SST(0x2C, 0x0A, SS_RDEF,      /* XXX TBD */
1569             "Partition or collection contains user objects") },
1570         /*  T             */
1571         { SST(0x2C, 0x0B, SS_RDEF,      /* XXX TBD */
1572             "Not reserved") },
1573         /*  T             */
1574         { SST(0x2D, 0x00, SS_RDEF,
1575             "Overwrite error on update in place") },
1576         /*      R         */
1577         { SST(0x2E, 0x00, SS_RDEF,      /* XXX TBD */
1578             "Insufficient time for operation") },
1579         /* DTLPWROMAEBKVF */
1580         { SST(0x2F, 0x00, SS_RDEF,
1581             "Commands cleared by another initiator") },
1582         /* D              */
1583         { SST(0x2F, 0x01, SS_RDEF,      /* XXX TBD */
1584             "Commands cleared by power loss notification") },
1585         /* DTLPWROMAEBKVF */
1586         { SST(0x2F, 0x02, SS_RDEF,      /* XXX TBD */
1587             "Commands cleared by device server") },
1588         /* DT  WROM  BK   */
1589         { SST(0x30, 0x00, SS_RDEF,
1590             "Incompatible medium installed") },
1591         /* DT  WRO   BK   */
1592         { SST(0x30, 0x01, SS_RDEF,
1593             "Cannot read medium - unknown format") },
1594         /* DT  WRO   BK   */
1595         { SST(0x30, 0x02, SS_RDEF,
1596             "Cannot read medium - incompatible format") },
1597         /* DT   R     K   */
1598         { SST(0x30, 0x03, SS_RDEF,
1599             "Cleaning cartridge installed") },
1600         /* DT  WRO   BK   */
1601         { SST(0x30, 0x04, SS_RDEF,
1602             "Cannot write medium - unknown format") },
1603         /* DT  WRO   BK   */
1604         { SST(0x30, 0x05, SS_RDEF,
1605             "Cannot write medium - incompatible format") },
1606         /* DT  WRO   B    */
1607         { SST(0x30, 0x06, SS_RDEF,
1608             "Cannot format medium - incompatible medium") },
1609         /* DTL WROMAEBKVF */
1610         { SST(0x30, 0x07, SS_RDEF,
1611             "Cleaning failure") },
1612         /*      R         */
1613         { SST(0x30, 0x08, SS_RDEF,
1614             "Cannot write - application code mismatch") },
1615         /*      R         */
1616         { SST(0x30, 0x09, SS_RDEF,
1617             "Current session not fixated for append") },
1618         /* DT  WRO AEBK   */
1619         { SST(0x30, 0x0A, SS_RDEF,      /* XXX TBD */
1620             "Cleaning request rejected") },
1621         /*  T             */
1622         { SST(0x30, 0x0C, SS_RDEF,      /* XXX TBD */
1623             "WORM medium - overwrite attempted") },
1624         /*  T             */
1625         { SST(0x30, 0x0D, SS_RDEF,      /* XXX TBD */
1626             "WORM medium - integrity check") },
1627         /*      R         */
1628         { SST(0x30, 0x10, SS_RDEF,      /* XXX TBD */
1629             "Medium not formatted") },
1630         /*        M       */
1631         { SST(0x30, 0x11, SS_RDEF,      /* XXX TBD */
1632             "Incompatible volume type") },
1633         /*        M       */
1634         { SST(0x30, 0x12, SS_RDEF,      /* XXX TBD */
1635             "Incompatible volume qualifier") },
1636         /* DT  WRO   BK   */
1637         { SST(0x31, 0x00, SS_RDEF,
1638             "Medium format corrupted") },
1639         /* D L  RO   B    */
1640         { SST(0x31, 0x01, SS_RDEF,
1641             "Format command failed") },
1642         /*      R         */
1643         { SST(0x31, 0x02, SS_RDEF,      /* XXX TBD */
1644             "Zoned formatting failed due to spare linking") },
1645         /* D   W O   BK   */
1646         { SST(0x32, 0x00, SS_RDEF,
1647             "No defect spare location available") },
1648         /* D   W O   BK   */
1649         { SST(0x32, 0x01, SS_RDEF,
1650             "Defect list update failure") },
1651         /*  T             */
1652         { SST(0x33, 0x00, SS_RDEF,
1653             "Tape length error") },
1654         /* DTLPWROMAEBKVF */
1655         { SST(0x34, 0x00, SS_RDEF,
1656             "Enclosure failure") },
1657         /* DTLPWROMAEBKVF */
1658         { SST(0x35, 0x00, SS_RDEF,
1659             "Enclosure services failure") },
1660         /* DTLPWROMAEBKVF */
1661         { SST(0x35, 0x01, SS_RDEF,
1662             "Unsupported enclosure function") },
1663         /* DTLPWROMAEBKVF */
1664         { SST(0x35, 0x02, SS_RDEF,
1665             "Enclosure services unavailable") },
1666         /* DTLPWROMAEBKVF */
1667         { SST(0x35, 0x03, SS_RDEF,
1668             "Enclosure services transfer failure") },
1669         /* DTLPWROMAEBKVF */
1670         { SST(0x35, 0x04, SS_RDEF,
1671             "Enclosure services transfer refused") },
1672         /* DTL WROMAEBKVF */
1673         { SST(0x35, 0x05, SS_RDEF,      /* XXX TBD */
1674             "Enclosure services checksum error") },
1675         /*   L            */
1676         { SST(0x36, 0x00, SS_RDEF,
1677             "Ribbon, ink, or toner failure") },
1678         /* DTL WROMAEBKVF */
1679         { SST(0x37, 0x00, SS_RDEF,
1680             "Rounded parameter") },
1681         /*           B    */
1682         { SST(0x38, 0x00, SS_RDEF,      /* XXX TBD */
1683             "Event status notification") },
1684         /*           B    */
1685         { SST(0x38, 0x02, SS_RDEF,      /* XXX TBD */
1686             "ESN - power management class event") },
1687         /*           B    */
1688         { SST(0x38, 0x04, SS_RDEF,      /* XXX TBD */
1689             "ESN - media class event") },
1690         /*           B    */
1691         { SST(0x38, 0x06, SS_RDEF,      /* XXX TBD */
1692             "ESN - device busy class event") },
1693         /* DTL WROMAE K   */
1694         { SST(0x39, 0x00, SS_RDEF,
1695             "Saving parameters not supported") },
1696         /* DTL WROM  BK   */
1697         { SST(0x3A, 0x00, SS_FATAL | ENXIO,
1698             "Medium not present") },
1699         /* DT  WROM  BK   */
1700         { SST(0x3A, 0x01, SS_FATAL | ENXIO,
1701             "Medium not present - tray closed") },
1702         /* DT  WROM  BK   */
1703         { SST(0x3A, 0x02, SS_FATAL | ENXIO,
1704             "Medium not present - tray open") },
1705         /* DT  WROM  B    */
1706         { SST(0x3A, 0x03, SS_RDEF,      /* XXX TBD */
1707             "Medium not present - loadable") },
1708         /* DT  WRO   B    */
1709         { SST(0x3A, 0x04, SS_RDEF,      /* XXX TBD */
1710             "Medium not present - medium auxiliary memory accessible") },
1711         /*  TL            */
1712         { SST(0x3B, 0x00, SS_RDEF,
1713             "Sequential positioning error") },
1714         /*  T             */
1715         { SST(0x3B, 0x01, SS_RDEF,
1716             "Tape position error at beginning-of-medium") },
1717         /*  T             */
1718         { SST(0x3B, 0x02, SS_RDEF,
1719             "Tape position error at end-of-medium") },
1720         /*   L            */
1721         { SST(0x3B, 0x03, SS_RDEF,
1722             "Tape or electronic vertical forms unit not ready") },
1723         /*   L            */
1724         { SST(0x3B, 0x04, SS_RDEF,
1725             "Slew failure") },
1726         /*   L            */
1727         { SST(0x3B, 0x05, SS_RDEF,
1728             "Paper jam") },
1729         /*   L            */
1730         { SST(0x3B, 0x06, SS_RDEF,
1731             "Failed to sense top-of-form") },
1732         /*   L            */
1733         { SST(0x3B, 0x07, SS_RDEF,
1734             "Failed to sense bottom-of-form") },
1735         /*  T             */
1736         { SST(0x3B, 0x08, SS_RDEF,
1737             "Reposition error") },
1738         /*                */
1739         { SST(0x3B, 0x09, SS_RDEF,
1740             "Read past end of medium") },
1741         /*                */
1742         { SST(0x3B, 0x0A, SS_RDEF,
1743             "Read past beginning of medium") },
1744         /*                */
1745         { SST(0x3B, 0x0B, SS_RDEF,
1746             "Position past end of medium") },
1747         /*  T             */
1748         { SST(0x3B, 0x0C, SS_RDEF,
1749             "Position past beginning of medium") },
1750         /* DT  WROM  BK   */
1751         { SST(0x3B, 0x0D, SS_FATAL | ENOSPC,
1752             "Medium destination element full") },
1753         /* DT  WROM  BK   */
1754         { SST(0x3B, 0x0E, SS_RDEF,
1755             "Medium source element empty") },
1756         /*      R         */
1757         { SST(0x3B, 0x0F, SS_RDEF,
1758             "End of medium reached") },
1759         /* DT  WROM  BK   */
1760         { SST(0x3B, 0x11, SS_RDEF,
1761             "Medium magazine not accessible") },
1762         /* DT  WROM  BK   */
1763         { SST(0x3B, 0x12, SS_RDEF,
1764             "Medium magazine removed") },
1765         /* DT  WROM  BK   */
1766         { SST(0x3B, 0x13, SS_RDEF,
1767             "Medium magazine inserted") },
1768         /* DT  WROM  BK   */
1769         { SST(0x3B, 0x14, SS_RDEF,
1770             "Medium magazine locked") },
1771         /* DT  WROM  BK   */
1772         { SST(0x3B, 0x15, SS_RDEF,
1773             "Medium magazine unlocked") },
1774         /*      R         */
1775         { SST(0x3B, 0x16, SS_RDEF,      /* XXX TBD */
1776             "Mechanical positioning or changer error") },
1777         /*              F */
1778         { SST(0x3B, 0x17, SS_RDEF,      /* XXX TBD */
1779             "Read past end of user object") },
1780         /*        M       */
1781         { SST(0x3B, 0x18, SS_RDEF,      /* XXX TBD */
1782             "Element disabled") },
1783         /*        M       */
1784         { SST(0x3B, 0x19, SS_RDEF,      /* XXX TBD */
1785             "Element enabled") },
1786         /*        M       */
1787         { SST(0x3B, 0x1A, SS_RDEF,      /* XXX TBD */
1788             "Data transfer device removed") },
1789         /*        M       */
1790         { SST(0x3B, 0x1B, SS_RDEF,      /* XXX TBD */
1791             "Data transfer device inserted") },
1792         /* DTLPWROMAE K   */
1793         { SST(0x3D, 0x00, SS_RDEF,
1794             "Invalid bits in IDENTIFY message") },
1795         /* DTLPWROMAEBKVF */
1796         { SST(0x3E, 0x00, SS_RDEF,
1797             "Logical unit has not self-configured yet") },
1798         /* DTLPWROMAEBKVF */
1799         { SST(0x3E, 0x01, SS_RDEF,
1800             "Logical unit failure") },
1801         /* DTLPWROMAEBKVF */
1802         { SST(0x3E, 0x02, SS_RDEF,
1803             "Timeout on logical unit") },
1804         /* DTLPWROMAEBKVF */
1805         { SST(0x3E, 0x03, SS_RDEF,      /* XXX TBD */
1806             "Logical unit failed self-test") },
1807         /* DTLPWROMAEBKVF */
1808         { SST(0x3E, 0x04, SS_RDEF,      /* XXX TBD */
1809             "Logical unit unable to update self-test log") },
1810         /* DTLPWROMAEBKVF */
1811         { SST(0x3F, 0x00, SS_RDEF,
1812             "Target operating conditions have changed") },
1813         /* DTLPWROMAEBKVF */
1814         { SST(0x3F, 0x01, SS_RDEF,
1815             "Microcode has been changed") },
1816         /* DTLPWROM  BK   */
1817         { SST(0x3F, 0x02, SS_RDEF,
1818             "Changed operating definition") },
1819         /* DTLPWROMAEBKVF */
1820         { SST(0x3F, 0x03, SS_RDEF,
1821             "INQUIRY data has changed") },
1822         /* DT  WROMAEBK   */
1823         { SST(0x3F, 0x04, SS_RDEF,
1824             "Component device attached") },
1825         /* DT  WROMAEBK   */
1826         { SST(0x3F, 0x05, SS_RDEF,
1827             "Device identifier changed") },
1828         /* DT  WROMAEB    */
1829         { SST(0x3F, 0x06, SS_RDEF,
1830             "Redundancy group created or modified") },
1831         /* DT  WROMAEB    */
1832         { SST(0x3F, 0x07, SS_RDEF,
1833             "Redundancy group deleted") },
1834         /* DT  WROMAEB    */
1835         { SST(0x3F, 0x08, SS_RDEF,
1836             "Spare created or modified") },
1837         /* DT  WROMAEB    */
1838         { SST(0x3F, 0x09, SS_RDEF,
1839             "Spare deleted") },
1840         /* DT  WROMAEBK   */
1841         { SST(0x3F, 0x0A, SS_RDEF,
1842             "Volume set created or modified") },
1843         /* DT  WROMAEBK   */
1844         { SST(0x3F, 0x0B, SS_RDEF,
1845             "Volume set deleted") },
1846         /* DT  WROMAEBK   */
1847         { SST(0x3F, 0x0C, SS_RDEF,
1848             "Volume set deassigned") },
1849         /* DT  WROMAEBK   */
1850         { SST(0x3F, 0x0D, SS_RDEF,
1851             "Volume set reassigned") },
1852         /* DTLPWROMAE     */
1853         { SST(0x3F, 0x0E, SS_RDEF,      /* XXX TBD */
1854             "Reported LUNs data has changed") },
1855         /* DTLPWROMAEBKVF */
1856         { SST(0x3F, 0x0F, SS_RDEF,      /* XXX TBD */
1857             "Echo buffer overwritten") },
1858         /* DT  WROM  B    */
1859         { SST(0x3F, 0x10, SS_RDEF,      /* XXX TBD */
1860             "Medium loadable") },
1861         /* DT  WROM  B    */
1862         { SST(0x3F, 0x11, SS_RDEF,      /* XXX TBD */
1863             "Medium auxiliary memory accessible") },
1864         /* DTLPWR MAEBK F */
1865         { SST(0x3F, 0x12, SS_RDEF,      /* XXX TBD */
1866             "iSCSI IP address added") },
1867         /* DTLPWR MAEBK F */
1868         { SST(0x3F, 0x13, SS_RDEF,      /* XXX TBD */
1869             "iSCSI IP address removed") },
1870         /* DTLPWR MAEBK F */
1871         { SST(0x3F, 0x14, SS_RDEF,      /* XXX TBD */
1872             "iSCSI IP address changed") },
1873         /* D              */
1874         { SST(0x40, 0x00, SS_RDEF,
1875             "RAM failure") },           /* deprecated - use 40 NN instead */
1876         /* DTLPWROMAEBKVF */
1877         { SST(0x40, 0x80, SS_RDEF,
1878             "Diagnostic failure: ASCQ = Component ID") },
1879         /* DTLPWROMAEBKVF */
1880         { SST(0x40, 0xFF, SS_RDEF | SSQ_RANGE,
1881             NULL) },                    /* Range 0x80->0xFF */
1882         /* D              */
1883         { SST(0x41, 0x00, SS_RDEF,
1884             "Data path failure") },     /* deprecated - use 40 NN instead */
1885         /* D              */
1886         { SST(0x42, 0x00, SS_RDEF,
1887             "Power-on or self-test failure") },
1888                                         /* deprecated - use 40 NN instead */
1889         /* DTLPWROMAEBKVF */
1890         { SST(0x43, 0x00, SS_RDEF,
1891             "Message error") },
1892         /* DTLPWROMAEBKVF */
1893         { SST(0x44, 0x00, SS_RDEF,
1894             "Internal target failure") },
1895         /* DT        B    */
1896         { SST(0x44, 0x71, SS_RDEF,      /* XXX TBD */
1897             "ATA device failed set features") },
1898         /* DTLPWROMAEBKVF */
1899         { SST(0x45, 0x00, SS_RDEF,
1900             "Select or reselect failure") },
1901         /* DTLPWROM  BK   */
1902         { SST(0x46, 0x00, SS_RDEF,
1903             "Unsuccessful soft reset") },
1904         /* DTLPWROMAEBKVF */
1905         { SST(0x47, 0x00, SS_RDEF,
1906             "SCSI parity error") },
1907         /* DTLPWROMAEBKVF */
1908         { SST(0x47, 0x01, SS_RDEF,      /* XXX TBD */
1909             "Data phase CRC error detected") },
1910         /* DTLPWROMAEBKVF */
1911         { SST(0x47, 0x02, SS_RDEF,      /* XXX TBD */
1912             "SCSI parity error detected during ST data phase") },
1913         /* DTLPWROMAEBKVF */
1914         { SST(0x47, 0x03, SS_RDEF,      /* XXX TBD */
1915             "Information unit iuCRC error detected") },
1916         /* DTLPWROMAEBKVF */
1917         { SST(0x47, 0x04, SS_RDEF,      /* XXX TBD */
1918             "Asynchronous information protection error detected") },
1919         /* DTLPWROMAEBKVF */
1920         { SST(0x47, 0x05, SS_RDEF,      /* XXX TBD */
1921             "Protocol service CRC error") },
1922         /* DT     MAEBKVF */
1923         { SST(0x47, 0x06, SS_RDEF,      /* XXX TBD */
1924             "PHY test function in progress") },
1925         /* DT PWROMAEBK   */
1926         { SST(0x47, 0x7F, SS_RDEF,      /* XXX TBD */
1927             "Some commands cleared by iSCSI protocol event") },
1928         /* DTLPWROMAEBKVF */
1929         { SST(0x48, 0x00, SS_RDEF,
1930             "Initiator detected error message received") },
1931         /* DTLPWROMAEBKVF */
1932         { SST(0x49, 0x00, SS_RDEF,
1933             "Invalid message error") },
1934         /* DTLPWROMAEBKVF */
1935         { SST(0x4A, 0x00, SS_RDEF,
1936             "Command phase error") },
1937         /* DTLPWROMAEBKVF */
1938         { SST(0x4B, 0x00, SS_RDEF,
1939             "Data phase error") },
1940         /* DT PWROMAEBK   */
1941         { SST(0x4B, 0x01, SS_RDEF,      /* XXX TBD */
1942             "Invalid target port transfer tag received") },
1943         /* DT PWROMAEBK   */
1944         { SST(0x4B, 0x02, SS_RDEF,      /* XXX TBD */
1945             "Too much write data") },
1946         /* DT PWROMAEBK   */
1947         { SST(0x4B, 0x03, SS_RDEF,      /* XXX TBD */
1948             "ACK/NAK timeout") },
1949         /* DT PWROMAEBK   */
1950         { SST(0x4B, 0x04, SS_RDEF,      /* XXX TBD */
1951             "NAK received") },
1952         /* DT PWROMAEBK   */
1953         { SST(0x4B, 0x05, SS_RDEF,      /* XXX TBD */
1954             "Data offset error") },
1955         /* DT PWROMAEBK   */
1956         { SST(0x4B, 0x06, SS_RDEF,      /* XXX TBD */
1957             "Initiator response timeout") },
1958         /* DTLPWROMAEBKVF */
1959         { SST(0x4C, 0x00, SS_RDEF,
1960             "Logical unit failed self-configuration") },
1961         /* DTLPWROMAEBKVF */
1962         { SST(0x4D, 0x00, SS_RDEF,
1963             "Tagged overlapped commands: ASCQ = Queue tag ID") },
1964         /* DTLPWROMAEBKVF */
1965         { SST(0x4D, 0xFF, SS_RDEF | SSQ_RANGE,
1966             NULL) },                    /* Range 0x00->0xFF */
1967         /* DTLPWROMAEBKVF */
1968         { SST(0x4E, 0x00, SS_RDEF,
1969             "Overlapped commands attempted") },
1970         /*  T             */
1971         { SST(0x50, 0x00, SS_RDEF,
1972             "Write append error") },
1973         /*  T             */
1974         { SST(0x50, 0x01, SS_RDEF,
1975             "Write append position error") },
1976         /*  T             */
1977         { SST(0x50, 0x02, SS_RDEF,
1978             "Position error related to timing") },
1979         /*  T   RO        */
1980         { SST(0x51, 0x00, SS_RDEF,
1981             "Erase failure") },
1982         /*      R         */
1983         { SST(0x51, 0x01, SS_RDEF,      /* XXX TBD */
1984             "Erase failure - incomplete erase operation detected") },
1985         /*  T             */
1986         { SST(0x52, 0x00, SS_RDEF,
1987             "Cartridge fault") },
1988         /* DTL WROM  BK   */
1989         { SST(0x53, 0x00, SS_RDEF,
1990             "Media load or eject failed") },
1991         /*  T             */
1992         { SST(0x53, 0x01, SS_RDEF,
1993             "Unload tape failure") },
1994         /* DT  WROM  BK   */
1995         { SST(0x53, 0x02, SS_RDEF,
1996             "Medium removal prevented") },
1997         /*        M       */
1998         { SST(0x53, 0x03, SS_RDEF,      /* XXX TBD */
1999             "Medium removal prevented by data transfer element") },
2000         /*  T             */
2001         { SST(0x53, 0x04, SS_RDEF,      /* XXX TBD */
2002             "Medium thread or unthread failure") },
2003         /*    P           */
2004         { SST(0x54, 0x00, SS_RDEF,
2005             "SCSI to host system interface failure") },
2006         /*    P           */
2007         { SST(0x55, 0x00, SS_RDEF,
2008             "System resource failure") },
2009         /* D     O   BK   */
2010         { SST(0x55, 0x01, SS_FATAL | ENOSPC,
2011             "System buffer full") },
2012         /* DTLPWROMAE K   */
2013         { SST(0x55, 0x02, SS_RDEF,      /* XXX TBD */
2014             "Insufficient reservation resources") },
2015         /* DTLPWROMAE K   */
2016         { SST(0x55, 0x03, SS_RDEF,      /* XXX TBD */
2017             "Insufficient resources") },
2018         /* DTLPWROMAE K   */
2019         { SST(0x55, 0x04, SS_RDEF,      /* XXX TBD */
2020             "Insufficient registration resources") },
2021         /* DT PWROMAEBK   */
2022         { SST(0x55, 0x05, SS_RDEF,      /* XXX TBD */
2023             "Insufficient access control resources") },
2024         /* DT  WROM  B    */
2025         { SST(0x55, 0x06, SS_RDEF,      /* XXX TBD */
2026             "Auxiliary memory out of space") },
2027         /*              F */
2028         { SST(0x55, 0x07, SS_RDEF,      /* XXX TBD */
2029             "Quota error") },
2030         /*  T             */
2031         { SST(0x55, 0x08, SS_RDEF,      /* XXX TBD */
2032             "Maximum number of supplemental decryption keys exceeded") },
2033         /*        M       */
2034         { SST(0x55, 0x09, SS_RDEF,      /* XXX TBD */
2035             "Medium auxiliary memory not accessible") },
2036         /*        M       */
2037         { SST(0x55, 0x0A, SS_RDEF,      /* XXX TBD */
2038             "Data currently unavailable") },
2039         /*      R         */
2040         { SST(0x57, 0x00, SS_RDEF,
2041             "Unable to recover table-of-contents") },
2042         /*       O        */
2043         { SST(0x58, 0x00, SS_RDEF,
2044             "Generation does not exist") },
2045         /*       O        */
2046         { SST(0x59, 0x00, SS_RDEF,
2047             "Updated block read") },
2048         /* DTLPWRO   BK   */
2049         { SST(0x5A, 0x00, SS_RDEF,
2050             "Operator request or state change input") },
2051         /* DT  WROM  BK   */
2052         { SST(0x5A, 0x01, SS_RDEF,
2053             "Operator medium removal request") },
2054         /* DT  WRO A BK   */
2055         { SST(0x5A, 0x02, SS_RDEF,
2056             "Operator selected write protect") },
2057         /* DT  WRO A BK   */
2058         { SST(0x5A, 0x03, SS_RDEF,
2059             "Operator selected write permit") },
2060         /* DTLPWROM   K   */
2061         { SST(0x5B, 0x00, SS_RDEF,
2062             "Log exception") },
2063         /* DTLPWROM   K   */
2064         { SST(0x5B, 0x01, SS_RDEF,
2065             "Threshold condition met") },
2066         /* DTLPWROM   K   */
2067         { SST(0x5B, 0x02, SS_RDEF,
2068             "Log counter at maximum") },
2069         /* DTLPWROM   K   */
2070         { SST(0x5B, 0x03, SS_RDEF,
2071             "Log list codes exhausted") },
2072         /* D     O        */
2073         { SST(0x5C, 0x00, SS_RDEF,
2074             "RPL status change") },
2075         /* D     O        */
2076         { SST(0x5C, 0x01, SS_NOP | SSQ_PRINT_SENSE,
2077             "Spindles synchronized") },
2078         /* D     O        */
2079         { SST(0x5C, 0x02, SS_RDEF,
2080             "Spindles not synchronized") },
2081         /* DTLPWROMAEBKVF */
2082         { SST(0x5D, 0x00, SS_RDEF,
2083             "Failure prediction threshold exceeded") },
2084         /*      R    B    */
2085         { SST(0x5D, 0x01, SS_RDEF,      /* XXX TBD */
2086             "Media failure prediction threshold exceeded") },
2087         /*      R         */
2088         { SST(0x5D, 0x02, SS_RDEF,      /* XXX TBD */
2089             "Logical unit failure prediction threshold exceeded") },
2090         /*      R         */
2091         { SST(0x5D, 0x03, SS_RDEF,      /* XXX TBD */
2092             "Spare area exhaustion prediction threshold exceeded") },
2093         /* D         B    */
2094         { SST(0x5D, 0x10, SS_RDEF,      /* XXX TBD */
2095             "Hardware impending failure general hard drive failure") },
2096         /* D         B    */
2097         { SST(0x5D, 0x11, SS_RDEF,      /* XXX TBD */
2098             "Hardware impending failure drive error rate too high") },
2099         /* D         B    */
2100         { SST(0x5D, 0x12, SS_RDEF,      /* XXX TBD */
2101             "Hardware impending failure data error rate too high") },
2102         /* D         B    */
2103         { SST(0x5D, 0x13, SS_RDEF,      /* XXX TBD */
2104             "Hardware impending failure seek error rate too high") },
2105         /* D         B    */
2106         { SST(0x5D, 0x14, SS_RDEF,      /* XXX TBD */
2107             "Hardware impending failure too many block reassigns") },
2108         /* D         B    */
2109         { SST(0x5D, 0x15, SS_RDEF,      /* XXX TBD */
2110             "Hardware impending failure access times too high") },
2111         /* D         B    */
2112         { SST(0x5D, 0x16, SS_RDEF,      /* XXX TBD */
2113             "Hardware impending failure start unit times too high") },
2114         /* D         B    */
2115         { SST(0x5D, 0x17, SS_RDEF,      /* XXX TBD */
2116             "Hardware impending failure channel parametrics") },
2117         /* D         B    */
2118         { SST(0x5D, 0x18, SS_RDEF,      /* XXX TBD */
2119             "Hardware impending failure controller detected") },
2120         /* D         B    */
2121         { SST(0x5D, 0x19, SS_RDEF,      /* XXX TBD */
2122             "Hardware impending failure throughput performance") },
2123         /* D         B    */
2124         { SST(0x5D, 0x1A, SS_RDEF,      /* XXX TBD */
2125             "Hardware impending failure seek time performance") },
2126         /* D         B    */
2127         { SST(0x5D, 0x1B, SS_RDEF,      /* XXX TBD */
2128             "Hardware impending failure spin-up retry count") },
2129         /* D         B    */
2130         { SST(0x5D, 0x1C, SS_RDEF,      /* XXX TBD */
2131             "Hardware impending failure drive calibration retry count") },
2132         /* D         B    */
2133         { SST(0x5D, 0x20, SS_RDEF,      /* XXX TBD */
2134             "Controller impending failure general hard drive failure") },
2135         /* D         B    */
2136         { SST(0x5D, 0x21, SS_RDEF,      /* XXX TBD */
2137             "Controller impending failure drive error rate too high") },
2138         /* D         B    */
2139         { SST(0x5D, 0x22, SS_RDEF,      /* XXX TBD */
2140             "Controller impending failure data error rate too high") },
2141         /* D         B    */
2142         { SST(0x5D, 0x23, SS_RDEF,      /* XXX TBD */
2143             "Controller impending failure seek error rate too high") },
2144         /* D         B    */
2145         { SST(0x5D, 0x24, SS_RDEF,      /* XXX TBD */
2146             "Controller impending failure too many block reassigns") },
2147         /* D         B    */
2148         { SST(0x5D, 0x25, SS_RDEF,      /* XXX TBD */
2149             "Controller impending failure access times too high") },
2150         /* D         B    */
2151         { SST(0x5D, 0x26, SS_RDEF,      /* XXX TBD */
2152             "Controller impending failure start unit times too high") },
2153         /* D         B    */
2154         { SST(0x5D, 0x27, SS_RDEF,      /* XXX TBD */
2155             "Controller impending failure channel parametrics") },
2156         /* D         B    */
2157         { SST(0x5D, 0x28, SS_RDEF,      /* XXX TBD */
2158             "Controller impending failure controller detected") },
2159         /* D         B    */
2160         { SST(0x5D, 0x29, SS_RDEF,      /* XXX TBD */
2161             "Controller impending failure throughput performance") },
2162         /* D         B    */
2163         { SST(0x5D, 0x2A, SS_RDEF,      /* XXX TBD */
2164             "Controller impending failure seek time performance") },
2165         /* D         B    */
2166         { SST(0x5D, 0x2B, SS_RDEF,      /* XXX TBD */
2167             "Controller impending failure spin-up retry count") },
2168         /* D         B    */
2169         { SST(0x5D, 0x2C, SS_RDEF,      /* XXX TBD */
2170             "Controller impending failure drive calibration retry count") },
2171         /* D         B    */
2172         { SST(0x5D, 0x30, SS_RDEF,      /* XXX TBD */
2173             "Data channel impending failure general hard drive failure") },
2174         /* D         B    */
2175         { SST(0x5D, 0x31, SS_RDEF,      /* XXX TBD */
2176             "Data channel impending failure drive error rate too high") },
2177         /* D         B    */
2178         { SST(0x5D, 0x32, SS_RDEF,      /* XXX TBD */
2179             "Data channel impending failure data error rate too high") },
2180         /* D         B    */
2181         { SST(0x5D, 0x33, SS_RDEF,      /* XXX TBD */
2182             "Data channel impending failure seek error rate too high") },
2183         /* D         B    */
2184         { SST(0x5D, 0x34, SS_RDEF,      /* XXX TBD */
2185             "Data channel impending failure too many block reassigns") },
2186         /* D         B    */
2187         { SST(0x5D, 0x35, SS_RDEF,      /* XXX TBD */
2188             "Data channel impending failure access times too high") },
2189         /* D         B    */
2190         { SST(0x5D, 0x36, SS_RDEF,      /* XXX TBD */
2191             "Data channel impending failure start unit times too high") },
2192         /* D         B    */
2193         { SST(0x5D, 0x37, SS_RDEF,      /* XXX TBD */
2194             "Data channel impending failure channel parametrics") },
2195         /* D         B    */
2196         { SST(0x5D, 0x38, SS_RDEF,      /* XXX TBD */
2197             "Data channel impending failure controller detected") },
2198         /* D         B    */
2199         { SST(0x5D, 0x39, SS_RDEF,      /* XXX TBD */
2200             "Data channel impending failure throughput performance") },
2201         /* D         B    */
2202         { SST(0x5D, 0x3A, SS_RDEF,      /* XXX TBD */
2203             "Data channel impending failure seek time performance") },
2204         /* D         B    */
2205         { SST(0x5D, 0x3B, SS_RDEF,      /* XXX TBD */
2206             "Data channel impending failure spin-up retry count") },
2207         /* D         B    */
2208         { SST(0x5D, 0x3C, SS_RDEF,      /* XXX TBD */
2209             "Data channel impending failure drive calibration retry count") },
2210         /* D         B    */
2211         { SST(0x5D, 0x40, SS_RDEF,      /* XXX TBD */
2212             "Servo impending failure general hard drive failure") },
2213         /* D         B    */
2214         { SST(0x5D, 0x41, SS_RDEF,      /* XXX TBD */
2215             "Servo impending failure drive error rate too high") },
2216         /* D         B    */
2217         { SST(0x5D, 0x42, SS_RDEF,      /* XXX TBD */
2218             "Servo impending failure data error rate too high") },
2219         /* D         B    */
2220         { SST(0x5D, 0x43, SS_RDEF,      /* XXX TBD */
2221             "Servo impending failure seek error rate too high") },
2222         /* D         B    */
2223         { SST(0x5D, 0x44, SS_RDEF,      /* XXX TBD */
2224             "Servo impending failure too many block reassigns") },
2225         /* D         B    */
2226         { SST(0x5D, 0x45, SS_RDEF,      /* XXX TBD */
2227             "Servo impending failure access times too high") },
2228         /* D         B    */
2229         { SST(0x5D, 0x46, SS_RDEF,      /* XXX TBD */
2230             "Servo impending failure start unit times too high") },
2231         /* D         B    */
2232         { SST(0x5D, 0x47, SS_RDEF,      /* XXX TBD */
2233             "Servo impending failure channel parametrics") },
2234         /* D         B    */
2235         { SST(0x5D, 0x48, SS_RDEF,      /* XXX TBD */
2236             "Servo impending failure controller detected") },
2237         /* D         B    */
2238         { SST(0x5D, 0x49, SS_RDEF,      /* XXX TBD */
2239             "Servo impending failure throughput performance") },
2240         /* D         B    */
2241         { SST(0x5D, 0x4A, SS_RDEF,      /* XXX TBD */
2242             "Servo impending failure seek time performance") },
2243         /* D         B    */
2244         { SST(0x5D, 0x4B, SS_RDEF,      /* XXX TBD */
2245             "Servo impending failure spin-up retry count") },
2246         /* D         B    */
2247         { SST(0x5D, 0x4C, SS_RDEF,      /* XXX TBD */
2248             "Servo impending failure drive calibration retry count") },
2249         /* D         B    */
2250         { SST(0x5D, 0x50, SS_RDEF,      /* XXX TBD */
2251             "Spindle impending failure general hard drive failure") },
2252         /* D         B    */
2253         { SST(0x5D, 0x51, SS_RDEF,      /* XXX TBD */
2254             "Spindle impending failure drive error rate too high") },
2255         /* D         B    */
2256         { SST(0x5D, 0x52, SS_RDEF,      /* XXX TBD */
2257             "Spindle impending failure data error rate too high") },
2258         /* D         B    */
2259         { SST(0x5D, 0x53, SS_RDEF,      /* XXX TBD */
2260             "Spindle impending failure seek error rate too high") },
2261         /* D         B    */
2262         { SST(0x5D, 0x54, SS_RDEF,      /* XXX TBD */
2263             "Spindle impending failure too many block reassigns") },
2264         /* D         B    */
2265         { SST(0x5D, 0x55, SS_RDEF,      /* XXX TBD */
2266             "Spindle impending failure access times too high") },
2267         /* D         B    */
2268         { SST(0x5D, 0x56, SS_RDEF,      /* XXX TBD */
2269             "Spindle impending failure start unit times too high") },
2270         /* D         B    */
2271         { SST(0x5D, 0x57, SS_RDEF,      /* XXX TBD */
2272             "Spindle impending failure channel parametrics") },
2273         /* D         B    */
2274         { SST(0x5D, 0x58, SS_RDEF,      /* XXX TBD */
2275             "Spindle impending failure controller detected") },
2276         /* D         B    */
2277         { SST(0x5D, 0x59, SS_RDEF,      /* XXX TBD */
2278             "Spindle impending failure throughput performance") },
2279         /* D         B    */
2280         { SST(0x5D, 0x5A, SS_RDEF,      /* XXX TBD */
2281             "Spindle impending failure seek time performance") },
2282         /* D         B    */
2283         { SST(0x5D, 0x5B, SS_RDEF,      /* XXX TBD */
2284             "Spindle impending failure spin-up retry count") },
2285         /* D         B    */
2286         { SST(0x5D, 0x5C, SS_RDEF,      /* XXX TBD */
2287             "Spindle impending failure drive calibration retry count") },
2288         /* D         B    */
2289         { SST(0x5D, 0x60, SS_RDEF,      /* XXX TBD */
2290             "Firmware impending failure general hard drive failure") },
2291         /* D         B    */
2292         { SST(0x5D, 0x61, SS_RDEF,      /* XXX TBD */
2293             "Firmware impending failure drive error rate too high") },
2294         /* D         B    */
2295         { SST(0x5D, 0x62, SS_RDEF,      /* XXX TBD */
2296             "Firmware impending failure data error rate too high") },
2297         /* D         B    */
2298         { SST(0x5D, 0x63, SS_RDEF,      /* XXX TBD */
2299             "Firmware impending failure seek error rate too high") },
2300         /* D         B    */
2301         { SST(0x5D, 0x64, SS_RDEF,      /* XXX TBD */
2302             "Firmware impending failure too many block reassigns") },
2303         /* D         B    */
2304         { SST(0x5D, 0x65, SS_RDEF,      /* XXX TBD */
2305             "Firmware impending failure access times too high") },
2306         /* D         B    */
2307         { SST(0x5D, 0x66, SS_RDEF,      /* XXX TBD */
2308             "Firmware impending failure start unit times too high") },
2309         /* D         B    */
2310         { SST(0x5D, 0x67, SS_RDEF,      /* XXX TBD */
2311             "Firmware impending failure channel parametrics") },
2312         /* D         B    */
2313         { SST(0x5D, 0x68, SS_RDEF,      /* XXX TBD */
2314             "Firmware impending failure controller detected") },
2315         /* D         B    */
2316         { SST(0x5D, 0x69, SS_RDEF,      /* XXX TBD */
2317             "Firmware impending failure throughput performance") },
2318         /* D         B    */
2319         { SST(0x5D, 0x6A, SS_RDEF,      /* XXX TBD */
2320             "Firmware impending failure seek time performance") },
2321         /* D         B    */
2322         { SST(0x5D, 0x6B, SS_RDEF,      /* XXX TBD */
2323             "Firmware impending failure spin-up retry count") },
2324         /* D         B    */
2325         { SST(0x5D, 0x6C, SS_RDEF,      /* XXX TBD */
2326             "Firmware impending failure drive calibration retry count") },
2327         /* DTLPWROMAEBKVF */
2328         { SST(0x5D, 0xFF, SS_RDEF,
2329             "Failure prediction threshold exceeded (false)") },
2330         /* DTLPWRO A  K   */
2331         { SST(0x5E, 0x00, SS_RDEF,
2332             "Low power condition on") },
2333         /* DTLPWRO A  K   */
2334         { SST(0x5E, 0x01, SS_RDEF,
2335             "Idle condition activated by timer") },
2336         /* DTLPWRO A  K   */
2337         { SST(0x5E, 0x02, SS_RDEF,
2338             "Standby condition activated by timer") },
2339         /* DTLPWRO A  K   */
2340         { SST(0x5E, 0x03, SS_RDEF,
2341             "Idle condition activated by command") },
2342         /* DTLPWRO A  K   */
2343         { SST(0x5E, 0x04, SS_RDEF,
2344             "Standby condition activated by command") },
2345         /*           B    */
2346         { SST(0x5E, 0x41, SS_RDEF,      /* XXX TBD */
2347             "Power state change to active") },
2348         /*           B    */
2349         { SST(0x5E, 0x42, SS_RDEF,      /* XXX TBD */
2350             "Power state change to idle") },
2351         /*           B    */
2352         { SST(0x5E, 0x43, SS_RDEF,      /* XXX TBD */
2353             "Power state change to standby") },
2354         /*           B    */
2355         { SST(0x5E, 0x45, SS_RDEF,      /* XXX TBD */
2356             "Power state change to sleep") },
2357         /*           BK   */
2358         { SST(0x5E, 0x47, SS_RDEF,      /* XXX TBD */
2359             "Power state change to device control") },
2360         /*                */
2361         { SST(0x60, 0x00, SS_RDEF,
2362             "Lamp failure") },
2363         /*                */
2364         { SST(0x61, 0x00, SS_RDEF,
2365             "Video acquisition error") },
2366         /*                */
2367         { SST(0x61, 0x01, SS_RDEF,
2368             "Unable to acquire video") },
2369         /*                */
2370         { SST(0x61, 0x02, SS_RDEF,
2371             "Out of focus") },
2372         /*                */
2373         { SST(0x62, 0x00, SS_RDEF,
2374             "Scan head positioning error") },
2375         /*      R         */
2376         { SST(0x63, 0x00, SS_RDEF,
2377             "End of user area encountered on this track") },
2378         /*      R         */
2379         { SST(0x63, 0x01, SS_FATAL | ENOSPC,
2380             "Packet does not fit in available space") },
2381         /*      R         */
2382         { SST(0x64, 0x00, SS_FATAL | ENXIO,
2383             "Illegal mode for this track") },
2384         /*      R         */
2385         { SST(0x64, 0x01, SS_RDEF,
2386             "Invalid packet size") },
2387         /* DTLPWROMAEBKVF */
2388         { SST(0x65, 0x00, SS_RDEF,
2389             "Voltage fault") },
2390         /*                */
2391         { SST(0x66, 0x00, SS_RDEF,
2392             "Automatic document feeder cover up") },
2393         /*                */
2394         { SST(0x66, 0x01, SS_RDEF,
2395             "Automatic document feeder lift up") },
2396         /*                */
2397         { SST(0x66, 0x02, SS_RDEF,
2398             "Document jam in automatic document feeder") },
2399         /*                */
2400         { SST(0x66, 0x03, SS_RDEF,
2401             "Document miss feed automatic in document feeder") },
2402         /*         A      */
2403         { SST(0x67, 0x00, SS_RDEF,
2404             "Configuration failure") },
2405         /*         A      */
2406         { SST(0x67, 0x01, SS_RDEF,
2407             "Configuration of incapable logical units failed") },
2408         /*         A      */
2409         { SST(0x67, 0x02, SS_RDEF,
2410             "Add logical unit failed") },
2411         /*         A      */
2412         { SST(0x67, 0x03, SS_RDEF,
2413             "Modification of logical unit failed") },
2414         /*         A      */
2415         { SST(0x67, 0x04, SS_RDEF,
2416             "Exchange of logical unit failed") },
2417         /*         A      */
2418         { SST(0x67, 0x05, SS_RDEF,
2419             "Remove of logical unit failed") },
2420         /*         A      */
2421         { SST(0x67, 0x06, SS_RDEF,
2422             "Attachment of logical unit failed") },
2423         /*         A      */
2424         { SST(0x67, 0x07, SS_RDEF,
2425             "Creation of logical unit failed") },
2426         /*         A      */
2427         { SST(0x67, 0x08, SS_RDEF,      /* XXX TBD */
2428             "Assign failure occurred") },
2429         /*         A      */
2430         { SST(0x67, 0x09, SS_RDEF,      /* XXX TBD */
2431             "Multiply assigned logical unit") },
2432         /* DTLPWROMAEBKVF */
2433         { SST(0x67, 0x0A, SS_RDEF,      /* XXX TBD */
2434             "Set target port groups command failed") },
2435         /* DT        B    */
2436         { SST(0x67, 0x0B, SS_RDEF,      /* XXX TBD */
2437             "ATA device feature not enabled") },
2438         /*         A      */
2439         { SST(0x68, 0x00, SS_RDEF,
2440             "Logical unit not configured") },
2441         /*         A      */
2442         { SST(0x69, 0x00, SS_RDEF,
2443             "Data loss on logical unit") },
2444         /*         A      */
2445         { SST(0x69, 0x01, SS_RDEF,
2446             "Multiple logical unit failures") },
2447         /*         A      */
2448         { SST(0x69, 0x02, SS_RDEF,
2449             "Parity/data mismatch") },
2450         /*         A      */
2451         { SST(0x6A, 0x00, SS_RDEF,
2452             "Informational, refer to log") },
2453         /*         A      */
2454         { SST(0x6B, 0x00, SS_RDEF,
2455             "State change has occurred") },
2456         /*         A      */
2457         { SST(0x6B, 0x01, SS_RDEF,
2458             "Redundancy level got better") },
2459         /*         A      */
2460         { SST(0x6B, 0x02, SS_RDEF,
2461             "Redundancy level got worse") },
2462         /*         A      */
2463         { SST(0x6C, 0x00, SS_RDEF,
2464             "Rebuild failure occurred") },
2465         /*         A      */
2466         { SST(0x6D, 0x00, SS_RDEF,
2467             "Recalculate failure occurred") },
2468         /*         A      */
2469         { SST(0x6E, 0x00, SS_RDEF,
2470             "Command to logical unit failed") },
2471         /*      R         */
2472         { SST(0x6F, 0x00, SS_RDEF,      /* XXX TBD */
2473             "Copy protection key exchange failure - authentication failure") },
2474         /*      R         */
2475         { SST(0x6F, 0x01, SS_RDEF,      /* XXX TBD */
2476             "Copy protection key exchange failure - key not present") },
2477         /*      R         */
2478         { SST(0x6F, 0x02, SS_RDEF,      /* XXX TBD */
2479             "Copy protection key exchange failure - key not established") },
2480         /*      R         */
2481         { SST(0x6F, 0x03, SS_RDEF,      /* XXX TBD */
2482             "Read of scrambled sector without authentication") },
2483         /*      R         */
2484         { SST(0x6F, 0x04, SS_RDEF,      /* XXX TBD */
2485             "Media region code is mismatched to logical unit region") },
2486         /*      R         */
2487         { SST(0x6F, 0x05, SS_RDEF,      /* XXX TBD */
2488             "Drive region must be permanent/region reset count error") },
2489         /*      R         */
2490         { SST(0x6F, 0x06, SS_RDEF,      /* XXX TBD */
2491             "Insufficient block count for binding NONCE recording") },
2492         /*      R         */
2493         { SST(0x6F, 0x07, SS_RDEF,      /* XXX TBD */
2494             "Conflict in binding NONCE recording") },
2495         /*  T             */
2496         { SST(0x70, 0x00, SS_RDEF,
2497             "Decompression exception short: ASCQ = Algorithm ID") },
2498         /*  T             */
2499         { SST(0x70, 0xFF, SS_RDEF | SSQ_RANGE,
2500             NULL) },                    /* Range 0x00 -> 0xFF */
2501         /*  T             */
2502         { SST(0x71, 0x00, SS_RDEF,
2503             "Decompression exception long: ASCQ = Algorithm ID") },
2504         /*  T             */
2505         { SST(0x71, 0xFF, SS_RDEF | SSQ_RANGE,
2506             NULL) },                    /* Range 0x00 -> 0xFF */
2507         /*      R         */
2508         { SST(0x72, 0x00, SS_RDEF,
2509             "Session fixation error") },
2510         /*      R         */
2511         { SST(0x72, 0x01, SS_RDEF,
2512             "Session fixation error writing lead-in") },
2513         /*      R         */
2514         { SST(0x72, 0x02, SS_RDEF,
2515             "Session fixation error writing lead-out") },
2516         /*      R         */
2517         { SST(0x72, 0x03, SS_RDEF,
2518             "Session fixation error - incomplete track in session") },
2519         /*      R         */
2520         { SST(0x72, 0x04, SS_RDEF,
2521             "Empty or partially written reserved track") },
2522         /*      R         */
2523         { SST(0x72, 0x05, SS_RDEF,      /* XXX TBD */
2524             "No more track reservations allowed") },
2525         /*      R         */
2526         { SST(0x72, 0x06, SS_RDEF,      /* XXX TBD */
2527             "RMZ extension is not allowed") },
2528         /*      R         */
2529         { SST(0x72, 0x07, SS_RDEF,      /* XXX TBD */
2530             "No more test zone extensions are allowed") },
2531         /*      R         */
2532         { SST(0x73, 0x00, SS_RDEF,
2533             "CD control error") },
2534         /*      R         */
2535         { SST(0x73, 0x01, SS_RDEF,
2536             "Power calibration area almost full") },
2537         /*      R         */
2538         { SST(0x73, 0x02, SS_FATAL | ENOSPC,
2539             "Power calibration area is full") },
2540         /*      R         */
2541         { SST(0x73, 0x03, SS_RDEF,
2542             "Power calibration area error") },
2543         /*      R         */
2544         { SST(0x73, 0x04, SS_RDEF,
2545             "Program memory area update failure") },
2546         /*      R         */
2547         { SST(0x73, 0x05, SS_RDEF,
2548             "Program memory area is full") },
2549         /*      R         */
2550         { SST(0x73, 0x06, SS_RDEF,      /* XXX TBD */
2551             "RMA/PMA is almost full") },
2552         /*      R         */
2553         { SST(0x73, 0x10, SS_RDEF,      /* XXX TBD */
2554             "Current power calibration area almost full") },
2555         /*      R         */
2556         { SST(0x73, 0x11, SS_RDEF,      /* XXX TBD */
2557             "Current power calibration area is full") },
2558         /*      R         */
2559         { SST(0x73, 0x17, SS_RDEF,      /* XXX TBD */
2560             "RDZ is full") },
2561         /*  T             */
2562         { SST(0x74, 0x00, SS_RDEF,      /* XXX TBD */
2563             "Security error") },
2564         /*  T             */
2565         { SST(0x74, 0x01, SS_RDEF,      /* XXX TBD */
2566             "Unable to decrypt data") },
2567         /*  T             */
2568         { SST(0x74, 0x02, SS_RDEF,      /* XXX TBD */
2569             "Unencrypted data encountered while decrypting") },
2570         /*  T             */
2571         { SST(0x74, 0x03, SS_RDEF,      /* XXX TBD */
2572             "Incorrect data encryption key") },
2573         /*  T             */
2574         { SST(0x74, 0x04, SS_RDEF,      /* XXX TBD */
2575             "Cryptographic integrity validation failed") },
2576         /*  T             */
2577         { SST(0x74, 0x05, SS_RDEF,      /* XXX TBD */
2578             "Error decrypting data") },
2579         /*  T             */
2580         { SST(0x74, 0x06, SS_RDEF,      /* XXX TBD */
2581             "Unknown signature verification key") },
2582         /*  T             */
2583         { SST(0x74, 0x07, SS_RDEF,      /* XXX TBD */
2584             "Encryption parameters not usable") },
2585         /* DT   R M E  VF */
2586         { SST(0x74, 0x08, SS_RDEF,      /* XXX TBD */
2587             "Digital signature validation failure") },
2588         /*  T             */
2589         { SST(0x74, 0x09, SS_RDEF,      /* XXX TBD */
2590             "Encryption mode mismatch on read") },
2591         /*  T             */
2592         { SST(0x74, 0x0A, SS_RDEF,      /* XXX TBD */
2593             "Encrypted block not raw read enabled") },
2594         /*  T             */
2595         { SST(0x74, 0x0B, SS_RDEF,      /* XXX TBD */
2596             "Incorrect encryption parameters") },
2597         /* DT   R MAEBKV  */
2598         { SST(0x74, 0x0C, SS_RDEF,      /* XXX TBD */
2599             "Unable to decrypt parameter list") },
2600         /*  T             */
2601         { SST(0x74, 0x0D, SS_RDEF,      /* XXX TBD */
2602             "Encryption algorithm disabled") },
2603         /* DT   R MAEBKV  */
2604         { SST(0x74, 0x10, SS_RDEF,      /* XXX TBD */
2605             "SA creation parameter value invalid") },
2606         /* DT   R MAEBKV  */
2607         { SST(0x74, 0x11, SS_RDEF,      /* XXX TBD */
2608             "SA creation parameter value rejected") },
2609         /* DT   R MAEBKV  */
2610         { SST(0x74, 0x12, SS_RDEF,      /* XXX TBD */
2611             "Invalid SA usage") },
2612         /*  T             */
2613         { SST(0x74, 0x21, SS_RDEF,      /* XXX TBD */
2614             "Data encryption configuration prevented") },
2615         /* DT   R MAEBKV  */
2616         { SST(0x74, 0x30, SS_RDEF,      /* XXX TBD */
2617             "SA creation parameter not supported") },
2618         /* DT   R MAEBKV  */
2619         { SST(0x74, 0x40, SS_RDEF,      /* XXX TBD */
2620             "Authentication failed") },
2621         /*             V  */
2622         { SST(0x74, 0x61, SS_RDEF,      /* XXX TBD */
2623             "External data encryption key manager access error") },
2624         /*             V  */
2625         { SST(0x74, 0x62, SS_RDEF,      /* XXX TBD */
2626             "External data encryption key manager error") },
2627         /*             V  */
2628         { SST(0x74, 0x63, SS_RDEF,      /* XXX TBD */
2629             "External data encryption key not found") },
2630         /*             V  */
2631         { SST(0x74, 0x64, SS_RDEF,      /* XXX TBD */
2632             "External data encryption request not authorized") },
2633         /*  T             */
2634         { SST(0x74, 0x6E, SS_RDEF,      /* XXX TBD */
2635             "External data encryption control timeout") },
2636         /*  T             */
2637         { SST(0x74, 0x6F, SS_RDEF,      /* XXX TBD */
2638             "External data encryption control error") },
2639         /* DT   R M E  V  */
2640         { SST(0x74, 0x71, SS_RDEF,      /* XXX TBD */
2641             "Logical unit access not authorized") },
2642         /* D              */
2643         { SST(0x74, 0x79, SS_RDEF,      /* XXX TBD */
2644             "Security conflict in translated device") }
2645 };
2646
2647 const int asc_table_size = NELEM(asc_table);
2648
2649 struct asc_key
2650 {
2651         int asc;
2652         int ascq;
2653 };
2654
2655 static int
2656 ascentrycomp(const void *key, const void *member)
2657 {
2658         int asc;
2659         int ascq;
2660         const struct asc_table_entry *table_entry;
2661
2662         asc = ((const struct asc_key *)key)->asc;
2663         ascq = ((const struct asc_key *)key)->ascq;
2664         table_entry = (const struct asc_table_entry *)member;
2665
2666         if (asc >= table_entry->asc) {
2667
2668                 if (asc > table_entry->asc)
2669                         return (1);
2670
2671                 if (ascq <= table_entry->ascq) {
2672                         /* Check for ranges */
2673                         if (ascq == table_entry->ascq
2674                          || ((table_entry->action & SSQ_RANGE) != 0
2675                            && ascq >= (table_entry - 1)->ascq))
2676                                 return (0);
2677                         return (-1);
2678                 }
2679                 return (1);
2680         }
2681         return (-1);
2682 }
2683
2684 static int
2685 senseentrycomp(const void *key, const void *member)
2686 {
2687         int sense_key;
2688         const struct sense_key_table_entry *table_entry;
2689
2690         sense_key = *((const int *)key);
2691         table_entry = (const struct sense_key_table_entry *)member;
2692
2693         if (sense_key >= table_entry->sense_key) {
2694                 if (sense_key == table_entry->sense_key)
2695                         return (0);
2696                 return (1);
2697         }
2698         return (-1);
2699 }
2700
2701 static void
2702 fetchtableentries(int sense_key, int asc, int ascq,
2703                   struct scsi_inquiry_data *inq_data,
2704                   const struct sense_key_table_entry **sense_entry,
2705                   const struct asc_table_entry **asc_entry)
2706 {
2707         caddr_t match;
2708         const struct asc_table_entry *asc_tables[2];
2709         const struct sense_key_table_entry *sense_tables[2];
2710         struct asc_key asc_ascq;
2711         size_t asc_tables_size[2];
2712         size_t sense_tables_size[2];
2713         int num_asc_tables;
2714         int num_sense_tables;
2715         int i;
2716
2717         /* Default to failure */
2718         *sense_entry = NULL;
2719         *asc_entry = NULL;
2720         match = NULL;
2721         if (inq_data != NULL)
2722                 match = cam_quirkmatch((caddr_t)inq_data,
2723                                        (caddr_t)sense_quirk_table,
2724                                        sense_quirk_table_size,
2725                                        sizeof(*sense_quirk_table),
2726                                        scsi_inquiry_match);
2727
2728         if (match != NULL) {
2729                 struct scsi_sense_quirk_entry *quirk;
2730
2731                 quirk = (struct scsi_sense_quirk_entry *)match;
2732                 asc_tables[0] = quirk->asc_info;
2733                 asc_tables_size[0] = quirk->num_ascs;
2734                 asc_tables[1] = asc_table;
2735                 asc_tables_size[1] = asc_table_size;
2736                 num_asc_tables = 2;
2737                 sense_tables[0] = quirk->sense_key_info;
2738                 sense_tables_size[0] = quirk->num_sense_keys;
2739                 sense_tables[1] = sense_key_table;
2740                 sense_tables_size[1] = sense_key_table_size;
2741                 num_sense_tables = 2;
2742         } else {
2743                 asc_tables[0] = asc_table;
2744                 asc_tables_size[0] = asc_table_size;
2745                 num_asc_tables = 1;
2746                 sense_tables[0] = sense_key_table;
2747                 sense_tables_size[0] = sense_key_table_size;
2748                 num_sense_tables = 1;
2749         }
2750
2751         asc_ascq.asc = asc;
2752         asc_ascq.ascq = ascq;
2753         for (i = 0; i < num_asc_tables; i++) {
2754                 void *found_entry;
2755
2756                 found_entry = kbsearch(&asc_ascq, asc_tables[i],
2757                                       asc_tables_size[i],
2758                                       sizeof(**asc_tables),
2759                                       ascentrycomp);
2760
2761                 if (found_entry) {
2762                         *asc_entry = (struct asc_table_entry *)found_entry;
2763                         break;
2764                 }
2765         }
2766
2767         for (i = 0; i < num_sense_tables; i++) {
2768                 void *found_entry;
2769
2770                 found_entry = kbsearch(&sense_key, sense_tables[i],
2771                                       sense_tables_size[i],
2772                                       sizeof(**sense_tables),
2773                                       senseentrycomp);
2774
2775                 if (found_entry) {
2776                         *sense_entry =
2777                             (struct sense_key_table_entry *)found_entry;
2778                         break;
2779                 }
2780         }
2781 }
2782
2783 void
2784 scsi_sense_desc(int sense_key, int asc, int ascq,
2785                 struct scsi_inquiry_data *inq_data,
2786                 const char **sense_key_desc, const char **asc_desc)
2787 {
2788         const struct asc_table_entry *asc_entry;
2789         const struct sense_key_table_entry *sense_entry;
2790
2791         fetchtableentries(sense_key, asc, ascq,
2792                           inq_data,
2793                           &sense_entry,
2794                           &asc_entry);
2795
2796         *sense_key_desc = sense_entry->desc;
2797
2798         if (asc_entry != NULL)
2799                 *asc_desc = asc_entry->desc;
2800         else if (asc >= 0x80 && asc <= 0xff)
2801                 *asc_desc = "Vendor Specific ASC";
2802         else if (ascq >= 0x80 && ascq <= 0xff)
2803                 *asc_desc = "Vendor Specific ASCQ";
2804         else
2805                 *asc_desc = "Reserved ASC/ASCQ pair";
2806 }
2807
2808 /*
2809  * Given sense and device type information, return the appropriate action.
2810  * If we do not understand the specific error as identified by the ASC/ASCQ
2811  * pair, fall back on the more generic actions derived from the sense key.
2812  */
2813 scsi_sense_action
2814 scsi_error_action(struct ccb_scsiio *csio, struct scsi_inquiry_data *inq_data,
2815                   u_int32_t sense_flags)
2816 {
2817         const struct asc_table_entry *asc_entry;
2818         const struct sense_key_table_entry *sense_entry;
2819         int error_code, sense_key, asc, ascq;
2820         scsi_sense_action action;
2821
2822         scsi_extract_sense(&csio->sense_data, &error_code,
2823                            &sense_key, &asc, &ascq);
2824
2825         if (error_code == SSD_DEFERRED_ERROR) {
2826                 /*
2827                  * XXX dufault@FreeBSD.org
2828                  * This error doesn't relate to the command associated
2829                  * with this request sense.  A deferred error is an error
2830                  * for a command that has already returned GOOD status
2831                  * (see SCSI2 8.2.14.2).
2832                  *
2833                  * By my reading of that section, it looks like the current
2834                  * command has been cancelled, we should now clean things up
2835                  * (hopefully recovering any lost data) and then retry the
2836                  * current command.  There are two easy choices, both wrong:
2837                  *
2838                  * 1. Drop through (like we had been doing), thus treating
2839                  *    this as if the error were for the current command and
2840                  *    return and stop the current command.
2841                  *
2842                  * 2. Issue a retry (like I made it do) thus hopefully
2843                  *    recovering the current transfer, and ignoring the
2844                  *    fact that we've dropped a command.
2845                  *
2846                  * These should probably be handled in a device specific
2847                  * sense handler or punted back up to a user mode daemon
2848                  */
2849                 action = SS_RETRY|SSQ_DECREMENT_COUNT|SSQ_PRINT_SENSE;
2850         } else {
2851                 fetchtableentries(sense_key, asc, ascq,
2852                                   inq_data,
2853                                   &sense_entry,
2854                                   &asc_entry);
2855
2856                 /*
2857                  * Override the 'No additional Sense' entry (0,0)
2858                  * with the error action of the sense key.
2859                  */
2860                 if (asc_entry != NULL
2861                  && (asc != 0 || ascq != 0))
2862                         action = asc_entry->action;
2863                 else
2864                         action = sense_entry->action;
2865
2866                 if (sense_key == SSD_KEY_RECOVERED_ERROR) {
2867                         /*
2868                          * The action succeeded but the device wants
2869                          * the user to know that some recovery action
2870                          * was required.
2871                          */
2872                         action &= ~(SS_MASK|SSQ_MASK|SS_ERRMASK);
2873                         action |= SS_NOP|SSQ_PRINT_SENSE;
2874                 } else if (sense_key == SSD_KEY_ILLEGAL_REQUEST) {
2875                         if ((sense_flags & SF_QUIET_IR) != 0)
2876                                 action &= ~SSQ_PRINT_SENSE;
2877                 } else if (sense_key == SSD_KEY_UNIT_ATTENTION) {
2878                         if ((sense_flags & SF_RETRY_UA) != 0
2879                          && (action & SS_MASK) == SS_FAIL) {
2880                                 action &= ~(SS_MASK|SSQ_MASK);
2881                                 action |= SS_RETRY|SSQ_DECREMENT_COUNT|
2882                                           SSQ_PRINT_SENSE;
2883                         }
2884                 }
2885         }
2886 #ifdef KERNEL
2887         if (bootverbose)
2888                 sense_flags |= SF_PRINT_ALWAYS;
2889 #endif
2890         if ((sense_flags & SF_PRINT_ALWAYS) != 0)
2891                 action |= SSQ_PRINT_SENSE;
2892         else if ((sense_flags & SF_NO_PRINT) != 0)
2893                 action &= ~SSQ_PRINT_SENSE;
2894
2895         return (action);
2896 }
2897
2898 char *
2899 scsi_cdb_string(u_int8_t *cdb_ptr, char *cdb_string, size_t len)
2900 {
2901         u_int8_t cdb_len;
2902         int i;
2903
2904         if (cdb_ptr == NULL)
2905                 return("");
2906
2907         /* Silence warnings */
2908         cdb_len = 0;
2909
2910         /*
2911          * This is taken from the SCSI-3 draft spec.
2912          * (T10/1157D revision 0.3)
2913          * The top 3 bits of an opcode are the group code.  The next 5 bits
2914          * are the command code.
2915          * Group 0:  six byte commands
2916          * Group 1:  ten byte commands
2917          * Group 2:  ten byte commands
2918          * Group 3:  reserved
2919          * Group 4:  sixteen byte commands
2920          * Group 5:  twelve byte commands
2921          * Group 6:  vendor specific
2922          * Group 7:  vendor specific
2923          */
2924         switch((*cdb_ptr >> 5) & 0x7) {
2925                 case 0:
2926                         cdb_len = 6;
2927                         break;
2928                 case 1:
2929                 case 2:
2930                         cdb_len = 10;
2931                         break;
2932                 case 3:
2933                 case 6:
2934                 case 7:
2935                         /* in this case, just print out the opcode */
2936                         cdb_len = 1;
2937                         break;
2938                 case 4:
2939                         cdb_len = 16;
2940                         break;
2941                 case 5:
2942                         cdb_len = 12;
2943                         break;
2944         }
2945         *cdb_string = '\0';
2946         for (i = 0; i < cdb_len; i++)
2947                 ksnprintf(cdb_string + strlen(cdb_string),
2948                           len - strlen(cdb_string), "%x ", cdb_ptr[i]);
2949
2950         return(cdb_string);
2951 }
2952
2953 const char *
2954 scsi_status_string(struct ccb_scsiio *csio)
2955 {
2956         switch(csio->scsi_status) {
2957         case SCSI_STATUS_OK:
2958                 return("OK");
2959         case SCSI_STATUS_CHECK_COND:
2960                 return("Check Condition");
2961         case SCSI_STATUS_BUSY:
2962                 return("Busy");
2963         case SCSI_STATUS_INTERMED:
2964                 return("Intermediate");
2965         case SCSI_STATUS_INTERMED_COND_MET:
2966                 return("Intermediate-Condition Met");
2967         case SCSI_STATUS_RESERV_CONFLICT:
2968                 return("Reservation Conflict");
2969         case SCSI_STATUS_CMD_TERMINATED:
2970                 return("Command Terminated");
2971         case SCSI_STATUS_QUEUE_FULL:
2972                 return("Queue Full");
2973         case SCSI_STATUS_ACA_ACTIVE:
2974                 return("ACA Active");
2975         case SCSI_STATUS_TASK_ABORTED:
2976                 return("Task Aborted");
2977         default: {
2978                 static char unkstr[64];
2979                 ksnprintf(unkstr, sizeof(unkstr), "Unknown %#x",
2980                           csio->scsi_status);
2981                 return(unkstr);
2982         }
2983         }
2984 }
2985
2986 /*
2987  * scsi_command_string() returns 0 for success and -1 for failure.
2988  */
2989 #ifdef _KERNEL
2990 int
2991 scsi_command_string(struct ccb_scsiio *csio, struct sbuf *sb)
2992 #else
2993 int
2994 scsi_command_string(struct cam_device *device, struct ccb_scsiio *csio,
2995                     struct sbuf *sb)
2996 #endif
2997 {
2998         struct scsi_inquiry_data *inq_data;
2999         char cdb_str[(SCSI_MAX_CDBLEN * 3) + 1];
3000 #ifdef _KERNEL
3001         struct    ccb_getdev cgd;
3002 #endif
3003
3004 #ifdef _KERNEL
3005         /*
3006          * Get the device information.
3007          */
3008         xpt_setup_ccb(&cgd.ccb_h,
3009                       csio->ccb_h.path,
3010                       /*priority*/ 1);
3011         cgd.ccb_h.func_code = XPT_GDEV_TYPE;
3012         xpt_action((union ccb *)&cgd);
3013
3014         /*
3015          * If the device is unconfigured, just pretend that it is a hard
3016          * drive.  scsi_op_desc() needs this.
3017          */
3018         if (cgd.ccb_h.status == CAM_DEV_NOT_THERE)
3019                 cgd.inq_data.device = T_DIRECT;
3020
3021         inq_data = &cgd.inq_data;
3022
3023 #else /* !_KERNEL */
3024
3025         inq_data = &device->inq_data;
3026
3027 #endif /* _KERNEL/!_KERNEL */
3028
3029         if ((csio->ccb_h.flags & CAM_CDB_POINTER) != 0) {
3030                 sbuf_printf(sb, "%s. CDB: %s",
3031                             scsi_op_desc(csio->cdb_io.cdb_ptr[0], inq_data),
3032                             scsi_cdb_string(csio->cdb_io.cdb_ptr, cdb_str,
3033                                             sizeof(cdb_str)));
3034         } else {
3035                 sbuf_printf(sb, "%s. CDB: %s",
3036                             scsi_op_desc(csio->cdb_io.cdb_bytes[0], inq_data),
3037                             scsi_cdb_string(csio->cdb_io.cdb_bytes, cdb_str,
3038                                             sizeof(cdb_str)));
3039         }
3040
3041         return(0);
3042 }
3043
3044 /*
3045  * scsi_sense_sbuf() returns 0 for success and -1 for failure.
3046  */
3047 #ifdef _KERNEL
3048 int
3049 scsi_sense_sbuf(struct ccb_scsiio *csio, struct sbuf *sb,
3050                 scsi_sense_string_flags flags)
3051 #else /* !_KERNEL */
3052 int
3053 scsi_sense_sbuf(struct cam_device *device, struct ccb_scsiio *csio,
3054                 struct sbuf *sb, scsi_sense_string_flags flags)
3055 #endif /* _KERNEL/!_KERNEL */
3056 {
3057         struct    scsi_sense_data *sense;
3058         struct    scsi_inquiry_data *inq_data;
3059 #ifdef _KERNEL
3060         struct    ccb_getdev cgd;
3061 #endif /* _KERNEL */
3062         u_int32_t info;
3063         int       error_code;
3064         int       sense_key;
3065         int       asc, ascq;
3066         char      path_str[64];
3067
3068 #ifndef _KERNEL
3069         if (device == NULL)
3070                 return(-1);
3071 #endif /* !_KERNEL */
3072         if ((csio == NULL) || (sb == NULL))
3073                 return(-1);
3074
3075         /*
3076          * If the CDB is a physical address, we can't deal with it..
3077          */
3078         if ((csio->ccb_h.flags & CAM_CDB_PHYS) != 0)
3079                 flags &= ~SSS_FLAG_PRINT_COMMAND;
3080
3081 #ifdef _KERNEL
3082         xpt_path_string(csio->ccb_h.path, path_str, sizeof(path_str));
3083 #else /* !_KERNEL */
3084         cam_path_string(device, path_str, sizeof(path_str));
3085 #endif /* _KERNEL/!_KERNEL */
3086
3087 #ifdef _KERNEL
3088         /*
3089          * Get the device information.
3090          */
3091         xpt_setup_ccb(&cgd.ccb_h,
3092                       csio->ccb_h.path,
3093                       /*priority*/ 1);
3094         cgd.ccb_h.func_code = XPT_GDEV_TYPE;
3095         xpt_action((union ccb *)&cgd);
3096
3097         /*
3098          * If the device is unconfigured, just pretend that it is a hard
3099          * drive.  scsi_op_desc() needs this.
3100          */
3101         if (cgd.ccb_h.status == CAM_DEV_NOT_THERE)
3102                 cgd.inq_data.device = T_DIRECT;
3103
3104         inq_data = &cgd.inq_data;
3105
3106 #else /* !_KERNEL */
3107
3108         inq_data = &device->inq_data;
3109
3110 #endif /* _KERNEL/!_KERNEL */
3111
3112         sense = NULL;
3113
3114         if (flags & SSS_FLAG_PRINT_COMMAND) {
3115
3116                 sbuf_cat(sb, path_str);
3117
3118 #ifdef _KERNEL
3119                 scsi_command_string(csio, sb);
3120 #else /* !_KERNEL */
3121                 scsi_command_string(device, csio, sb);
3122 #endif /* _KERNEL/!_KERNEL */
3123         }
3124
3125         /*
3126          * If the sense data is a physical pointer, forget it.
3127          */
3128         if (csio->ccb_h.flags & CAM_SENSE_PTR) {
3129                 if (csio->ccb_h.flags & CAM_SENSE_PHYS)
3130                         return(-1);
3131                 else {
3132                         /* 
3133                          * bcopy the pointer to avoid unaligned access
3134                          * errors on finicky architectures.  We don't
3135                          * ensure that the sense data is pointer aligned.
3136                          */
3137                         bcopy(&csio->sense_data, &sense, 
3138                               sizeof(struct scsi_sense_data *));
3139                 }
3140         } else {
3141                 /*
3142                  * If the physical sense flag is set, but the sense pointer
3143                  * is not also set, we assume that the user is an idiot and
3144                  * return.  (Well, okay, it could be that somehow, the
3145                  * entire csio is physical, but we would have probably core
3146                  * dumped on one of the bogus pointer deferences above
3147                  * already.)
3148                  */
3149                 if (csio->ccb_h.flags & CAM_SENSE_PHYS) 
3150                         return(-1);
3151                 else
3152                         sense = &csio->sense_data;
3153         }
3154
3155
3156         sbuf_cat(sb, path_str);
3157
3158         error_code = sense->error_code & SSD_ERRCODE;
3159         sense_key = sense->flags & SSD_KEY;
3160
3161         switch (error_code) {
3162         case SSD_DEFERRED_ERROR:
3163                 sbuf_printf(sb, "Deferred Error: ");
3164
3165                 /* FALLTHROUGH */
3166         case SSD_CURRENT_ERROR:
3167         {
3168                 const char *sense_key_desc;
3169                 const char *asc_desc;
3170
3171                 asc = (sense->extra_len >= 5) ? sense->add_sense_code : 0;
3172                 ascq = (sense->extra_len >= 6) ? sense->add_sense_code_qual : 0;
3173                 scsi_sense_desc(sense_key, asc, ascq, inq_data,
3174                                 &sense_key_desc, &asc_desc);
3175                 sbuf_cat(sb, sense_key_desc);
3176
3177                 info = scsi_4btoul(sense->info);
3178                 
3179                 if (sense->error_code & SSD_ERRCODE_VALID) {
3180
3181                         switch (sense_key) {
3182                         case SSD_KEY_NOT_READY:
3183                         case SSD_KEY_ILLEGAL_REQUEST:
3184                         case SSD_KEY_UNIT_ATTENTION:
3185                         case SSD_KEY_DATA_PROTECT:
3186                                 break;
3187                         case SSD_KEY_BLANK_CHECK:
3188                                 sbuf_printf(sb, " req sz: %d (decimal)", info);
3189                                 break;
3190                         default:
3191                                 if (info) {
3192                                         if (sense->flags & SSD_ILI) {
3193                                                 sbuf_printf(sb, " ILI (length "
3194                                                         "mismatch): %d", info);
3195                         
3196                                         } else {
3197                                                 sbuf_printf(sb, " info:%x",
3198                                                             info);
3199                                         }
3200                                 }
3201                         }
3202                 } else if (info) {
3203                         sbuf_printf(sb, " info?:%x", info);
3204                 }
3205
3206                 if (sense->extra_len >= 4) {
3207                         if (bcmp(sense->cmd_spec_info, "\0\0\0\0", 4)) {
3208                                 sbuf_printf(sb, " csi:%x,%x,%x,%x",
3209                                             sense->cmd_spec_info[0],
3210                                             sense->cmd_spec_info[1],
3211                                             sense->cmd_spec_info[2],
3212                                             sense->cmd_spec_info[3]);
3213                         }
3214                 }
3215
3216                 sbuf_printf(sb, " asc:%x,%x\n%s%s", asc, ascq,
3217                             path_str, asc_desc);
3218
3219                 if (sense->extra_len >= 7 && sense->fru) {
3220                         sbuf_printf(sb, " field replaceable unit: %x",
3221                                     sense->fru);
3222                 }
3223
3224                 if ((sense->extra_len >= 10)
3225                  && (sense->sense_key_spec[0] & SSD_SCS_VALID) != 0) {
3226                         switch(sense_key) {
3227                         case SSD_KEY_ILLEGAL_REQUEST: {
3228                                 int bad_command;
3229                                 char tmpstr2[40];
3230
3231                                 if (sense->sense_key_spec[0] & 0x40)
3232                                         bad_command = 1;
3233                                 else
3234                                         bad_command = 0;
3235
3236                                 tmpstr2[0] = '\0';
3237
3238                                 /* Bit pointer is valid */
3239                                 if (sense->sense_key_spec[0] & 0x08)
3240                                         ksnprintf(tmpstr2, sizeof(tmpstr2),
3241                                                  "bit %d",
3242                                                 sense->sense_key_spec[0] & 0x7);
3243                                         sbuf_printf(sb,
3244                                                    ": %s byte %d %s is invalid",
3245                                                     bad_command ?
3246                                                     "Command" : "Data",
3247                                                     scsi_2btoul(
3248                                                     &sense->sense_key_spec[1]),
3249                                                     tmpstr2);
3250                                 break;
3251                         }
3252                         case SSD_KEY_RECOVERED_ERROR:
3253                         case SSD_KEY_HARDWARE_ERROR:
3254                         case SSD_KEY_MEDIUM_ERROR:
3255                                 sbuf_printf(sb, " actual retry count: %d",
3256                                             scsi_2btoul(
3257                                             &sense->sense_key_spec[1]));
3258                                 break;
3259                         default:
3260                                 sbuf_printf(sb, " sks:%#x,%#x",
3261                                             sense->sense_key_spec[0],
3262                                             scsi_2btoul(
3263                                             &sense->sense_key_spec[1]));
3264                                 break;
3265                         }
3266                 }
3267                 break;
3268
3269         }
3270         default:
3271                 sbuf_printf(sb, "Sense Error Code 0x%x", sense->error_code);
3272                 if (sense->error_code & SSD_ERRCODE_VALID) {
3273                         sbuf_printf(sb, " at block no. %d (decimal)",
3274                                     info = scsi_4btoul(sense->info));
3275                 }
3276         }
3277
3278         sbuf_printf(sb, "\n");
3279
3280         return(0);
3281 }
3282
3283 #ifdef _KERNEL
3284 char *
3285 scsi_sense_string(struct ccb_scsiio *csio, char *str, int str_len)
3286 #else /* !_KERNEL */
3287 char *
3288 scsi_sense_string(struct cam_device *device, struct ccb_scsiio *csio,
3289                   char *str, int str_len)
3290 #endif /* _KERNEL/!_KERNEL */
3291 {
3292         struct sbuf sb;
3293
3294         sbuf_new(&sb, str, str_len, 0);
3295
3296 #ifdef _KERNEL
3297         scsi_sense_sbuf(csio, &sb, SSS_FLAG_PRINT_COMMAND);
3298 #else /* !_KERNEL */
3299         scsi_sense_sbuf(device, csio, &sb, SSS_FLAG_PRINT_COMMAND);
3300 #endif /* _KERNEL/!_KERNEL */
3301
3302         sbuf_finish(&sb);
3303
3304         return(sbuf_data(&sb));
3305 }
3306
3307 #ifdef _KERNEL
3308 void
3309 scsi_sense_print(struct ccb_scsiio *csio)
3310 {
3311         struct sbuf sb;
3312         char str[512];
3313
3314         sbuf_new(&sb, str, sizeof(str), 0);
3315
3316         scsi_sense_sbuf(csio, &sb, SSS_FLAG_PRINT_COMMAND);
3317
3318         sbuf_finish(&sb);
3319
3320         kprintf("%s", sbuf_data(&sb));
3321 }
3322
3323 #else /* !_KERNEL */
3324 void
3325 scsi_sense_print(struct cam_device *device, struct ccb_scsiio *csio, 
3326                  FILE *ofile)
3327 {
3328         struct sbuf sb;
3329         char str[512];
3330
3331         if ((device == NULL) || (csio == NULL) || (ofile == NULL))
3332                 return;
3333
3334         sbuf_new(&sb, str, sizeof(str), 0);
3335
3336         scsi_sense_sbuf(device, csio, &sb, SSS_FLAG_PRINT_COMMAND);
3337
3338         sbuf_finish(&sb);
3339
3340         fprintf(ofile, "%s", sbuf_data(&sb));
3341 }
3342
3343 #endif /* _KERNEL/!_KERNEL */
3344
3345 /*
3346  * This function currently requires at least 36 bytes, or
3347  * SHORT_INQUIRY_LENGTH, worth of data to function properly.  If this
3348  * function needs more or less data in the future, another length should be
3349  * defined in scsi_all.h to indicate the minimum amount of data necessary
3350  * for this routine to function properly.
3351  */
3352 void
3353 scsi_print_inquiry(struct scsi_inquiry_data *inq_data)
3354 {
3355         u_int8_t type;
3356         char *dtype, *qtype;
3357         char vendor[16], product[48], revision[16], rstr[4];
3358
3359         type = SID_TYPE(inq_data);
3360
3361         /*
3362          * Figure out basic device type and qualifier.
3363          */
3364         if (SID_QUAL_IS_VENDOR_UNIQUE(inq_data)) {
3365                 qtype = "(vendor-unique qualifier)";
3366         } else {
3367                 switch (SID_QUAL(inq_data)) {
3368                 case SID_QUAL_LU_CONNECTED:
3369                         qtype = "";
3370                         break;
3371
3372                 case SID_QUAL_LU_OFFLINE:
3373                         qtype = "(offline)";
3374                         break;
3375
3376                 case SID_QUAL_RSVD:
3377                         qtype = "(reserved qualifier)";
3378                         break;
3379                 default:
3380                 case SID_QUAL_BAD_LU:
3381                         qtype = "(LUN not supported)";
3382                         break;
3383                 }
3384         }
3385
3386         switch (type) {
3387         case T_DIRECT:
3388                 dtype = "Direct Access";
3389                 break;
3390         case T_SEQUENTIAL:
3391                 dtype = "Sequential Access";
3392                 break;
3393         case T_PRINTER:
3394                 dtype = "Printer";
3395                 break;
3396         case T_PROCESSOR:
3397                 dtype = "Processor";
3398                 break;
3399         case T_WORM:
3400                 dtype = "WORM";
3401                 break;
3402         case T_CDROM:
3403                 dtype = "CD-ROM";
3404                 break;
3405         case T_SCANNER:
3406                 dtype = "Scanner";
3407                 break;
3408         case T_OPTICAL:
3409                 dtype = "Optical";
3410                 break;
3411         case T_CHANGER:
3412                 dtype = "Changer";
3413                 break;
3414         case T_COMM:
3415                 dtype = "Communication";
3416                 break;
3417         case T_STORARRAY:
3418                 dtype = "Storage Array";
3419                 break;
3420         case T_ENCLOSURE:
3421                 dtype = "Enclosure Services";
3422                 break;
3423         case T_RBC:
3424                 dtype = "Simplified Direct Access";
3425                 break;
3426         case T_OCRW:
3427                 dtype = "Optical Card Read/Write";
3428                 break;
3429         case T_OSD:
3430                 dtype = "Object-Based Storage";
3431                 break;
3432         case T_ADC:
3433                 dtype = "Automation/Drive Interface";
3434                 break;
3435         case T_NODEVICE:
3436                 dtype = "Uninstalled";
3437                 break;
3438         default:
3439                 dtype = "unknown";
3440                 break;
3441         }
3442
3443         cam_strvis(vendor, inq_data->vendor, sizeof(inq_data->vendor),
3444                    sizeof(vendor));
3445         cam_strvis(product, inq_data->product, sizeof(inq_data->product),
3446                    sizeof(product));
3447         cam_strvis(revision, inq_data->revision, sizeof(inq_data->revision),
3448                    sizeof(revision));
3449
3450         if (SID_ANSI_REV(inq_data) == SCSI_REV_CCS)
3451                 bcopy("CCS", rstr, 4);
3452         else
3453                 ksnprintf(rstr, sizeof (rstr), "%d", SID_ANSI_REV(inq_data));
3454         kprintf("<%s %s %s> %s %s SCSI-%s device %s\n",
3455                vendor, product, revision,
3456                SID_IS_REMOVABLE(inq_data) ? "Removable" : "Fixed",
3457                dtype, rstr, qtype);
3458 }
3459
3460 /*
3461  * Table of syncrates that don't follow the "divisible by 4"
3462  * rule. This table will be expanded in future SCSI specs.
3463  */
3464 static struct {
3465         u_int period_factor;
3466         u_int period;   /* in 100ths of ns */
3467 } scsi_syncrates[] = {
3468         { 0x08, 625 },  /* FAST-160 */
3469         { 0x09, 1250 }, /* FAST-80 */
3470         { 0x0a, 2500 }, /* FAST-40 40MHz */
3471         { 0x0b, 3030 }, /* FAST-40 33MHz */
3472         { 0x0c, 5000 }  /* FAST-20 */
3473 };
3474
3475 /*
3476  * Return the frequency in kHz corresponding to the given
3477  * sync period factor.
3478  */
3479 u_int
3480 scsi_calc_syncsrate(u_int period_factor)
3481 {
3482         int i;
3483         int num_syncrates;
3484
3485         /*
3486          * It's a bug if period is zero, but if it is anyway, don't
3487          * die with a divide fault- instead return something which
3488          * 'approximates' async
3489          */
3490         if (period_factor == 0) {
3491                 return (3300);
3492         }
3493
3494         num_syncrates = NELEM(scsi_syncrates);
3495         /* See if the period is in the "exception" table */
3496         for (i = 0; i < num_syncrates; i++) {
3497
3498                 if (period_factor == scsi_syncrates[i].period_factor) {
3499                         /* Period in kHz */
3500                         return (100000000 / scsi_syncrates[i].period);
3501                 }
3502         }
3503
3504         /*
3505          * Wasn't in the table, so use the standard
3506          * 4 times conversion.
3507          */
3508         return (10000000 / (period_factor * 4 * 10));
3509 }
3510
3511 /*
3512  * Return the SCSI sync parameter that corresponsd to
3513  * the passed in period in 10ths of ns.
3514  */
3515 u_int
3516 scsi_calc_syncparam(u_int period)
3517 {
3518         int i;
3519         int num_syncrates;
3520
3521         if (period == 0)
3522                 return (~0);    /* Async */
3523
3524         /* Adjust for exception table being in 100ths. */
3525         period *= 10;
3526         num_syncrates = NELEM(scsi_syncrates);
3527         /* See if the period is in the "exception" table */
3528         for (i = 0; i < num_syncrates; i++) {
3529
3530                 if (period <= scsi_syncrates[i].period) {
3531                         /* Period in 100ths of ns */
3532                         return (scsi_syncrates[i].period_factor);
3533                 }
3534         }
3535
3536         /*
3537          * Wasn't in the table, so use the standard
3538          * 1/4 period in ns conversion.
3539          */
3540         return (period/400);
3541 }
3542
3543 void
3544 scsi_test_unit_ready(struct ccb_scsiio *csio, u_int32_t retries,
3545                      void (*cbfcnp)(struct cam_periph *, union ccb *),
3546                      u_int8_t tag_action, u_int8_t sense_len, u_int32_t timeout)
3547 {
3548         struct scsi_test_unit_ready *scsi_cmd;
3549
3550         cam_fill_csio(csio,
3551                       retries,
3552                       cbfcnp,
3553                       CAM_DIR_NONE,
3554                       tag_action,
3555                       /*data_ptr*/NULL,
3556                       /*dxfer_len*/0,
3557                       sense_len,
3558                       sizeof(*scsi_cmd),
3559                       timeout);
3560
3561         scsi_cmd = (struct scsi_test_unit_ready *)&csio->cdb_io.cdb_bytes;
3562         bzero(scsi_cmd, sizeof(*scsi_cmd));
3563         scsi_cmd->opcode = TEST_UNIT_READY;
3564 }
3565
3566 void
3567 scsi_request_sense(struct ccb_scsiio *csio, u_int32_t retries,
3568                    void (*cbfcnp)(struct cam_periph *, union ccb *),
3569                    void *data_ptr, u_int8_t dxfer_len, u_int8_t tag_action,
3570                    u_int8_t sense_len, u_int32_t timeout)
3571 {
3572         struct scsi_request_sense *scsi_cmd;
3573
3574         cam_fill_csio(csio,
3575                       retries,
3576                       cbfcnp,
3577                       CAM_DIR_IN,
3578                       tag_action,
3579                       data_ptr,
3580                       dxfer_len,
3581                       sense_len,
3582                       sizeof(*scsi_cmd),
3583                       timeout);
3584
3585         scsi_cmd = (struct scsi_request_sense *)&csio->cdb_io.cdb_bytes;
3586         bzero(scsi_cmd, sizeof(*scsi_cmd));
3587         scsi_cmd->opcode = REQUEST_SENSE;
3588         scsi_cmd->length = dxfer_len;
3589 }
3590
3591 void
3592 scsi_inquiry(struct ccb_scsiio *csio, u_int32_t retries,
3593              void (*cbfcnp)(struct cam_periph *, union ccb *),
3594              u_int8_t tag_action, u_int8_t *inq_buf, u_int32_t inq_len,
3595              int evpd, u_int8_t page_code, u_int8_t sense_len,
3596              u_int32_t timeout)
3597 {
3598         struct scsi_inquiry *scsi_cmd;
3599
3600         cam_fill_csio(csio,
3601                       retries,
3602                       cbfcnp,
3603                       /*flags*/CAM_DIR_IN,
3604                       tag_action,
3605                       /*data_ptr*/inq_buf,
3606                       /*dxfer_len*/inq_len,
3607                       sense_len,
3608                       sizeof(*scsi_cmd),
3609                       timeout);
3610
3611         scsi_cmd = (struct scsi_inquiry *)&csio->cdb_io.cdb_bytes;
3612         bzero(scsi_cmd, sizeof(*scsi_cmd));
3613         scsi_cmd->opcode = INQUIRY;
3614         if (evpd) {
3615                 scsi_cmd->byte2 |= SI_EVPD;
3616                 scsi_cmd->page_code = page_code;                
3617         }
3618         /*
3619          * A 'transfer units' count of 256 is coded as
3620          * zero for all commands with a single byte count
3621          * field. 
3622          */
3623         if (inq_len == 256)
3624                 inq_len = 0;
3625         scsi_cmd->length = inq_len;
3626 }
3627
3628 void
3629 scsi_mode_sense(struct ccb_scsiio *csio, u_int32_t retries,
3630                 void (*cbfcnp)(struct cam_periph *, union ccb *),
3631                 u_int8_t tag_action, int dbd, u_int8_t page_code,
3632                 u_int8_t page, u_int8_t *param_buf, u_int32_t param_len,
3633                 u_int8_t sense_len, u_int32_t timeout)
3634 {
3635         scsi_mode_sense_len(csio, retries, cbfcnp, tag_action, dbd,
3636                             page_code, page, param_buf, param_len, 0,
3637                             sense_len, timeout);
3638 }
3639
3640 void
3641 scsi_mode_sense_len(struct ccb_scsiio *csio, u_int32_t retries,
3642                     void (*cbfcnp)(struct cam_periph *, union ccb *),
3643                     u_int8_t tag_action, int dbd, u_int8_t page_code,
3644                     u_int8_t page, u_int8_t *param_buf, u_int32_t param_len,
3645                     int minimum_cmd_size, u_int8_t sense_len, u_int32_t timeout)
3646 {
3647         u_int8_t cdb_len;
3648
3649         /*
3650          * Use the smallest possible command to perform the operation.
3651          */
3652         if ((param_len < 256) && (minimum_cmd_size < 10)) {
3653                 /*
3654                  * We can fit in a 6 byte cdb.
3655                  */
3656                 struct scsi_mode_sense_6 *scsi_cmd;
3657
3658                 scsi_cmd = (struct scsi_mode_sense_6 *)&csio->cdb_io.cdb_bytes;
3659                 bzero(scsi_cmd, sizeof(*scsi_cmd));
3660                 scsi_cmd->opcode = MODE_SENSE_6;
3661                 if (dbd != 0)
3662                         scsi_cmd->byte2 |= SMS_DBD;
3663                 scsi_cmd->page = page_code | page;
3664                 scsi_cmd->length = param_len;
3665                 cdb_len = sizeof(*scsi_cmd);
3666         } else {
3667                 /*
3668                  * Need a 10 byte cdb.
3669                  */
3670                 struct scsi_mode_sense_10 *scsi_cmd;
3671
3672                 scsi_cmd = (struct scsi_mode_sense_10 *)&csio->cdb_io.cdb_bytes;
3673                 bzero(scsi_cmd, sizeof(*scsi_cmd));
3674                 scsi_cmd->opcode = MODE_SENSE_10;
3675                 if (dbd != 0)
3676                         scsi_cmd->byte2 |= SMS_DBD;
3677                 scsi_cmd->page = page_code | page;
3678                 scsi_ulto2b(param_len, scsi_cmd->length);
3679                 cdb_len = sizeof(*scsi_cmd);
3680         }
3681         cam_fill_csio(csio,
3682                       retries,
3683                       cbfcnp,
3684                       CAM_DIR_IN,
3685                       tag_action,
3686                       param_buf,
3687                       param_len,
3688                       sense_len,
3689                       cdb_len,
3690                       timeout);
3691 }
3692
3693 void
3694 scsi_mode_select(struct ccb_scsiio *csio, u_int32_t retries,
3695                  void (*cbfcnp)(struct cam_periph *, union ccb *),
3696                  u_int8_t tag_action, int scsi_page_fmt, int save_pages,
3697                  u_int8_t *param_buf, u_int32_t param_len, u_int8_t sense_len,
3698                  u_int32_t timeout)
3699 {
3700         scsi_mode_select_len(csio, retries, cbfcnp, tag_action,
3701                              scsi_page_fmt, save_pages, param_buf,
3702                              param_len, 0, sense_len, timeout);
3703 }
3704
3705 void
3706 scsi_mode_select_len(struct ccb_scsiio *csio, u_int32_t retries,
3707                     void (*cbfcnp)(struct cam_periph *, union ccb *),
3708                     u_int8_t tag_action, int scsi_page_fmt, int save_pages,
3709                     u_int8_t *param_buf, u_int32_t param_len,
3710                     int minimum_cmd_size, u_int8_t sense_len,
3711                     u_int32_t timeout)
3712 {
3713         u_int8_t cdb_len;
3714
3715         /*
3716          * Use the smallest possible command to perform the operation.
3717          */
3718         if ((param_len < 256) && (minimum_cmd_size < 10)) {
3719                 /*
3720                  * We can fit in a 6 byte cdb.
3721                  */
3722                 struct scsi_mode_select_6 *scsi_cmd;
3723
3724                 scsi_cmd = (struct scsi_mode_select_6 *)&csio->cdb_io.cdb_bytes;
3725                 bzero(scsi_cmd, sizeof(*scsi_cmd));
3726                 scsi_cmd->opcode = MODE_SELECT_6;
3727                 if (scsi_page_fmt != 0)
3728                         scsi_cmd->byte2 |= SMS_PF;
3729                 if (save_pages != 0)
3730                         scsi_cmd->byte2 |= SMS_SP;
3731                 scsi_cmd->length = param_len;
3732                 cdb_len = sizeof(*scsi_cmd);
3733         } else {
3734                 /*
3735                  * Need a 10 byte cdb.
3736                  */
3737                 struct scsi_mode_select_10 *scsi_cmd;
3738
3739                 scsi_cmd =
3740                     (struct scsi_mode_select_10 *)&csio->cdb_io.cdb_bytes;
3741                 bzero(scsi_cmd, sizeof(*scsi_cmd));
3742                 scsi_cmd->opcode = MODE_SELECT_10;
3743                 if (scsi_page_fmt != 0)
3744                         scsi_cmd->byte2 |= SMS_PF;
3745                 if (save_pages != 0)
3746                         scsi_cmd->byte2 |= SMS_SP;
3747                 scsi_ulto2b(param_len, scsi_cmd->length);
3748                 cdb_len = sizeof(*scsi_cmd);
3749         }
3750         cam_fill_csio(csio,
3751                       retries,
3752                       cbfcnp,
3753                       CAM_DIR_OUT,
3754                       tag_action,
3755                       param_buf,
3756                       param_len,
3757                       sense_len,
3758                       cdb_len,
3759                       timeout);
3760 }
3761
3762 void
3763 scsi_read_capacity_16(struct ccb_scsiio *csio, uint32_t retries,
3764                       void (*cbfcnp)(struct cam_periph *, union ccb *),
3765                       uint8_t tag_action, uint64_t lba, int reladr, int pmi,
3766                       struct scsi_read_capacity_data_16 *rcap_buf,
3767                       uint8_t sense_len, uint32_t timeout)
3768 {
3769         struct scsi_read_capacity_16 *scsi_cmd;
3770
3771         cam_fill_csio(csio,
3772                       retries,
3773                       cbfcnp,
3774                       /*flags*/CAM_DIR_IN,
3775                       tag_action,
3776                       /*data_ptr*/(u_int8_t *)rcap_buf,
3777                       /*dxfer_len*/sizeof(*rcap_buf),
3778                       sense_len,
3779                       sizeof(*scsi_cmd),
3780                       timeout);
3781         scsi_cmd = (struct scsi_read_capacity_16 *)&csio->cdb_io.cdb_bytes;
3782         bzero(scsi_cmd, sizeof(*scsi_cmd));
3783         scsi_cmd->opcode = READ_CAPACITY_16;
3784         scsi_cmd->service_action = SRC16_SERVICE_ACTION;
3785         scsi_u64to8b(lba, scsi_cmd->addr);
3786         scsi_ulto4b(sizeof(*rcap_buf), scsi_cmd->alloc_len);
3787         if (pmi)
3788                reladr |= SRC16_PMI;
3789         if (reladr)
3790                reladr |= SRC16_RELADR;
3791 }
3792
3793 /*
3794  * Prevent or allow the user to remove the media
3795  */
3796 void
3797 scsi_prevent(struct ccb_scsiio *csio, u_int32_t retries,
3798              void (*cbfcnp)(struct cam_periph *, union ccb *),
3799              u_int8_t tag_action, u_int8_t action,
3800              u_int8_t sense_len, u_int32_t timeout)
3801 {
3802         struct scsi_prevent *scsi_cmd;
3803
3804         cam_fill_csio(csio,
3805                       retries,
3806                       cbfcnp,
3807                       /*flags*/CAM_DIR_NONE,
3808                       tag_action,
3809                       /*data_ptr*/NULL,
3810                       /*dxfer_len*/0,
3811                       sense_len,
3812                       sizeof(*scsi_cmd),
3813                       timeout);
3814
3815         scsi_cmd = (struct scsi_prevent *)&csio->cdb_io.cdb_bytes;
3816         bzero(scsi_cmd, sizeof(*scsi_cmd));
3817         scsi_cmd->opcode = PREVENT_ALLOW;
3818         scsi_cmd->how = action;
3819 }
3820
3821 /* XXX allow specification of address and PMI bit and LBA */
3822 void
3823 scsi_read_capacity(struct ccb_scsiio *csio, u_int32_t retries,
3824                    void (*cbfcnp)(struct cam_periph *, union ccb *),
3825                    u_int8_t tag_action,
3826                    struct scsi_read_capacity_data *rcap_buf,
3827                    u_int8_t sense_len, u_int32_t timeout)
3828 {
3829         struct scsi_read_capacity *scsi_cmd;
3830
3831         cam_fill_csio(csio,
3832                       retries,
3833                       cbfcnp,
3834                       /*flags*/CAM_DIR_IN,
3835                       tag_action,
3836                       /*data_ptr*/(u_int8_t *)rcap_buf,
3837                       /*dxfer_len*/sizeof(*rcap_buf),
3838                       sense_len,
3839                       sizeof(*scsi_cmd),
3840                       timeout);
3841
3842         scsi_cmd = (struct scsi_read_capacity *)&csio->cdb_io.cdb_bytes;
3843         bzero(scsi_cmd, sizeof(*scsi_cmd));
3844         scsi_cmd->opcode = READ_CAPACITY;
3845 }
3846
3847 void
3848 scsi_report_luns(struct ccb_scsiio *csio, u_int32_t retries,
3849                  void (*cbfcnp)(struct cam_periph *, union ccb *),
3850                  u_int8_t tag_action, u_int8_t select_report,
3851                  struct scsi_report_luns_data *rpl_buf, u_int32_t alloc_len,
3852                  u_int8_t sense_len, u_int32_t timeout)
3853 {
3854         struct scsi_report_luns *scsi_cmd;
3855
3856         cam_fill_csio(csio,
3857                       retries,
3858                       cbfcnp,
3859                       /*flags*/CAM_DIR_IN,
3860                       tag_action,
3861                       /*data_ptr*/(u_int8_t *)rpl_buf,
3862                       /*dxfer_len*/alloc_len,
3863                       sense_len,
3864                       sizeof(*scsi_cmd),
3865                       timeout);
3866         scsi_cmd = (struct scsi_report_luns *)&csio->cdb_io.cdb_bytes;
3867         bzero(scsi_cmd, sizeof(*scsi_cmd));
3868         scsi_cmd->opcode = REPORT_LUNS;
3869         scsi_cmd->select_report = select_report;
3870         scsi_ulto4b(alloc_len, scsi_cmd->length);
3871 }
3872
3873 /*
3874  * Syncronize the media to the contents of the cache for
3875  * the given lba/count pair.  Specifying 0/0 means sync
3876  * the whole cache.
3877  */
3878 void
3879 scsi_synchronize_cache(struct ccb_scsiio *csio, u_int32_t retries,
3880                        void (*cbfcnp)(struct cam_periph *, union ccb *),
3881                        u_int8_t tag_action, u_int32_t begin_lba,
3882                        u_int16_t lb_count, u_int8_t sense_len,
3883                        u_int32_t timeout)
3884 {
3885         struct scsi_sync_cache *scsi_cmd;
3886
3887         cam_fill_csio(csio,
3888                       retries,
3889                       cbfcnp,
3890                       /*flags*/CAM_DIR_NONE,
3891                       tag_action,
3892                       /*data_ptr*/NULL,
3893                       /*dxfer_len*/0,
3894                       sense_len,
3895                       sizeof(*scsi_cmd),
3896                       timeout);
3897
3898         scsi_cmd = (struct scsi_sync_cache *)&csio->cdb_io.cdb_bytes;
3899         bzero(scsi_cmd, sizeof(*scsi_cmd));
3900         scsi_cmd->opcode = SYNCHRONIZE_CACHE;
3901         scsi_ulto4b(begin_lba, scsi_cmd->begin_lba);
3902         scsi_ulto2b(lb_count, scsi_cmd->lb_count);
3903 }
3904
3905 void
3906 scsi_read_write(struct ccb_scsiio *csio, u_int32_t retries,
3907                 void (*cbfcnp)(struct cam_periph *, union ccb *),
3908                 u_int8_t tag_action, int readop, u_int8_t byte2,
3909                 int minimum_cmd_size, u_int64_t lba, u_int32_t block_count,
3910                 u_int8_t *data_ptr, u_int32_t dxfer_len, u_int8_t sense_len,
3911                 u_int32_t timeout)
3912 {
3913         u_int8_t cdb_len;
3914
3915         /*
3916          * Use the smallest possible command to perform the operation
3917          * as some legacy hardware does not support the 10 byte commands.
3918          * If any of the bits in byte2 is set, we have to go with a larger
3919          * command.
3920          */
3921         if ((minimum_cmd_size < 10)
3922          && ((lba & 0x1fffff) == lba)
3923          && ((block_count & 0xff) == block_count)
3924          && (byte2 == 0)) {
3925                 /*
3926                  * We can fit in a 6 byte cdb.
3927                  */
3928                 struct scsi_rw_6 *scsi_cmd;
3929
3930                 scsi_cmd = (struct scsi_rw_6 *)&csio->cdb_io.cdb_bytes;
3931                 scsi_cmd->opcode = readop ? READ_6 : WRITE_6;
3932                 scsi_ulto3b(lba, scsi_cmd->addr);
3933                 scsi_cmd->length = block_count & 0xff;
3934                 scsi_cmd->control = 0;
3935                 cdb_len = sizeof(*scsi_cmd);
3936
3937                 CAM_DEBUG(csio->ccb_h.path, CAM_DEBUG_SUBTRACE,
3938                           ("6byte: %x%x%x:%d:%d\n", scsi_cmd->addr[0],
3939                            scsi_cmd->addr[1], scsi_cmd->addr[2],
3940                            scsi_cmd->length, dxfer_len));
3941         } else if ((minimum_cmd_size < 12)
3942                 && ((block_count & 0xffff) == block_count)
3943                 && ((lba & 0xffffffffU) == lba)) {
3944                 /*
3945                  * Need a 10 byte cdb.
3946                  */
3947                 struct scsi_rw_10 *scsi_cmd;
3948
3949                 scsi_cmd = (struct scsi_rw_10 *)&csio->cdb_io.cdb_bytes;
3950                 scsi_cmd->opcode = readop ? READ_10 : WRITE_10;
3951                 scsi_cmd->byte2 = byte2;
3952                 scsi_ulto4b(lba, scsi_cmd->addr);
3953                 scsi_cmd->reserved = 0;
3954                 scsi_ulto2b(block_count, scsi_cmd->length);
3955                 scsi_cmd->control = 0;
3956                 cdb_len = sizeof(*scsi_cmd);
3957
3958                 CAM_DEBUG(csio->ccb_h.path, CAM_DEBUG_SUBTRACE,
3959                           ("10byte: %x%x%x%x:%x%x: %d\n", scsi_cmd->addr[0],
3960                            scsi_cmd->addr[1], scsi_cmd->addr[2],
3961                            scsi_cmd->addr[3], scsi_cmd->length[0],
3962                            scsi_cmd->length[1], dxfer_len));
3963         } else if ((minimum_cmd_size < 16)
3964                 && ((block_count & 0xffffffffU) == block_count)
3965                 && ((lba & 0xffffffffU) == lba)) {
3966                 /* 
3967                  * The block count is too big for a 10 byte CDB, use a 12
3968                  * byte CDB.
3969                  */
3970                 struct scsi_rw_12 *scsi_cmd;
3971
3972                 scsi_cmd = (struct scsi_rw_12 *)&csio->cdb_io.cdb_bytes;
3973                 scsi_cmd->opcode = readop ? READ_12 : WRITE_12;
3974                 scsi_cmd->byte2 = byte2;
3975                 scsi_ulto4b(lba, scsi_cmd->addr);
3976                 scsi_cmd->reserved = 0;
3977                 scsi_ulto4b(block_count, scsi_cmd->length);
3978                 scsi_cmd->control = 0;
3979                 cdb_len = sizeof(*scsi_cmd);
3980
3981                 CAM_DEBUG(csio->ccb_h.path, CAM_DEBUG_SUBTRACE,
3982                           ("12byte: %x%x%x%x:%x%x%x%x: %d\n", scsi_cmd->addr[0],
3983                            scsi_cmd->addr[1], scsi_cmd->addr[2],
3984                            scsi_cmd->addr[3], scsi_cmd->length[0],
3985                            scsi_cmd->length[1], scsi_cmd->length[2],
3986                            scsi_cmd->length[3], dxfer_len));
3987         } else {
3988                 /*
3989                  * 16 byte CDB.  We'll only get here if the LBA is larger
3990                  * than 2^32, or if the user asks for a 16 byte command.
3991                  */
3992                 struct scsi_rw_16 *scsi_cmd;
3993
3994                 scsi_cmd = (struct scsi_rw_16 *)&csio->cdb_io.cdb_bytes;
3995                 scsi_cmd->opcode = readop ? READ_16 : WRITE_16;
3996                 scsi_cmd->byte2 = byte2;
3997                 scsi_u64to8b(lba, scsi_cmd->addr);
3998                 scsi_cmd->reserved = 0;
3999                 scsi_ulto4b(block_count, scsi_cmd->length);
4000                 scsi_cmd->control = 0;
4001                 cdb_len = sizeof(*scsi_cmd);
4002         }
4003         cam_fill_csio(csio,
4004                       retries,
4005                       cbfcnp,
4006                       /*flags*/readop ? CAM_DIR_IN : CAM_DIR_OUT,
4007                       tag_action,
4008                       data_ptr,
4009                       dxfer_len,
4010                       sense_len,
4011                       cdb_len,
4012                       timeout);
4013 }
4014
4015 void 
4016 scsi_start_stop(struct ccb_scsiio *csio, u_int32_t retries,
4017                 void (*cbfcnp)(struct cam_periph *, union ccb *),
4018                 u_int8_t tag_action, int start, int load_eject,
4019                 int immediate, u_int8_t sense_len, u_int32_t timeout)
4020 {
4021         struct scsi_start_stop_unit *scsi_cmd;
4022         int extra_flags = 0;
4023
4024         scsi_cmd = (struct scsi_start_stop_unit *)&csio->cdb_io.cdb_bytes;
4025         bzero(scsi_cmd, sizeof(*scsi_cmd));
4026         scsi_cmd->opcode = START_STOP_UNIT;
4027         if (start != 0) {
4028                 scsi_cmd->how |= SSS_START;
4029                 /* it takes a lot of power to start a drive */
4030                 extra_flags |= CAM_HIGH_POWER;
4031         }
4032         if (load_eject != 0)
4033                 scsi_cmd->how |= SSS_LOEJ;
4034         if (immediate != 0)
4035                 scsi_cmd->byte2 |= SSS_IMMED;
4036
4037         cam_fill_csio(csio,
4038                       retries,
4039                       cbfcnp,
4040                       /*flags*/CAM_DIR_NONE | extra_flags,
4041                       tag_action,
4042                       /*data_ptr*/NULL,
4043                       /*dxfer_len*/0,
4044                       sense_len,
4045                       sizeof(*scsi_cmd),
4046                       timeout);
4047
4048 }
4049
4050 void
4051 scsi_log_sense(struct ccb_scsiio *csio, u_int32_t retries,
4052                void (*cbfcnp)(struct cam_periph *, union ccb *),
4053                u_int8_t tag_action, u_int8_t page_code, u_int8_t page,
4054                int save_pages, int ppc, u_int32_t paramptr,
4055                u_int8_t *param_buf, u_int32_t param_len, u_int8_t sense_len,
4056                u_int32_t timeout)
4057 {
4058         struct scsi_log_sense *scsi_cmd;
4059         u_int8_t cdb_len;
4060
4061         scsi_cmd = (struct scsi_log_sense *)&csio->cdb_io.cdb_bytes;
4062         bzero(scsi_cmd, sizeof(*scsi_cmd));
4063         scsi_cmd->opcode = LOG_SENSE;
4064         scsi_cmd->page = page_code | page;
4065         if (save_pages != 0)
4066                 scsi_cmd->byte2 |= SLS_SP;
4067         if (ppc != 0)
4068                 scsi_cmd->byte2 |= SLS_PPC;
4069         scsi_ulto2b(paramptr, scsi_cmd->paramptr);
4070         scsi_ulto2b(param_len, scsi_cmd->length);
4071         cdb_len = sizeof(*scsi_cmd);
4072
4073         cam_fill_csio(csio,
4074                       retries,
4075                       cbfcnp,
4076                       /*flags*/CAM_DIR_IN,
4077                       tag_action,
4078                       /*data_ptr*/param_buf,
4079                       /*dxfer_len*/param_len,
4080                       sense_len,
4081                       cdb_len,
4082                       timeout);
4083 }
4084
4085 void
4086 scsi_log_select(struct ccb_scsiio *csio, u_int32_t retries,
4087                 void (*cbfcnp)(struct cam_periph *, union ccb *),
4088                 u_int8_t tag_action, u_int8_t page_code, int save_pages,
4089                 int pc_reset, u_int8_t *param_buf, u_int32_t param_len,
4090                 u_int8_t sense_len, u_int32_t timeout)
4091 {
4092         struct scsi_log_select *scsi_cmd;
4093         u_int8_t cdb_len;
4094
4095         scsi_cmd = (struct scsi_log_select *)&csio->cdb_io.cdb_bytes;
4096         bzero(scsi_cmd, sizeof(*scsi_cmd));
4097         scsi_cmd->opcode = LOG_SELECT;
4098         scsi_cmd->page = page_code & SLS_PAGE_CODE;
4099         if (save_pages != 0)
4100                 scsi_cmd->byte2 |= SLS_SP;
4101         if (pc_reset != 0)
4102                 scsi_cmd->byte2 |= SLS_PCR;
4103         scsi_ulto2b(param_len, scsi_cmd->length);
4104         cdb_len = sizeof(*scsi_cmd);
4105
4106         cam_fill_csio(csio,
4107                       retries,
4108                       cbfcnp,
4109                       /*flags*/CAM_DIR_OUT,
4110                       tag_action,
4111                       /*data_ptr*/param_buf,
4112                       /*dxfer_len*/param_len,
4113                       sense_len,
4114                       cdb_len,
4115                       timeout);
4116 }
4117
4118 /*      
4119  * Try make as good a match as possible with
4120  * available sub drivers
4121  */
4122 int
4123 scsi_inquiry_match(caddr_t inqbuffer, caddr_t table_entry)
4124 {
4125         struct scsi_inquiry_pattern *entry;
4126         struct scsi_inquiry_data *inq;
4127  
4128         entry = (struct scsi_inquiry_pattern *)table_entry;
4129         inq = (struct scsi_inquiry_data *)inqbuffer;
4130
4131         if (((SID_TYPE(inq) == entry->type)
4132           || (entry->type == T_ANY))
4133          && (SID_IS_REMOVABLE(inq) ? entry->media_type & SIP_MEDIA_REMOVABLE
4134                                    : entry->media_type & SIP_MEDIA_FIXED)
4135          && (cam_strmatch(inq->vendor, entry->vendor, sizeof(inq->vendor)) == 0)
4136          && (cam_strmatch(inq->product, entry->product,
4137                           sizeof(inq->product)) == 0)
4138          && (cam_strmatch(inq->revision, entry->revision,
4139                           sizeof(inq->revision)) == 0)) {
4140                 return (0);
4141         }
4142         return (-1);
4143 }
4144
4145 #ifdef _KERNEL
4146 static void
4147 init_scsi_delay(void)
4148 {
4149         int delay;
4150
4151         delay = SCSI_DELAY;
4152         TUNABLE_INT_FETCH("kern.cam.scsi_delay", &delay);
4153
4154         if (set_scsi_delay(delay) != 0) {
4155                 kprintf("cam: invalid value for tunable kern.cam.scsi_delay\n");
4156                 set_scsi_delay(SCSI_DELAY);
4157         }
4158 }
4159 SYSINIT(scsi_delay, SI_BOOT1_TUNABLES, SI_ORDER_ANY, init_scsi_delay, NULL);
4160
4161 static int
4162 sysctl_scsi_delay(SYSCTL_HANDLER_ARGS)
4163 {
4164         int error, delay;
4165
4166         delay = scsi_delay;
4167         error = sysctl_handle_int(oidp, &delay, 0, req);
4168         if (error != 0 || req->newptr == NULL)
4169                 return (error);
4170         return (set_scsi_delay(delay));
4171 }
4172 SYSCTL_PROC(_kern_cam, OID_AUTO, scsi_delay, CTLTYPE_INT|CTLFLAG_RW,
4173     0, 0, sysctl_scsi_delay, "I",
4174     "Delay to allow devices to settle after a SCSI bus reset (ms)");
4175
4176 static int
4177 set_scsi_delay(int delay)
4178 {
4179         /*
4180          * If someone sets this to 0, we assume that they want the
4181          * minimum allowable bus settle delay.
4182          */
4183         if (delay == 0) {
4184                 kprintf("cam: using minimum scsi_delay (%dms)\n",
4185                     SCSI_MIN_DELAY);
4186                 delay = SCSI_MIN_DELAY;
4187         }
4188         if (delay < SCSI_MIN_DELAY)
4189                 return (EINVAL);
4190         scsi_delay = delay;
4191         return (0);
4192 }
4193 #endif /* _KERNEL */
4194
4195 /*      
4196  * Try make as good a match as possible with
4197  * available sub drivers
4198  */
4199 int
4200 scsi_static_inquiry_match(caddr_t inqbuffer, caddr_t table_entry)
4201 {
4202         struct scsi_static_inquiry_pattern *entry;
4203         struct scsi_inquiry_data *inq;
4204  
4205         entry = (struct scsi_static_inquiry_pattern *)table_entry;
4206         inq = (struct scsi_inquiry_data *)inqbuffer;
4207
4208         if (((SID_TYPE(inq) == entry->type)
4209           || (entry->type == T_ANY))
4210          && (SID_IS_REMOVABLE(inq) ? entry->media_type & SIP_MEDIA_REMOVABLE
4211                                    : entry->media_type & SIP_MEDIA_FIXED)
4212          && (cam_strmatch(inq->vendor, entry->vendor, sizeof(inq->vendor)) == 0)
4213          && (cam_strmatch(inq->product, entry->product,
4214                           sizeof(inq->product)) == 0)
4215          && (cam_strmatch(inq->revision, entry->revision,
4216                           sizeof(inq->revision)) == 0)) {
4217                 return (0);
4218         }
4219         return (-1);
4220 }