3 //###########################################################################
5 //###########################################################################
6 #define CISS_VERSION "1.00"
8 //general boundary defintions
9 #define SENSEINFOBYTES 32//note that this value may vary between host implementations
10 #define MAXSGENTRIES 31
11 #define MAXREPLYQS 256
13 //Command Status value
14 #define CMD_SUCCESS 0x0000
15 #define CMD_TARGET_STATUS 0x0001
16 #define CMD_DATA_UNDERRUN 0x0002
17 #define CMD_DATA_OVERRUN 0x0003
18 #define CMD_INVALID 0x0004
19 #define CMD_PROTOCOL_ERR 0x0005
20 #define CMD_HARDWARE_ERR 0x0006
21 #define CMD_CONNECTION_LOST 0x0007
22 #define CMD_ABORTED 0x0008
23 #define CMD_ABORT_FAILED 0x0009
24 #define CMD_UNSOLICITED_ABORT 0x000A
25 #define CMD_TIMEOUT 0x000B
26 #define CMD_UNABORTABLE 0x000C
29 #define XFER_NONE 0x00
30 #define XFER_WRITE 0x01
31 #define XFER_READ 0x02
32 #define XFER_RSVD 0x03
35 #define ATTR_UNTAGGED 0x00
36 #define ATTR_SIMPLE 0x04
37 #define ATTR_HEADOFQUEUE 0x05
38 #define ATTR_ORDERED 0x06
45 //config space register offsets
46 #define CFG_VENDORID 0x00
47 #define CFG_DEVICEID 0x02
48 #define CFG_I2OBAR 0x10
49 #define CFG_MEM1BAR 0x14
51 //i2o space register offsets
52 #define I2O_IBDB_SET 0x20
53 #define I2O_IBDB_CLEAR 0x70
54 #define I2O_INT_STATUS 0x30
55 #define I2O_INT_MASK 0x34
56 #define I2O_IBPOST_Q 0x40
57 #define I2O_OBPOST_Q 0x44
60 #define CFGTBL_ChangeReq 0x00000001l
61 #define CFGTBL_AccCmds 0x00000001l
63 #define CFGTBL_Trans_Simple 0x00000002l
65 #define CFGTBL_BusType_Ultra2 0x00000001l
66 #define CFGTBL_BusType_Ultra3 0x00000002l
67 #define CFGTBL_BusType_Fibre1G 0x00000100l
68 #define CFGTBL_BusType_Fibre2G 0x00000200l
69 typedef struct _vals32
81 // Type defs used in the following structs
88 //###########################################################################
90 //###########################################################################
91 #define CISS_MAX_LUN 16
92 #define CISS_MAX_PHYS_LUN 1024
97 #define CISS_INQUIRY 0x12
99 typedef struct _InquiryData_struct
102 } InquiryData_struct
;
104 #define CISS_REPORT_LOG 0xc2 /* Report Logical LUNs */
105 #define CISS_REPORT_PHYS 0xc3 /* Report Physical LUNs */
107 typedef struct _ReportLUNdata_struct
109 BYTE LUNListLength
[4];
111 BYTE LUN
[CISS_MAX_LUN
][8];
112 } ReportLunData_struct
;
114 #define CCISS_READ_CAPACITY 0x25 /* Read Capacity */
115 typedef struct _ReadCapdata_struct
117 BYTE total_size
[4]; // Total size in blocks
118 BYTE block_size
[4]; // Size of blocks in bytes
119 } ReadCapdata_struct
;
121 #define CCISS_READ_CAPACITY_16 0x9e /* Read Capacity 16 */
123 /* service action to differentiate a 16 byte read capacity from
124 other commands that use the 0x9e SCSI op code */
126 #define CCISS_READ_CAPACITY_16_SERVICE_ACT 0x10
128 typedef struct _ReadCapdata_struct_16
130 BYTE total_size
[8]; /* Total size in blocks */
131 BYTE block_size
[4]; /* Size of blocks in bytes */
132 BYTE prot_en
:1; /* protection enable bit */
133 BYTE rto_en
:1; /* reference tag own enable bit */
134 BYTE reserved
:6; /* reserved bits */
135 BYTE reserved2
[18]; /* reserved bytes per spec */
136 } ReadCapdata_struct_16
;
138 /* Define the supported read/write commands for cciss based controllers */
140 #define CCISS_READ_10 0x28 /* Read(10) */
141 #define CCISS_WRITE_10 0x2a /* Write(10) */
142 #define CCISS_READ_16 0x88 /* Read(16) */
143 #define CCISS_WRITE_16 0x8a /* Write(16) */
145 /* Define the CDB lengths supported by cciss based controllers */
151 #define BMIC_READ 0x26
152 #define BMIC_WRITE 0x27
153 #define BMIC_CACHE_FLUSH 0xc2
154 #define CCISS_CACHE_FLUSH 0x01 //C2 was already being used by CCISS
156 //Command List Structure
157 typedef union _SCSI3Addr_struct
{
176 typedef struct _PhysDevAddr_struct
{
180 SCSI3Addr_struct Target
[2]; //2 level target device addr
181 } PhysDevAddr_struct
;
183 typedef struct _LogDevAddr_struct
{
189 typedef union _LUNAddr_struct
{
190 BYTE LunAddrBytes
[8];
191 SCSI3Addr_struct SCSI3Lun
[4];
192 PhysDevAddr_struct PhysDev
;
193 LogDevAddr_struct LogDev
;
196 typedef struct _CommandListHeader_struct
{
202 } CommandListHeader_struct
;
203 typedef struct _RequestBlock_struct
{
212 } RequestBlock_struct
;
213 typedef struct _ErrDescriptor_struct
{
216 } ErrDescriptor_struct
;
217 typedef struct _SGDescriptor_struct
{
221 } SGDescriptor_struct
;
223 typedef union _MoreErrInfo_struct
{
231 BYTE offense_size
;//size of offending entry
232 BYTE offense_num
; //byte # of offense 0-base
236 typedef struct _ErrorInfo_struct
{
241 MoreErrInfo_struct MoreErrInfo
;
242 BYTE SenseInfo
[SENSEINFOBYTES
];
246 #define CMD_RWREQ 0x00
247 #define CMD_IOCTL_PEND 0x01
248 #define CMD_SCSI 0x03
249 #define CMD_MSG_DONE 0x04
250 #define CMD_MSG_TIMEOUT 0x05
252 /* This structure needs to be divisible by 8 for new
255 #define PADSIZE (sizeof(long) - 4)
256 typedef struct _CommandList_struct
{
257 CommandListHeader_struct Header
;
258 RequestBlock_struct Request
;
259 ErrDescriptor_struct ErrDesc
;
260 SGDescriptor_struct SG
[MAXSGENTRIES
];
261 /* information associated with the command */
262 __u32 busaddr
; /* physical address of this record */
263 ErrorInfo_struct
* err_info
; /* pointer to the allocated mem */
267 struct _CommandList_struct
*prev
;
268 struct _CommandList_struct
*next
;
270 struct completion
*waiting
;
274 } CommandList_struct
;
276 //Configuration Table Structure
277 typedef struct _HostWrite_struct
{
278 DWORD TransportRequest
;
284 typedef struct _CfgTable_struct
{
287 DWORD TransportSupport
;
288 DWORD TransportActive
;
289 HostWrite_struct HostWrite
;
298 #endif // CCISS_CMD_H