blob: 515c9f03c2011a288753c5bccf5ed50072bf722a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef CCISS_CMD_H
2#define CCISS_CMD_H
dann frazier429c42c2010-02-17 16:55:11 -07003
4#include <linux/cciss_defs.h>
5
dann frazierb0284612010-02-17 16:53:31 -07006/* DEFINES */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#define CISS_VERSION "1.00"
8
dann frazierb0284612010-02-17 16:53:31 -07009/* general boundary definitions */
Don Brace5c07a312009-11-12 12:50:01 -060010#define MAXSGENTRIES 32
11#define CCISS_SG_CHAIN 0x80000000
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#define MAXREPLYQS 256
13
Mike Miller0a9279c2009-04-02 12:50:55 -070014/* Unit Attentions ASC's as defined for the MSA2012sa */
15#define POWER_OR_RESET 0x29
16#define STATE_CHANGED 0x2a
17#define UNIT_ATTENTION_CLEARED 0x2f
18#define LUN_FAILED 0x3e
19#define REPORT_LUNS_CHANGED 0x3f
20
21/* Unit Attentions ASCQ's as defined for the MSA2012sa */
22
23 /* These ASCQ's defined for ASC = POWER_OR_RESET */
24#define POWER_ON_RESET 0x00
25#define POWER_ON_REBOOT 0x01
26#define SCSI_BUS_RESET 0x02
27#define MSA_TARGET_RESET 0x03
28#define CONTROLLER_FAILOVER 0x04
29#define TRANSCEIVER_SE 0x05
30#define TRANSCEIVER_LVD 0x06
31
32 /* These ASCQ's defined for ASC = STATE_CHANGED */
33#define RESERVATION_PREEMPTED 0x03
34#define ASYM_ACCESS_CHANGED 0x06
35#define LUN_CAPACITY_CHANGED 0x09
36
dann frazierb0284612010-02-17 16:53:31 -070037/* config space register offsets */
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#define CFG_VENDORID 0x00
39#define CFG_DEVICEID 0x02
40#define CFG_I2OBAR 0x10
41#define CFG_MEM1BAR 0x14
42
dann frazierb0284612010-02-17 16:53:31 -070043/* i2o space register offsets */
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#define I2O_IBDB_SET 0x20
45#define I2O_IBDB_CLEAR 0x70
46#define I2O_INT_STATUS 0x30
47#define I2O_INT_MASK 0x34
48#define I2O_IBPOST_Q 0x40
49#define I2O_OBPOST_Q 0x44
Mike Millerf92e2f52006-12-06 20:35:04 -080050#define I2O_DMA1_CFG 0x214
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
dann frazierb0284612010-02-17 16:53:31 -070052/* Configuration Table */
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#define CFGTBL_ChangeReq 0x00000001l
54#define CFGTBL_AccCmds 0x00000001l
55
56#define CFGTBL_Trans_Simple 0x00000002l
57
58#define CFGTBL_BusType_Ultra2 0x00000001l
59#define CFGTBL_BusType_Ultra3 0x00000002l
60#define CFGTBL_BusType_Fibre1G 0x00000100l
61#define CFGTBL_BusType_Fibre2G 0x00000200l
62typedef struct _vals32
63{
64 __u32 lower;
65 __u32 upper;
66} vals32;
67
68typedef union _u64bit
69{
70 vals32 val32;
71 __u64 val;
72} u64bit;
73
dann frazierb0284612010-02-17 16:53:31 -070074/* Type defs used in the following structs */
Linus Torvalds1da177e2005-04-16 15:20:36 -070075#define QWORD vals32
76
dann frazierb0284612010-02-17 16:53:31 -070077/* STRUCTURES */
Linus Torvalds1da177e2005-04-16 15:20:36 -070078#define CISS_MAX_PHYS_LUN 1024
dann frazierb0284612010-02-17 16:53:31 -070079/* SCSI-3 Cmmands */
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81#pragma pack(1)
82
83#define CISS_INQUIRY 0x12
dann frazierb0284612010-02-17 16:53:31 -070084/* Date returned */
Linus Torvalds1da177e2005-04-16 15:20:36 -070085typedef struct _InquiryData_struct
86{
87 BYTE data_byte[36];
88} InquiryData_struct;
89
90#define CISS_REPORT_LOG 0xc2 /* Report Logical LUNs */
91#define CISS_REPORT_PHYS 0xc3 /* Report Physical LUNs */
dann frazierb0284612010-02-17 16:53:31 -070092/* Data returned */
Linus Torvalds1da177e2005-04-16 15:20:36 -070093typedef struct _ReportLUNdata_struct
94{
95 BYTE LUNListLength[4];
96 DWORD reserved;
97 BYTE LUN[CISS_MAX_LUN][8];
98} ReportLunData_struct;
99
100#define CCISS_READ_CAPACITY 0x25 /* Read Capacity */
101typedef struct _ReadCapdata_struct
102{
dann frazierb0284612010-02-17 16:53:31 -0700103 BYTE total_size[4]; /* Total size in blocks */
104 BYTE block_size[4]; /* Size of blocks in bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105} ReadCapdata_struct;
106
Mike Miller (OS Dev)00988a32006-09-30 23:27:23 -0700107#define CCISS_READ_CAPACITY_16 0x9e /* Read Capacity 16 */
108
109/* service action to differentiate a 16 byte read capacity from
110 other commands that use the 0x9e SCSI op code */
111
112#define CCISS_READ_CAPACITY_16_SERVICE_ACT 0x10
113
114typedef struct _ReadCapdata_struct_16
115{
116 BYTE total_size[8]; /* Total size in blocks */
117 BYTE block_size[4]; /* Size of blocks in bytes */
118 BYTE prot_en:1; /* protection enable bit */
119 BYTE rto_en:1; /* reference tag own enable bit */
120 BYTE reserved:6; /* reserved bits */
121 BYTE reserved2[18]; /* reserved bytes per spec */
122} ReadCapdata_struct_16;
123
124/* Define the supported read/write commands for cciss based controllers */
125
126#define CCISS_READ_10 0x28 /* Read(10) */
127#define CCISS_WRITE_10 0x2a /* Write(10) */
128#define CCISS_READ_16 0x88 /* Read(16) */
129#define CCISS_WRITE_16 0x8a /* Write(16) */
130
131/* Define the CDB lengths supported by cciss based controllers */
132
133#define CDB_LEN10 10
134#define CDB_LEN16 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
dann frazierb0284612010-02-17 16:53:31 -0700136/* BMIC commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137#define BMIC_READ 0x26
138#define BMIC_WRITE 0x27
139#define BMIC_CACHE_FLUSH 0xc2
dann frazierb0284612010-02-17 16:53:31 -0700140#define CCISS_CACHE_FLUSH 0x01 /* C2 was already being used by CCISS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
dann frazierb0284612010-02-17 16:53:31 -0700142/* Command List Structure */
scameron@beardog.cca.cpqcorp.netb57695f2009-06-08 16:02:17 -0500143#define CTLR_LUNID "\0\0\0\0\0\0\0\0"
144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145typedef struct _CommandListHeader_struct {
146 BYTE ReplyQueue;
147 BYTE SGList;
148 HWORD SGTotal;
149 QWORD Tag;
150 LUNAddr_struct LUN;
151} CommandListHeader_struct;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152typedef struct _ErrDescriptor_struct {
153 QWORD Addr;
154 DWORD Len;
155} ErrDescriptor_struct;
156typedef struct _SGDescriptor_struct {
157 QWORD Addr;
158 DWORD Len;
159 DWORD Ext;
160} SGDescriptor_struct;
161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162/* Command types */
163#define CMD_RWREQ 0x00
164#define CMD_IOCTL_PEND 0x01
165#define CMD_SCSI 0x03
166#define CMD_MSG_DONE 0x04
167#define CMD_MSG_TIMEOUT 0x05
Hannes Reineckeb59e64d2009-07-02 22:02:06 +0200168#define CMD_MSG_STALE 0xff
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Mike Miller33079b22005-09-13 01:25:22 -0700170/* This structure needs to be divisible by 8 for new
Stephen M. Cameron58daa9c2010-02-26 16:01:12 -0600171 * indexing method. PAD_32 and PAD_64 can be adjusted
172 * independently as needed for 32-bit and 64-bits systems.
Mike Miller33079b22005-09-13 01:25:22 -0700173 */
Stephen M. Cameron58daa9c2010-02-26 16:01:12 -0600174#define IS_64_BIT ((sizeof(long) - 4)/4)
175#define IS_32_BIT (!IS_64_BIT)
176#define PAD_32 (0)
177#define PAD_64 (4)
178#define PADSIZE (IS_32_BIT * PAD_32 + IS_64_BIT * PAD_64)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179typedef struct _CommandList_struct {
180 CommandListHeader_struct Header;
181 RequestBlock_struct Request;
182 ErrDescriptor_struct ErrDesc;
183 SGDescriptor_struct SG[MAXSGENTRIES];
184 /* information associated with the command */
185 __u32 busaddr; /* physical address of this record */
186 ErrorInfo_struct * err_info; /* pointer to the allocated mem */
187 int ctlr;
188 int cmd_type;
Mike Miller33079b22005-09-13 01:25:22 -0700189 long cmdindex;
Jens Axboe8a3173d2008-11-20 09:46:09 +0100190 struct hlist_node list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 struct request * rq;
192 struct completion *waiting;
193 int retry_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 void * scsi_cmd;
Mike Miller33079b22005-09-13 01:25:22 -0700195 char pad[PADSIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196} CommandList_struct;
197
dann frazierb0284612010-02-17 16:53:31 -0700198/* Configuration Table Structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199typedef struct _HostWrite_struct {
200 DWORD TransportRequest;
201 DWORD Reserved;
202 DWORD CoalIntDelay;
203 DWORD CoalIntCount;
204} HostWrite_struct;
205
206typedef struct _CfgTable_struct {
207 BYTE Signature[4];
208 DWORD SpecValence;
209 DWORD TransportSupport;
210 DWORD TransportActive;
211 HostWrite_struct HostWrite;
212 DWORD CmdsOutMax;
213 DWORD BusTypes;
214 DWORD Reserved;
215 BYTE ServerName[16];
216 DWORD HeartBeat;
217 DWORD SCSI_Prefetch;
Don Brace5c07a312009-11-12 12:50:01 -0600218 DWORD MaxSGElements;
219 DWORD MaxLogicalUnits;
220 DWORD MaxPhysicalDrives;
221 DWORD MaxPhysicalDrivesPerLogicalUnit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222} CfgTable_struct;
223#pragma pack()
dann frazierb0284612010-02-17 16:53:31 -0700224#endif /* CCISS_CMD_H */