xref: /dragonfly/sys/bus/cam/cam.h (revision 1de703da)
1 /*
2  * Data structures and definitions for the CAM system.
3  *
4  * Copyright (c) 1997 Justin T. Gibbs.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions, and the following disclaimer,
12  *    without modification, immediately at the beginning of the file.
13  * 2. The name of the author may not be used to endorse or promote products
14  *    derived from this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
20  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  *
28  * $FreeBSD: src/sys/cam/cam.h,v 1.6.2.1 2000/03/17 22:36:21 peter Exp $
29  * $DragonFly: src/sys/bus/cam/cam.h,v 1.2 2003/06/17 04:28:18 dillon Exp $
30  */
31 
32 #ifndef _CAM_CAM_H
33 #define _CAM_CAM_H 1
34 
35 #ifdef _KERNEL
36 #include <opt_cam.h>
37 #endif
38 
39 #include <sys/cdefs.h>
40 
41 typedef u_int path_id_t;
42 typedef u_int target_id_t;
43 typedef u_int lun_id_t;
44 
45 #define	CAM_XPT_PATH_ID	((path_id_t)~0)
46 #define	CAM_BUS_WILDCARD ((path_id_t)~0)
47 #define	CAM_TARGET_WILDCARD ((target_id_t)~0)
48 #define	CAM_LUN_WILDCARD ((lun_id_t)~0)
49 
50 /*
51  * Maximum length for a CAM CDB.
52  */
53 #define CAM_MAX_CDBLEN 16
54 
55 /*
56  * Definition of a CAM peripheral driver entry.  Peripheral drivers instantiate
57  * one of these for each device they wish to communicate with and pass it into
58  * the xpt layer when they wish to schedule work on that device via the
59  * xpt_schedule API.
60  */
61 struct cam_periph;
62 
63 /*
64  * Priority information for a CAM structure.  The generation number is
65  * incremented everytime a new entry is entered into the queue giving round
66  * robin per priority level scheduling.
67  */
68 typedef struct {
69 	u_int32_t priority;
70 #define CAM_PRIORITY_NONE	(u_int32_t)-1
71 	u_int32_t generation;
72 	int       index;
73 #define CAM_UNQUEUED_INDEX	-1
74 #define CAM_ACTIVE_INDEX	-2
75 #define CAM_DONEQ_INDEX		-3
76 } cam_pinfo;
77 
78 /*
79  * Macro to compare two generation numbers.  It is used like this:
80  *
81  *	if (GENERATIONCMP(a, >=, b))
82  *		...;
83  *
84  * GERERATIONCMP uses modular arithmetic to guard against wraps
85  * wraps in the generation number.
86  */
87 #define GENERATIONCMP(x, op, y) ((int32_t)((x) - (y)) op 0)
88 
89 /* CAM flags */
90 typedef enum {
91 	CAM_FLAG_NONE		= 0x00,
92 	CAM_EXPECT_INQ_CHANGE	= 0x01
93 } cam_flags;
94 
95 /* CAM  Status field values */
96 typedef enum {
97 	CAM_REQ_INPROG,		/* CCB request is in progress */
98 	CAM_REQ_CMP,		/* CCB request completed without error */
99 	CAM_REQ_ABORTED,	/* CCB request aborted by the host */
100 	CAM_UA_ABORT,		/* Unable to abort CCB request */
101 	CAM_REQ_CMP_ERR,	/* CCB request completed with an error */
102 	CAM_BUSY,		/* CAM subsytem is busy */
103 	CAM_REQ_INVALID,	/* CCB request was invalid */
104 	CAM_PATH_INVALID,	/* Supplied Path ID is invalid */
105 	CAM_DEV_NOT_THERE,	/* SCSI Device Not Installed/there */
106 	CAM_UA_TERMIO,		/* Unable to terminate I/O CCB request */
107 	CAM_SEL_TIMEOUT,	/* Target Selection Timeout */
108 	CAM_CMD_TIMEOUT,	/* Command timeout */
109 	CAM_SCSI_STATUS_ERROR,	/* SCSI error, look at error code in CCB */
110 	CAM_MSG_REJECT_REC,	/* Message Reject Received */
111 	CAM_SCSI_BUS_RESET,	/* SCSI Bus Reset Sent/Received */
112 	CAM_UNCOR_PARITY,	/* Uncorrectable parity error occurred */
113 	CAM_AUTOSENSE_FAIL = 0x10,/* Autosense: request sense cmd fail */
114 	CAM_NO_HBA,		/* No HBA Detected error */
115 	CAM_DATA_RUN_ERR,	/* Data Overrun error */
116 	CAM_UNEXP_BUSFREE,	/* Unexpected Bus Free */
117 	CAM_SEQUENCE_FAIL,	/* Target Bus Phase Sequence Failure */
118 	CAM_CCB_LEN_ERR,	/* CCB length supplied is inadequate */
119 	CAM_PROVIDE_FAIL,	/* Unable to provide requested capability */
120 	CAM_BDR_SENT,		/* A SCSI BDR msg was sent to target */
121 	CAM_REQ_TERMIO,		/* CCB request terminated by the host */
122 	CAM_UNREC_HBA_ERROR,	/* Unrecoverable Host Bus Adapter Error */
123 	CAM_REQ_TOO_BIG,	/* The request was too large for this host */
124 	CAM_REQUEUE_REQ,	/*
125 				 * This request should be requeued to preserve
126 				 * transaction ordering.  This typically occurs
127 				 * when the SIM recognizes an error that should
128 				 * freeze the queue and must place additional
129 				 * requests for the target at the sim level
130 				 * back into the XPT queue.
131 				 */
132 	CAM_IDE = 0x33,		/* Initiator Detected Error */
133 	CAM_RESRC_UNAVAIL,	/* Resource Unavailable */
134 	CAM_UNACKED_EVENT,	/* Unacknowledged Event by Host */
135 	CAM_MESSAGE_RECV,	/* Message Received in Host Target Mode */
136 	CAM_INVALID_CDB,	/* Invalid CDB received in Host Target Mode */
137 	CAM_LUN_INVALID,	/* Lun supplied is invalid */
138 	CAM_TID_INVALID,	/* Target ID supplied is invalid */
139 	CAM_FUNC_NOTAVAIL,	/* The requested function is not available */
140 	CAM_NO_NEXUS,		/* Nexus is not established */
141 	CAM_IID_INVALID,	/* The initiator ID is invalid */
142 	CAM_CDB_RECVD,		/* The SCSI CDB has been received */
143 	CAM_LUN_ALRDY_ENA,	/* The LUN is already eanbeld for target mode */
144 	CAM_SCSI_BUSY,		/* SCSI Bus Busy */
145 
146 	CAM_DEV_QFRZN = 0x40,	/* The DEV queue is frozen w/this err */
147 
148 				/* Autosense data valid for target */
149 	CAM_AUTOSNS_VALID = 0x80,
150 	CAM_RELEASE_SIMQ = 0x100,/* SIM ready to take more commands */
151 	CAM_SIM_QUEUED   = 0x200,/* SIM has this command in it's queue */
152 
153 	CAM_STATUS_MASK = 0x3F,	/* Mask bits for just the status # */
154 
155 				/* Target Specific Adjunct Status */
156 	CAM_SENT_SENSE = 0x40000000	/* sent sense with status */
157 } cam_status;
158 
159 __BEGIN_DECLS
160 typedef int (cam_quirkmatch_t)(caddr_t, caddr_t);
161 
162 caddr_t	cam_quirkmatch(caddr_t target, caddr_t quirk_table, int num_entries,
163 		       int entry_size, cam_quirkmatch_t *comp_func);
164 
165 void	cam_strvis(u_int8_t *dst, const u_int8_t *src, int srclen, int dstlen);
166 
167 int	cam_strmatch(const u_int8_t *str, const u_int8_t *pattern, int str_len);
168 __END_DECLS
169 
170 #ifdef _KERNEL
171 static __inline void cam_init_pinfo(cam_pinfo *pinfo);
172 
173 static __inline void cam_init_pinfo(cam_pinfo *pinfo)
174 {
175 	pinfo->priority = CAM_PRIORITY_NONE;
176 	pinfo->index = CAM_UNQUEUED_INDEX;
177 }
178 #endif
179 
180 #endif /* _CAM_CAM_H */
181