scsi_all.h revision 273311
1/*-
2 * Largely written by Julian Elischer (julian@tfs.com)
3 * for TRW Financial Systems.
4 *
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.
10 *
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.
14 *
15 * Ported to run under 386BSD by Julian Elischer (julian@tfs.com) Sept 1992
16 *
17 * $FreeBSD: stable/10/sys/cam/scsi/scsi_all.h 273311 2014-10-20 07:33:41Z mav $
18 */
19
20/*
21 * SCSI general  interface description
22 */
23
24#ifndef	_SCSI_SCSI_ALL_H
25#define	_SCSI_SCSI_ALL_H 1
26
27#include <sys/cdefs.h>
28#include <machine/stdarg.h>
29
30#ifdef _KERNEL
31/*
32 * This is the number of seconds we wait for devices to settle after a SCSI
33 * bus reset.
34 */
35extern int scsi_delay;
36#endif /* _KERNEL */
37
38/*
39 * SCSI command format
40 */
41
42/*
43 * Define dome bits that are in ALL (or a lot of) scsi commands
44 */
45#define	SCSI_CTL_LINK		0x01
46#define	SCSI_CTL_FLAG		0x02
47#define	SCSI_CTL_VENDOR		0xC0
48#define	SCSI_CMD_LUN		0xA0	/* these two should not be needed */
49#define	SCSI_CMD_LUN_SHIFT	5	/* LUN in the cmd is no longer SCSI */
50
51#define	SCSI_MAX_CDBLEN		16	/*
52					 * 16 byte commands are in the
53					 * SCSI-3 spec
54					 */
55#if defined(CAM_MAX_CDBLEN) && (CAM_MAX_CDBLEN < SCSI_MAX_CDBLEN)
56#error "CAM_MAX_CDBLEN cannot be less than SCSI_MAX_CDBLEN"
57#endif
58
59/* 6byte CDBs special case 0 length to be 256 */
60#define	SCSI_CDB6_LEN(len)	((len) == 0 ? 256 : len)
61
62/*
63 * This type defines actions to be taken when a particular sense code is
64 * received.  Right now, these flags are only defined to take up 16 bits,
65 * but can be expanded in the future if necessary.
66 */
67typedef enum {
68	SS_NOP      = 0x000000,	/* Do nothing */
69	SS_RETRY    = 0x010000,	/* Retry the command */
70	SS_FAIL     = 0x020000,	/* Bail out */
71	SS_START    = 0x030000,	/* Send a Start Unit command to the device,
72				 * then retry the original command.
73				 */
74	SS_TUR      = 0x040000,	/* Send a Test Unit Ready command to the
75				 * device, then retry the original command.
76				 */
77	SS_MASK     = 0xff0000
78} scsi_sense_action;
79
80typedef enum {
81	SSQ_NONE		= 0x0000,
82	SSQ_DECREMENT_COUNT	= 0x0100,  /* Decrement the retry count */
83	SSQ_MANY		= 0x0200,  /* send lots of recovery commands */
84	SSQ_RANGE		= 0x0400,  /*
85					    * This table entry represents the
86					    * end of a range of ASCQs that
87					    * have identical error actions
88					    * and text.
89					    */
90	SSQ_PRINT_SENSE		= 0x0800,
91	SSQ_UA			= 0x1000,  /* Broadcast UA. */
92	SSQ_RESCAN		= 0x2000,  /* Rescan target for LUNs. */
93	SSQ_LOST		= 0x4000,  /* Destroy the LUNs. */
94	SSQ_MASK		= 0xff00
95} scsi_sense_action_qualifier;
96
97/* Mask for error status values */
98#define	SS_ERRMASK	0xff
99
100/* The default, retyable, error action */
101#define	SS_RDEF		SS_RETRY|SSQ_DECREMENT_COUNT|SSQ_PRINT_SENSE|EIO
102
103/* The retyable, error action, with table specified error code */
104#define	SS_RET		SS_RETRY|SSQ_DECREMENT_COUNT|SSQ_PRINT_SENSE
105
106/* Fatal error action, with table specified error code */
107#define	SS_FATAL	SS_FAIL|SSQ_PRINT_SENSE
108
109struct scsi_generic
110{
111	u_int8_t opcode;
112	u_int8_t bytes[11];
113};
114
115struct scsi_request_sense
116{
117	u_int8_t opcode;
118	u_int8_t byte2;
119#define	SRS_DESC	0x01
120	u_int8_t unused[2];
121	u_int8_t length;
122	u_int8_t control;
123};
124
125struct scsi_test_unit_ready
126{
127	u_int8_t opcode;
128	u_int8_t byte2;
129	u_int8_t unused[3];
130	u_int8_t control;
131};
132
133struct scsi_receive_diag {
134	uint8_t opcode;
135	uint8_t byte2;
136#define SRD_PCV		0x01
137	uint8_t page_code;
138	uint8_t length[2];
139	uint8_t control;
140};
141
142struct scsi_send_diag {
143	uint8_t opcode;
144	uint8_t byte2;
145#define SSD_UNITOFFL				0x01
146#define SSD_DEVOFFL				0x02
147#define SSD_SELFTEST				0x04
148#define SSD_PF					0x10
149#define SSD_SELF_TEST_CODE_MASK			0xE0
150#define SSD_SELF_TEST_CODE_SHIFT		5
151#define		SSD_SELF_TEST_CODE_NONE		0x00
152#define		SSD_SELF_TEST_CODE_BG_SHORT	0x01
153#define		SSD_SELF_TEST_CODE_BG_EXTENDED	0x02
154#define		SSD_SELF_TEST_CODE_BG_ABORT	0x04
155#define		SSD_SELF_TEST_CODE_FG_SHORT	0x05
156#define		SSD_SELF_TEST_CODE_FG_EXTENDED	0x06
157	uint8_t	reserved;
158	uint8_t	length[2];
159	uint8_t control;
160};
161
162struct scsi_sense
163{
164	u_int8_t opcode;
165	u_int8_t byte2;
166	u_int8_t unused[2];
167	u_int8_t length;
168	u_int8_t control;
169};
170
171struct scsi_inquiry
172{
173	u_int8_t opcode;
174	u_int8_t byte2;
175#define	SI_EVPD 	0x01
176#define	SI_CMDDT	0x02
177	u_int8_t page_code;
178	u_int8_t length[2];
179	u_int8_t control;
180};
181
182struct scsi_mode_sense_6
183{
184	u_int8_t opcode;
185	u_int8_t byte2;
186#define	SMS_DBD				0x08
187	u_int8_t page;
188#define	SMS_PAGE_CODE 			0x3F
189#define	SMS_VENDOR_SPECIFIC_PAGE	0x00
190#define	SMS_DISCONNECT_RECONNECT_PAGE	0x02
191#define	SMS_FORMAT_DEVICE_PAGE		0x03
192#define	SMS_GEOMETRY_PAGE		0x04
193#define	SMS_CACHE_PAGE			0x08
194#define	SMS_PERIPHERAL_DEVICE_PAGE	0x09
195#define	SMS_CONTROL_MODE_PAGE		0x0A
196#define	SMS_PROTO_SPECIFIC_PAGE		0x19
197#define	SMS_INFO_EXCEPTIONS_PAGE	0x1C
198#define	SMS_ALL_PAGES_PAGE		0x3F
199#define	SMS_PAGE_CTRL_MASK		0xC0
200#define	SMS_PAGE_CTRL_CURRENT 		0x00
201#define	SMS_PAGE_CTRL_CHANGEABLE 	0x40
202#define	SMS_PAGE_CTRL_DEFAULT 		0x80
203#define	SMS_PAGE_CTRL_SAVED 		0xC0
204	u_int8_t subpage;
205#define	SMS_SUBPAGE_PAGE_0		0x00
206#define	SMS_SUBPAGE_ALL			0xff
207	u_int8_t length;
208	u_int8_t control;
209};
210
211struct scsi_mode_sense_10
212{
213	u_int8_t opcode;
214	u_int8_t byte2;		/* same bits as small version */
215#define	SMS10_LLBAA			0x10
216	u_int8_t page; 		/* same bits as small version */
217	u_int8_t subpage;
218	u_int8_t unused[3];
219	u_int8_t length[2];
220	u_int8_t control;
221};
222
223struct scsi_mode_select_6
224{
225	u_int8_t opcode;
226	u_int8_t byte2;
227#define	SMS_SP	0x01
228#define	SMS_PF	0x10
229	u_int8_t unused[2];
230	u_int8_t length;
231	u_int8_t control;
232};
233
234struct scsi_mode_select_10
235{
236	u_int8_t opcode;
237	u_int8_t byte2;		/* same bits as small version */
238	u_int8_t unused[5];
239	u_int8_t length[2];
240	u_int8_t control;
241};
242
243/*
244 * When sending a mode select to a tape drive, the medium type must be 0.
245 */
246struct scsi_mode_hdr_6
247{
248	u_int8_t datalen;
249	u_int8_t medium_type;
250	u_int8_t dev_specific;
251	u_int8_t block_descr_len;
252};
253
254struct scsi_mode_hdr_10
255{
256	u_int8_t datalen[2];
257	u_int8_t medium_type;
258	u_int8_t dev_specific;
259	u_int8_t reserved[2];
260	u_int8_t block_descr_len[2];
261};
262
263struct scsi_mode_block_descr
264{
265	u_int8_t density_code;
266	u_int8_t num_blocks[3];
267	u_int8_t reserved;
268	u_int8_t block_len[3];
269};
270
271struct scsi_per_res_in
272{
273	u_int8_t opcode;
274	u_int8_t action;
275#define	SPRI_RK	0x00
276#define	SPRI_RR	0x01
277#define	SPRI_RC	0x02
278#define	SPRI_RS	0x03
279	u_int8_t reserved[5];
280	u_int8_t length[2];
281#define	SPRI_MAX_LEN		0xffff
282	u_int8_t control;
283};
284
285struct scsi_per_res_in_header
286{
287	u_int8_t generation[4];
288	u_int8_t length[4];
289};
290
291struct scsi_per_res_key
292{
293	u_int8_t key[8];
294};
295
296struct scsi_per_res_in_keys
297{
298	struct scsi_per_res_in_header header;
299	struct scsi_per_res_key keys[0];
300};
301
302struct scsi_per_res_cap
303{
304	uint8_t length[2];
305	uint8_t flags1;
306#define	SPRI_RLR_C		0x80
307#define	SPRI_CRH		0x10
308#define	SPRI_SIP_C		0x08
309#define	SPRI_ATP_C		0x04
310#define	SPRI_PTPL_C		0x01
311	uint8_t flags2;
312#define	SPRI_TMV		0x80
313#define	SPRI_ALLOW_CMD_MASK	0x70
314#define	SPRI_ALLOW_CMD_SHIFT	4
315#define	SPRI_ALLOW_NA		0x00
316#define	SPRI_ALLOW_1		0x10
317#define	SPRI_ALLOW_2		0x20
318#define	SPRI_ALLOW_3		0x30
319#define	SPRI_ALLOW_4		0x40
320#define	SPRI_ALLOW_5		0x50
321#define	SPRI_PTPL_A		0x01
322	uint8_t type_mask[2];
323#define	SPRI_TM_WR_EX_AR	0x8000
324#define	SPRI_TM_EX_AC_RO	0x4000
325#define	SPRI_TM_WR_EX_RO	0x2000
326#define	SPRI_TM_EX_AC		0x0800
327#define	SPRI_TM_WR_EX		0x0200
328#define	SPRI_TM_EX_AC_AR	0x0001
329	uint8_t reserved[2];
330};
331
332struct scsi_per_res_in_rsrv_data
333{
334	uint8_t reservation[8];
335	uint8_t scope_addr[4];
336	uint8_t reserved;
337	uint8_t scopetype;
338#define	SPRT_WE    0x01
339#define	SPRT_EA    0x03
340#define	SPRT_WERO  0x05
341#define	SPRT_EARO  0x06
342#define	SPRT_WEAR  0x07
343#define	SPRT_EAAR  0x08
344	uint8_t extent_length[2];
345};
346
347struct scsi_per_res_in_rsrv
348{
349	struct scsi_per_res_in_header header;
350	struct scsi_per_res_in_rsrv_data data;
351};
352
353struct scsi_per_res_in_full_desc
354{
355	struct scsi_per_res_key res_key;
356	uint8_t reserved1[4];
357	uint8_t flags;
358#define	SPRI_FULL_ALL_TG_PT	0x02
359#define	SPRI_FULL_R_HOLDER	0x01
360	uint8_t scopetype;
361	uint8_t reserved2[4];
362	uint8_t rel_trgt_port_id[2];
363	uint8_t additional_length[4];
364	uint8_t transport_id[];
365};
366
367struct scsi_per_res_in_full
368{
369	struct scsi_per_res_in_header header;
370	struct scsi_per_res_in_full_desc desc[];
371};
372
373struct scsi_per_res_out
374{
375	u_int8_t opcode;
376	u_int8_t action;
377#define	SPRO_REGISTER		0x00
378#define	SPRO_RESERVE		0x01
379#define	SPRO_RELEASE		0x02
380#define	SPRO_CLEAR		0x03
381#define	SPRO_PREEMPT		0x04
382#define	SPRO_PRE_ABO		0x05
383#define	SPRO_REG_IGNO		0x06
384#define	SPRO_REG_MOVE		0x07
385#define	SPRO_REPL_LOST_RES	0x08
386#define	SPRO_ACTION_MASK	0x1f
387	u_int8_t scope_type;
388#define	SPR_SCOPE_MASK		0xf0
389#define	SPR_SCOPE_SHIFT		4
390#define	SPR_LU_SCOPE		0x00
391#define	SPR_EXTENT_SCOPE	0x10
392#define	SPR_ELEMENT_SCOPE	0x20
393#define	SPR_TYPE_MASK		0x0f
394#define	SPR_TYPE_RD_SHARED	0x00
395#define	SPR_TYPE_WR_EX		0x01
396#define	SPR_TYPE_RD_EX		0x02
397#define	SPR_TYPE_EX_AC		0x03
398#define	SPR_TYPE_SHARED		0x04
399#define	SPR_TYPE_WR_EX_RO	0x05
400#define	SPR_TYPE_EX_AC_RO	0x06
401#define	SPR_TYPE_WR_EX_AR	0x07
402#define	SPR_TYPE_EX_AC_AR	0x08
403	u_int8_t reserved[2];
404	u_int8_t length[4];
405	u_int8_t control;
406};
407
408struct scsi_per_res_out_parms
409{
410	struct scsi_per_res_key res_key;
411	u_int8_t serv_act_res_key[8];
412	u_int8_t scope_spec_address[4];
413	u_int8_t flags;
414#define	SPR_SPEC_I_PT		0x08
415#define	SPR_ALL_TG_PT		0x04
416#define	SPR_APTPL		0x01
417	u_int8_t reserved1;
418	u_int8_t extent_length[2];
419	u_int8_t transport_id_list[];
420};
421
422struct scsi_per_res_out_trans_ids {
423	u_int8_t additional_length[4];
424	u_int8_t transport_ids[];
425};
426
427/*
428 * Used with REGISTER AND MOVE serivce action of the PERSISTENT RESERVE OUT
429 * command.
430 */
431struct scsi_per_res_reg_move
432{
433	struct scsi_per_res_key res_key;
434	u_int8_t serv_act_res_key[8];
435	u_int8_t reserved;
436	u_int8_t flags;
437#define	SPR_REG_MOVE_UNREG	0x02
438#define	SPR_REG_MOVE_APTPL	0x01
439	u_int8_t rel_trgt_port_id[2];
440	u_int8_t transport_id_length[4];
441	u_int8_t transport_id[];
442};
443
444struct scsi_transportid_header
445{
446	uint8_t format_protocol;
447#define	SCSI_TRN_FORMAT_MASK		0xc0
448#define	SCSI_TRN_FORMAT_SHIFT		6
449#define	SCSI_TRN_PROTO_MASK		0x0f
450};
451
452struct scsi_transportid_fcp
453{
454	uint8_t format_protocol;
455#define	SCSI_TRN_FCP_FORMAT_DEFAULT	0x00
456	uint8_t reserved1[7];
457	uint8_t n_port_name[8];
458	uint8_t reserved2[8];
459};
460
461struct scsi_transportid_spi
462{
463	uint8_t format_protocol;
464#define	SCSI_TRN_SPI_FORMAT_DEFAULT	0x00
465	uint8_t reserved1;
466	uint8_t scsi_addr[2];
467	uint8_t obsolete[2];
468	uint8_t rel_trgt_port_id[2];
469	uint8_t reserved2[16];
470};
471
472struct scsi_transportid_1394
473{
474	uint8_t format_protocol;
475#define	SCSI_TRN_1394_FORMAT_DEFAULT	0x00
476	uint8_t reserved1[7];
477	uint8_t eui64[8];
478	uint8_t reserved2[8];
479};
480
481struct scsi_transportid_rdma
482{
483	uint8_t format_protocol;
484#define	SCSI_TRN_RDMA_FORMAT_DEFAULT	0x00
485	uint8_t reserved[7];
486#define	SCSI_TRN_RDMA_PORT_LEN		16
487	uint8_t initiator_port_id[SCSI_TRN_RDMA_PORT_LEN];
488};
489
490struct scsi_transportid_iscsi_device
491{
492	uint8_t format_protocol;
493#define	SCSI_TRN_ISCSI_FORMAT_DEVICE	0x00
494	uint8_t reserved;
495	uint8_t additional_length[2];
496	uint8_t iscsi_name[];
497};
498
499struct scsi_transportid_iscsi_port
500{
501	uint8_t format_protocol;
502#define	SCSI_TRN_ISCSI_FORMAT_PORT	0x40
503	uint8_t reserved;
504	uint8_t additional_length[2];
505	uint8_t iscsi_name[];
506	/*
507	 * Followed by a separator and iSCSI initiator session ID
508	 */
509};
510
511struct scsi_transportid_sas
512{
513	uint8_t format_protocol;
514#define	SCSI_TRN_SAS_FORMAT_DEFAULT	0x00
515	uint8_t reserved1[3];
516	uint8_t sas_address[8];
517	uint8_t reserved2[12];
518};
519
520struct scsi_sop_routing_id_norm {
521	uint8_t bus;
522	uint8_t devfunc;
523#define	SCSI_TRN_SOP_BUS_MAX		0xff
524#define	SCSI_TRN_SOP_DEV_MAX		0x1f
525#define	SCSI_TRN_SOP_DEV_MASK		0xf8
526#define	SCSI_TRN_SOP_DEV_SHIFT		3
527#define	SCSI_TRN_SOP_FUNC_NORM_MASK	0x07
528#define	SCSI_TRN_SOP_FUNC_NORM_MAX	0x07
529};
530
531struct scsi_sop_routing_id_alt {
532	uint8_t bus;
533	uint8_t function;
534#define	SCSI_TRN_SOP_FUNC_ALT_MAX	0xff
535};
536
537struct scsi_transportid_sop
538{
539	uint8_t format_protocol;
540#define	SCSI_TRN_SOP_FORMAT_DEFAULT	0x00
541	uint8_t reserved1;
542	uint8_t routing_id[2];
543	uint8_t reserved2[20];
544};
545
546struct scsi_log_sense
547{
548	u_int8_t opcode;
549	u_int8_t byte2;
550#define	SLS_SP				0x01
551#define	SLS_PPC				0x02
552	u_int8_t page;
553#define	SLS_PAGE_CODE 			0x3F
554#define	SLS_ALL_PAGES_PAGE		0x00
555#define	SLS_OVERRUN_PAGE		0x01
556#define	SLS_ERROR_WRITE_PAGE		0x02
557#define	SLS_ERROR_READ_PAGE		0x03
558#define	SLS_ERROR_READREVERSE_PAGE	0x04
559#define	SLS_ERROR_VERIFY_PAGE		0x05
560#define	SLS_ERROR_NONMEDIUM_PAGE	0x06
561#define	SLS_ERROR_LASTN_PAGE		0x07
562#define	SLS_SELF_TEST_PAGE		0x10
563#define	SLS_IE_PAGE			0x2f
564#define	SLS_PAGE_CTRL_MASK		0xC0
565#define	SLS_PAGE_CTRL_THRESHOLD		0x00
566#define	SLS_PAGE_CTRL_CUMULATIVE	0x40
567#define	SLS_PAGE_CTRL_THRESH_DEFAULT	0x80
568#define	SLS_PAGE_CTRL_CUMUL_DEFAULT	0xC0
569	u_int8_t reserved[2];
570	u_int8_t paramptr[2];
571	u_int8_t length[2];
572	u_int8_t control;
573};
574
575struct scsi_log_select
576{
577	u_int8_t opcode;
578	u_int8_t byte2;
579/*	SLS_SP				0x01 */
580#define	SLS_PCR				0x02
581	u_int8_t page;
582/*	SLS_PAGE_CTRL_MASK		0xC0 */
583/*	SLS_PAGE_CTRL_THRESHOLD		0x00 */
584/*	SLS_PAGE_CTRL_CUMULATIVE	0x40 */
585/*	SLS_PAGE_CTRL_THRESH_DEFAULT	0x80 */
586/*	SLS_PAGE_CTRL_CUMUL_DEFAULT	0xC0 */
587	u_int8_t reserved[4];
588	u_int8_t length[2];
589	u_int8_t control;
590};
591
592struct scsi_log_header
593{
594	u_int8_t page;
595	u_int8_t reserved;
596	u_int8_t datalen[2];
597};
598
599struct scsi_log_param_header {
600	u_int8_t param_code[2];
601	u_int8_t param_control;
602#define	SLP_LP				0x01
603#define	SLP_LBIN			0x02
604#define	SLP_TMC_MASK			0x0C
605#define	SLP_TMC_ALWAYS			0x00
606#define	SLP_TMC_EQUAL			0x04
607#define	SLP_TMC_NOTEQUAL		0x08
608#define	SLP_TMC_GREATER			0x0C
609#define	SLP_ETC				0x10
610#define	SLP_TSD				0x20
611#define	SLP_DS				0x40
612#define	SLP_DU				0x80
613	u_int8_t param_len;
614};
615
616struct scsi_control_page {
617	u_int8_t page_code;
618	u_int8_t page_length;
619	u_int8_t rlec;
620#define	SCP_RLEC			0x01	/*Report Log Exception Cond*/
621#define	SCP_GLTSD			0x02	/*Global Logging target
622						  save disable */
623#define	SCP_DSENSE			0x04	/*Descriptor Sense */
624#define	SCP_DPICZ			0x08	/*Disable Prot. Info Check
625						  if Prot. Field is Zero */
626#define	SCP_TMF_ONLY			0x10	/*TM Functions Only*/
627#define	SCP_TST_MASK			0xE0	/*Task Set Type Mask*/
628#define	SCP_TST_ONE			0x00	/*One Task Set*/
629#define	SCP_TST_SEPARATE		0x20	/*Separate Task Sets*/
630	u_int8_t queue_flags;
631#define	SCP_QUEUE_ALG_MASK		0xF0
632#define	SCP_QUEUE_ALG_RESTRICTED	0x00
633#define	SCP_QUEUE_ALG_UNRESTRICTED	0x10
634#define	SCP_NUAR			0x08	/*No UA on release*/
635#define	SCP_QUEUE_ERR			0x02	/*Queued I/O aborted for CACs*/
636#define	SCP_QUEUE_DQUE			0x01	/*Queued I/O disabled*/
637	u_int8_t eca_and_aen;
638#define	SCP_EECA			0x80	/*Enable Extended CA*/
639#define	SCP_RAC				0x40	/*Report a check*/
640#define	SCP_SWP				0x08	/*Software Write Protect*/
641#define	SCP_RAENP			0x04	/*Ready AEN Permission*/
642#define	SCP_UAAENP			0x02	/*UA AEN Permission*/
643#define	SCP_EAENP			0x01	/*Error AEN Permission*/
644	u_int8_t flags4;
645#define	SCP_ATO				0x80	/*Application tag owner*/
646#define	SCP_TAS				0x40	/*Task aborted status*/
647#define	SCP_ATMPE			0x20	/*Application tag mode page*/
648#define	SCP_RWWP			0x10	/*Reject write without prot*/
649	u_int8_t aen_holdoff_period[2];
650	u_int8_t busy_timeout_period[2];
651	u_int8_t extended_selftest_completion_time[2];
652};
653
654struct scsi_cache_page {
655	u_int8_t page_code;
656#define	SCHP_PAGE_SAVABLE		0x80	/* Page is savable */
657	u_int8_t page_length;
658	u_int8_t cache_flags;
659#define	SCHP_FLAGS_WCE			0x04	/* Write Cache Enable */
660#define	SCHP_FLAGS_MF			0x02	/* Multiplication factor */
661#define	SCHP_FLAGS_RCD			0x01	/* Read Cache Disable */
662	u_int8_t rw_cache_policy;
663	u_int8_t dis_prefetch[2];
664	u_int8_t min_prefetch[2];
665	u_int8_t max_prefetch[2];
666	u_int8_t max_prefetch_ceil[2];
667};
668
669/*
670 * XXX KDM
671 * Updated version of the cache page, as of SBC.  Update this to SBC-3 and
672 * rationalize the two.
673 */
674struct scsi_caching_page {
675	uint8_t page_code;
676#define	SMS_CACHING_PAGE		0x08
677	uint8_t page_length;
678	uint8_t flags1;
679#define	SCP_IC		0x80
680#define	SCP_ABPF	0x40
681#define	SCP_CAP		0x20
682#define	SCP_DISC	0x10
683#define	SCP_SIZE	0x08
684#define	SCP_WCE		0x04
685#define	SCP_MF		0x02
686#define	SCP_RCD		0x01
687	uint8_t ret_priority;
688	uint8_t disable_pf_transfer_len[2];
689	uint8_t min_prefetch[2];
690	uint8_t max_prefetch[2];
691	uint8_t max_pf_ceiling[2];
692	uint8_t flags2;
693#define	SCP_FSW		0x80
694#define	SCP_LBCSS	0x40
695#define	SCP_DRA		0x20
696#define	SCP_VS1		0x10
697#define	SCP_VS2		0x08
698	uint8_t cache_segments;
699	uint8_t cache_seg_size[2];
700	uint8_t reserved;
701	uint8_t non_cache_seg_size[3];
702};
703
704/*
705 * XXX KDM move this off to a vendor shim.
706 */
707struct copan_power_subpage {
708	uint8_t page_code;
709#define	PWR_PAGE_CODE		0x00
710	uint8_t subpage;
711#define	PWR_SUBPAGE_CODE	0x02
712	uint8_t page_length[2];
713	uint8_t page_version;
714#define	PWR_VERSION		    0x01
715	uint8_t total_luns;
716	uint8_t max_active_luns;
717#define	PWR_DFLT_MAX_LUNS	    0x07
718	uint8_t reserved[25];
719};
720
721/*
722 * XXX KDM move this off to a vendor shim.
723 */
724struct copan_aps_subpage {
725	uint8_t page_code;
726#define	APS_PAGE_CODE		0x00
727	uint8_t subpage;
728#define	APS_SUBPAGE_CODE	0x03
729	uint8_t page_length[2];
730	uint8_t page_version;
731#define	APS_VERSION		    0x00
732	uint8_t lock_active;
733#define	APS_LOCK_ACTIVE	    0x01
734#define	APS_LOCK_INACTIVE	0x00
735	uint8_t reserved[26];
736};
737
738/*
739 * XXX KDM move this off to a vendor shim.
740 */
741struct copan_debugconf_subpage {
742	uint8_t page_code;
743#define DBGCNF_PAGE_CODE		0x00
744	uint8_t subpage;
745#define DBGCNF_SUBPAGE_CODE	0xF0
746	uint8_t page_length[2];
747	uint8_t page_version;
748#define DBGCNF_VERSION			0x00
749	uint8_t ctl_time_io_secs[2];
750};
751
752
753struct scsi_info_exceptions_page {
754	u_int8_t page_code;
755#define	SIEP_PAGE_SAVABLE		0x80	/* Page is savable */
756	u_int8_t page_length;
757	u_int8_t info_flags;
758#define	SIEP_FLAGS_PERF			0x80
759#define	SIEP_FLAGS_EBF			0x20
760#define	SIEP_FLAGS_EWASC		0x10
761#define	SIEP_FLAGS_DEXCPT		0x08
762#define	SIEP_FLAGS_TEST			0x04
763#define	SIEP_FLAGS_EBACKERR		0x02
764#define	SIEP_FLAGS_LOGERR		0x01
765	u_int8_t mrie;
766	u_int8_t interval_timer[4];
767	u_int8_t report_count[4];
768};
769
770/*
771 * SCSI protocol identifier values, current as of SPC4r36l.
772 */
773#define	SCSI_PROTO_FC		0x00	/* Fibre Channel */
774#define	SCSI_PROTO_SPI		0x01	/* Parallel SCSI */
775#define	SCSI_PROTO_SSA		0x02	/* Serial Storage Arch. */
776#define	SCSI_PROTO_1394		0x03	/* IEEE 1394 (Firewire) */
777#define	SCSI_PROTO_RDMA		0x04	/* SCSI RDMA Protocol */
778#define	SCSI_PROTO_ISCSI	0x05	/* Internet SCSI */
779#define	SCSI_PROTO_iSCSI	0x05	/* Internet SCSI */
780#define	SCSI_PROTO_SAS		0x06	/* SAS Serial SCSI Protocol */
781#define	SCSI_PROTO_ADT		0x07	/* Automation/Drive Int. Trans. Prot.*/
782#define	SCSI_PROTO_ADITP	0x07	/* Automation/Drive Int. Trans. Prot.*/
783#define	SCSI_PROTO_ATA		0x08	/* AT Attachment Interface */
784#define	SCSI_PROTO_UAS		0x09	/* USB Atached SCSI */
785#define	SCSI_PROTO_SOP		0x0a	/* SCSI over PCI Express */
786#define	SCSI_PROTO_NONE		0x0f	/* No specific protocol */
787
788struct scsi_proto_specific_page {
789	u_int8_t page_code;
790#define	SPSP_PAGE_SAVABLE		0x80	/* Page is savable */
791	u_int8_t page_length;
792	u_int8_t protocol;
793#define	SPSP_PROTO_FC			SCSI_PROTO_FC
794#define	SPSP_PROTO_SPI			SCSI_PROTO_SPI
795#define	SPSP_PROTO_SSA			SCSI_PROTO_SSA
796#define	SPSP_PROTO_1394			SCSI_PROTO_1394
797#define	SPSP_PROTO_RDMA			SCSI_PROTO_RDMA
798#define	SPSP_PROTO_ISCSI		SCSI_PROTO_ISCSI
799#define	SPSP_PROTO_SAS			SCSI_PROTO_SAS
800#define	SPSP_PROTO_ADT			SCSI_PROTO_ADITP
801#define	SPSP_PROTO_ATA			SCSI_PROTO_ATA
802#define	SPSP_PROTO_UAS			SCSI_PROTO_UAS
803#define	SPSP_PROTO_SOP			SCSI_PROTO_SOP
804#define	SPSP_PROTO_NONE			SCSI_PROTO_NONE
805};
806
807struct scsi_reserve
808{
809	u_int8_t opcode;
810	u_int8_t byte2;
811#define	SR_EXTENT	0x01
812#define	SR_ID_MASK	0x0e
813#define	SR_3RDPTY	0x10
814#define	SR_LUN_MASK	0xe0
815	u_int8_t resv_id;
816	u_int8_t length[2];
817	u_int8_t control;
818};
819
820struct scsi_reserve_10 {
821	uint8_t	opcode;
822	uint8_t	byte2;
823#define	SR10_3RDPTY	0x10
824#define	SR10_LONGID	0x02
825#define	SR10_EXTENT	0x01
826	uint8_t resv_id;
827	uint8_t thirdparty_id;
828	uint8_t reserved[3];
829	uint8_t length[2];
830	uint8_t control;
831};
832
833
834struct scsi_release
835{
836	u_int8_t opcode;
837	u_int8_t byte2;
838	u_int8_t resv_id;
839	u_int8_t unused[1];
840	u_int8_t length;
841	u_int8_t control;
842};
843
844struct scsi_release_10 {
845	uint8_t opcode;
846	uint8_t byte2;
847	uint8_t resv_id;
848	uint8_t thirdparty_id;
849	uint8_t reserved[3];
850	uint8_t length[2];
851	uint8_t control;
852};
853
854struct scsi_prevent
855{
856	u_int8_t opcode;
857	u_int8_t byte2;
858	u_int8_t unused[2];
859	u_int8_t how;
860	u_int8_t control;
861};
862#define	PR_PREVENT 0x01
863#define	PR_ALLOW   0x00
864
865struct scsi_sync_cache
866{
867	u_int8_t opcode;
868	u_int8_t byte2;
869#define	SSC_IMMED	0x02
870#define	SSC_RELADR	0x01
871	u_int8_t begin_lba[4];
872	u_int8_t reserved;
873	u_int8_t lb_count[2];
874	u_int8_t control;
875};
876
877struct scsi_sync_cache_16
878{
879	uint8_t opcode;
880	uint8_t byte2;
881	uint8_t begin_lba[8];
882	uint8_t lb_count[4];
883	uint8_t reserved;
884	uint8_t control;
885};
886
887struct scsi_format {
888	uint8_t opcode;
889	uint8_t byte2;
890#define	SF_LONGLIST		0x20
891#define	SF_FMTDATA		0x10
892#define	SF_CMPLIST		0x08
893#define	SF_FORMAT_MASK		0x07
894#define	SF_FORMAT_BLOCK		0x00
895#define	SF_FORMAT_LONG_BLOCK	0x03
896#define	SF_FORMAT_BFI		0x04
897#define	SF_FORMAT_PHYS		0x05
898	uint8_t vendor;
899	uint8_t interleave[2];
900	uint8_t control;
901};
902
903struct scsi_format_header_short {
904	uint8_t reserved;
905#define	SF_DATA_FOV	0x80
906#define	SF_DATA_DPRY	0x40
907#define	SF_DATA_DCRT	0x20
908#define	SF_DATA_STPF	0x10
909#define	SF_DATA_IP	0x08
910#define	SF_DATA_DSP	0x04
911#define	SF_DATA_IMMED	0x02
912#define	SF_DATA_VS	0x01
913	uint8_t byte2;
914	uint8_t defect_list_len[2];
915};
916
917struct scsi_format_header_long {
918	uint8_t reserved;
919	uint8_t byte2;
920	uint8_t reserved2[2];
921	uint8_t defect_list_len[4];
922};
923
924struct scsi_changedef
925{
926	u_int8_t opcode;
927	u_int8_t byte2;
928	u_int8_t unused1;
929	u_int8_t how;
930	u_int8_t unused[4];
931	u_int8_t datalen;
932	u_int8_t control;
933};
934
935struct scsi_read_buffer
936{
937	u_int8_t opcode;
938	u_int8_t byte2;
939#define	RWB_MODE		0x1F
940#define	RWB_MODE_HDR_DATA	0x00
941#define	RWB_MODE_VENDOR		0x01
942#define	RWB_MODE_DATA		0x02
943#define	RWB_MODE_DESCR		0x03
944#define	RWB_MODE_DOWNLOAD	0x04
945#define	RWB_MODE_DOWNLOAD_SAVE	0x05
946#define	RWB_MODE_ECHO		0x0A
947#define	RWB_MODE_ECHO_DESCR	0x0B
948#define	RWB_MODE_ERROR_HISTORY	0x1C
949        u_int8_t buffer_id;
950        u_int8_t offset[3];
951        u_int8_t length[3];
952        u_int8_t control;
953};
954
955struct scsi_write_buffer
956{
957	u_int8_t opcode;
958	u_int8_t byte2;
959	u_int8_t buffer_id;
960	u_int8_t offset[3];
961	u_int8_t length[3];
962	u_int8_t control;
963};
964
965struct scsi_rw_6
966{
967	u_int8_t opcode;
968	u_int8_t addr[3];
969/* only 5 bits are valid in the MSB address byte */
970#define	SRW_TOPADDR	0x1F
971	u_int8_t length;
972	u_int8_t control;
973};
974
975struct scsi_rw_10
976{
977	u_int8_t opcode;
978#define	SRW10_RELADDR	0x01
979/* EBP defined for WRITE(10) only */
980#define	SRW10_EBP	0x04
981#define	SRW10_FUA	0x08
982#define	SRW10_DPO	0x10
983	u_int8_t byte2;
984	u_int8_t addr[4];
985	u_int8_t reserved;
986	u_int8_t length[2];
987	u_int8_t control;
988};
989
990struct scsi_rw_12
991{
992	u_int8_t opcode;
993#define	SRW12_RELADDR	0x01
994#define	SRW12_FUA	0x08
995#define	SRW12_DPO	0x10
996	u_int8_t byte2;
997	u_int8_t addr[4];
998	u_int8_t length[4];
999	u_int8_t reserved;
1000	u_int8_t control;
1001};
1002
1003struct scsi_rw_16
1004{
1005	u_int8_t opcode;
1006#define	SRW16_RELADDR	0x01
1007#define	SRW16_FUA	0x08
1008#define	SRW16_DPO	0x10
1009	u_int8_t byte2;
1010	u_int8_t addr[8];
1011	u_int8_t length[4];
1012	u_int8_t reserved;
1013	u_int8_t control;
1014};
1015
1016struct scsi_write_same_10
1017{
1018	uint8_t	opcode;
1019	uint8_t	byte2;
1020#define	SWS_LBDATA	0x02
1021#define	SWS_PBDATA	0x04
1022#define	SWS_UNMAP	0x08
1023#define	SWS_ANCHOR	0x10
1024	uint8_t	addr[4];
1025	uint8_t	group;
1026	uint8_t	length[2];
1027	uint8_t	control;
1028};
1029
1030struct scsi_write_same_16
1031{
1032	uint8_t	opcode;
1033	uint8_t	byte2;
1034#define	SWS_NDOB	0x01
1035	uint8_t	addr[8];
1036	uint8_t	length[4];
1037	uint8_t	group;
1038	uint8_t	control;
1039};
1040
1041struct scsi_unmap
1042{
1043	uint8_t	opcode;
1044	uint8_t	byte2;
1045#define	SU_ANCHOR	0x01
1046	uint8_t	reserved[4];
1047	uint8_t	group;
1048	uint8_t	length[2];
1049	uint8_t	control;
1050};
1051
1052struct scsi_unmap_header
1053{
1054	uint8_t	length[2];
1055	uint8_t	desc_length[2];
1056	uint8_t	reserved[4];
1057};
1058
1059struct scsi_unmap_desc
1060{
1061	uint8_t	lba[8];
1062	uint8_t	length[4];
1063	uint8_t	reserved[4];
1064};
1065
1066struct scsi_write_verify_10
1067{
1068	uint8_t	opcode;
1069	uint8_t	byte2;
1070#define	SWV_BYTCHK		0x02
1071#define	SWV_DPO			0x10
1072#define	SWV_WRPROECT_MASK	0xe0
1073	uint8_t	addr[4];
1074	uint8_t	group;
1075	uint8_t length[2];
1076	uint8_t	control;
1077};
1078
1079struct scsi_write_verify_12
1080{
1081	uint8_t	opcode;
1082	uint8_t	byte2;
1083	uint8_t	addr[4];
1084	uint8_t	length[4];
1085	uint8_t	group;
1086	uint8_t	control;
1087};
1088
1089struct scsi_write_verify_16
1090{
1091	uint8_t	opcode;
1092	uint8_t	byte2;
1093	uint8_t	addr[8];
1094	uint8_t	length[4];
1095	uint8_t	group;
1096	uint8_t	control;
1097};
1098
1099
1100struct scsi_start_stop_unit
1101{
1102	u_int8_t opcode;
1103	u_int8_t byte2;
1104#define	SSS_IMMED		0x01
1105	u_int8_t reserved[2];
1106	u_int8_t how;
1107#define	SSS_START		0x01
1108#define	SSS_LOEJ		0x02
1109#define	SSS_PC_MASK		0xf0
1110#define	SSS_PC_START_VALID	0x00
1111#define	SSS_PC_ACTIVE		0x10
1112#define	SSS_PC_IDLE		0x20
1113#define	SSS_PC_STANDBY		0x30
1114#define	SSS_PC_LU_CONTROL	0x70
1115#define	SSS_PC_FORCE_IDLE_0	0xa0
1116#define	SSS_PC_FORCE_STANDBY_0	0xb0
1117	u_int8_t control;
1118};
1119
1120struct ata_pass_12 {
1121	u_int8_t opcode;
1122	u_int8_t protocol;
1123#define	AP_PROTO_HARD_RESET	(0x00 << 1)
1124#define	AP_PROTO_SRST		(0x01 << 1)
1125#define	AP_PROTO_NON_DATA	(0x03 << 1)
1126#define	AP_PROTO_PIO_IN		(0x04 << 1)
1127#define	AP_PROTO_PIO_OUT	(0x05 << 1)
1128#define	AP_PROTO_DMA		(0x06 << 1)
1129#define	AP_PROTO_DMA_QUEUED	(0x07 << 1)
1130#define	AP_PROTO_DEVICE_DIAG	(0x08 << 1)
1131#define	AP_PROTO_DEVICE_RESET	(0x09 << 1)
1132#define	AP_PROTO_UDMA_IN	(0x0a << 1)
1133#define	AP_PROTO_UDMA_OUT	(0x0b << 1)
1134#define	AP_PROTO_FPDMA		(0x0c << 1)
1135#define	AP_PROTO_RESP_INFO	(0x0f << 1)
1136#define	AP_MULTI	0xe0
1137	u_int8_t flags;
1138#define	AP_T_LEN	0x03
1139#define	AP_BB		0x04
1140#define	AP_T_DIR	0x08
1141#define	AP_CK_COND	0x20
1142#define	AP_OFFLINE	0x60
1143	u_int8_t features;
1144	u_int8_t sector_count;
1145	u_int8_t lba_low;
1146	u_int8_t lba_mid;
1147	u_int8_t lba_high;
1148	u_int8_t device;
1149	u_int8_t command;
1150	u_int8_t reserved;
1151	u_int8_t control;
1152};
1153
1154struct scsi_maintenance_in
1155{
1156        uint8_t  opcode;
1157        uint8_t  byte2;
1158#define SERVICE_ACTION_MASK  0x1f
1159#define SA_RPRT_TRGT_GRP     0x0a
1160        uint8_t  reserved[4];
1161	uint8_t  length[4];
1162	uint8_t  reserved1;
1163	uint8_t  control;
1164};
1165
1166struct scsi_report_supported_opcodes
1167{
1168        uint8_t  opcode;
1169        uint8_t  service_action;
1170        uint8_t  options;
1171#define RSO_RCTD		0x80
1172#define RSO_OPTIONS_MASK	0x07
1173#define RSO_OPTIONS_ALL		0x00
1174#define RSO_OPTIONS_OC		0x01
1175#define RSO_OPTIONS_OC_SA	0x02
1176        uint8_t  requested_opcode;
1177        uint8_t  requested_service_action[2];
1178	uint8_t  length[4];
1179	uint8_t  reserved1;
1180	uint8_t  control;
1181};
1182
1183struct scsi_report_supported_opcodes_timeout
1184{
1185	uint8_t  length[2];
1186	uint8_t  reserved;
1187	uint8_t  cmd_specific;
1188	uint8_t  nominal_time[4];
1189	uint8_t  recommended_time[4];
1190};
1191
1192struct scsi_report_supported_opcodes_descr
1193{
1194	uint8_t  opcode;
1195	uint8_t  reserved;
1196	uint8_t  service_action[2];
1197	uint8_t  reserved2;
1198	uint8_t  flags;
1199#define RSO_SERVACTV		0x01
1200#define RSO_CTDP		0x02
1201	uint8_t  cdb_length[2];
1202	struct scsi_report_supported_opcodes_timeout timeout[0];
1203};
1204
1205struct scsi_report_supported_opcodes_all
1206{
1207	uint8_t  length[4];
1208	struct scsi_report_supported_opcodes_descr descr[0];
1209};
1210
1211struct scsi_report_supported_opcodes_one
1212{
1213	uint8_t  reserved;
1214	uint8_t  support;
1215#define RSO_ONE_CTDP		0x80
1216	uint8_t  cdb_length[2];
1217	uint8_t  cdb_usage[];
1218};
1219
1220struct scsi_report_supported_tmf
1221{
1222	uint8_t  opcode;
1223	uint8_t  service_action;
1224	uint8_t  reserved[4];
1225	uint8_t  length[4];
1226	uint8_t  reserved1;
1227	uint8_t  control;
1228};
1229
1230struct scsi_report_supported_tmf_data
1231{
1232	uint8_t  byte1;
1233#define RST_WAKES		0x01
1234#define RST_TRS			0x02
1235#define RST_QTS			0x04
1236#define RST_LURS		0x08
1237#define RST_CTSS		0x10
1238#define RST_CACAS		0x20
1239#define RST_ATSS		0x40
1240#define RST_ATS			0x80
1241	uint8_t  byte2;
1242#define RST_ITNRS		0x01
1243#define RST_QTSS		0x02
1244#define RST_QAES		0x04
1245	uint8_t  reserved[2];
1246};
1247
1248struct scsi_report_timestamp
1249{
1250	uint8_t  opcode;
1251	uint8_t  service_action;
1252	uint8_t  reserved[4];
1253	uint8_t  length[4];
1254	uint8_t  reserved1;
1255	uint8_t  control;
1256};
1257
1258struct scsi_report_timestamp_data
1259{
1260	uint8_t  length[2];
1261	uint8_t  origin;
1262#define RTS_ORIG_MASK		0x00
1263#define RTS_ORIG_ZERO		0x00
1264#define RTS_ORIG_SET		0x02
1265#define RTS_ORIG_OUTSIDE	0x03
1266	uint8_t  reserved;
1267	uint8_t  timestamp[6];
1268	uint8_t  reserve2[2];
1269};
1270
1271struct scsi_receive_copy_status_lid1
1272{
1273	uint8_t  opcode;
1274	uint8_t  service_action;
1275#define RCS_RCS_LID1		0x00
1276	uint8_t  list_identifier;
1277	uint8_t  reserved[7];
1278	uint8_t  length[4];
1279	uint8_t  reserved1;
1280	uint8_t  control;
1281};
1282
1283struct scsi_receive_copy_status_lid1_data
1284{
1285	uint8_t  available_data[4];
1286	uint8_t  copy_command_status;
1287#define RCS_CCS_INPROG		0x00
1288#define RCS_CCS_COMPLETED	0x01
1289#define RCS_CCS_ERROR		0x02
1290	uint8_t  segments_processed[2];
1291	uint8_t  transfer_count_units;
1292#define RCS_TC_BYTES		0x00
1293#define RCS_TC_KBYTES		0x01
1294#define RCS_TC_MBYTES		0x02
1295#define RCS_TC_GBYTES		0x03
1296#define RCS_TC_TBYTES		0x04
1297#define RCS_TC_PBYTES		0x05
1298#define RCS_TC_EBYTES		0x06
1299#define RCS_TC_LBAS		0xf1
1300	uint8_t  transfer_count[4];
1301};
1302
1303struct scsi_receive_copy_failure_details
1304{
1305	uint8_t  opcode;
1306	uint8_t  service_action;
1307#define RCS_RCFD		0x04
1308	uint8_t  list_identifier;
1309	uint8_t  reserved[7];
1310	uint8_t  length[4];
1311	uint8_t  reserved1;
1312	uint8_t  control;
1313};
1314
1315struct scsi_receive_copy_failure_details_data
1316{
1317	uint8_t  available_data[4];
1318	uint8_t  reserved[52];
1319	uint8_t  copy_command_status;
1320	uint8_t  reserved2;
1321	uint8_t  sense_data_length[2];
1322	uint8_t  sense_data[];
1323};
1324
1325struct scsi_receive_copy_status_lid4
1326{
1327	uint8_t  opcode;
1328	uint8_t  service_action;
1329#define RCS_RCS_LID4		0x05
1330	uint8_t  list_identifier[4];
1331	uint8_t  reserved[4];
1332	uint8_t  length[4];
1333	uint8_t  reserved1;
1334	uint8_t  control;
1335};
1336
1337struct scsi_receive_copy_status_lid4_data
1338{
1339	uint8_t  available_data[4];
1340	uint8_t  response_to_service_action;
1341	uint8_t  copy_command_status;
1342#define RCS_CCS_COMPLETED_PROD	0x03
1343#define RCS_CCS_COMPLETED_RESID	0x04
1344#define RCS_CCS_INPROG_FGBG	0x10
1345#define RCS_CCS_INPROG_FG	0x11
1346#define RCS_CCS_INPROG_BG	0x12
1347#define RCS_CCS_ABORTED		0x60
1348	uint8_t  operation_counter[2];
1349	uint8_t  estimated_status_update_delay[4];
1350	uint8_t  extended_copy_completion_status;
1351	uint8_t  length_of_the_sense_data_field;
1352	uint8_t  sense_data_length;
1353	uint8_t  transfer_count_units;
1354	uint8_t  transfer_count[8];
1355	uint8_t  segments_processed[2];
1356	uint8_t  reserved[6];
1357	uint8_t  sense_data[];
1358};
1359
1360struct scsi_receive_copy_operating_parameters
1361{
1362	uint8_t  opcode;
1363	uint8_t  service_action;
1364#define RCS_RCOP		0x03
1365	uint8_t  reserved[8];
1366	uint8_t  length[4];
1367	uint8_t  reserved1;
1368	uint8_t  control;
1369};
1370
1371struct scsi_receive_copy_operating_parameters_data
1372{
1373	uint8_t  length[4];
1374	uint8_t  snlid;
1375#define RCOP_SNLID		0x01
1376	uint8_t  reserved[3];
1377	uint8_t  maximum_cscd_descriptor_count[2];
1378	uint8_t  maximum_segment_descriptor_count[2];
1379	uint8_t  maximum_descriptor_list_length[4];
1380	uint8_t  maximum_segment_length[4];
1381	uint8_t  maximum_inline_data_length[4];
1382	uint8_t  held_data_limit[4];
1383	uint8_t  maximum_stream_device_transfer_size[4];
1384	uint8_t  reserved2[2];
1385	uint8_t  total_concurrent_copies[2];
1386	uint8_t  maximum_concurrent_copies;
1387	uint8_t  data_segment_granularity;
1388	uint8_t  inline_data_granularity;
1389	uint8_t  held_data_granularity;
1390	uint8_t  reserved3[3];
1391	uint8_t  implemented_descriptor_list_length;
1392	uint8_t  list_of_implemented_descriptor_type_codes[0];
1393};
1394
1395struct scsi_extended_copy
1396{
1397	uint8_t  opcode;
1398	uint8_t  service_action;
1399#define EC_EC_LID1		0x00
1400#define EC_EC_LID4		0x01
1401	uint8_t  reserved[8];
1402	uint8_t  length[4];
1403	uint8_t  reserved1;
1404	uint8_t  control;
1405};
1406
1407struct scsi_ec_cscd_dtsp
1408{
1409	uint8_t  flags;
1410#define EC_CSCD_FIXED		0x01
1411#define EC_CSCD_PAD		0x04
1412	uint8_t  block_length[3];
1413};
1414
1415struct scsi_ec_cscd
1416{
1417	uint8_t  type_code;
1418#define EC_CSCD_EXT		0xff
1419	uint8_t  luidt_pdt;
1420#define EC_LUIDT_MASK		0xc0
1421#define EC_LUIDT_LUN		0x00
1422#define EC_LUIDT_PROXY_TOKEN	0x40
1423	uint8_t  relative_initiator_port[2];
1424	uint8_t  cscd_params[24];
1425	struct scsi_ec_cscd_dtsp dtsp;
1426};
1427
1428struct scsi_ec_cscd_id
1429{
1430	uint8_t  type_code;
1431#define EC_CSCD_ID		0xe4
1432	uint8_t  luidt_pdt;
1433	uint8_t  relative_initiator_port[2];
1434	uint8_t  codeset;
1435	uint8_t  id_type;
1436	uint8_t  reserved;
1437	uint8_t  length;
1438	uint8_t  designator[20];
1439	struct scsi_ec_cscd_dtsp dtsp;
1440};
1441
1442struct scsi_ec_segment
1443{
1444	uint8_t  type_code;
1445	uint8_t  flags;
1446#define EC_SEG_DC		0x02
1447#define EC_SEG_CAT		0x01
1448	uint8_t  descr_length[2];
1449	uint8_t  params[];
1450};
1451
1452struct scsi_ec_segment_b2b
1453{
1454	uint8_t  type_code;
1455#define EC_SEG_B2B		0x02
1456	uint8_t  flags;
1457	uint8_t  descr_length[2];
1458	uint8_t  src_cscd[2];
1459	uint8_t  dst_cscd[2];
1460	uint8_t  reserved[2];
1461	uint8_t  number_of_blocks[2];
1462	uint8_t  src_lba[8];
1463	uint8_t  dst_lba[8];
1464};
1465
1466struct scsi_ec_segment_verify
1467{
1468	uint8_t  type_code;
1469#define EC_SEG_VERIFY		0x07
1470	uint8_t  reserved;
1471	uint8_t  descr_length[2];
1472	uint8_t  src_cscd[2];
1473	uint8_t  reserved2[2];
1474	uint8_t  tur;
1475	uint8_t  reserved3[3];
1476};
1477
1478struct scsi_ec_segment_register_key
1479{
1480	uint8_t  type_code;
1481#define EC_SEG_REGISTER_KEY	0x14
1482	uint8_t  reserved;
1483	uint8_t  descr_length[2];
1484	uint8_t  reserved2[2];
1485	uint8_t  dst_cscd[2];
1486	uint8_t  res_key[8];
1487	uint8_t  sa_res_key[8];
1488	uint8_t  reserved3[4];
1489};
1490
1491struct scsi_extended_copy_lid1_data
1492{
1493	uint8_t  list_identifier;
1494	uint8_t  flags;
1495#define EC_PRIORITY		0x07
1496#define EC_LIST_ID_USAGE_MASK	0x18
1497#define EC_LIST_ID_USAGE_FULL	0x08
1498#define EC_LIST_ID_USAGE_NOHOLD	0x10
1499#define EC_LIST_ID_USAGE_NONE	0x18
1500#define EC_STR			0x20
1501	uint8_t  cscd_list_length[2];
1502	uint8_t  reserved[4];
1503	uint8_t  segment_list_length[4];
1504	uint8_t  inline_data_length[4];
1505	uint8_t  data[];
1506};
1507
1508struct scsi_extended_copy_lid4_data
1509{
1510	uint8_t  list_format;
1511#define EC_LIST_FORMAT		0x01
1512	uint8_t  flags;
1513	uint8_t  header_cscd_list_length[2];
1514	uint8_t  reserved[11];
1515	uint8_t  flags2;
1516#define EC_IMMED		0x01
1517#define EC_G_SENSE		0x02
1518	uint8_t  header_cscd_type_code;
1519	uint8_t  reserved2[3];
1520	uint8_t  list_identifier[4];
1521	uint8_t  reserved3[18];
1522	uint8_t  cscd_list_length[2];
1523	uint8_t  segment_list_length[2];
1524	uint8_t  inline_data_length[2];
1525	uint8_t  data[];
1526};
1527
1528struct scsi_copy_operation_abort
1529{
1530	uint8_t  opcode;
1531	uint8_t  service_action;
1532#define EC_COA			0x1c
1533	uint8_t  list_identifier[4];
1534	uint8_t  reserved[9];
1535	uint8_t  control;
1536};
1537
1538struct scsi_populate_token
1539{
1540	uint8_t  opcode;
1541	uint8_t  service_action;
1542#define EC_PT			0x10
1543	uint8_t  reserved[4];
1544	uint8_t  list_identifier[4];
1545	uint8_t  length[4];
1546	uint8_t  group_number;
1547	uint8_t  control;
1548};
1549
1550struct scsi_range_desc
1551{
1552	uint8_t	lba[8];
1553	uint8_t	length[4];
1554	uint8_t	reserved[4];
1555};
1556
1557struct scsi_populate_token_data
1558{
1559	uint8_t  length[2];
1560	uint8_t  flags;
1561#define EC_PT_IMMED			0x01
1562#define EC_PT_RTV			0x02
1563	uint8_t  reserved;
1564	uint8_t  inactivity_timeout[4];
1565	uint8_t  rod_type[4];
1566	uint8_t  reserved2[2];
1567	uint8_t  range_descriptor_length[2];
1568	struct scsi_range_desc desc[];
1569};
1570
1571struct scsi_write_using_token
1572{
1573	uint8_t  opcode;
1574	uint8_t  service_action;
1575#define EC_WUT			0x11
1576	uint8_t  reserved[4];
1577	uint8_t  list_identifier[4];
1578	uint8_t  length[4];
1579	uint8_t  group_number;
1580	uint8_t  control;
1581};
1582
1583struct scsi_write_using_token_data
1584{
1585	uint8_t  length[2];
1586	uint8_t  flags;
1587#define EC_WUT_IMMED			0x01
1588#define EC_WUT_DEL_TKN			0x02
1589	uint8_t  reserved[5];
1590	uint8_t  offset_into_rod[8];
1591	uint8_t  rod_token[512];
1592	uint8_t  reserved2[6];
1593	uint8_t  range_descriptor_length[2];
1594	struct scsi_range_desc desc[];
1595};
1596
1597struct scsi_receive_rod_token_information
1598{
1599	uint8_t  opcode;
1600	uint8_t  service_action;
1601#define RCS_RRTI		0x07
1602	uint8_t  list_identifier[4];
1603	uint8_t  reserved[4];
1604	uint8_t  length[4];
1605	uint8_t  reserved2;
1606	uint8_t  control;
1607};
1608
1609struct scsi_token
1610{
1611	uint8_t  type[4];
1612#define ROD_TYPE_INTERNAL	0x00000000
1613#define ROD_TYPE_AUR		0x00010000
1614#define ROD_TYPE_PIT_DEF	0x00800000
1615#define ROD_TYPE_PIT_VULN	0x00800001
1616#define ROD_TYPE_PIT_PERS	0x00800002
1617#define ROD_TYPE_PIT_ANY	0x0080FFFF
1618#define ROD_TYPE_BLOCK_ZERO	0xFFFF0001
1619	uint8_t  reserved[2];
1620	uint8_t  length[2];
1621	uint8_t  body[0];
1622};
1623
1624struct scsi_report_all_rod_tokens
1625{
1626	uint8_t  opcode;
1627	uint8_t  service_action;
1628#define RCS_RART		0x08
1629	uint8_t  reserved[8];
1630	uint8_t  length[4];
1631	uint8_t  reserved2;
1632	uint8_t  control;
1633};
1634
1635struct scsi_report_all_rod_tokens_data
1636{
1637	uint8_t  available_data[4];
1638	uint8_t  reserved[4];
1639	uint8_t  rod_management_token_list[];
1640};
1641
1642struct ata_pass_16 {
1643	u_int8_t opcode;
1644	u_int8_t protocol;
1645#define	AP_EXTEND	0x01
1646	u_int8_t flags;
1647#define	AP_FLAG_TLEN_NO_DATA	(0 << 0)
1648#define	AP_FLAG_TLEN_FEAT	(1 << 0)
1649#define	AP_FLAG_TLEN_SECT_CNT	(2 << 0)
1650#define	AP_FLAG_TLEN_STPSIU	(3 << 0)
1651#define	AP_FLAG_BYT_BLOK_BYTES	(0 << 2)
1652#define	AP_FLAG_BYT_BLOK_BLOCKS	(1 << 2)
1653#define	AP_FLAG_TDIR_TO_DEV	(0 << 3)
1654#define	AP_FLAG_TDIR_FROM_DEV	(1 << 3)
1655#define	AP_FLAG_CHK_COND	(1 << 5)
1656	u_int8_t features_ext;
1657	u_int8_t features;
1658	u_int8_t sector_count_ext;
1659	u_int8_t sector_count;
1660	u_int8_t lba_low_ext;
1661	u_int8_t lba_low;
1662	u_int8_t lba_mid_ext;
1663	u_int8_t lba_mid;
1664	u_int8_t lba_high_ext;
1665	u_int8_t lba_high;
1666	u_int8_t device;
1667	u_int8_t command;
1668	u_int8_t control;
1669};
1670
1671#define	SC_SCSI_1 0x01
1672#define	SC_SCSI_2 0x03
1673
1674/*
1675 * Opcodes
1676 */
1677
1678#define	TEST_UNIT_READY		0x00
1679#define	REQUEST_SENSE		0x03
1680#define	READ_6			0x08
1681#define	WRITE_6			0x0A
1682#define	INQUIRY			0x12
1683#define	MODE_SELECT_6		0x15
1684#define	MODE_SENSE_6		0x1A
1685#define	START_STOP_UNIT		0x1B
1686#define	START_STOP		0x1B
1687#define	RESERVE      		0x16
1688#define	RELEASE      		0x17
1689#define	RECEIVE_DIAGNOSTIC	0x1C
1690#define	SEND_DIAGNOSTIC		0x1D
1691#define	PREVENT_ALLOW		0x1E
1692#define	READ_CAPACITY		0x25
1693#define	READ_10			0x28
1694#define	WRITE_10		0x2A
1695#define	POSITION_TO_ELEMENT	0x2B
1696#define	WRITE_VERIFY_10		0x2E
1697#define	VERIFY_10		0x2F
1698#define	SYNCHRONIZE_CACHE	0x35
1699#define	READ_DEFECT_DATA_10	0x37
1700#define	WRITE_BUFFER            0x3B
1701#define	READ_BUFFER             0x3C
1702#define	CHANGE_DEFINITION	0x40
1703#define	WRITE_SAME_10		0x41
1704#define	UNMAP			0x42
1705#define	LOG_SELECT		0x4C
1706#define	LOG_SENSE		0x4D
1707#define	MODE_SELECT_10		0x55
1708#define	RESERVE_10		0x56
1709#define	RELEASE_10		0x57
1710#define	MODE_SENSE_10		0x5A
1711#define	PERSISTENT_RES_IN	0x5E
1712#define	PERSISTENT_RES_OUT	0x5F
1713#define	EXTENDED_COPY		0x83
1714#define	RECEIVE_COPY_STATUS	0x84
1715#define	ATA_PASS_16		0x85
1716#define	READ_16			0x88
1717#define	COMPARE_AND_WRITE	0x89
1718#define	WRITE_16		0x8A
1719#define	WRITE_VERIFY_16		0x8E
1720#define	VERIFY_16		0x8F
1721#define	SYNCHRONIZE_CACHE_16	0x91
1722#define	WRITE_SAME_16		0x93
1723#define	WRITE_ATOMIC_16		0x9C
1724#define	SERVICE_ACTION_IN	0x9E
1725#define	REPORT_LUNS		0xA0
1726#define	ATA_PASS_12		0xA1
1727#define	MAINTENANCE_IN		0xA3
1728#define	MAINTENANCE_OUT		0xA4
1729#define	MOVE_MEDIUM     	0xA5
1730#define	READ_12			0xA8
1731#define	WRITE_12		0xAA
1732#define	WRITE_VERIFY_12		0xAE
1733#define	VERIFY_12		0xAF
1734#define	READ_ELEMENT_STATUS	0xB8
1735#define	READ_CD			0xBE
1736
1737/* Maintenance In Service Action Codes */
1738#define	REPORT_IDENTIFYING_INFRMATION		0x05
1739#define	REPORT_TARGET_PORT_GROUPS		0x0A
1740#define	REPORT_ALIASES				0x0B
1741#define	REPORT_SUPPORTED_OPERATION_CODES	0x0C
1742#define	REPORT_SUPPORTED_TASK_MANAGEMENT_FUNCTIONS	0x0D
1743#define	REPORT_PRIORITY				0x0E
1744#define	REPORT_TIMESTAMP			0x0F
1745#define	MANAGEMENT_PROTOCOL_IN			0x10
1746/* Maintenance Out Service Action Codes */
1747#define	SET_IDENTIFY_INFORMATION		0x06
1748#define	SET_TARGET_PORT_GROUPS			0x0A
1749#define	CHANGE_ALIASES				0x0B
1750#define	SET_PRIORITY				0x0E
1751#define	SET_TIMESTAMP				0x0F
1752#define	MANGAEMENT_PROTOCOL_OUT			0x10
1753
1754/*
1755 * Device Types
1756 */
1757#define	T_DIRECT	0x00
1758#define	T_SEQUENTIAL	0x01
1759#define	T_PRINTER	0x02
1760#define	T_PROCESSOR	0x03
1761#define	T_WORM		0x04
1762#define	T_CDROM		0x05
1763#define	T_SCANNER	0x06
1764#define	T_OPTICAL 	0x07
1765#define	T_CHANGER	0x08
1766#define	T_COMM		0x09
1767#define	T_ASC0		0x0a
1768#define	T_ASC1		0x0b
1769#define	T_STORARRAY	0x0c
1770#define	T_ENCLOSURE	0x0d
1771#define	T_RBC		0x0e
1772#define	T_OCRW		0x0f
1773#define	T_OSD		0x11
1774#define	T_ADC		0x12
1775#define	T_NODEVICE	0x1f
1776#define	T_ANY		0xff	/* Used in Quirk table matches */
1777
1778#define	T_REMOV		1
1779#define	T_FIXED		0
1780
1781/*
1782 * This length is the initial inquiry length used by the probe code, as
1783 * well as the length necessary for scsi_print_inquiry() to function
1784 * correctly.  If either use requires a different length in the future,
1785 * the two values should be de-coupled.
1786 */
1787#define	SHORT_INQUIRY_LENGTH	36
1788
1789struct scsi_inquiry_data
1790{
1791	u_int8_t device;
1792#define	SID_TYPE(inq_data) ((inq_data)->device & 0x1f)
1793#define	SID_QUAL(inq_data) (((inq_data)->device & 0xE0) >> 5)
1794#define	SID_QUAL_LU_CONNECTED	0x00	/*
1795					 * The specified peripheral device
1796					 * type is currently connected to
1797					 * logical unit.  If the target cannot
1798					 * determine whether or not a physical
1799					 * device is currently connected, it
1800					 * shall also use this peripheral
1801					 * qualifier when returning the INQUIRY
1802					 * data.  This peripheral qualifier
1803					 * does not mean that the device is
1804					 * ready for access by the initiator.
1805					 */
1806#define	SID_QUAL_LU_OFFLINE	0x01	/*
1807					 * The target is capable of supporting
1808					 * the specified peripheral device type
1809					 * on this logical unit; however, the
1810					 * physical device is not currently
1811					 * connected to this logical unit.
1812					 */
1813#define	SID_QUAL_RSVD		0x02
1814#define	SID_QUAL_BAD_LU		0x03	/*
1815					 * The target is not capable of
1816					 * supporting a physical device on
1817					 * this logical unit. For this
1818					 * peripheral qualifier the peripheral
1819					 * device type shall be set to 1Fh to
1820					 * provide compatibility with previous
1821					 * versions of SCSI. All other
1822					 * peripheral device type values are
1823					 * reserved for this peripheral
1824					 * qualifier.
1825					 */
1826#define	SID_QUAL_IS_VENDOR_UNIQUE(inq_data) ((SID_QUAL(inq_data) & 0x08) != 0)
1827	u_int8_t dev_qual2;
1828#define	SID_QUAL2	0x7F
1829#define	SID_LU_CONG	0x40
1830#define	SID_RMB		0x80
1831#define	SID_IS_REMOVABLE(inq_data) (((inq_data)->dev_qual2 & SID_RMB) != 0)
1832	u_int8_t version;
1833#define	SID_ANSI_REV(inq_data) ((inq_data)->version & 0x07)
1834#define		SCSI_REV_0		0
1835#define		SCSI_REV_CCS		1
1836#define		SCSI_REV_2		2
1837#define		SCSI_REV_SPC		3
1838#define		SCSI_REV_SPC2		4
1839#define		SCSI_REV_SPC3		5
1840#define		SCSI_REV_SPC4		6
1841
1842#define	SID_ECMA	0x38
1843#define	SID_ISO		0xC0
1844	u_int8_t response_format;
1845#define	SID_AENC	0x80
1846#define	SID_TrmIOP	0x40
1847#define	SID_NormACA	0x20
1848#define	SID_HiSup	0x10
1849	u_int8_t additional_length;
1850#define	SID_ADDITIONAL_LENGTH(iqd)					\
1851	((iqd)->additional_length +					\
1852	__offsetof(struct scsi_inquiry_data, additional_length) + 1)
1853	u_int8_t spc3_flags;
1854#define	SPC3_SID_PROTECT	0x01
1855#define	SPC3_SID_3PC		0x08
1856#define	SPC3_SID_TPGS_MASK	0x30
1857#define	SPC3_SID_TPGS_IMPLICIT	0x10
1858#define	SPC3_SID_TPGS_EXPLICIT	0x20
1859#define	SPC3_SID_ACC		0x40
1860#define	SPC3_SID_SCCS		0x80
1861	u_int8_t spc2_flags;
1862#define	SPC2_SID_ADDR16		0x01
1863#define	SPC2_SID_MChngr 	0x08
1864#define	SPC2_SID_MultiP 	0x10
1865#define	SPC2_SID_EncServ	0x40
1866#define	SPC2_SID_BQueue		0x80
1867
1868#define	INQ_DATA_TQ_ENABLED(iqd)				\
1869    ((SID_ANSI_REV(iqd) < SCSI_REV_SPC2)? ((iqd)->flags & SID_CmdQue) :	\
1870    (((iqd)->flags & SID_CmdQue) && !((iqd)->spc2_flags & SPC2_SID_BQueue)) || \
1871    (!((iqd)->flags & SID_CmdQue) && ((iqd)->spc2_flags & SPC2_SID_BQueue)))
1872
1873	u_int8_t flags;
1874#define	SID_SftRe	0x01
1875#define	SID_CmdQue	0x02
1876#define	SID_Linked	0x08
1877#define	SID_Sync	0x10
1878#define	SID_WBus16	0x20
1879#define	SID_WBus32	0x40
1880#define	SID_RelAdr	0x80
1881#define	SID_VENDOR_SIZE   8
1882	char	 vendor[SID_VENDOR_SIZE];
1883#define	SID_PRODUCT_SIZE  16
1884	char	 product[SID_PRODUCT_SIZE];
1885#define	SID_REVISION_SIZE 4
1886	char	 revision[SID_REVISION_SIZE];
1887	/*
1888	 * The following fields were taken from SCSI Primary Commands - 2
1889	 * (SPC-2) Revision 14, Dated 11 November 1999
1890	 */
1891#define	SID_VENDOR_SPECIFIC_0_SIZE	20
1892	u_int8_t vendor_specific0[SID_VENDOR_SPECIFIC_0_SIZE];
1893	/*
1894	 * An extension of SCSI Parallel Specific Values
1895	 */
1896#define	SID_SPI_IUS		0x01
1897#define	SID_SPI_QAS		0x02
1898#define	SID_SPI_CLOCK_ST	0x00
1899#define	SID_SPI_CLOCK_DT	0x04
1900#define	SID_SPI_CLOCK_DT_ST	0x0C
1901#define	SID_SPI_MASK		0x0F
1902	u_int8_t spi3data;
1903	u_int8_t reserved2;
1904	/*
1905	 * Version Descriptors, stored 2 byte values.
1906	 */
1907	u_int8_t version1[2];
1908	u_int8_t version2[2];
1909	u_int8_t version3[2];
1910	u_int8_t version4[2];
1911	u_int8_t version5[2];
1912	u_int8_t version6[2];
1913	u_int8_t version7[2];
1914	u_int8_t version8[2];
1915
1916	u_int8_t reserved3[22];
1917
1918#define	SID_VENDOR_SPECIFIC_1_SIZE	160
1919	u_int8_t vendor_specific1[SID_VENDOR_SPECIFIC_1_SIZE];
1920};
1921
1922/*
1923 * This structure is more suited to initiator operation, because the
1924 * maximum number of supported pages is already allocated.
1925 */
1926struct scsi_vpd_supported_page_list
1927{
1928	u_int8_t device;
1929	u_int8_t page_code;
1930#define	SVPD_SUPPORTED_PAGE_LIST	0x00
1931#define	SVPD_SUPPORTED_PAGES_HDR_LEN	4
1932	u_int8_t reserved;
1933	u_int8_t length;	/* number of VPD entries */
1934#define	SVPD_SUPPORTED_PAGES_SIZE	251
1935	u_int8_t list[SVPD_SUPPORTED_PAGES_SIZE];
1936};
1937
1938/*
1939 * This structure is more suited to target operation, because the
1940 * number of supported pages is left to the user to allocate.
1941 */
1942struct scsi_vpd_supported_pages
1943{
1944	u_int8_t device;
1945	u_int8_t page_code;
1946	u_int8_t reserved;
1947#define	SVPD_SUPPORTED_PAGES	0x00
1948	u_int8_t length;
1949	u_int8_t page_list[0];
1950};
1951
1952
1953struct scsi_vpd_unit_serial_number
1954{
1955	u_int8_t device;
1956	u_int8_t page_code;
1957#define	SVPD_UNIT_SERIAL_NUMBER	0x80
1958	u_int8_t reserved;
1959	u_int8_t length; /* serial number length */
1960#define	SVPD_SERIAL_NUM_SIZE 251
1961	u_int8_t serial_num[SVPD_SERIAL_NUM_SIZE];
1962};
1963
1964struct scsi_vpd_device_id
1965{
1966	u_int8_t device;
1967	u_int8_t page_code;
1968#define	SVPD_DEVICE_ID			0x83
1969#define	SVPD_DEVICE_ID_MAX_SIZE		252
1970#define	SVPD_DEVICE_ID_HDR_LEN \
1971    __offsetof(struct scsi_vpd_device_id, desc_list)
1972	u_int8_t length[2];
1973	u_int8_t desc_list[];
1974};
1975
1976struct scsi_vpd_id_descriptor
1977{
1978	u_int8_t	proto_codeset;
1979	/*
1980	 * See the SCSI_PROTO definitions above for the protocols.
1981	 */
1982#define	SVPD_ID_PROTO_SHIFT	4
1983#define	SVPD_ID_CODESET_BINARY	0x01
1984#define	SVPD_ID_CODESET_ASCII	0x02
1985#define	SVPD_ID_CODESET_UTF8	0x03
1986#define	SVPD_ID_CODESET_MASK	0x0f
1987	u_int8_t	id_type;
1988#define	SVPD_ID_PIV		0x80
1989#define	SVPD_ID_ASSOC_LUN	0x00
1990#define	SVPD_ID_ASSOC_PORT	0x10
1991#define	SVPD_ID_ASSOC_TARGET	0x20
1992#define	SVPD_ID_ASSOC_MASK	0x30
1993#define	SVPD_ID_TYPE_VENDOR	0x00
1994#define	SVPD_ID_TYPE_T10	0x01
1995#define	SVPD_ID_TYPE_EUI64	0x02
1996#define	SVPD_ID_TYPE_NAA	0x03
1997#define	SVPD_ID_TYPE_RELTARG	0x04
1998#define	SVPD_ID_TYPE_TPORTGRP	0x05
1999#define	SVPD_ID_TYPE_LUNGRP	0x06
2000#define	SVPD_ID_TYPE_MD5_LUN_ID	0x07
2001#define	SVPD_ID_TYPE_SCSI_NAME	0x08
2002#define	SVPD_ID_TYPE_MASK	0x0f
2003	u_int8_t	reserved;
2004	u_int8_t	length;
2005#define	SVPD_DEVICE_ID_DESC_HDR_LEN \
2006    __offsetof(struct scsi_vpd_id_descriptor, identifier)
2007	u_int8_t	identifier[];
2008};
2009
2010struct scsi_vpd_id_t10
2011{
2012	u_int8_t	vendor[8];
2013	u_int8_t	vendor_spec_id[0];
2014};
2015
2016struct scsi_vpd_id_eui64
2017{
2018	u_int8_t	ieee_company_id[3];
2019	u_int8_t	extension_id[5];
2020};
2021
2022struct scsi_vpd_id_naa_basic
2023{
2024	uint8_t naa;
2025	/* big endian, packed:
2026	uint8_t	naa : 4;
2027	uint8_t naa_desig : 4;
2028	*/
2029#define	SVPD_ID_NAA_NAA_SHIFT		4
2030#define	SVPD_ID_NAA_IEEE_EXT		0x02
2031#define	SVPD_ID_NAA_LOCAL_REG		0x03
2032#define	SVPD_ID_NAA_IEEE_REG		0x05
2033#define	SVPD_ID_NAA_IEEE_REG_EXT	0x06
2034	uint8_t	naa_data[];
2035};
2036
2037struct scsi_vpd_id_naa_ieee_extended_id
2038{
2039	uint8_t naa;
2040	uint8_t vendor_specific_id_a;
2041	uint8_t ieee_company_id[3];
2042	uint8_t vendor_specific_id_b[4];
2043};
2044
2045struct scsi_vpd_id_naa_local_reg
2046{
2047	uint8_t naa;
2048	uint8_t local_value[7];
2049};
2050
2051struct scsi_vpd_id_naa_ieee_reg
2052{
2053	uint8_t naa;
2054	uint8_t reg_value[7];
2055	/* big endian, packed:
2056	uint8_t naa_basic : 4;
2057	uint8_t ieee_company_id_0 : 4;
2058	uint8_t ieee_company_id_1[2];
2059	uint8_t ieee_company_id_2 : 4;
2060	uint8_t vendor_specific_id_0 : 4;
2061	uint8_t vendor_specific_id_1[4];
2062	*/
2063};
2064
2065struct scsi_vpd_id_naa_ieee_reg_extended
2066{
2067	uint8_t naa;
2068	uint8_t reg_value[15];
2069	/* big endian, packed:
2070	uint8_t naa_basic : 4;
2071	uint8_t ieee_company_id_0 : 4;
2072	uint8_t ieee_company_id_1[2];
2073	uint8_t ieee_company_id_2 : 4;
2074	uint8_t vendor_specific_id_0 : 4;
2075	uint8_t vendor_specific_id_1[4];
2076	uint8_t vendor_specific_id_ext[8];
2077	*/
2078};
2079
2080struct scsi_vpd_id_rel_trgt_port_id
2081{
2082	uint8_t obsolete[2];
2083	uint8_t rel_trgt_port_id[2];
2084};
2085
2086struct scsi_vpd_id_trgt_port_grp_id
2087{
2088	uint8_t reserved[2];
2089	uint8_t trgt_port_grp[2];
2090};
2091
2092struct scsi_vpd_id_lun_grp_id
2093{
2094	uint8_t reserved[2];
2095	uint8_t log_unit_grp[2];
2096};
2097
2098struct scsi_vpd_id_md5_lun_id
2099{
2100	uint8_t lun_id[16];
2101};
2102
2103struct scsi_vpd_id_scsi_name
2104{
2105	uint8_t name_string[256];
2106};
2107
2108struct scsi_service_action_in
2109{
2110	uint8_t opcode;
2111	uint8_t service_action;
2112	uint8_t action_dependent[13];
2113	uint8_t control;
2114};
2115
2116struct scsi_vpd_extended_inquiry_data
2117{
2118	uint8_t device;
2119	uint8_t page_code;
2120#define	SVPD_EXTENDED_INQUIRY_DATA	0x86
2121	uint8_t reserved;
2122	uint8_t page_length;
2123	uint8_t flags1;
2124#define	SVPD_EID_AM		0xC0
2125#define	SVPD_EID_SPT		0x38
2126#define	SVPD_EID_SPT_1		0x00
2127#define	SVPD_EID_SPT_12		0x08
2128#define	SVPD_EID_SPT_2		0x10
2129#define	SVPD_EID_SPT_13		0x18
2130#define	SVPD_EID_SPT_3		0x20
2131#define	SVPD_EID_SPT_23		0x28
2132#define	SVPD_EID_SPT_123	0x38
2133#define	SVPD_EID_GRD_CHK	0x04
2134#define	SVPD_EID_APP_CHK	0x02
2135#define	SVPD_EID_REF_CHK	0x01
2136	uint8_t flags2;
2137#define	SVPD_EID_UASK_SUP	0x20
2138#define	SVPD_EID_GROUP_SUP	0x10
2139#define	SVPD_EID_PRIOR_SUP	0x08
2140#define	SVPD_EID_HEADSUP	0x04
2141#define	SVPD_EID_ORDSUP		0x02
2142#define	SVPD_EID_SIMPSUP	0x01
2143	uint8_t flags3;
2144#define	SVPD_EID_WU_SUP		0x08
2145#define	SVPD_EID_CRD_SUP	0x04
2146#define	SVPD_EID_NV_SUP		0x02
2147#define	SVPD_EID_V_SUP		0x01
2148	uint8_t flags4;
2149#define	SVPD_EID_P_I_I_SUP	0x10
2150#define	SVPD_EID_LUICLT		0x01
2151	uint8_t flags5;
2152#define	SVPD_EID_R_SUP		0x10
2153#define	SVPD_EID_CBCS		0x01
2154	uint8_t flags6;
2155#define	SVPD_EID_MULTI_I_T_FW	0x0F
2156	uint8_t est[2];
2157	uint8_t flags7;
2158#define	SVPD_EID_POA_SUP	0x80
2159#define	SVPD_EID_HRA_SUP	0x80
2160#define	SVPD_EID_VSA_SUP	0x80
2161	uint8_t max_sense_length;
2162	uint8_t reserved2[50];
2163};
2164
2165struct scsi_vpd_mode_page_policy_descr
2166{
2167	uint8_t page_code;
2168	uint8_t subpage_code;
2169	uint8_t policy;
2170#define	SVPD_MPP_SHARED		0x00
2171#define	SVPD_MPP_PORT		0x01
2172#define	SVPD_MPP_I_T		0x03
2173#define	SVPD_MPP_MLUS		0x80
2174	uint8_t reserved;
2175};
2176
2177struct scsi_vpd_mode_page_policy
2178{
2179	uint8_t device;
2180	uint8_t page_code;
2181#define	SVPD_MODE_PAGE_POLICY	0x87
2182	uint8_t page_length[2];
2183	struct scsi_vpd_mode_page_policy_descr descr[0];
2184};
2185
2186struct scsi_diag_page {
2187	uint8_t page_code;
2188	uint8_t page_specific_flags;
2189	uint8_t length[2];
2190	uint8_t params[0];
2191};
2192
2193struct scsi_vpd_port_designation
2194{
2195	uint8_t reserved[2];
2196	uint8_t relative_port_id[2];
2197	uint8_t reserved2[2];
2198	uint8_t initiator_transportid_length[2];
2199	uint8_t initiator_transportid[0];
2200};
2201
2202struct scsi_vpd_port_designation_cont
2203{
2204	uint8_t reserved[2];
2205	uint8_t target_port_descriptors_length[2];
2206	struct scsi_vpd_id_descriptor target_port_descriptors[0];
2207};
2208
2209struct scsi_vpd_scsi_ports
2210{
2211	u_int8_t device;
2212	u_int8_t page_code;
2213#define	SVPD_SCSI_PORTS		0x88
2214	u_int8_t page_length[2];
2215	struct scsi_vpd_port_designation design[];
2216};
2217
2218/*
2219 * ATA Information VPD Page based on
2220 * T10/2126-D Revision 04
2221 */
2222#define SVPD_ATA_INFORMATION		0x89
2223
2224
2225struct scsi_vpd_tpc_descriptor
2226{
2227	uint8_t desc_type[2];
2228	uint8_t desc_length[2];
2229	uint8_t parameters[];
2230};
2231
2232struct scsi_vpd_tpc_descriptor_bdrl
2233{
2234	uint8_t desc_type[2];
2235#define	SVPD_TPC_BDRL			0x0000
2236	uint8_t desc_length[2];
2237	uint8_t vendor_specific[6];
2238	uint8_t maximum_ranges[2];
2239	uint8_t maximum_inactivity_timeout[4];
2240	uint8_t default_inactivity_timeout[4];
2241	uint8_t maximum_token_transfer_size[8];
2242	uint8_t optimal_transfer_count[8];
2243};
2244
2245struct scsi_vpd_tpc_descriptor_sc_descr
2246{
2247	uint8_t opcode;
2248	uint8_t sa_length;
2249	uint8_t supported_service_actions[0];
2250};
2251
2252struct scsi_vpd_tpc_descriptor_sc
2253{
2254	uint8_t desc_type[2];
2255#define	SVPD_TPC_SC			0x0001
2256	uint8_t desc_length[2];
2257	uint8_t list_length;
2258	struct scsi_vpd_tpc_descriptor_sc_descr descr[];
2259};
2260
2261struct scsi_vpd_tpc_descriptor_pd
2262{
2263	uint8_t desc_type[2];
2264#define	SVPD_TPC_PD			0x0004
2265	uint8_t desc_length[2];
2266	uint8_t reserved[4];
2267	uint8_t maximum_cscd_descriptor_count[2];
2268	uint8_t maximum_segment_descriptor_count[2];
2269	uint8_t maximum_descriptor_list_length[4];
2270	uint8_t maximum_inline_data_length[4];
2271	uint8_t reserved2[12];
2272};
2273
2274struct scsi_vpd_tpc_descriptor_sd
2275{
2276	uint8_t desc_type[2];
2277#define	SVPD_TPC_SD			0x0008
2278	uint8_t desc_length[2];
2279	uint8_t list_length;
2280	uint8_t supported_descriptor_codes[];
2281};
2282
2283struct scsi_vpd_tpc_descriptor_sdid
2284{
2285	uint8_t desc_type[2];
2286#define	SVPD_TPC_SDID			0x000C
2287	uint8_t desc_length[2];
2288	uint8_t list_length[2];
2289	uint8_t supported_descriptor_ids[];
2290};
2291
2292struct scsi_vpd_tpc_descriptor_rtf_block
2293{
2294	uint8_t type_format;
2295#define	SVPD_TPC_RTF_BLOCK			0x00
2296	uint8_t reserved;
2297	uint8_t desc_length[2];
2298	uint8_t reserved2[2];
2299	uint8_t optimal_length_granularity[2];
2300	uint8_t maximum_bytes[8];
2301	uint8_t optimal_bytes[8];
2302	uint8_t optimal_bytes_to_token_per_segment[8];
2303	uint8_t optimal_bytes_from_token_per_segment[8];
2304	uint8_t reserved3[8];
2305};
2306
2307struct scsi_vpd_tpc_descriptor_rtf
2308{
2309	uint8_t desc_type[2];
2310#define	SVPD_TPC_RTF			0x0106
2311	uint8_t desc_length[2];
2312	uint8_t remote_tokens;
2313	uint8_t reserved[11];
2314	uint8_t minimum_token_lifetime[4];
2315	uint8_t maximum_token_lifetime[4];
2316	uint8_t maximum_token_inactivity_timeout[4];
2317	uint8_t reserved2[18];
2318	uint8_t type_specific_features_length[2];
2319	uint8_t type_specific_features[0];
2320};
2321
2322struct scsi_vpd_tpc_descriptor_srtd
2323{
2324	uint8_t rod_type[4];
2325	uint8_t flags;
2326#define	SVPD_TPC_SRTD_TOUT		0x01
2327#define	SVPD_TPC_SRTD_TIN		0x02
2328#define	SVPD_TPC_SRTD_ECPY		0x80
2329	uint8_t reserved;
2330	uint8_t preference_indicator[2];
2331	uint8_t reserved2[56];
2332};
2333
2334struct scsi_vpd_tpc_descriptor_srt
2335{
2336	uint8_t desc_type[2];
2337#define	SVPD_TPC_SRT			0x0108
2338	uint8_t desc_length[2];
2339	uint8_t reserved[2];
2340	uint8_t rod_type_descriptors_length[2];
2341	uint8_t rod_type_descriptors[0];
2342};
2343
2344struct scsi_vpd_tpc_descriptor_gco
2345{
2346	uint8_t desc_type[2];
2347#define	SVPD_TPC_GCO			0x8001
2348	uint8_t desc_length[2];
2349	uint8_t total_concurrent_copies[4];
2350	uint8_t maximum_identified_concurrent_copies[4];
2351	uint8_t maximum_segment_length[4];
2352	uint8_t data_segment_granularity;
2353	uint8_t inline_data_granularity;
2354	uint8_t reserved[18];
2355};
2356
2357struct scsi_vpd_tpc
2358{
2359	uint8_t device;
2360	uint8_t page_code;
2361#define	SVPD_SCSI_TPC			0x8F
2362	uint8_t page_length[2];
2363	struct scsi_vpd_tpc_descriptor descr[];
2364};
2365
2366/*
2367 * Block Device Characteristics VPD Page based on
2368 * T10/1799-D Revision 31
2369 */
2370struct scsi_vpd_block_characteristics
2371{
2372	u_int8_t device;
2373	u_int8_t page_code;
2374#define SVPD_BDC			0xB1
2375	u_int8_t page_length[2];
2376	u_int8_t medium_rotation_rate[2];
2377#define SVPD_BDC_RATE_NOT_REPORTED	0x00
2378#define SVPD_BDC_RATE_NON_ROTATING	0x01
2379	u_int8_t reserved1;
2380	u_int8_t nominal_form_factor;
2381#define SVPD_BDC_FORM_NOT_REPORTED	0x00
2382#define SVPD_BDC_FORM_5_25INCH		0x01
2383#define SVPD_BDC_FORM_3_5INCH		0x02
2384#define SVPD_BDC_FORM_2_5INCH		0x03
2385#define SVPD_BDC_FORM_1_5INCH		0x04
2386#define SVPD_BDC_FORM_LESSTHAN_1_5INCH	0x05
2387	u_int8_t reserved2[56];
2388};
2389
2390/*
2391 * Block Device Characteristics VPD Page
2392 */
2393struct scsi_vpd_block_device_characteristics
2394{
2395	uint8_t device;
2396	uint8_t page_code;
2397#define	SVPD_BDC		0xB1
2398	uint8_t page_length[2];
2399	uint8_t medium_rotation_rate[2];
2400#define	SVPD_NOT_REPORTED	0x0000
2401#define	SVPD_NON_ROTATING	0x0001
2402	uint8_t product_type;
2403	uint8_t wab_wac_ff;
2404	uint8_t flags;
2405#define	SVPD_VBULS		0x01
2406#define	SVPD_FUAB		0x02
2407#define	SVPD_HAW_ZBC		0x10
2408	uint8_t reserved[55];
2409};
2410
2411/*
2412 * Logical Block Provisioning VPD Page based on
2413 * T10/1799-D Revision 31
2414 */
2415struct scsi_vpd_logical_block_prov
2416{
2417	u_int8_t device;
2418	u_int8_t page_code;
2419#define	SVPD_LBP		0xB2
2420	u_int8_t page_length[2];
2421#define SVPD_LBP_PL_BASIC	0x04
2422	u_int8_t threshold_exponent;
2423	u_int8_t flags;
2424#define SVPD_LBP_UNMAP		0x80
2425#define SVPD_LBP_WS16		0x40
2426#define SVPD_LBP_WS10		0x20
2427#define SVPD_LBP_RZ		0x04
2428#define SVPD_LBP_ANC_SUP	0x02
2429#define SVPD_LBP_DP		0x01
2430	u_int8_t prov_type;
2431#define SVPD_LBP_RESOURCE	0x01
2432#define SVPD_LBP_THIN		0x02
2433	u_int8_t reserved;
2434	/*
2435	 * Provisioning Group Descriptor can be here if SVPD_LBP_DP is set
2436	 * Its size can be determined from page_length - 4
2437	 */
2438};
2439
2440/*
2441 * Block Limits VDP Page based on SBC-4 Revision 2
2442 */
2443struct scsi_vpd_block_limits
2444{
2445	u_int8_t device;
2446	u_int8_t page_code;
2447#define	SVPD_BLOCK_LIMITS	0xB0
2448	u_int8_t page_length[2];
2449#define SVPD_BL_PL_BASIC	0x10
2450#define SVPD_BL_PL_TP		0x3C
2451	u_int8_t reserved1;
2452	u_int8_t max_cmp_write_len;
2453	u_int8_t opt_txfer_len_grain[2];
2454	u_int8_t max_txfer_len[4];
2455	u_int8_t opt_txfer_len[4];
2456	u_int8_t max_prefetch[4];
2457	u_int8_t max_unmap_lba_cnt[4];
2458	u_int8_t max_unmap_blk_cnt[4];
2459	u_int8_t opt_unmap_grain[4];
2460	u_int8_t unmap_grain_align[4];
2461	u_int8_t max_write_same_length[8];
2462	u_int8_t max_atomic_transfer_length[4];
2463	u_int8_t atomic_alignment[4];
2464	u_int8_t atomic_transfer_length_granularity[4];
2465	u_int8_t reserved2[8];
2466};
2467
2468struct scsi_read_capacity
2469{
2470	u_int8_t opcode;
2471	u_int8_t byte2;
2472#define	SRC_RELADR	0x01
2473	u_int8_t addr[4];
2474	u_int8_t unused[2];
2475	u_int8_t pmi;
2476#define	SRC_PMI		0x01
2477	u_int8_t control;
2478};
2479
2480struct scsi_read_capacity_16
2481{
2482	uint8_t opcode;
2483#define	SRC16_SERVICE_ACTION	0x10
2484	uint8_t service_action;
2485	uint8_t addr[8];
2486	uint8_t alloc_len[4];
2487#define	SRC16_PMI		0x01
2488#define	SRC16_RELADR		0x02
2489	uint8_t reladr;
2490	uint8_t control;
2491};
2492
2493struct scsi_read_capacity_data
2494{
2495	u_int8_t addr[4];
2496	u_int8_t length[4];
2497};
2498
2499struct scsi_read_capacity_data_long
2500{
2501	uint8_t addr[8];
2502	uint8_t length[4];
2503#define	SRC16_PROT_EN		0x01
2504#define	SRC16_P_TYPE		0x0e
2505#define	SRC16_PTYPE_1		0x00
2506#define	SRC16_PTYPE_2		0x02
2507#define	SRC16_PTYPE_3		0x04
2508	uint8_t prot;
2509#define	SRC16_LBPPBE		0x0f
2510#define	SRC16_PI_EXPONENT	0xf0
2511#define	SRC16_PI_EXPONENT_SHIFT	4
2512	uint8_t prot_lbppbe;
2513#define	SRC16_LALBA		0x3f
2514#define	SRC16_LBPRZ		0x40
2515#define	SRC16_LBPME		0x80
2516/*
2517 * Alternate versions of these macros that are intended for use on a 16-bit
2518 * version of the lalba_lbp field instead of the array of 2 8 bit numbers.
2519 */
2520#define	SRC16_LALBA_A		0x3fff
2521#define	SRC16_LBPRZ_A		0x4000
2522#define	SRC16_LBPME_A		0x8000
2523	uint8_t lalba_lbp[2];
2524	uint8_t	reserved[16];
2525};
2526
2527struct scsi_report_luns
2528{
2529	uint8_t opcode;
2530	uint8_t reserved1;
2531#define	RPL_REPORT_DEFAULT	0x00
2532#define	RPL_REPORT_WELLKNOWN	0x01
2533#define	RPL_REPORT_ALL		0x02
2534	uint8_t select_report;
2535	uint8_t reserved2[3];
2536	uint8_t length[4];
2537	uint8_t reserved3;
2538	uint8_t control;
2539};
2540
2541struct scsi_report_luns_lundata {
2542	uint8_t lundata[8];
2543#define	RPL_LUNDATA_PERIPH_BUS_MASK	0x3f
2544#define	RPL_LUNDATA_FLAT_LUN_MASK	0x3f
2545#define	RPL_LUNDATA_FLAT_LUN_BITS	0x06
2546#define	RPL_LUNDATA_LUN_TARG_MASK	0x3f
2547#define	RPL_LUNDATA_LUN_BUS_MASK	0xe0
2548#define	RPL_LUNDATA_LUN_LUN_MASK	0x1f
2549#define	RPL_LUNDATA_EXT_LEN_MASK	0x30
2550#define	RPL_LUNDATA_EXT_EAM_MASK	0x0f
2551#define	RPL_LUNDATA_EXT_EAM_WK		0x01
2552#define	RPL_LUNDATA_EXT_EAM_NOT_SPEC	0x0f
2553#define	RPL_LUNDATA_ATYP_MASK	0xc0	/* MBZ for type 0 lun */
2554#define	RPL_LUNDATA_ATYP_PERIPH	0x00
2555#define	RPL_LUNDATA_ATYP_FLAT	0x40
2556#define	RPL_LUNDATA_ATYP_LUN	0x80
2557#define	RPL_LUNDATA_ATYP_EXTLUN	0xc0
2558};
2559
2560struct scsi_report_luns_data {
2561	u_int8_t length[4];	/* length of LUN inventory, in bytes */
2562	u_int8_t reserved[4];	/* unused */
2563	/*
2564	 * LUN inventory- we only support the type zero form for now.
2565	 */
2566	struct scsi_report_luns_lundata luns[0];
2567};
2568
2569struct scsi_target_group
2570{
2571	uint8_t opcode;
2572	uint8_t service_action;
2573#define	STG_PDF_MASK		0xe0
2574#define	STG_PDF_LENGTH		0x00
2575#define	STG_PDF_EXTENDED	0x20
2576	uint8_t reserved1[4];
2577	uint8_t length[4];
2578	uint8_t reserved2;
2579	uint8_t control;
2580};
2581
2582struct scsi_target_port_descriptor {
2583	uint8_t	reserved[2];
2584	uint8_t	relative_target_port_identifier[2];
2585	uint8_t desc_list[];
2586};
2587
2588struct scsi_target_port_group_descriptor {
2589	uint8_t	pref_state;
2590#define	TPG_PRIMARY				0x80
2591#define	TPG_ASYMMETRIC_ACCESS_STATE_MASK	0xf
2592#define	TPG_ASYMMETRIC_ACCESS_OPTIMIZED		0x0
2593#define	TPG_ASYMMETRIC_ACCESS_NONOPTIMIZED	0x1
2594#define	TPG_ASYMMETRIC_ACCESS_STANDBY		0x2
2595#define	TPG_ASYMMETRIC_ACCESS_UNAVAILABLE	0x3
2596#define	TPG_ASYMMETRIC_ACCESS_LBA_DEPENDENT	0x4
2597#define	TPG_ASYMMETRIC_ACCESS_OFFLINE		0xE
2598#define	TPG_ASYMMETRIC_ACCESS_TRANSITIONING	0xF
2599	uint8_t support;
2600#define	TPG_AO_SUP	0x01
2601#define	TPG_AN_SUP	0x02
2602#define	TPG_S_SUP	0x04
2603#define	TPG_U_SUP	0x08
2604#define	TPG_LBD_SUP	0x10
2605#define	TPG_O_SUP	0x40
2606#define	TPG_T_SUP	0x80
2607	uint8_t target_port_group[2];
2608	uint8_t reserved;
2609	uint8_t status;
2610#define TPG_UNAVLBL      0
2611#define TPG_SET_BY_STPG  0x01
2612#define TPG_IMPLICIT     0x02
2613	uint8_t vendor_specific;
2614	uint8_t	target_port_count;
2615	struct scsi_target_port_descriptor descriptors[];
2616};
2617
2618struct scsi_target_group_data {
2619	uint8_t length[4];	/* length of returned data, in bytes */
2620	struct scsi_target_port_group_descriptor groups[];
2621};
2622
2623struct scsi_target_group_data_extended {
2624	uint8_t length[4];	/* length of returned data, in bytes */
2625	uint8_t format_type;	/* STG_PDF_LENGTH or STG_PDF_EXTENDED */
2626	uint8_t	implicit_transition_time;
2627	uint8_t reserved[2];
2628	struct scsi_target_port_group_descriptor groups[];
2629};
2630
2631
2632typedef enum {
2633	SSD_TYPE_NONE,
2634	SSD_TYPE_FIXED,
2635	SSD_TYPE_DESC
2636} scsi_sense_data_type;
2637
2638typedef enum {
2639	SSD_ELEM_NONE,
2640	SSD_ELEM_SKIP,
2641	SSD_ELEM_DESC,
2642	SSD_ELEM_SKS,
2643	SSD_ELEM_COMMAND,
2644	SSD_ELEM_INFO,
2645	SSD_ELEM_FRU,
2646	SSD_ELEM_STREAM,
2647	SSD_ELEM_MAX
2648} scsi_sense_elem_type;
2649
2650
2651struct scsi_sense_data
2652{
2653	uint8_t error_code;
2654	/*
2655	 * SPC-4 says that the maximum length of sense data is 252 bytes.
2656	 * So this structure is exactly 252 bytes log.
2657	 */
2658#define	SSD_FULL_SIZE 252
2659	uint8_t sense_buf[SSD_FULL_SIZE - 1];
2660	/*
2661	 * XXX KDM is this still a reasonable minimum size?
2662	 */
2663#define	SSD_MIN_SIZE 18
2664	/*
2665	 * Maximum value for the extra_len field in the sense data.
2666	 */
2667#define	SSD_EXTRA_MAX 244
2668};
2669
2670/*
2671 * Fixed format sense data.
2672 */
2673struct scsi_sense_data_fixed
2674{
2675	u_int8_t error_code;
2676#define	SSD_ERRCODE			0x7F
2677#define		SSD_CURRENT_ERROR	0x70
2678#define		SSD_DEFERRED_ERROR	0x71
2679#define	SSD_ERRCODE_VALID	0x80
2680	u_int8_t segment;
2681	u_int8_t flags;
2682#define	SSD_KEY				0x0F
2683#define		SSD_KEY_NO_SENSE	0x00
2684#define		SSD_KEY_RECOVERED_ERROR	0x01
2685#define		SSD_KEY_NOT_READY	0x02
2686#define		SSD_KEY_MEDIUM_ERROR	0x03
2687#define		SSD_KEY_HARDWARE_ERROR	0x04
2688#define		SSD_KEY_ILLEGAL_REQUEST	0x05
2689#define		SSD_KEY_UNIT_ATTENTION	0x06
2690#define		SSD_KEY_DATA_PROTECT	0x07
2691#define		SSD_KEY_BLANK_CHECK	0x08
2692#define		SSD_KEY_Vendor_Specific	0x09
2693#define		SSD_KEY_COPY_ABORTED	0x0a
2694#define		SSD_KEY_ABORTED_COMMAND	0x0b
2695#define		SSD_KEY_EQUAL		0x0c
2696#define		SSD_KEY_VOLUME_OVERFLOW	0x0d
2697#define		SSD_KEY_MISCOMPARE	0x0e
2698#define		SSD_KEY_COMPLETED	0x0f
2699#define	SSD_ILI		0x20
2700#define	SSD_EOM		0x40
2701#define	SSD_FILEMARK	0x80
2702	u_int8_t info[4];
2703	u_int8_t extra_len;
2704	u_int8_t cmd_spec_info[4];
2705	u_int8_t add_sense_code;
2706	u_int8_t add_sense_code_qual;
2707	u_int8_t fru;
2708	u_int8_t sense_key_spec[3];
2709#define	SSD_SCS_VALID		0x80
2710#define	SSD_FIELDPTR_CMD	0x40
2711#define	SSD_BITPTR_VALID	0x08
2712#define	SSD_BITPTR_VALUE	0x07
2713	u_int8_t extra_bytes[14];
2714#define	SSD_FIXED_IS_PRESENT(sense, length, field) 			\
2715	((length >= (offsetof(struct scsi_sense_data_fixed, field) +	\
2716	sizeof(sense->field))) ? 1 :0)
2717#define	SSD_FIXED_IS_FILLED(sense, field) 				\
2718	((((offsetof(struct scsi_sense_data_fixed, field) +		\
2719	sizeof(sense->field)) -						\
2720	(offsetof(struct scsi_sense_data_fixed, extra_len) +		\
2721	sizeof(sense->extra_len))) <= sense->extra_len) ? 1 : 0)
2722};
2723
2724/*
2725 * Descriptor format sense data definitions.
2726 * Introduced in SPC-3.
2727 */
2728struct scsi_sense_data_desc
2729{
2730	uint8_t	error_code;
2731#define	SSD_DESC_CURRENT_ERROR	0x72
2732#define	SSD_DESC_DEFERRED_ERROR	0x73
2733	uint8_t sense_key;
2734	uint8_t	add_sense_code;
2735	uint8_t	add_sense_code_qual;
2736	uint8_t	reserved[3];
2737	/*
2738	 * Note that SPC-4, section 4.5.2.1 says that the extra_len field
2739	 * must be less than or equal to 244.
2740	 */
2741	uint8_t	extra_len;
2742	uint8_t	sense_desc[0];
2743#define	SSD_DESC_IS_PRESENT(sense, length, field) 			\
2744	((length >= (offsetof(struct scsi_sense_data_desc, field) +	\
2745	sizeof(sense->field))) ? 1 :0)
2746};
2747
2748struct scsi_sense_desc_header
2749{
2750	uint8_t desc_type;
2751	uint8_t length;
2752};
2753/*
2754 * The information provide in the Information descriptor is device type or
2755 * command specific information, and defined in a command standard.
2756 *
2757 * Note that any changes to the field names or positions in this structure,
2758 * even reserved fields, should be accompanied by an examination of the
2759 * code in ctl_set_sense() that uses them.
2760 *
2761 * Maximum descriptors allowed: 1 (as of SPC-4)
2762 */
2763struct scsi_sense_info
2764{
2765	uint8_t	desc_type;
2766#define	SSD_DESC_INFO	0x00
2767	uint8_t	length;
2768	uint8_t	byte2;
2769#define	SSD_INFO_VALID	0x80
2770	uint8_t	reserved;
2771	uint8_t	info[8];
2772};
2773
2774/*
2775 * Command-specific information depends on the command for which the
2776 * reported condition occured.
2777 *
2778 * Note that any changes to the field names or positions in this structure,
2779 * even reserved fields, should be accompanied by an examination of the
2780 * code in ctl_set_sense() that uses them.
2781 *
2782 * Maximum descriptors allowed: 1 (as of SPC-4)
2783 */
2784struct scsi_sense_command
2785{
2786	uint8_t	desc_type;
2787#define	SSD_DESC_COMMAND	0x01
2788	uint8_t	length;
2789	uint8_t	reserved[2];
2790	uint8_t	command_info[8];
2791};
2792
2793/*
2794 * Sense key specific descriptor.  The sense key specific data format
2795 * depends on the sense key in question.
2796 *
2797 * Maximum descriptors allowed: 1 (as of SPC-4)
2798 */
2799struct scsi_sense_sks
2800{
2801	uint8_t	desc_type;
2802#define	SSD_DESC_SKS		0x02
2803	uint8_t	length;
2804	uint8_t reserved1[2];
2805	uint8_t	sense_key_spec[3];
2806#define	SSD_SKS_VALID		0x80
2807	uint8_t reserved2;
2808};
2809
2810/*
2811 * This is used for the Illegal Request sense key (0x05) only.
2812 */
2813struct scsi_sense_sks_field
2814{
2815	uint8_t	byte0;
2816#define	SSD_SKS_FIELD_VALID	0x80
2817#define	SSD_SKS_FIELD_CMD	0x40
2818#define	SSD_SKS_BPV		0x08
2819#define	SSD_SKS_BIT_VALUE	0x07
2820	uint8_t	field[2];
2821};
2822
2823
2824/*
2825 * This is used for the Hardware Error (0x04), Medium Error (0x03) and
2826 * Recovered Error (0x01) sense keys.
2827 */
2828struct scsi_sense_sks_retry
2829{
2830	uint8_t byte0;
2831#define	SSD_SKS_RETRY_VALID	0x80
2832	uint8_t actual_retry_count[2];
2833};
2834
2835/*
2836 * Used with the NO Sense (0x00) or Not Ready (0x02) sense keys.
2837 */
2838struct scsi_sense_sks_progress
2839{
2840	uint8_t byte0;
2841#define	SSD_SKS_PROGRESS_VALID	0x80
2842	uint8_t progress[2];
2843#define	SSD_SKS_PROGRESS_DENOM	0x10000
2844};
2845
2846/*
2847 * Used with the Copy Aborted (0x0a) sense key.
2848 */
2849struct scsi_sense_sks_segment
2850{
2851	uint8_t byte0;
2852#define	SSD_SKS_SEGMENT_VALID	0x80
2853#define	SSD_SKS_SEGMENT_SD	0x20
2854#define	SSD_SKS_SEGMENT_BPV	0x08
2855#define	SSD_SKS_SEGMENT_BITPTR	0x07
2856	uint8_t field[2];
2857};
2858
2859/*
2860 * Used with the Unit Attention (0x06) sense key.
2861 *
2862 * This is currently used to indicate that the unit attention condition
2863 * queue has overflowed (when the overflow bit is set).
2864 */
2865struct scsi_sense_sks_overflow
2866{
2867	uint8_t byte0;
2868#define	SSD_SKS_OVERFLOW_VALID	0x80
2869#define	SSD_SKS_OVERFLOW_SET	0x01
2870	uint8_t	reserved[2];
2871};
2872
2873/*
2874 * This specifies which component is associated with the sense data.  There
2875 * is no standard meaning for the fru value.
2876 *
2877 * Maximum descriptors allowed: 1 (as of SPC-4)
2878 */
2879struct scsi_sense_fru
2880{
2881	uint8_t	desc_type;
2882#define	SSD_DESC_FRU		0x03
2883	uint8_t	length;
2884	uint8_t reserved;
2885	uint8_t fru;
2886};
2887
2888/*
2889 * Used for Stream commands, defined in SSC-4.
2890 *
2891 * Maximum descriptors allowed: 1 (as of SPC-4)
2892 */
2893
2894struct scsi_sense_stream
2895{
2896	uint8_t	desc_type;
2897#define	SSD_DESC_STREAM		0x04
2898	uint8_t	length;
2899	uint8_t	reserved;
2900	uint8_t	byte3;
2901#define	SSD_DESC_STREAM_FM	0x80
2902#define	SSD_DESC_STREAM_EOM	0x40
2903#define	SSD_DESC_STREAM_ILI	0x20
2904};
2905
2906/*
2907 * Used for Block commands, defined in SBC-3.
2908 *
2909 * This is currently (as of SBC-3) only used for the Incorrect Length
2910 * Indication (ILI) bit, which says that the data length requested in the
2911 * READ LONG or WRITE LONG command did not match the length of the logical
2912 * block.
2913 *
2914 * Maximum descriptors allowed: 1 (as of SPC-4)
2915 */
2916struct scsi_sense_block
2917{
2918	uint8_t	desc_type;
2919#define	SSD_DESC_BLOCK		0x05
2920	uint8_t	length;
2921	uint8_t	reserved;
2922	uint8_t	byte3;
2923#define	SSD_DESC_BLOCK_ILI	0x20
2924};
2925
2926/*
2927 * Used for Object-Based Storage Devices (OSD-3).
2928 *
2929 * Maximum descriptors allowed: 1 (as of SPC-4)
2930 */
2931struct scsi_sense_osd_objid
2932{
2933	uint8_t	desc_type;
2934#define	SSD_DESC_OSD_OBJID	0x06
2935	uint8_t	length;
2936	uint8_t	reserved[6];
2937	/*
2938	 * XXX KDM provide the bit definitions here?  There are a lot of
2939	 * them, and we don't have an OSD driver yet.
2940	 */
2941	uint8_t	not_init_cmds[4];
2942	uint8_t	completed_cmds[4];
2943	uint8_t	partition_id[8];
2944	uint8_t	object_id[8];
2945};
2946
2947/*
2948 * Used for Object-Based Storage Devices (OSD-3).
2949 *
2950 * Maximum descriptors allowed: 1 (as of SPC-4)
2951 */
2952struct scsi_sense_osd_integrity
2953{
2954	uint8_t	desc_type;
2955#define	SSD_DESC_OSD_INTEGRITY	0x07
2956	uint8_t	length;
2957	uint8_t	integ_check_val[32];
2958};
2959
2960/*
2961 * Used for Object-Based Storage Devices (OSD-3).
2962 *
2963 * Maximum descriptors allowed: 1 (as of SPC-4)
2964 */
2965struct scsi_sense_osd_attr_id
2966{
2967	uint8_t	desc_type;
2968#define	SSD_DESC_OSD_ATTR_ID	0x08
2969	uint8_t	length;
2970	uint8_t	reserved[2];
2971	uint8_t	attr_desc[0];
2972};
2973
2974/*
2975 * Used with Sense keys No Sense (0x00) and Not Ready (0x02).
2976 *
2977 * Maximum descriptors allowed: 32 (as of SPC-4)
2978 */
2979struct scsi_sense_progress
2980{
2981	uint8_t	desc_type;
2982#define	SSD_DESC_PROGRESS	0x0a
2983	uint8_t	length;
2984	uint8_t	sense_key;
2985	uint8_t	add_sense_code;
2986	uint8_t	add_sense_code_qual;
2987	uint8_t reserved;
2988	uint8_t	progress[2];
2989};
2990
2991/*
2992 * This is typically forwarded as the result of an EXTENDED COPY command.
2993 *
2994 * Maximum descriptors allowed: 2 (as of SPC-4)
2995 */
2996struct scsi_sense_forwarded
2997{
2998	uint8_t	desc_type;
2999#define	SSD_DESC_FORWARDED	0x0c
3000	uint8_t	length;
3001	uint8_t	byte2;
3002#define	SSD_FORWARDED_FSDT	0x80
3003#define	SSD_FORWARDED_SDS_MASK	0x0f
3004#define	SSD_FORWARDED_SDS_UNK	0x00
3005#define	SSD_FORWARDED_SDS_EXSRC	0x01
3006#define	SSD_FORWARDED_SDS_EXDST	0x02
3007};
3008
3009/*
3010 * Vendor-specific sense descriptor.  The desc_type field will be in the
3011 * range bewteen MIN and MAX inclusive.
3012 */
3013struct scsi_sense_vendor
3014{
3015	uint8_t	desc_type;
3016#define	SSD_DESC_VENDOR_MIN	0x80
3017#define	SSD_DESC_VENDOR_MAX	0xff
3018	uint8_t length;
3019	uint8_t	data[0];
3020};
3021
3022struct scsi_mode_header_6
3023{
3024	u_int8_t data_length;	/* Sense data length */
3025	u_int8_t medium_type;
3026	u_int8_t dev_spec;
3027	u_int8_t blk_desc_len;
3028};
3029
3030struct scsi_mode_header_10
3031{
3032	u_int8_t data_length[2];/* Sense data length */
3033	u_int8_t medium_type;
3034	u_int8_t dev_spec;
3035	u_int8_t unused[2];
3036	u_int8_t blk_desc_len[2];
3037};
3038
3039struct scsi_mode_page_header
3040{
3041	u_int8_t page_code;
3042#define	SMPH_PS		0x80
3043#define	SMPH_SPF	0x40
3044#define	SMPH_PC_MASK	0x3f
3045	u_int8_t page_length;
3046};
3047
3048struct scsi_mode_page_header_sp
3049{
3050	uint8_t page_code;
3051	uint8_t subpage;
3052	uint8_t page_length[2];
3053};
3054
3055
3056struct scsi_mode_blk_desc
3057{
3058	u_int8_t density;
3059	u_int8_t nblocks[3];
3060	u_int8_t reserved;
3061	u_int8_t blklen[3];
3062};
3063
3064#define	SCSI_DEFAULT_DENSITY	0x00	/* use 'default' density */
3065#define	SCSI_SAME_DENSITY	0x7f	/* use 'same' density- >= SCSI-2 only */
3066
3067
3068/*
3069 * Status Byte
3070 */
3071#define	SCSI_STATUS_OK			0x00
3072#define	SCSI_STATUS_CHECK_COND		0x02
3073#define	SCSI_STATUS_COND_MET		0x04
3074#define	SCSI_STATUS_BUSY		0x08
3075#define	SCSI_STATUS_INTERMED		0x10
3076#define	SCSI_STATUS_INTERMED_COND_MET	0x14
3077#define	SCSI_STATUS_RESERV_CONFLICT	0x18
3078#define	SCSI_STATUS_CMD_TERMINATED	0x22	/* Obsolete in SAM-2 */
3079#define	SCSI_STATUS_QUEUE_FULL		0x28
3080#define	SCSI_STATUS_ACA_ACTIVE		0x30
3081#define	SCSI_STATUS_TASK_ABORTED	0x40
3082
3083struct scsi_inquiry_pattern {
3084	u_int8_t   type;
3085	u_int8_t   media_type;
3086#define	SIP_MEDIA_REMOVABLE	0x01
3087#define	SIP_MEDIA_FIXED		0x02
3088	const char *vendor;
3089	const char *product;
3090	const char *revision;
3091};
3092
3093struct scsi_static_inquiry_pattern {
3094	u_int8_t   type;
3095	u_int8_t   media_type;
3096	char       vendor[SID_VENDOR_SIZE+1];
3097	char       product[SID_PRODUCT_SIZE+1];
3098	char       revision[SID_REVISION_SIZE+1];
3099};
3100
3101struct scsi_sense_quirk_entry {
3102	struct scsi_inquiry_pattern	inq_pat;
3103	int				num_sense_keys;
3104	int				num_ascs;
3105	struct sense_key_table_entry	*sense_key_info;
3106	struct asc_table_entry		*asc_info;
3107};
3108
3109struct sense_key_table_entry {
3110	u_int8_t    sense_key;
3111	u_int32_t   action;
3112	const char *desc;
3113};
3114
3115struct asc_table_entry {
3116	u_int8_t    asc;
3117	u_int8_t    ascq;
3118	u_int32_t   action;
3119	const char *desc;
3120};
3121
3122struct op_table_entry {
3123	u_int8_t    opcode;
3124	u_int32_t   opmask;
3125	const char  *desc;
3126};
3127
3128struct scsi_op_quirk_entry {
3129	struct scsi_inquiry_pattern	inq_pat;
3130	int				num_ops;
3131	struct op_table_entry		*op_table;
3132};
3133
3134typedef enum {
3135	SSS_FLAG_NONE		= 0x00,
3136	SSS_FLAG_PRINT_COMMAND	= 0x01
3137} scsi_sense_string_flags;
3138
3139struct scsi_nv {
3140	const char *name;
3141	uint64_t value;
3142};
3143
3144typedef enum {
3145	SCSI_NV_FOUND,
3146	SCSI_NV_AMBIGUOUS,
3147	SCSI_NV_NOT_FOUND
3148} scsi_nv_status;
3149
3150typedef enum {
3151	SCSI_NV_FLAG_NONE	= 0x00,
3152	SCSI_NV_FLAG_IG_CASE	= 0x01	/* Case insensitive comparison */
3153} scsi_nv_flags;
3154
3155struct ccb_scsiio;
3156struct cam_periph;
3157union  ccb;
3158#ifndef _KERNEL
3159struct cam_device;
3160#endif
3161
3162extern const char *scsi_sense_key_text[];
3163
3164struct sbuf;
3165
3166__BEGIN_DECLS
3167void scsi_sense_desc(int sense_key, int asc, int ascq,
3168		     struct scsi_inquiry_data *inq_data,
3169		     const char **sense_key_desc, const char **asc_desc);
3170scsi_sense_action scsi_error_action(struct ccb_scsiio* csio,
3171				    struct scsi_inquiry_data *inq_data,
3172				    u_int32_t sense_flags);
3173const char *	scsi_status_string(struct ccb_scsiio *csio);
3174
3175void scsi_desc_iterate(struct scsi_sense_data_desc *sense, u_int sense_len,
3176		       int (*iter_func)(struct scsi_sense_data_desc *sense,
3177					u_int, struct scsi_sense_desc_header *,
3178					void *), void *arg);
3179uint8_t *scsi_find_desc(struct scsi_sense_data_desc *sense, u_int sense_len,
3180			uint8_t desc_type);
3181void scsi_set_sense_data(struct scsi_sense_data *sense_data,
3182			 scsi_sense_data_type sense_format, int current_error,
3183			 int sense_key, int asc, int ascq, ...) ;
3184void scsi_set_sense_data_va(struct scsi_sense_data *sense_data,
3185			    scsi_sense_data_type sense_format,
3186			    int current_error, int sense_key, int asc,
3187			    int ascq, va_list ap);
3188int scsi_get_sense_info(struct scsi_sense_data *sense_data, u_int sense_len,
3189			uint8_t info_type, uint64_t *info,
3190			int64_t *signed_info);
3191int scsi_get_sks(struct scsi_sense_data *sense_data, u_int sense_len,
3192		 uint8_t *sks);
3193int scsi_get_block_info(struct scsi_sense_data *sense_data, u_int sense_len,
3194			struct scsi_inquiry_data *inq_data,
3195			uint8_t *block_bits);
3196int scsi_get_stream_info(struct scsi_sense_data *sense_data, u_int sense_len,
3197			 struct scsi_inquiry_data *inq_data,
3198			 uint8_t *stream_bits);
3199void scsi_info_sbuf(struct sbuf *sb, uint8_t *cdb, int cdb_len,
3200		    struct scsi_inquiry_data *inq_data, uint64_t info);
3201void scsi_command_sbuf(struct sbuf *sb, uint8_t *cdb, int cdb_len,
3202		       struct scsi_inquiry_data *inq_data, uint64_t csi);
3203void scsi_progress_sbuf(struct sbuf *sb, uint16_t progress);
3204int scsi_sks_sbuf(struct sbuf *sb, int sense_key, uint8_t *sks);
3205void scsi_fru_sbuf(struct sbuf *sb, uint64_t fru);
3206void scsi_stream_sbuf(struct sbuf *sb, uint8_t stream_bits, uint64_t info);
3207void scsi_block_sbuf(struct sbuf *sb, uint8_t block_bits, uint64_t info);
3208void scsi_sense_info_sbuf(struct sbuf *sb, struct scsi_sense_data *sense,
3209			  u_int sense_len, uint8_t *cdb, int cdb_len,
3210			  struct scsi_inquiry_data *inq_data,
3211			  struct scsi_sense_desc_header *header);
3212
3213void scsi_sense_command_sbuf(struct sbuf *sb, struct scsi_sense_data *sense,
3214			     u_int sense_len, uint8_t *cdb, int cdb_len,
3215			     struct scsi_inquiry_data *inq_data,
3216			     struct scsi_sense_desc_header *header);
3217void scsi_sense_sks_sbuf(struct sbuf *sb, struct scsi_sense_data *sense,
3218			 u_int sense_len, uint8_t *cdb, int cdb_len,
3219			 struct scsi_inquiry_data *inq_data,
3220			 struct scsi_sense_desc_header *header);
3221void scsi_sense_fru_sbuf(struct sbuf *sb, struct scsi_sense_data *sense,
3222			 u_int sense_len, uint8_t *cdb, int cdb_len,
3223			 struct scsi_inquiry_data *inq_data,
3224			 struct scsi_sense_desc_header *header);
3225void scsi_sense_stream_sbuf(struct sbuf *sb, struct scsi_sense_data *sense,
3226			    u_int sense_len, uint8_t *cdb, int cdb_len,
3227			    struct scsi_inquiry_data *inq_data,
3228			    struct scsi_sense_desc_header *header);
3229void scsi_sense_block_sbuf(struct sbuf *sb, struct scsi_sense_data *sense,
3230			   u_int sense_len, uint8_t *cdb, int cdb_len,
3231			   struct scsi_inquiry_data *inq_data,
3232			   struct scsi_sense_desc_header *header);
3233void scsi_sense_progress_sbuf(struct sbuf *sb, struct scsi_sense_data *sense,
3234			      u_int sense_len, uint8_t *cdb, int cdb_len,
3235			      struct scsi_inquiry_data *inq_data,
3236			      struct scsi_sense_desc_header *header);
3237void scsi_sense_generic_sbuf(struct sbuf *sb, struct scsi_sense_data *sense,
3238			     u_int sense_len, uint8_t *cdb, int cdb_len,
3239			     struct scsi_inquiry_data *inq_data,
3240			     struct scsi_sense_desc_header *header);
3241void scsi_sense_desc_sbuf(struct sbuf *sb, struct scsi_sense_data *sense,
3242			  u_int sense_len, uint8_t *cdb, int cdb_len,
3243			  struct scsi_inquiry_data *inq_data,
3244			  struct scsi_sense_desc_header *header);
3245scsi_sense_data_type scsi_sense_type(struct scsi_sense_data *sense_data);
3246
3247void scsi_sense_only_sbuf(struct scsi_sense_data *sense, u_int sense_len,
3248			  struct sbuf *sb, char *path_str,
3249			  struct scsi_inquiry_data *inq_data, uint8_t *cdb,
3250			  int cdb_len);
3251
3252#ifdef _KERNEL
3253int		scsi_command_string(struct ccb_scsiio *csio, struct sbuf *sb);
3254int		scsi_sense_sbuf(struct ccb_scsiio *csio, struct sbuf *sb,
3255				scsi_sense_string_flags flags);
3256char *		scsi_sense_string(struct ccb_scsiio *csio,
3257				  char *str, int str_len);
3258void		scsi_sense_print(struct ccb_scsiio *csio);
3259int 		scsi_vpd_supported_page(struct cam_periph *periph,
3260					uint8_t page_id);
3261#else /* _KERNEL */
3262int		scsi_command_string(struct cam_device *device,
3263				    struct ccb_scsiio *csio, struct sbuf *sb);
3264int		scsi_sense_sbuf(struct cam_device *device,
3265				struct ccb_scsiio *csio, struct sbuf *sb,
3266				scsi_sense_string_flags flags);
3267char *		scsi_sense_string(struct cam_device *device,
3268				  struct ccb_scsiio *csio,
3269				  char *str, int str_len);
3270void		scsi_sense_print(struct cam_device *device,
3271				 struct ccb_scsiio *csio, FILE *ofile);
3272#endif /* _KERNEL */
3273
3274const char *	scsi_op_desc(u_int16_t opcode,
3275			     struct scsi_inquiry_data *inq_data);
3276char *		scsi_cdb_string(u_int8_t *cdb_ptr, char *cdb_string,
3277				size_t len);
3278
3279void		scsi_print_inquiry(struct scsi_inquiry_data *inq_data);
3280void		scsi_print_inquiry_short(struct scsi_inquiry_data *inq_data);
3281
3282u_int		scsi_calc_syncsrate(u_int period_factor);
3283u_int		scsi_calc_syncparam(u_int period);
3284
3285typedef int	(*scsi_devid_checkfn_t)(uint8_t *);
3286int		scsi_devid_is_naa_ieee_reg(uint8_t *bufp);
3287int		scsi_devid_is_sas_target(uint8_t *bufp);
3288int		scsi_devid_is_lun_eui64(uint8_t *bufp);
3289int		scsi_devid_is_lun_naa(uint8_t *bufp);
3290int		scsi_devid_is_lun_name(uint8_t *bufp);
3291int		scsi_devid_is_lun_t10(uint8_t *bufp);
3292struct scsi_vpd_id_descriptor *
3293		scsi_get_devid(struct scsi_vpd_device_id *id, uint32_t len,
3294			       scsi_devid_checkfn_t ck_fn);
3295struct scsi_vpd_id_descriptor *
3296		scsi_get_devid_desc(struct scsi_vpd_id_descriptor *desc, uint32_t len,
3297			       scsi_devid_checkfn_t ck_fn);
3298
3299int		scsi_transportid_sbuf(struct sbuf *sb,
3300				      struct scsi_transportid_header *hdr,
3301				      uint32_t valid_len);
3302
3303const char *	scsi_nv_to_str(struct scsi_nv *table, int num_table_entries,
3304			       uint64_t value);
3305
3306scsi_nv_status	scsi_get_nv(struct scsi_nv *table, int num_table_entries,
3307			    char *name, int *table_entry, scsi_nv_flags flags);
3308
3309int	scsi_parse_transportid_64bit(int proto_id, char *id_str,
3310				     struct scsi_transportid_header **hdr,
3311				     unsigned int *alloc_len,
3312#ifdef _KERNEL
3313				     struct malloc_type *type, int flags,
3314#endif
3315				     char *error_str, int error_str_len);
3316
3317int	scsi_parse_transportid_spi(char *id_str,
3318				   struct scsi_transportid_header **hdr,
3319				   unsigned int *alloc_len,
3320#ifdef _KERNEL
3321				   struct malloc_type *type, int flags,
3322#endif
3323				   char *error_str, int error_str_len);
3324
3325int	scsi_parse_transportid_rdma(char *id_str,
3326				    struct scsi_transportid_header **hdr,
3327				    unsigned int *alloc_len,
3328#ifdef _KERNEL
3329				    struct malloc_type *type, int flags,
3330#endif
3331				    char *error_str, int error_str_len);
3332
3333int	scsi_parse_transportid_iscsi(char *id_str,
3334				     struct scsi_transportid_header **hdr,
3335				     unsigned int *alloc_len,
3336#ifdef _KERNEL
3337				     struct malloc_type *type, int flags,
3338#endif
3339				     char *error_str,int error_str_len);
3340
3341int	scsi_parse_transportid_sop(char *id_str,
3342				   struct scsi_transportid_header **hdr,
3343				   unsigned int *alloc_len,
3344#ifdef _KERNEL
3345				   struct malloc_type *type, int flags,
3346#endif
3347				   char *error_str,int error_str_len);
3348
3349int	scsi_parse_transportid(char *transportid_str,
3350			       struct scsi_transportid_header **hdr,
3351			       unsigned int *alloc_len,
3352#ifdef _KERNEL
3353			       struct malloc_type *type, int flags,
3354#endif
3355			       char *error_str, int error_str_len);
3356
3357void		scsi_test_unit_ready(struct ccb_scsiio *csio, u_int32_t retries,
3358				     void (*cbfcnp)(struct cam_periph *,
3359						    union ccb *),
3360				     u_int8_t tag_action,
3361				     u_int8_t sense_len, u_int32_t timeout);
3362
3363void		scsi_request_sense(struct ccb_scsiio *csio, u_int32_t retries,
3364				   void (*cbfcnp)(struct cam_periph *,
3365						  union ccb *),
3366				   void *data_ptr, u_int8_t dxfer_len,
3367				   u_int8_t tag_action, u_int8_t sense_len,
3368				   u_int32_t timeout);
3369
3370void		scsi_inquiry(struct ccb_scsiio *csio, u_int32_t retries,
3371			     void (*cbfcnp)(struct cam_periph *, union ccb *),
3372			     u_int8_t tag_action, u_int8_t *inq_buf,
3373			     u_int32_t inq_len, int evpd, u_int8_t page_code,
3374			     u_int8_t sense_len, u_int32_t timeout);
3375
3376void		scsi_mode_sense(struct ccb_scsiio *csio, u_int32_t retries,
3377				void (*cbfcnp)(struct cam_periph *,
3378					       union ccb *),
3379				u_int8_t tag_action, int dbd,
3380				u_int8_t page_code, u_int8_t page,
3381				u_int8_t *param_buf, u_int32_t param_len,
3382				u_int8_t sense_len, u_int32_t timeout);
3383
3384void		scsi_mode_sense_len(struct ccb_scsiio *csio, u_int32_t retries,
3385				    void (*cbfcnp)(struct cam_periph *,
3386						   union ccb *),
3387				    u_int8_t tag_action, int dbd,
3388				    u_int8_t page_code, u_int8_t page,
3389				    u_int8_t *param_buf, u_int32_t param_len,
3390				    int minimum_cmd_size, u_int8_t sense_len,
3391				    u_int32_t timeout);
3392
3393void		scsi_mode_select(struct ccb_scsiio *csio, u_int32_t retries,
3394				 void (*cbfcnp)(struct cam_periph *,
3395						union ccb *),
3396				 u_int8_t tag_action, int scsi_page_fmt,
3397				 int save_pages, u_int8_t *param_buf,
3398				 u_int32_t param_len, u_int8_t sense_len,
3399				 u_int32_t timeout);
3400
3401void		scsi_mode_select_len(struct ccb_scsiio *csio, u_int32_t retries,
3402				     void (*cbfcnp)(struct cam_periph *,
3403						    union ccb *),
3404				     u_int8_t tag_action, int scsi_page_fmt,
3405				     int save_pages, u_int8_t *param_buf,
3406				     u_int32_t param_len, int minimum_cmd_size,
3407				     u_int8_t sense_len, u_int32_t timeout);
3408
3409void		scsi_log_sense(struct ccb_scsiio *csio, u_int32_t retries,
3410			       void (*cbfcnp)(struct cam_periph *, union ccb *),
3411			       u_int8_t tag_action, u_int8_t page_code,
3412			       u_int8_t page, int save_pages, int ppc,
3413			       u_int32_t paramptr, u_int8_t *param_buf,
3414			       u_int32_t param_len, u_int8_t sense_len,
3415			       u_int32_t timeout);
3416
3417void		scsi_log_select(struct ccb_scsiio *csio, u_int32_t retries,
3418				void (*cbfcnp)(struct cam_periph *,
3419				union ccb *), u_int8_t tag_action,
3420				u_int8_t page_code, int save_pages,
3421				int pc_reset, u_int8_t *param_buf,
3422				u_int32_t param_len, u_int8_t sense_len,
3423				u_int32_t timeout);
3424
3425void		scsi_prevent(struct ccb_scsiio *csio, u_int32_t retries,
3426			     void (*cbfcnp)(struct cam_periph *, union ccb *),
3427			     u_int8_t tag_action, u_int8_t action,
3428			     u_int8_t sense_len, u_int32_t timeout);
3429
3430void		scsi_read_capacity(struct ccb_scsiio *csio, u_int32_t retries,
3431				   void (*cbfcnp)(struct cam_periph *,
3432				   union ccb *), u_int8_t tag_action,
3433				   struct scsi_read_capacity_data *,
3434				   u_int8_t sense_len, u_int32_t timeout);
3435void		scsi_read_capacity_16(struct ccb_scsiio *csio, uint32_t retries,
3436				      void (*cbfcnp)(struct cam_periph *,
3437				      union ccb *), uint8_t tag_action,
3438				      uint64_t lba, int reladr, int pmi,
3439				      uint8_t *rcap_buf, int rcap_buf_len,
3440				      uint8_t sense_len, uint32_t timeout);
3441
3442void		scsi_report_luns(struct ccb_scsiio *csio, u_int32_t retries,
3443				 void (*cbfcnp)(struct cam_periph *,
3444				 union ccb *), u_int8_t tag_action,
3445				 u_int8_t select_report,
3446				 struct scsi_report_luns_data *rpl_buf,
3447				 u_int32_t alloc_len, u_int8_t sense_len,
3448				 u_int32_t timeout);
3449
3450void		scsi_report_target_group(struct ccb_scsiio *csio, u_int32_t retries,
3451				 void (*cbfcnp)(struct cam_periph *,
3452				 union ccb *), u_int8_t tag_action,
3453				 u_int8_t pdf,
3454				 void *buf,
3455				 u_int32_t alloc_len, u_int8_t sense_len,
3456				 u_int32_t timeout);
3457
3458void		scsi_set_target_group(struct ccb_scsiio *csio, u_int32_t retries,
3459				 void (*cbfcnp)(struct cam_periph *,
3460				 union ccb *), u_int8_t tag_action, void *buf,
3461				 u_int32_t alloc_len, u_int8_t sense_len,
3462				 u_int32_t timeout);
3463
3464void		scsi_synchronize_cache(struct ccb_scsiio *csio,
3465				       u_int32_t retries,
3466				       void (*cbfcnp)(struct cam_periph *,
3467				       union ccb *), u_int8_t tag_action,
3468				       u_int32_t begin_lba, u_int16_t lb_count,
3469				       u_int8_t sense_len, u_int32_t timeout);
3470
3471void scsi_receive_diagnostic_results(struct ccb_scsiio *csio, u_int32_t retries,
3472				     void (*cbfcnp)(struct cam_periph *,
3473						    union ccb*),
3474				     uint8_t tag_action, int pcv,
3475				     uint8_t page_code, uint8_t *data_ptr,
3476				     uint16_t allocation_length,
3477				     uint8_t sense_len, uint32_t timeout);
3478
3479void scsi_send_diagnostic(struct ccb_scsiio *csio, u_int32_t retries,
3480			  void (*cbfcnp)(struct cam_periph *, union ccb *),
3481			  uint8_t tag_action, int unit_offline,
3482			  int device_offline, int self_test, int page_format,
3483			  int self_test_code, uint8_t *data_ptr,
3484			  uint16_t param_list_length, uint8_t sense_len,
3485			  uint32_t timeout);
3486
3487void scsi_read_buffer(struct ccb_scsiio *csio, u_int32_t retries,
3488			void (*cbfcnp)(struct cam_periph *, union ccb*),
3489			uint8_t tag_action, int mode,
3490			uint8_t buffer_id, u_int32_t offset,
3491			uint8_t *data_ptr, uint32_t allocation_length,
3492			uint8_t sense_len, uint32_t timeout);
3493
3494void scsi_write_buffer(struct ccb_scsiio *csio, u_int32_t retries,
3495			void (*cbfcnp)(struct cam_periph *, union ccb *),
3496			uint8_t tag_action, int mode,
3497			uint8_t buffer_id, u_int32_t offset,
3498			uint8_t *data_ptr, uint32_t param_list_length,
3499			uint8_t sense_len, uint32_t timeout);
3500
3501#define	SCSI_RW_READ	0x0001
3502#define	SCSI_RW_WRITE	0x0002
3503#define	SCSI_RW_DIRMASK	0x0003
3504#define	SCSI_RW_BIO	0x1000
3505void scsi_read_write(struct ccb_scsiio *csio, u_int32_t retries,
3506		     void (*cbfcnp)(struct cam_periph *, union ccb *),
3507		     u_int8_t tag_action, int readop, u_int8_t byte2,
3508		     int minimum_cmd_size, u_int64_t lba,
3509		     u_int32_t block_count, u_int8_t *data_ptr,
3510		     u_int32_t dxfer_len, u_int8_t sense_len,
3511		     u_int32_t timeout);
3512
3513void scsi_write_same(struct ccb_scsiio *csio, u_int32_t retries,
3514		     void (*cbfcnp)(struct cam_periph *, union ccb *),
3515		     u_int8_t tag_action, u_int8_t byte2,
3516		     int minimum_cmd_size, u_int64_t lba,
3517		     u_int32_t block_count, u_int8_t *data_ptr,
3518		     u_int32_t dxfer_len, u_int8_t sense_len,
3519		     u_int32_t timeout);
3520
3521void scsi_ata_identify(struct ccb_scsiio *csio, u_int32_t retries,
3522		       void (*cbfcnp)(struct cam_periph *, union ccb *),
3523		       u_int8_t tag_action, u_int8_t *data_ptr,
3524		       u_int16_t dxfer_len, u_int8_t sense_len,
3525		       u_int32_t timeout);
3526
3527void scsi_ata_trim(struct ccb_scsiio *csio, u_int32_t retries,
3528	           void (*cbfcnp)(struct cam_periph *, union ccb *),
3529	           u_int8_t tag_action, u_int16_t block_count,
3530	           u_int8_t *data_ptr, u_int16_t dxfer_len,
3531	           u_int8_t sense_len, u_int32_t timeout);
3532
3533void scsi_ata_pass_16(struct ccb_scsiio *csio, u_int32_t retries,
3534		      void (*cbfcnp)(struct cam_periph *, union ccb *),
3535		      u_int32_t flags, u_int8_t tag_action,
3536		      u_int8_t protocol, u_int8_t ata_flags, u_int16_t features,
3537		      u_int16_t sector_count, uint64_t lba, u_int8_t command,
3538		      u_int8_t control, u_int8_t *data_ptr, u_int16_t dxfer_len,
3539		      u_int8_t sense_len, u_int32_t timeout);
3540
3541void scsi_unmap(struct ccb_scsiio *csio, u_int32_t retries,
3542		void (*cbfcnp)(struct cam_periph *, union ccb *),
3543		u_int8_t tag_action, u_int8_t byte2,
3544		u_int8_t *data_ptr, u_int16_t dxfer_len,
3545		u_int8_t sense_len, u_int32_t timeout);
3546
3547void scsi_start_stop(struct ccb_scsiio *csio, u_int32_t retries,
3548		     void (*cbfcnp)(struct cam_periph *, union ccb *),
3549		     u_int8_t tag_action, int start, int load_eject,
3550		     int immediate, u_int8_t sense_len, u_int32_t timeout);
3551
3552void scsi_persistent_reserve_in(struct ccb_scsiio *csio, uint32_t retries,
3553				void (*cbfcnp)(struct cam_periph *,union ccb *),
3554				uint8_t tag_action, int service_action,
3555				uint8_t *data_ptr, uint32_t dxfer_len,
3556				int sense_len, int timeout);
3557
3558void scsi_persistent_reserve_out(struct ccb_scsiio *csio, uint32_t retries,
3559				 void (*cbfcnp)(struct cam_periph *,
3560				       union ccb *),
3561				 uint8_t tag_action, int service_action,
3562				 int scope, int res_type, uint8_t *data_ptr,
3563				 uint32_t dxfer_len, int sense_len,
3564				 int timeout);
3565
3566int		scsi_inquiry_match(caddr_t inqbuffer, caddr_t table_entry);
3567int		scsi_static_inquiry_match(caddr_t inqbuffer,
3568					  caddr_t table_entry);
3569int		scsi_devid_match(uint8_t *rhs, size_t rhs_len,
3570				 uint8_t *lhs, size_t lhs_len);
3571
3572void scsi_extract_sense(struct scsi_sense_data *sense, int *error_code,
3573			int *sense_key, int *asc, int *ascq);
3574int scsi_extract_sense_ccb(union ccb *ccb, int *error_code, int *sense_key,
3575			   int *asc, int *ascq);
3576void scsi_extract_sense_len(struct scsi_sense_data *sense,
3577			    u_int sense_len, int *error_code, int *sense_key,
3578			    int *asc, int *ascq, int show_errors);
3579int scsi_get_sense_key(struct scsi_sense_data *sense, u_int sense_len,
3580		       int show_errors);
3581int scsi_get_asc(struct scsi_sense_data *sense, u_int sense_len,
3582		 int show_errors);
3583int scsi_get_ascq(struct scsi_sense_data *sense, u_int sense_len,
3584		  int show_errors);
3585static __inline void scsi_ulto2b(u_int32_t val, u_int8_t *bytes);
3586static __inline void scsi_ulto3b(u_int32_t val, u_int8_t *bytes);
3587static __inline void scsi_ulto4b(u_int32_t val, u_int8_t *bytes);
3588static __inline void scsi_u64to8b(u_int64_t val, u_int8_t *bytes);
3589static __inline uint32_t scsi_2btoul(const uint8_t *bytes);
3590static __inline uint32_t scsi_3btoul(const uint8_t *bytes);
3591static __inline int32_t scsi_3btol(const uint8_t *bytes);
3592static __inline uint32_t scsi_4btoul(const uint8_t *bytes);
3593static __inline uint64_t scsi_8btou64(const uint8_t *bytes);
3594static __inline void *find_mode_page_6(struct scsi_mode_header_6 *mode_header);
3595static __inline void *find_mode_page_10(struct scsi_mode_header_10 *mode_header);
3596
3597static __inline void
3598scsi_ulto2b(u_int32_t val, u_int8_t *bytes)
3599{
3600
3601	bytes[0] = (val >> 8) & 0xff;
3602	bytes[1] = val & 0xff;
3603}
3604
3605static __inline void
3606scsi_ulto3b(u_int32_t val, u_int8_t *bytes)
3607{
3608
3609	bytes[0] = (val >> 16) & 0xff;
3610	bytes[1] = (val >> 8) & 0xff;
3611	bytes[2] = val & 0xff;
3612}
3613
3614static __inline void
3615scsi_ulto4b(u_int32_t val, u_int8_t *bytes)
3616{
3617
3618	bytes[0] = (val >> 24) & 0xff;
3619	bytes[1] = (val >> 16) & 0xff;
3620	bytes[2] = (val >> 8) & 0xff;
3621	bytes[3] = val & 0xff;
3622}
3623
3624static __inline void
3625scsi_u64to8b(u_int64_t val, u_int8_t *bytes)
3626{
3627
3628	bytes[0] = (val >> 56) & 0xff;
3629	bytes[1] = (val >> 48) & 0xff;
3630	bytes[2] = (val >> 40) & 0xff;
3631	bytes[3] = (val >> 32) & 0xff;
3632	bytes[4] = (val >> 24) & 0xff;
3633	bytes[5] = (val >> 16) & 0xff;
3634	bytes[6] = (val >> 8) & 0xff;
3635	bytes[7] = val & 0xff;
3636}
3637
3638static __inline uint32_t
3639scsi_2btoul(const uint8_t *bytes)
3640{
3641	uint32_t rv;
3642
3643	rv = (bytes[0] << 8) |
3644	     bytes[1];
3645	return (rv);
3646}
3647
3648static __inline uint32_t
3649scsi_3btoul(const uint8_t *bytes)
3650{
3651	uint32_t rv;
3652
3653	rv = (bytes[0] << 16) |
3654	     (bytes[1] << 8) |
3655	     bytes[2];
3656	return (rv);
3657}
3658
3659static __inline int32_t
3660scsi_3btol(const uint8_t *bytes)
3661{
3662	uint32_t rc = scsi_3btoul(bytes);
3663
3664	if (rc & 0x00800000)
3665		rc |= 0xff000000;
3666
3667	return (int32_t) rc;
3668}
3669
3670static __inline uint32_t
3671scsi_4btoul(const uint8_t *bytes)
3672{
3673	uint32_t rv;
3674
3675	rv = (bytes[0] << 24) |
3676	     (bytes[1] << 16) |
3677	     (bytes[2] << 8) |
3678	     bytes[3];
3679	return (rv);
3680}
3681
3682static __inline uint64_t
3683scsi_8btou64(const uint8_t *bytes)
3684{
3685        uint64_t rv;
3686
3687	rv = (((uint64_t)bytes[0]) << 56) |
3688	     (((uint64_t)bytes[1]) << 48) |
3689	     (((uint64_t)bytes[2]) << 40) |
3690	     (((uint64_t)bytes[3]) << 32) |
3691	     (((uint64_t)bytes[4]) << 24) |
3692	     (((uint64_t)bytes[5]) << 16) |
3693	     (((uint64_t)bytes[6]) << 8) |
3694	     bytes[7];
3695	return (rv);
3696}
3697
3698/*
3699 * Given the pointer to a returned mode sense buffer, return a pointer to
3700 * the start of the first mode page.
3701 */
3702static __inline void *
3703find_mode_page_6(struct scsi_mode_header_6 *mode_header)
3704{
3705	void *page_start;
3706
3707	page_start = (void *)((u_int8_t *)&mode_header[1] +
3708			      mode_header->blk_desc_len);
3709
3710	return(page_start);
3711}
3712
3713static __inline void *
3714find_mode_page_10(struct scsi_mode_header_10 *mode_header)
3715{
3716	void *page_start;
3717
3718	page_start = (void *)((u_int8_t *)&mode_header[1] +
3719			       scsi_2btoul(mode_header->blk_desc_len));
3720
3721	return(page_start);
3722}
3723
3724__END_DECLS
3725
3726#endif /*_SCSI_SCSI_ALL_H*/
3727