Update SCSI opcodes and ASCs.
[dragonfly.git] / sys / bus / cam / scsi / scsi_all.h
blob136ad41431128d1fb35ae64b06f2385ab5b35f92
1 /*
2 * Largely written by Julian Elischer (julian@tfs.com)
3 * for TRW Financial Systems.
5 * TRW Financial Systems, in accordance with their agreement with Carnegie
6 * Mellon University, makes this software available to CMU to distribute
7 * or use in any manner that they see fit as long as this message is kept with
8 * the software. For this reason TFS also grants any other persons or
9 * organisations permission to use or modify this software.
11 * TFS supplies this software to be publicly redistributed
12 * on the understanding that TFS is not responsible for the correct
13 * functioning of this software in any circumstances.
15 * Ported to run under 386BSD by Julian Elischer (julian@tfs.com) Sept 1992
17 * $FreeBSD: src/sys/cam/scsi/scsi_all.h,v 1.31 2008/08/07 17:25:05 jkim Exp $
18 * $DragonFly: src/sys/bus/cam/scsi/scsi_all.h,v 1.15 2008/08/23 22:27:27 pavalos Exp $
22 * SCSI general interface description
25 #ifndef _SCSI_SCSI_ALL_H
26 #define _SCSI_SCSI_ALL_H 1
28 #ifndef _SYS_CDEFS_H_
29 #include <sys/cdefs.h>
30 #endif
31 #if !defined(_KERNEL) && !defined(_STDIO_H_)
32 #include <stdio.h> /* FILE for userland protos */
33 #endif
35 #ifdef _KERNEL
37 * This is the number of milliseconds we wait for devices to settle after a SCSI
38 * bus reset.
40 extern int scsi_delay;
41 #endif /* _KERNEL */
44 * SCSI command format
48 * Define dome bits that are in ALL (or a lot of) scsi commands
50 #define SCSI_CTL_LINK 0x01
51 #define SCSI_CTL_FLAG 0x02
52 #define SCSI_CTL_VENDOR 0xC0
53 #define SCSI_CMD_LUN 0xA0 /* these two should not be needed */
54 #define SCSI_CMD_LUN_SHIFT 5 /* LUN in the cmd is no longer SCSI */
56 #define SCSI_MAX_CDBLEN 16 /*
57 * 16 byte commands are in the
58 * SCSI-3 spec
60 #if defined(CAM_MAX_CDBLEN) && (CAM_MAX_CDBLEN < SCSI_MAX_CDBLEN)
61 #error "CAM_MAX_CDBLEN cannot be less than SCSI_MAX_CDBLEN"
62 #endif
64 /* 6byte CDBs special case 0 length to be 256 */
65 #define SCSI_CDB6_LEN(len) ((len) == 0 ? 256 : len)
68 * This type defines actions to be taken when a particular sense code is
69 * received. Right now, these flags are only defined to take up 16 bits,
70 * but can be expanded in the future if necessary.
72 typedef enum {
73 SS_NOP = 0x000000, /* Do nothing */
74 SS_RETRY = 0x010000, /* Retry the command */
75 SS_FAIL = 0x020000, /* Bail out */
76 SS_START = 0x030000, /* Send a Start Unit command to the device,
77 * then retry the original command.
79 SS_TUR = 0x040000, /* Send a Test Unit Ready command to the
80 * device, then retry the original command.
82 SS_REQSENSE = 0x050000, /* Send a RequestSense command to the
83 * device, then retry the original command.
85 SS_MASK = 0xff0000
86 } scsi_sense_action;
88 typedef enum {
89 SSQ_NONE = 0x0000,
90 SSQ_DECREMENT_COUNT = 0x0100, /* Decrement the retry count */
91 SSQ_MANY = 0x0200, /* send lots of recovery commands */
92 SSQ_RANGE = 0x0400, /*
93 * This table entry represents the
94 * end of a range of ASCQs that
95 * have identical error actions
96 * and text.
98 SSQ_PRINT_SENSE = 0x0800,
99 SSQ_MASK = 0xff00
100 } scsi_sense_action_qualifier;
102 /* Mask for error status values */
103 #define SS_ERRMASK 0xff
105 /* The default, retyable, error action */
106 #define SS_RDEF SS_RETRY|SSQ_DECREMENT_COUNT|SSQ_PRINT_SENSE|EIO
108 /* The retyable, error action, with table specified error code */
109 #define SS_RET SS_RETRY|SSQ_DECREMENT_COUNT|SSQ_PRINT_SENSE
111 /* Fatal error action, with table specified error code */
112 #define SS_FATAL SS_FAIL|SSQ_PRINT_SENSE
114 struct scsi_generic
116 u_int8_t opcode;
117 u_int8_t bytes[11];
120 struct scsi_request_sense
122 u_int8_t opcode;
123 u_int8_t byte2;
124 u_int8_t unused[2];
125 u_int8_t length;
126 u_int8_t control;
129 struct scsi_test_unit_ready
131 u_int8_t opcode;
132 u_int8_t byte2;
133 u_int8_t unused[3];
134 u_int8_t control;
137 struct scsi_send_diag
139 u_int8_t opcode;
140 u_int8_t byte2;
141 #define SSD_UOL 0x01
142 #define SSD_DOL 0x02
143 #define SSD_SELFTEST 0x04
144 #define SSD_PF 0x10
145 u_int8_t unused[1];
146 u_int8_t paramlen[2];
147 u_int8_t control;
150 struct scsi_sense
152 u_int8_t opcode;
153 u_int8_t byte2;
154 u_int8_t unused[2];
155 u_int8_t length;
156 u_int8_t control;
159 struct scsi_inquiry
161 u_int8_t opcode;
162 u_int8_t byte2;
163 #define SI_EVPD 0x01
164 u_int8_t page_code;
165 u_int8_t reserved;
166 u_int8_t length;
167 u_int8_t control;
170 struct scsi_mode_sense_6
172 u_int8_t opcode;
173 u_int8_t byte2;
174 #define SMS_DBD 0x08
175 u_int8_t page;
176 #define SMS_PAGE_CODE 0x3F
177 #define SMS_VENDOR_SPECIFIC_PAGE 0x00
178 #define SMS_DISCONNECT_RECONNECT_PAGE 0x02
179 #define SMS_CACHE_PAGE 0x08
180 #define SMS_PERIPHERAL_DEVICE_PAGE 0x09
181 #define SMS_CONTROL_MODE_PAGE 0x0A
182 #define SMS_PROTO_SPECIFIC_PAGE 0x19
183 #define SMS_INFO_EXCEPTIONS_PAGE 0x1C
184 #define SMS_ALL_PAGES_PAGE 0x3F
185 #define SMS_PAGE_CTRL_MASK 0xC0
186 #define SMS_PAGE_CTRL_CURRENT 0x00
187 #define SMS_PAGE_CTRL_CHANGEABLE 0x40
188 #define SMS_PAGE_CTRL_DEFAULT 0x80
189 #define SMS_PAGE_CTRL_SAVED 0xC0
190 u_int8_t unused;
191 u_int8_t length;
192 u_int8_t control;
195 struct scsi_mode_sense_10
197 u_int8_t opcode;
198 u_int8_t byte2; /* same bits as small version */
199 u_int8_t page; /* same bits as small version */
200 u_int8_t unused[4];
201 u_int8_t length[2];
202 u_int8_t control;
205 struct scsi_mode_select_6
207 u_int8_t opcode;
208 u_int8_t byte2;
209 #define SMS_SP 0x01
210 #define SMS_PF 0x10
211 u_int8_t unused[2];
212 u_int8_t length;
213 u_int8_t control;
216 struct scsi_mode_select_10
218 u_int8_t opcode;
219 u_int8_t byte2; /* same bits as small version */
220 u_int8_t unused[5];
221 u_int8_t length[2];
222 u_int8_t control;
226 * When sending a mode select to a tape drive, the medium type must be 0.
228 struct scsi_mode_hdr_6
230 u_int8_t datalen;
231 u_int8_t medium_type;
232 u_int8_t dev_specific;
233 u_int8_t block_descr_len;
236 struct scsi_mode_hdr_10
238 u_int8_t datalen[2];
239 u_int8_t medium_type;
240 u_int8_t dev_specific;
241 u_int8_t reserved[2];
242 u_int8_t block_descr_len[2];
245 struct scsi_mode_block_descr
247 u_int8_t density_code;
248 u_int8_t num_blocks[3];
249 u_int8_t reserved;
250 u_int8_t block_len[3];
253 struct scsi_log_sense
255 u_int8_t opcode;
256 u_int8_t byte2;
257 #define SLS_SP 0x01
258 #define SLS_PPC 0x02
259 u_int8_t page;
260 #define SLS_PAGE_CODE 0x3F
261 #define SLS_ALL_PAGES_PAGE 0x00
262 #define SLS_OVERRUN_PAGE 0x01
263 #define SLS_ERROR_WRITE_PAGE 0x02
264 #define SLS_ERROR_READ_PAGE 0x03
265 #define SLS_ERROR_READREVERSE_PAGE 0x04
266 #define SLS_ERROR_VERIFY_PAGE 0x05
267 #define SLS_ERROR_NONMEDIUM_PAGE 0x06
268 #define SLS_ERROR_LASTN_PAGE 0x07
269 #define SLS_SELF_TEST_PAGE 0x10
270 #define SLS_IE_PAGE 0x2f
271 #define SLS_PAGE_CTRL_MASK 0xC0
272 #define SLS_PAGE_CTRL_THRESHOLD 0x00
273 #define SLS_PAGE_CTRL_CUMULATIVE 0x40
274 #define SLS_PAGE_CTRL_THRESH_DEFAULT 0x80
275 #define SLS_PAGE_CTRL_CUMUL_DEFAULT 0xC0
276 u_int8_t reserved[2];
277 u_int8_t paramptr[2];
278 u_int8_t length[2];
279 u_int8_t control;
282 struct scsi_log_select
284 u_int8_t opcode;
285 u_int8_t byte2;
286 /* SLS_SP 0x01 */
287 #define SLS_PCR 0x02
288 u_int8_t page;
289 /* SLS_PAGE_CTRL_MASK 0xC0 */
290 /* SLS_PAGE_CTRL_THRESHOLD 0x00 */
291 /* SLS_PAGE_CTRL_CUMULATIVE 0x40 */
292 /* SLS_PAGE_CTRL_THRESH_DEFAULT 0x80 */
293 /* SLS_PAGE_CTRL_CUMUL_DEFAULT 0xC0 */
294 u_int8_t reserved[4];
295 u_int8_t length[2];
296 u_int8_t control;
299 struct scsi_log_header
301 u_int8_t page;
302 u_int8_t reserved;
303 u_int8_t datalen[2];
306 struct scsi_log_param_header {
307 u_int8_t param_code[2];
308 u_int8_t param_control;
309 #define SLP_LP 0x01
310 #define SLP_LBIN 0x02
311 #define SLP_TMC_MASK 0x0C
312 #define SLP_TMC_ALWAYS 0x00
313 #define SLP_TMC_EQUAL 0x04
314 #define SLP_TMC_NOTEQUAL 0x08
315 #define SLP_TMC_GREATER 0x0C
316 #define SLP_ETC 0x10
317 #define SLP_TSD 0x20
318 #define SLP_DS 0x40
319 #define SLP_DU 0x80
320 u_int8_t param_len;
323 struct scsi_control_page {
324 u_int8_t page_code;
325 u_int8_t page_length;
326 u_int8_t rlec;
327 #define SCB_RLEC 0x01 /*Report Log Exception Cond*/
328 u_int8_t queue_flags;
329 #define SCP_QUEUE_ALG_MASK 0xF0
330 #define SCP_QUEUE_ALG_RESTRICTED 0x00
331 #define SCP_QUEUE_ALG_UNRESTRICTED 0x10
332 #define SCP_QUEUE_ERR 0x02 /*Queued I/O aborted for CACs*/
333 #define SCP_QUEUE_DQUE 0x01 /*Queued I/O disabled*/
334 u_int8_t eca_and_aen;
335 #define SCP_EECA 0x80 /*Enable Extended CA*/
336 #define SCP_RAENP 0x04 /*Ready AEN Permission*/
337 #define SCP_UAAENP 0x02 /*UA AEN Permission*/
338 #define SCP_EAENP 0x01 /*Error AEN Permission*/
339 u_int8_t reserved;
340 u_int8_t aen_holdoff_period[2];
343 struct scsi_cache_page {
344 u_int8_t page_code;
345 #define SCHP_PAGE_SAVABLE 0x80 /* Page is savable */
346 u_int8_t page_length;
347 u_int8_t cache_flags;
348 #define SCHP_FLAGS_WCE 0x04 /* Write Cache Enable */
349 #define SCHP_FLAGS_MF 0x02 /* Multiplication factor */
350 #define SCHP_FLAGS_RCD 0x01 /* Read Cache Disable */
351 u_int8_t rw_cache_policy;
352 u_int8_t dis_prefetch[2];
353 u_int8_t min_prefetch[2];
354 u_int8_t max_prefetch[2];
355 u_int8_t max_prefetch_ceil[2];
358 struct scsi_info_exceptions_page {
359 u_int8_t page_code;
360 #define SIEP_PAGE_SAVABLE 0x80 /* Page is savable */
361 u_int8_t page_length;
362 u_int8_t info_flags;
363 #define SIEP_FLAGS_PERF 0x80
364 #define SIEP_FLAGS_EBF 0x20
365 #define SIEP_FLAGS_EWASC 0x10
366 #define SIEP_FLAGS_DEXCPT 0x08
367 #define SIEP_FLAGS_TEST 0x04
368 #define SIEP_FLAGS_EBACKERR 0x02
369 #define SIEP_FLAGS_LOGERR 0x01
370 u_int8_t mrie;
371 u_int8_t interval_timer[4];
372 u_int8_t report_count[4];
375 struct scsi_proto_specific_page {
376 u_int8_t page_code;
377 #define SPSP_PAGE_SAVABLE 0x80 /* Page is savable */
378 u_int8_t page_length;
379 u_int8_t protocol;
380 #define SPSP_PROTO_FC 0x00
381 #define SPSP_PROTO_SPI 0x01
382 #define SPSP_PROTO_SSA 0x02
383 #define SPSP_PROTO_1394 0x03
384 #define SPSP_PROTO_RDMA 0x04
385 #define SPSP_PROTO_ISCSI 0x05
386 #define SPSP_PROTO_SAS 0x06
387 #define SPSP_PROTO_ADT 0x07
388 #define SPSP_PROTO_ATA 0x08
389 #define SPSP_PROTO_NONE 0x0f
392 struct scsi_reserve
394 u_int8_t opcode;
395 u_int8_t byte2;
396 u_int8_t unused[2];
397 u_int8_t length;
398 u_int8_t control;
401 struct scsi_release
403 u_int8_t opcode;
404 u_int8_t byte2;
405 u_int8_t unused[2];
406 u_int8_t length;
407 u_int8_t control;
410 struct scsi_prevent
412 u_int8_t opcode;
413 u_int8_t byte2;
414 u_int8_t unused[2];
415 u_int8_t how;
416 u_int8_t control;
418 #define PR_PREVENT 0x01
419 #define PR_ALLOW 0x00
421 struct scsi_sync_cache
423 u_int8_t opcode;
424 u_int8_t byte2;
425 u_int8_t begin_lba[4];
426 u_int8_t reserved;
427 u_int8_t lb_count[2];
428 u_int8_t control;
432 struct scsi_changedef
434 u_int8_t opcode;
435 u_int8_t byte2;
436 u_int8_t unused1;
437 u_int8_t how;
438 u_int8_t unused[4];
439 u_int8_t datalen;
440 u_int8_t control;
443 struct scsi_read_buffer
445 u_int8_t opcode;
446 u_int8_t byte2;
447 #define RWB_MODE 0x07
448 #define RWB_MODE_HDR_DATA 0x00
449 #define RWB_MODE_DATA 0x02
450 #define RWB_MODE_DOWNLOAD 0x04
451 #define RWB_MODE_DOWNLOAD_SAVE 0x05
452 u_int8_t buffer_id;
453 u_int8_t offset[3];
454 u_int8_t length[3];
455 u_int8_t control;
458 struct scsi_write_buffer
460 u_int8_t opcode;
461 u_int8_t byte2;
462 u_int8_t buffer_id;
463 u_int8_t offset[3];
464 u_int8_t length[3];
465 u_int8_t control;
468 struct scsi_rw_6
470 u_int8_t opcode;
471 u_int8_t addr[3];
472 /* only 5 bits are valid in the MSB address byte */
473 #define SRW_TOPADDR 0x1F
474 u_int8_t length;
475 u_int8_t control;
478 struct scsi_rw_10
480 u_int8_t opcode;
481 #define SRW10_RELADDR 0x01
482 /* EBP defined for WRITE(10) only */
483 #define SRW10_EBP 0x04
484 #define SRW10_FUA 0x08
485 #define SRW10_DPO 0x10
486 u_int8_t byte2;
487 u_int8_t addr[4];
488 u_int8_t reserved;
489 u_int8_t length[2];
490 u_int8_t control;
493 struct scsi_rw_12
495 u_int8_t opcode;
496 #define SRW12_RELADDR 0x01
497 #define SRW12_FUA 0x08
498 #define SRW12_DPO 0x10
499 u_int8_t byte2;
500 u_int8_t addr[4];
501 u_int8_t length[4];
502 u_int8_t reserved;
503 u_int8_t control;
506 struct scsi_rw_16
508 u_int8_t opcode;
509 #define SRW16_RELADDR 0x01
510 #define SRW16_FUA 0x08
511 #define SRW16_DPO 0x10
512 u_int8_t byte2;
513 u_int8_t addr[8];
514 u_int8_t length[4];
515 u_int8_t reserved;
516 u_int8_t control;
520 struct scsi_start_stop_unit
522 u_int8_t opcode;
523 u_int8_t byte2;
524 #define SSS_IMMED 0x01
525 u_int8_t reserved[2];
526 u_int8_t how;
527 #define SSS_START 0x01
528 #define SSS_LOEJ 0x02
529 u_int8_t control;
532 struct ata_pass_12 {
533 u_int8_t opcode;
534 u_int8_t protocol;
535 #define AP_MULTI 0xe0
536 u_int8_t flags;
537 #define AP_T_LEN 0x03
538 #define AP_BB 0x04
539 #define AP_T_DIR 0x08
540 #define AP_CK_COND 0x20
541 #define AP_OFFLINE 0x60
542 u_int8_t features;
543 u_int8_t sector_count;
544 u_int8_t lba_low;
545 u_int8_t lba_mid;
546 u_int8_t lba_high;
547 u_int8_t device;
548 u_int8_t command;
549 u_int8_t reserved;
550 u_int8_t control;
553 struct ata_pass_16 {
554 u_int8_t opcode;
555 u_int8_t protocol;
556 #define AP_EXTEND 0x01
557 u_int8_t flags;
558 u_int8_t features_ext;
559 u_int8_t features;
560 u_int8_t sector_count_ext;
561 u_int8_t sector_count;
562 u_int8_t lba_low_ext;
563 u_int8_t lba_low;
564 u_int8_t lba_mid_ext;
565 u_int8_t lba_mid;
566 u_int8_t lba_high_ext;
567 u_int8_t lba_high;
568 u_int8_t device;
569 u_int8_t command;
570 u_int8_t control;
573 #define SC_SCSI_1 0x01
574 #define SC_SCSI_2 0x03
577 * Opcodes
580 #define TEST_UNIT_READY 0x00
581 #define REQUEST_SENSE 0x03
582 #define READ_6 0x08
583 #define WRITE_6 0x0a
584 #define INQUIRY 0x12
585 #define MODE_SELECT_6 0x15
586 #define MODE_SENSE_6 0x1a
587 #define START_STOP_UNIT 0x1b
588 #define START_STOP 0x1b
589 #define RESERVE 0x16
590 #define RELEASE 0x17
591 #define RECEIVE_DIAGNOSTIC 0x1c
592 #define SEND_DIAGNOSTIC 0x1d
593 #define PREVENT_ALLOW 0x1e
594 #define READ_CAPACITY 0x25
595 #define READ_10 0x28
596 #define WRITE_10 0x2a
597 #define POSITION_TO_ELEMENT 0x2b
598 #define SYNCHRONIZE_CACHE 0x35
599 #define READ_DEFECT_DATA_10 0x37
600 #define WRITE_BUFFER 0x3b
601 #define READ_BUFFER 0x3c
602 #define CHANGE_DEFINITION 0x40
603 #define LOG_SELECT 0x4c
604 #define LOG_SENSE 0x4d
605 #define MODE_SELECT_10 0x55
606 #define MODE_SENSE_10 0x5a
607 #define ATA_PASS_16 0x85
608 #define READ_16 0x88
609 #define WRITE_16 0x8a
610 #define SERVICE_ACTION_IN 0x9e
611 #define REPORT_LUNS 0xa0
612 #define ATA_PASS_12 0xa1
613 #define MOVE_MEDIUM 0xa5
614 #define READ_12 0xa8
615 #define WRITE_12 0xaa
616 #define READ_ELEMENT_STATUS 0xb8
619 * Device Types
621 #define T_DIRECT 0x00
622 #define T_SEQUENTIAL 0x01
623 #define T_PRINTER 0x02
624 #define T_PROCESSOR 0x03
625 #define T_WORM 0x04
626 #define T_CDROM 0x05
627 #define T_SCANNER 0x06
628 #define T_OPTICAL 0x07
629 #define T_CHANGER 0x08
630 #define T_COMM 0x09
631 #define T_ASC0 0x0a
632 #define T_ASC1 0x0b
633 #define T_STORARRAY 0x0c
634 #define T_ENCLOSURE 0x0d
635 #define T_RBC 0x0e
636 #define T_OCRW 0x0f
637 #define T_OSD 0x11
638 #define T_ADC 0x12
639 #define T_NODEVICE 0x1f
640 #define T_ANY 0xff /* Used in Quirk table matches */
642 #define T_REMOV 1
643 #define T_FIXED 0
646 * This length is the initial inquiry length used by the probe code, as
647 * well as the legnth necessary for scsi_print_inquiry() to function
648 * correctly. If either use requires a different length in the future,
649 * the two values should be de-coupled.
651 #define SHORT_INQUIRY_LENGTH 36
653 struct scsi_inquiry_data
655 u_int8_t device;
656 #define SID_TYPE(inq_data) ((inq_data)->device & 0x1f)
657 #define SID_QUAL(inq_data) (((inq_data)->device & 0xE0) >> 5)
658 #define SID_QUAL_LU_CONNECTED 0x00 /*
659 * The specified peripheral device
660 * type is currently connected to
661 * logical unit. If the target cannot
662 * determine whether or not a physical
663 * device is currently connected, it
664 * shall also use this peripheral
665 * qualifier when returning the INQUIRY
666 * data. This peripheral qualifier
667 * does not mean that the device is
668 * ready for access by the initiator.
670 #define SID_QUAL_LU_OFFLINE 0x01 /*
671 * The target is capable of supporting
672 * the specified peripheral device type
673 * on this logical unit; however, the
674 * physical device is not currently
675 * connected to this logical unit.
677 #define SID_QUAL_RSVD 0x02
678 #define SID_QUAL_BAD_LU 0x03 /*
679 * The target is not capable of
680 * supporting a physical device on
681 * this logical unit. For this
682 * peripheral qualifier the peripheral
683 * device type shall be set to 1Fh to
684 * provide compatibility with previous
685 * versions of SCSI. All other
686 * peripheral device type values are
687 * reserved for this peripheral
688 * qualifier.
690 #define SID_QUAL_IS_VENDOR_UNIQUE(inq_data) ((SID_QUAL(inq_data) & 0x08) != 0)
691 u_int8_t dev_qual2;
692 #define SID_QUAL2 0x7F
693 #define SID_IS_REMOVABLE(inq_data) (((inq_data)->dev_qual2 & 0x80) != 0)
694 u_int8_t version;
695 #define SID_ANSI_REV(inq_data) ((inq_data)->version & 0x07)
696 #define SCSI_REV_0 0
697 #define SCSI_REV_CCS 1
698 #define SCSI_REV_2 2
699 #define SCSI_REV_SPC 3
700 #define SCSI_REV_SPC2 4
702 #define SID_ECMA 0x38
703 #define SID_ISO 0xC0
704 u_int8_t response_format;
705 #define SID_AENC 0x80
706 #define SID_TrmIOP 0x40
707 u_int8_t additional_length;
708 #define SID_ADDITIONAL_LENGTH(iqd) \
709 ((iqd)->additional_length + \
710 offsetof(struct scsi_inquiry_data, additional_length) + 1)
711 u_int8_t reserved;
712 u_int8_t spc2_flags;
713 #define SPC2_SID_MChngr 0x08
714 #define SPC2_SID_MultiP 0x10
715 #define SPC2_SID_EncServ 0x40
716 #define SPC2_SID_BQueue 0x80
718 #define INQ_DATA_TQ_ENABLED(iqd) \
719 ((SID_ANSI_REV(iqd) < SCSI_REV_SPC2)? ((iqd)->flags & SID_CmdQue) : \
720 (((iqd)->flags & SID_CmdQue) && !((iqd)->spc2_flags & SPC2_SID_BQueue)) || \
721 (!((iqd)->flags & SID_CmdQue) && ((iqd)->spc2_flags & SPC2_SID_BQueue)))
724 u_int8_t flags;
725 #define SID_SftRe 0x01
726 #define SID_CmdQue 0x02
727 #define SID_Linked 0x08
728 #define SID_Sync 0x10
729 #define SID_WBus16 0x20
730 #define SID_WBus32 0x40
731 #define SID_RelAdr 0x80
732 #define SID_VENDOR_SIZE 8
733 char vendor[SID_VENDOR_SIZE];
734 #define SID_PRODUCT_SIZE 16
735 char product[SID_PRODUCT_SIZE];
736 #define SID_REVISION_SIZE 4
737 char revision[SID_REVISION_SIZE];
739 * The following fields were taken from SCSI Primary Commands - 2
740 * (SPC-2) Revision 14, Dated 11 November 1999
742 #define SID_VENDOR_SPECIFIC_0_SIZE 20
743 u_int8_t vendor_specific0[SID_VENDOR_SPECIFIC_0_SIZE];
745 * An extension of SCSI Parallel Specific Values
747 #define SID_SPI_IUS 0x01
748 #define SID_SPI_QAS 0x02
749 #define SID_SPI_CLOCK_ST 0x00
750 #define SID_SPI_CLOCK_DT 0x04
751 #define SID_SPI_CLOCK_DT_ST 0x0C
752 #define SID_SPI_MASK 0x0F
753 u_int8_t spi3data;
754 u_int8_t reserved2;
756 * Version Descriptors, stored 2 byte values.
758 u_int8_t version1[2];
759 u_int8_t version2[2];
760 u_int8_t version3[2];
761 u_int8_t version4[2];
762 u_int8_t version5[2];
763 u_int8_t version6[2];
764 u_int8_t version7[2];
765 u_int8_t version8[2];
767 u_int8_t reserved3[22];
769 #define SID_VENDOR_SPECIFIC_1_SIZE 160
770 u_int8_t vendor_specific1[SID_VENDOR_SPECIFIC_1_SIZE];
773 struct scsi_vpd_supported_page_list
775 u_int8_t device;
776 u_int8_t page_code;
777 #define SVPD_SUPPORTED_PAGE_LIST 0x00
778 u_int8_t reserved;
779 u_int8_t length; /* number of VPD entries */
780 #define SVPD_SUPPORTED_PAGES_SIZE 251
781 u_int8_t list[SVPD_SUPPORTED_PAGES_SIZE];
784 struct scsi_vpd_unit_serial_number
786 u_int8_t device;
787 u_int8_t page_code;
788 #define SVPD_UNIT_SERIAL_NUMBER 0x80
789 u_int8_t reserved;
790 u_int8_t length; /* serial number length */
791 #define SVPD_SERIAL_NUM_SIZE 251
792 u_int8_t serial_num[SVPD_SERIAL_NUM_SIZE];
795 struct scsi_read_capacity
797 u_int8_t opcode;
798 u_int8_t byte2;
799 u_int8_t addr[4];
800 u_int8_t unused[3];
801 u_int8_t control;
804 struct scsi_read_capacity_16
806 uint8_t opcode;
807 #define SRC16_SERVICE_ACTION 0x10
808 uint8_t service_action;
809 uint8_t addr[8];
810 uint8_t alloc_len[4];
811 #define SRC16_PMI 0x01
812 #define SRC16_RELADR 0x02
813 uint8_t reladr;
814 uint8_t control;
817 struct scsi_read_capacity_data
819 u_int8_t addr[4];
820 u_int8_t length[4];
823 struct scsi_read_capacity_data_long
825 uint8_t addr[8];
826 uint8_t length[4];
829 struct scsi_report_luns
831 uint8_t opcode;
832 uint8_t reserved1;
833 #define RPL_REPORT_DEFAULT 0x00
834 #define RPL_REPORT_WELLKNOWN 0x01
835 #define RPL_REPORT_ALL 0x02
836 uint8_t select_report;
837 uint8_t reserved2[3];
838 uint8_t length[4];
839 uint8_t reserved3;
840 uint8_t control;
843 struct scsi_report_luns_data {
844 u_int8_t length[4]; /* length of LUN inventory, in bytes */
845 u_int8_t reserved[4]; /* unused */
847 * LUN inventory- we only support the type zero form for now.
849 struct {
850 u_int8_t lundata[8];
851 } luns[0];
853 #define RPL_LUNDATA_PERIPH_BUS_MASK 0x3f
854 #define RPL_LUNDATA_FLAT_LUN_MASK 0x3f
855 #define RPL_LUNDATA_LUN_TARG_MASK 0x3f
856 #define RPL_LUNDATA_LUN_BUS_MASK 0xe0
857 #define RPL_LUNDATA_LUN_LUN_MASK 0x1f
858 #define RPL_LUNDATA_EXT_LEN_MASK 0x30
859 #define RPL_LUNDATA_EXT_EAM_MASK 0x0f
860 #define RPL_LUNDATA_EXT_EAM_WK 0x01
861 #define RPL_LUNDATA_EXT_EAM_NOT_SPEC 0x0f
862 #define RPL_LUNDATA_ATYP_MASK 0xc0 /* MBZ for type 0 lun */
863 #define RPL_LUNDATA_ATYP_PERIPH 0x00
864 #define RPL_LUNDATA_ATYP_FLAT 0x40
865 #define RPL_LUNDATA_ATYP_LUN 0x80
866 #define RPL_LUNDATA_ATYP_EXTLUN 0xc0
869 struct scsi_sense_data
871 u_int8_t error_code;
872 #define SSD_ERRCODE 0x7F
873 #define SSD_CURRENT_ERROR 0x70
874 #define SSD_DEFERRED_ERROR 0x71
875 #define SSD_ERRCODE_VALID 0x80
876 u_int8_t segment;
877 u_int8_t flags;
878 #define SSD_KEY 0x0F
879 #define SSD_KEY_NO_SENSE 0x00
880 #define SSD_KEY_RECOVERED_ERROR 0x01
881 #define SSD_KEY_NOT_READY 0x02
882 #define SSD_KEY_MEDIUM_ERROR 0x03
883 #define SSD_KEY_HARDWARE_ERROR 0x04
884 #define SSD_KEY_ILLEGAL_REQUEST 0x05
885 #define SSD_KEY_UNIT_ATTENTION 0x06
886 #define SSD_KEY_DATA_PROTECT 0x07
887 #define SSD_KEY_BLANK_CHECK 0x08
888 #define SSD_KEY_Vendor_Specific 0x09
889 #define SSD_KEY_COPY_ABORTED 0x0a
890 #define SSD_KEY_ABORTED_COMMAND 0x0b
891 #define SSD_KEY_EQUAL 0x0c
892 #define SSD_KEY_VOLUME_OVERFLOW 0x0d
893 #define SSD_KEY_MISCOMPARE 0x0e
894 #define SSD_KEY_RESERVED 0x0f
895 #define SSD_ILI 0x20
896 #define SSD_EOM 0x40
897 #define SSD_FILEMARK 0x80
898 u_int8_t info[4];
899 u_int8_t extra_len;
900 u_int8_t cmd_spec_info[4];
901 u_int8_t add_sense_code;
902 u_int8_t add_sense_code_qual;
903 u_int8_t fru;
904 u_int8_t sense_key_spec[3];
905 #define SSD_SCS_VALID 0x80
906 #define SSD_FIELDPTR_CMD 0x40
907 #define SSD_BITPTR_VALID 0x08
908 #define SSD_BITPTR_VALUE 0x07
909 #define SSD_MIN_SIZE 18
910 u_int8_t extra_bytes[14];
911 #define SSD_FULL_SIZE sizeof(struct scsi_sense_data)
914 struct scsi_mode_header_6
916 u_int8_t data_length; /* Sense data length */
917 u_int8_t medium_type;
918 u_int8_t dev_spec;
919 u_int8_t blk_desc_len;
922 struct scsi_mode_header_10
924 u_int8_t data_length[2];/* Sense data length */
925 u_int8_t medium_type;
926 u_int8_t dev_spec;
927 u_int8_t unused[2];
928 u_int8_t blk_desc_len[2];
931 struct scsi_mode_page_header
933 u_int8_t page_code;
934 u_int8_t page_length;
937 struct scsi_mode_blk_desc
939 u_int8_t density;
940 u_int8_t nblocks[3];
941 u_int8_t reserved;
942 u_int8_t blklen[3];
945 #define SCSI_DEFAULT_DENSITY 0x00 /* use 'default' density */
946 #define SCSI_SAME_DENSITY 0x7f /* use 'same' density- >= SCSI-2 only */
950 * Status Byte
952 #define SCSI_STATUS_OK 0x00
953 #define SCSI_STATUS_CHECK_COND 0x02
954 #define SCSI_STATUS_COND_MET 0x04
955 #define SCSI_STATUS_BUSY 0x08
956 #define SCSI_STATUS_INTERMED 0x10
957 #define SCSI_STATUS_INTERMED_COND_MET 0x14
958 #define SCSI_STATUS_RESERV_CONFLICT 0x18
959 #define SCSI_STATUS_CMD_TERMINATED 0x22 /* Obsolete in SAM-2 */
960 #define SCSI_STATUS_QUEUE_FULL 0x28
961 #define SCSI_STATUS_ACA_ACTIVE 0x30
962 #define SCSI_STATUS_TASK_ABORTED 0x40
964 struct scsi_inquiry_pattern {
965 u_int8_t type;
966 u_int8_t media_type;
967 #define SIP_MEDIA_REMOVABLE 0x01
968 #define SIP_MEDIA_FIXED 0x02
969 const char *vendor;
970 const char *product;
971 const char *revision;
974 struct scsi_static_inquiry_pattern {
975 u_int8_t type;
976 u_int8_t media_type;
977 char vendor[SID_VENDOR_SIZE+1];
978 char product[SID_PRODUCT_SIZE+1];
979 char revision[SID_REVISION_SIZE+1];
982 struct scsi_sense_quirk_entry {
983 struct scsi_inquiry_pattern inq_pat;
984 int num_sense_keys;
985 int num_ascs;
986 struct sense_key_table_entry *sense_key_info;
987 struct asc_table_entry *asc_info;
990 struct sense_key_table_entry {
991 u_int8_t sense_key;
992 u_int32_t action;
993 const char *desc;
996 struct asc_table_entry {
997 u_int8_t asc;
998 u_int8_t ascq;
999 u_int32_t action;
1000 const char *desc;
1003 struct op_table_entry {
1004 u_int8_t opcode;
1005 u_int32_t opmask;
1006 const char *desc;
1009 struct scsi_op_quirk_entry {
1010 struct scsi_inquiry_pattern inq_pat;
1011 int num_ops;
1012 struct op_table_entry *op_table;
1015 typedef enum {
1016 SSS_FLAG_NONE = 0x00,
1017 SSS_FLAG_PRINT_COMMAND = 0x01
1018 } scsi_sense_string_flags;
1020 struct ccb_scsiio;
1021 struct cam_periph;
1022 union ccb;
1023 #ifndef _KERNEL
1024 struct cam_device;
1025 #endif
1027 extern const char *scsi_sense_key_text[];
1029 struct sbuf;
1031 __BEGIN_DECLS
1032 void scsi_sense_desc(int sense_key, int asc, int ascq,
1033 struct scsi_inquiry_data *inq_data,
1034 const char **sense_key_desc, const char **asc_desc);
1035 scsi_sense_action scsi_error_action(struct ccb_scsiio* csio,
1036 struct scsi_inquiry_data *inq_data,
1037 u_int32_t sense_flags);
1038 const char * scsi_status_string(struct ccb_scsiio *csio);
1039 #ifdef _KERNEL
1040 int scsi_command_string(struct ccb_scsiio *csio, struct sbuf *sb);
1041 int scsi_sense_sbuf(struct ccb_scsiio *csio, struct sbuf *sb,
1042 scsi_sense_string_flags flags);
1043 char * scsi_sense_string(struct ccb_scsiio *csio,
1044 char *str, int str_len);
1045 void scsi_sense_print(struct ccb_scsiio *csio);
1046 int scsi_interpret_sense(union ccb *ccb,
1047 u_int32_t sense_flags,
1048 u_int32_t *relsim_flags,
1049 u_int32_t *reduction,
1050 u_int32_t *timeout,
1051 scsi_sense_action error_action);
1052 #else
1053 int scsi_command_string(struct cam_device *device,
1054 struct ccb_scsiio *csio, struct sbuf *sb);
1055 int scsi_sense_sbuf(struct cam_device *device,
1056 struct ccb_scsiio *csio, struct sbuf *sb,
1057 scsi_sense_string_flags flags);
1058 char * scsi_sense_string(struct cam_device *device,
1059 struct ccb_scsiio *csio,
1060 char *str, int str_len);
1061 void scsi_sense_print(struct cam_device *device,
1062 struct ccb_scsiio *csio, FILE *ofile);
1063 int scsi_interpret_sense(struct cam_device *device,
1064 union ccb *ccb,
1065 u_int32_t sense_flags,
1066 u_int32_t *relsim_flags,
1067 u_int32_t *reduction,
1068 u_int32_t *timeout,
1069 scsi_sense_action error_action);
1070 #endif /* _KERNEL */
1072 #define SF_RETRY_UA 0x01
1073 #define SF_NO_PRINT 0x02
1074 #define SF_QUIET_IR 0x04 /* Be quiet about Illegal Request reponses */
1075 #define SF_PRINT_ALWAYS 0x08
1078 const char * scsi_op_desc(u_int16_t opcode,
1079 struct scsi_inquiry_data *inq_data);
1080 char * scsi_cdb_string(u_int8_t *cdb_ptr, char *cdb_string,
1081 size_t len);
1083 void scsi_print_inquiry(struct scsi_inquiry_data *inq_data);
1085 u_int scsi_calc_syncsrate(u_int period_factor);
1086 u_int scsi_calc_syncparam(u_int period);
1088 void scsi_test_unit_ready(struct ccb_scsiio *csio, u_int32_t retries,
1089 void (*cbfcnp)(struct cam_periph *,
1090 union ccb *),
1091 u_int8_t tag_action,
1092 u_int8_t sense_len, u_int32_t timeout);
1094 void scsi_request_sense(struct ccb_scsiio *csio, u_int32_t retries,
1095 void (*cbfcnp)(struct cam_periph *,
1096 union ccb *),
1097 void *data_ptr, u_int8_t dxfer_len,
1098 u_int8_t tag_action, u_int8_t sense_len,
1099 u_int32_t timeout);
1101 void scsi_inquiry(struct ccb_scsiio *csio, u_int32_t retries,
1102 void (*cbfcnp)(struct cam_periph *, union ccb *),
1103 u_int8_t tag_action, u_int8_t *inq_buf,
1104 u_int32_t inq_len, int evpd, u_int8_t page_code,
1105 u_int8_t sense_len, u_int32_t timeout);
1107 void scsi_mode_sense(struct ccb_scsiio *csio, u_int32_t retries,
1108 void (*cbfcnp)(struct cam_periph *,
1109 union ccb *),
1110 u_int8_t tag_action, int dbd,
1111 u_int8_t page_code, u_int8_t page,
1112 u_int8_t *param_buf, u_int32_t param_len,
1113 u_int8_t sense_len, u_int32_t timeout);
1114 void scsi_mode_sense_len(struct ccb_scsiio *csio, u_int32_t retries,
1115 void (*cbfcnp)(struct cam_periph *,
1116 union ccb *),
1117 u_int8_t tag_action, int dbd,
1118 u_int8_t page_code, u_int8_t page,
1119 u_int8_t *param_buf, u_int32_t param_len,
1120 int minimum_cmd_size, u_int8_t sense_len,
1121 u_int32_t timeout);
1123 void scsi_mode_select(struct ccb_scsiio *csio, u_int32_t retries,
1124 void (*cbfcnp)(struct cam_periph *,
1125 union ccb *),
1126 u_int8_t tag_action, int scsi_page_fmt,
1127 int save_pages, u_int8_t *param_buf,
1128 u_int32_t param_len, u_int8_t sense_len,
1129 u_int32_t timeout);
1131 void scsi_mode_select_len(struct ccb_scsiio *csio, u_int32_t retries,
1132 void (*cbfcnp)(struct cam_periph *,
1133 union ccb *),
1134 u_int8_t tag_action, int scsi_page_fmt,
1135 int save_pages, u_int8_t *param_buf,
1136 u_int32_t param_len, int minimum_cmd_size,
1137 u_int8_t sense_len, u_int32_t timeout);
1139 void scsi_log_sense(struct ccb_scsiio *csio, u_int32_t retries,
1140 void (*cbfcnp)(struct cam_periph *, union ccb *),
1141 u_int8_t tag_action, u_int8_t page_code,
1142 u_int8_t page, int save_pages, int ppc,
1143 u_int32_t paramptr, u_int8_t *param_buf,
1144 u_int32_t param_len, u_int8_t sense_len,
1145 u_int32_t timeout);
1147 void scsi_log_select(struct ccb_scsiio *csio, u_int32_t retries,
1148 void (*cbfcnp)(struct cam_periph *,
1149 union ccb *), u_int8_t tag_action,
1150 u_int8_t page_code, int save_pages,
1151 int pc_reset, u_int8_t *param_buf,
1152 u_int32_t param_len, u_int8_t sense_len,
1153 u_int32_t timeout);
1155 void scsi_prevent(struct ccb_scsiio *csio, u_int32_t retries,
1156 void (*cbfcnp)(struct cam_periph *, union ccb *),
1157 u_int8_t tag_action, u_int8_t action,
1158 u_int8_t sense_len, u_int32_t timeout);
1160 void scsi_read_capacity(struct ccb_scsiio *csio, u_int32_t retries,
1161 void (*cbfcnp)(struct cam_periph *,
1162 union ccb *), u_int8_t tag_action,
1163 struct scsi_read_capacity_data *,
1164 u_int8_t sense_len, u_int32_t timeout);
1165 void scsi_read_capacity_16(struct ccb_scsiio *csio, uint32_t retries,
1166 void (*cbfcnp)(struct cam_periph *,
1167 union ccb *), uint8_t tag_action,
1168 uint64_t lba, int reladr, int pmi,
1169 struct scsi_read_capacity_data_long
1170 *rcap_buf, uint8_t sense_len,
1171 uint32_t timeout);
1173 void scsi_report_luns(struct ccb_scsiio *csio, u_int32_t retries,
1174 void (*cbfcnp)(struct cam_periph *,
1175 union ccb *), u_int8_t tag_action,
1176 u_int8_t select_report,
1177 struct scsi_report_luns_data *rpl_buf,
1178 u_int32_t alloc_len, u_int8_t sense_len,
1179 u_int32_t timeout);
1181 void scsi_synchronize_cache(struct ccb_scsiio *csio,
1182 u_int32_t retries,
1183 void (*cbfcnp)(struct cam_periph *,
1184 union ccb *), u_int8_t tag_action,
1185 u_int32_t begin_lba, u_int16_t lb_count,
1186 u_int8_t sense_len, u_int32_t timeout);
1188 void scsi_read_write(struct ccb_scsiio *csio, u_int32_t retries,
1189 void (*cbfcnp)(struct cam_periph *, union ccb *),
1190 u_int8_t tag_action, int readop, u_int8_t byte2,
1191 int minimum_cmd_size, u_int64_t lba,
1192 u_int32_t block_count, u_int8_t *data_ptr,
1193 u_int32_t dxfer_len, u_int8_t sense_len,
1194 u_int32_t timeout);
1196 void scsi_start_stop(struct ccb_scsiio *csio, u_int32_t retries,
1197 void (*cbfcnp)(struct cam_periph *, union ccb *),
1198 u_int8_t tag_action, int start, int load_eject,
1199 int immediate, u_int8_t sense_len, u_int32_t timeout);
1201 int scsi_inquiry_match(caddr_t inqbuffer, caddr_t table_entry);
1202 int scsi_static_inquiry_match(caddr_t inqbuffer,
1203 caddr_t table_entry);
1205 static __inline void scsi_extract_sense(struct scsi_sense_data *sense,
1206 int *error_code, int *sense_key,
1207 int *asc, int *ascq);
1208 static __inline void scsi_ulto2b(u_int32_t val, u_int8_t *bytes);
1209 static __inline void scsi_ulto3b(u_int32_t val, u_int8_t *bytes);
1210 static __inline void scsi_ulto4b(u_int32_t val, u_int8_t *bytes);
1211 static __inline void scsi_u64to8b(u_int64_t val, u_int8_t *bytes);
1212 static __inline u_int32_t scsi_2btoul(u_int8_t *bytes);
1213 static __inline u_int32_t scsi_3btoul(u_int8_t *bytes);
1214 static __inline int32_t scsi_3btol(u_int8_t *bytes);
1215 static __inline u_int32_t scsi_4btoul(u_int8_t *bytes);
1216 static __inline u_int64_t scsi_8btou64(u_int8_t *bytes);
1217 static __inline void *find_mode_page_6(struct scsi_mode_header_6 *mode_header);
1218 static __inline void *find_mode_page_10(struct scsi_mode_header_10 *mode_header);
1220 static __inline void
1221 scsi_extract_sense(struct scsi_sense_data *sense, int *error_code,
1222 int *sense_key, int *asc, int *ascq)
1224 *error_code = sense->error_code & SSD_ERRCODE;
1225 *sense_key = sense->flags & SSD_KEY;
1226 *asc = (sense->extra_len >= 5) ? sense->add_sense_code : 0;
1227 *ascq = (sense->extra_len >= 6) ? sense->add_sense_code_qual : 0;
1230 static __inline void
1231 scsi_ulto2b(u_int32_t val, u_int8_t *bytes)
1234 bytes[0] = (val >> 8) & 0xff;
1235 bytes[1] = val & 0xff;
1238 static __inline void
1239 scsi_ulto3b(u_int32_t val, u_int8_t *bytes)
1242 bytes[0] = (val >> 16) & 0xff;
1243 bytes[1] = (val >> 8) & 0xff;
1244 bytes[2] = val & 0xff;
1247 static __inline void
1248 scsi_ulto4b(u_int32_t val, u_int8_t *bytes)
1251 bytes[0] = (val >> 24) & 0xff;
1252 bytes[1] = (val >> 16) & 0xff;
1253 bytes[2] = (val >> 8) & 0xff;
1254 bytes[3] = val & 0xff;
1257 static __inline void
1258 scsi_u64to8b(u_int64_t val, u_int8_t *bytes)
1260 bytes[0] = (val >> 56) & 0xff;
1261 bytes[1] = (val >> 48) & 0xff;
1262 bytes[2] = (val >> 40) & 0xff;
1263 bytes[3] = (val >> 32) & 0xff;
1264 bytes[4] = (val >> 24) & 0xff;
1265 bytes[5] = (val >> 16) & 0xff;
1266 bytes[6] = (val >> 8) & 0xff;
1267 bytes[7] = val & 0xff;
1270 static __inline u_int32_t
1271 scsi_2btoul(u_int8_t *bytes)
1273 u_int32_t rv;
1275 rv = (bytes[0] << 8) |
1276 bytes[1];
1277 return (rv);
1280 static __inline uint64_t
1281 scsi_8btou64(uint8_t *bytes)
1283 uint64_t rv;
1285 rv = (((uint64_t)bytes[0]) << 56) |
1286 (((uint64_t)bytes[1]) << 48) |
1287 (((uint64_t)bytes[2]) << 40) |
1288 (((uint64_t)bytes[3]) << 32) |
1289 (((uint64_t)bytes[4]) << 24) |
1290 (((uint64_t)bytes[5]) << 16) |
1291 (((uint64_t)bytes[6]) << 8) |
1292 bytes[7];
1293 return (rv);
1296 static __inline u_int32_t
1297 scsi_3btoul(u_int8_t *bytes)
1299 u_int32_t rv;
1301 rv = (bytes[0] << 16) |
1302 (bytes[1] << 8) |
1303 bytes[2];
1304 return (rv);
1307 static __inline int32_t
1308 scsi_3btol(u_int8_t *bytes)
1310 u_int32_t rc = scsi_3btoul(bytes);
1312 if (rc & 0x00800000)
1313 rc |= 0xff000000;
1315 return (int32_t) rc;
1318 static __inline u_int32_t
1319 scsi_4btoul(u_int8_t *bytes)
1321 u_int32_t rv;
1323 rv = (bytes[0] << 24) |
1324 (bytes[1] << 16) |
1325 (bytes[2] << 8) |
1326 bytes[3];
1327 return (rv);
1331 * Given the pointer to a returned mode sense buffer, return a pointer to
1332 * the start of the first mode page.
1334 static __inline void *
1335 find_mode_page_6(struct scsi_mode_header_6 *mode_header)
1337 void *page_start;
1339 page_start = (void *)((u_int8_t *)&mode_header[1] +
1340 mode_header->blk_desc_len);
1342 return(page_start);
1345 static __inline void *
1346 find_mode_page_10(struct scsi_mode_header_10 *mode_header)
1348 void *page_start;
1350 page_start = (void *)((u_int8_t *)&mode_header[1] +
1351 scsi_2btoul(mode_header->blk_desc_len));
1353 return(page_start);
1356 __END_DECLS
1358 #endif /*_SCSI_SCSI_ALL_H*/