blob: 3f96b66e5761677e74c031d1fac224b3b4166571 [file] [log] [blame]
Stephen M. Cameronedd16362009-12-08 14:09:11 -08001/*
2 * Disk Array driver for HP Smart Array SAS controllers
3 * Copyright 2000, 2009 Hewlett-Packard Development Company, L.P.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; version 2 of the License.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
12 * NON INFRINGEMENT. See the GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 *
18 * Questions/Comments/Bugfixes to iss_storagedev@hp.com
19 *
20 */
21#ifndef HPSA_CMD_H
22#define HPSA_CMD_H
23
24/* general boundary defintions */
25#define SENSEINFOBYTES 32 /* may vary between hbas */
Stephen M. Camerond66ae082012-01-19 14:00:48 -060026#define SG_ENTRIES_IN_CMD 32 /* Max SG entries excluding chain blocks */
Stephen M. Cameron33a2ffc2010-02-25 14:03:27 -060027#define HPSA_SG_CHAIN 0x80000000
Stephen M. Cameronedd16362009-12-08 14:09:11 -080028#define MAXREPLYQS 256
29
30/* Command Status value */
31#define CMD_SUCCESS 0x0000
32#define CMD_TARGET_STATUS 0x0001
33#define CMD_DATA_UNDERRUN 0x0002
34#define CMD_DATA_OVERRUN 0x0003
35#define CMD_INVALID 0x0004
36#define CMD_PROTOCOL_ERR 0x0005
37#define CMD_HARDWARE_ERR 0x0006
38#define CMD_CONNECTION_LOST 0x0007
39#define CMD_ABORTED 0x0008
40#define CMD_ABORT_FAILED 0x0009
41#define CMD_UNSOLICITED_ABORT 0x000A
42#define CMD_TIMEOUT 0x000B
43#define CMD_UNABORTABLE 0x000C
44
45/* Unit Attentions ASC's as defined for the MSA2012sa */
46#define POWER_OR_RESET 0x29
47#define STATE_CHANGED 0x2a
48#define UNIT_ATTENTION_CLEARED 0x2f
49#define LUN_FAILED 0x3e
50#define REPORT_LUNS_CHANGED 0x3f
51
52/* Unit Attentions ASCQ's as defined for the MSA2012sa */
53
54 /* These ASCQ's defined for ASC = POWER_OR_RESET */
55#define POWER_ON_RESET 0x00
56#define POWER_ON_REBOOT 0x01
57#define SCSI_BUS_RESET 0x02
58#define MSA_TARGET_RESET 0x03
59#define CONTROLLER_FAILOVER 0x04
60#define TRANSCEIVER_SE 0x05
61#define TRANSCEIVER_LVD 0x06
62
63 /* These ASCQ's defined for ASC = STATE_CHANGED */
64#define RESERVATION_PREEMPTED 0x03
65#define ASYM_ACCESS_CHANGED 0x06
66#define LUN_CAPACITY_CHANGED 0x09
67
68/* transfer direction */
69#define XFER_NONE 0x00
70#define XFER_WRITE 0x01
71#define XFER_READ 0x02
72#define XFER_RSVD 0x03
73
74/* task attribute */
75#define ATTR_UNTAGGED 0x00
76#define ATTR_SIMPLE 0x04
77#define ATTR_HEADOFQUEUE 0x05
78#define ATTR_ORDERED 0x06
79#define ATTR_ACA 0x07
80
81/* cdb type */
82#define TYPE_CMD 0x00
83#define TYPE_MSG 0x01
84
Stephen M. Cameron75167d22012-05-01 11:42:51 -050085/* Message Types */
86#define HPSA_TASK_MANAGEMENT 0x00
87#define HPSA_RESET 0x01
88#define HPSA_SCAN 0x02
89#define HPSA_NOOP 0x03
90
91#define HPSA_CTLR_RESET_TYPE 0x00
92#define HPSA_BUS_RESET_TYPE 0x01
93#define HPSA_TARGET_RESET_TYPE 0x03
94#define HPSA_LUN_RESET_TYPE 0x04
95#define HPSA_NEXUS_RESET_TYPE 0x05
96
97/* Task Management Functions */
98#define HPSA_TMF_ABORT_TASK 0x00
99#define HPSA_TMF_ABORT_TASK_SET 0x01
100#define HPSA_TMF_CLEAR_ACA 0x02
101#define HPSA_TMF_CLEAR_TASK_SET 0x03
102#define HPSA_TMF_QUERY_TASK 0x04
103#define HPSA_TMF_QUERY_TASK_SET 0x05
104#define HPSA_TMF_QUERY_ASYNCEVENT 0x06
105
106
107
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800108/* config space register offsets */
109#define CFG_VENDORID 0x00
110#define CFG_DEVICEID 0x02
111#define CFG_I2OBAR 0x10
112#define CFG_MEM1BAR 0x14
113
114/* i2o space register offsets */
115#define I2O_IBDB_SET 0x20
116#define I2O_IBDB_CLEAR 0x70
117#define I2O_INT_STATUS 0x30
118#define I2O_INT_MASK 0x34
119#define I2O_IBPOST_Q 0x40
120#define I2O_OBPOST_Q 0x44
121#define I2O_DMA1_CFG 0x214
122
123/* Configuration Table */
124#define CFGTBL_ChangeReq 0x00000001l
125#define CFGTBL_AccCmds 0x00000001l
Stephen M. Cameron1df85522010-06-16 13:51:40 -0500126#define DOORBELL_CTLR_RESET 0x00000004l
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -0500127#define DOORBELL_CTLR_RESET2 0x00000020l
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800128
129#define CFGTBL_Trans_Simple 0x00000002l
Don Brace303932f2010-02-04 08:42:40 -0600130#define CFGTBL_Trans_Performant 0x00000004l
Stephen M. Cameron960a30e2011-02-15 15:33:03 -0600131#define CFGTBL_Trans_use_short_tags 0x20000000l
Matt Gates254f7962012-05-01 11:43:06 -0500132#define CFGTBL_Trans_enable_directed_msix (1 << 30)
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800133
134#define CFGTBL_BusType_Ultra2 0x00000001l
135#define CFGTBL_BusType_Ultra3 0x00000002l
136#define CFGTBL_BusType_Fibre1G 0x00000100l
137#define CFGTBL_BusType_Fibre2G 0x00000200l
138struct vals32 {
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -0600139 u32 lower;
140 u32 upper;
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800141};
142
143union u64bit {
144 struct vals32 val32;
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -0600145 u64 val;
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800146};
147
148/* FIXME this is a per controller value (barf!) */
Scott Teelb7ec0212011-10-26 16:21:12 -0500149#define HPSA_MAX_LUN 1024
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800150#define HPSA_MAX_PHYS_LUN 1024
Scott Teelaca4a522012-01-19 14:01:19 -0600151#define MAX_EXT_TARGETS 32
Scott Teelb7ec0212011-10-26 16:21:12 -0500152#define HPSA_MAX_DEVICES (HPSA_MAX_PHYS_LUN + HPSA_MAX_LUN + \
Scott Teelaca4a522012-01-19 14:01:19 -0600153 MAX_EXT_TARGETS + 1) /* + 1 is for the controller itself */
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800154
155/* SCSI-3 Commands */
156#pragma pack(1)
157
158#define HPSA_INQUIRY 0x12
159struct InquiryData {
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -0600160 u8 data_byte[36];
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800161};
162
163#define HPSA_REPORT_LOG 0xc2 /* Report Logical LUNs */
164#define HPSA_REPORT_PHYS 0xc3 /* Report Physical LUNs */
Matt Gatesa93aa1f2014-02-18 13:55:07 -0600165#define HPSA_REPORT_PHYS_EXTENDED 0x02
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800166struct ReportLUNdata {
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -0600167 u8 LUNListLength[4];
168 u32 reserved;
169 u8 LUN[HPSA_MAX_LUN][8];
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800170};
171
172struct ReportExtendedLUNdata {
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -0600173 u8 LUNListLength[4];
174 u8 extended_response_flag;
175 u8 reserved[3];
176 u8 LUN[HPSA_MAX_LUN][24];
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800177};
178
179struct SenseSubsystem_info {
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -0600180 u8 reserved[36];
181 u8 portname[8];
182 u8 reserved1[1108];
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800183};
184
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800185/* BMIC commands */
186#define BMIC_READ 0x26
187#define BMIC_WRITE 0x27
188#define BMIC_CACHE_FLUSH 0xc2
189#define HPSA_CACHE_FLUSH 0x01 /* C2 was already being used by HPSA */
Stephen M. Camerone85c5972012-05-01 11:43:42 -0500190#define BMIC_FLASH_FIRMWARE 0xF7
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800191
192/* Command List Structure */
193union SCSI3Addr {
194 struct {
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -0600195 u8 Dev;
196 u8 Bus:6;
197 u8 Mode:2; /* b00 */
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800198 } PeripDev;
199 struct {
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -0600200 u8 DevLSB;
201 u8 DevMSB:6;
202 u8 Mode:2; /* b01 */
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800203 } LogDev;
204 struct {
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -0600205 u8 Dev:5;
206 u8 Bus:3;
207 u8 Targ:6;
208 u8 Mode:2; /* b10 */
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800209 } LogUnit;
210};
211
212struct PhysDevAddr {
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -0600213 u32 TargetId:24;
214 u32 Bus:6;
215 u32 Mode:2;
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800216 /* 2 level target device addr */
217 union SCSI3Addr Target[2];
218};
219
220struct LogDevAddr {
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -0600221 u32 VolId:30;
222 u32 Mode:2;
223 u8 reserved[4];
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800224};
225
226union LUNAddr {
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -0600227 u8 LunAddrBytes[8];
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800228 union SCSI3Addr SCSI3Lun[4];
229 struct PhysDevAddr PhysDev;
230 struct LogDevAddr LogDev;
231};
232
233struct CommandListHeader {
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -0600234 u8 ReplyQueue;
235 u8 SGList;
236 u16 SGTotal;
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800237 struct vals32 Tag;
238 union LUNAddr LUN;
239};
240
241struct RequestBlock {
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -0600242 u8 CDBLen;
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800243 struct {
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -0600244 u8 Type:3;
245 u8 Attribute:3;
246 u8 Direction:2;
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800247 } Type;
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -0600248 u16 Timeout;
249 u8 CDB[16];
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800250};
251
252struct ErrDescriptor {
253 struct vals32 Addr;
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -0600254 u32 Len;
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800255};
256
257struct SGDescriptor {
258 struct vals32 Addr;
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -0600259 u32 Len;
260 u32 Ext;
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800261};
262
263union MoreErrInfo {
264 struct {
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -0600265 u8 Reserved[3];
266 u8 Type;
267 u32 ErrorInfo;
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800268 } Common_Info;
269 struct {
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -0600270 u8 Reserved[2];
271 u8 offense_size; /* size of offending entry */
272 u8 offense_num; /* byte # of offense 0-base */
273 u32 offense_value;
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800274 } Invalid_Cmd;
275};
276struct ErrorInfo {
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -0600277 u8 ScsiStatus;
278 u8 SenseLen;
279 u16 CommandStatus;
280 u32 ResidualCnt;
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800281 union MoreErrInfo MoreErrInfo;
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -0600282 u8 SenseInfo[SENSEINFOBYTES];
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800283};
284/* Command types */
285#define CMD_IOCTL_PEND 0x01
286#define CMD_SCSI 0x03
287
Don Brace303932f2010-02-04 08:42:40 -0600288#define DIRECT_LOOKUP_SHIFT 5
289#define DIRECT_LOOKUP_BIT 0x10
Stephen M. Camerond896f3f2011-01-06 14:47:53 -0600290#define DIRECT_LOOKUP_MASK (~((1 << DIRECT_LOOKUP_SHIFT) - 1))
Don Brace303932f2010-02-04 08:42:40 -0600291
292#define HPSA_ERROR_BIT 0x02
293struct ctlr_info; /* defined in hpsa.h */
294/* The size of this structure needs to be divisible by 32
295 * on all architectures because low 5 bits of the addresses
296 * are used as follows:
297 *
298 * bit 0: to device, used to indicate "performant mode" command
299 * from device, indidcates error status.
300 * bit 1-3: to device, indicates block fetch table entry for
301 * reducing DMA in fetching commands from host memory.
302 * bit 4: used to indicate whether tag is "direct lookup" (index),
303 * or a bus address.
304 */
305
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800306struct CommandList {
307 struct CommandListHeader Header;
308 struct RequestBlock Request;
309 struct ErrDescriptor ErrDesc;
Stephen M. Camerond66ae082012-01-19 14:00:48 -0600310 struct SGDescriptor SG[SG_ENTRIES_IN_CMD];
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800311 /* information associated with the command */
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -0600312 u32 busaddr; /* physical addr of this record */
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800313 struct ErrorInfo *err_info; /* pointer to the allocated mem */
314 struct ctlr_info *h;
315 int cmd_type;
316 long cmdindex;
Stephen M. Cameron9e0fc762011-02-15 15:32:48 -0600317 struct list_head list;
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800318 struct request *rq;
319 struct completion *waiting;
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800320 void *scsi_cmd;
Don Brace303932f2010-02-04 08:42:40 -0600321
322/* on 64 bit architectures, to get this to be 32-byte-aligned
Stephen M. Camerondb61bfc2010-02-25 14:03:22 -0600323 * it so happens we need PAD_64 bytes of padding, on 32 bit systems,
324 * we need PAD_32 bytes of padding (see below). This does that.
325 * If it happens that 64 bit and 32 bit systems need different
326 * padding, PAD_32 and PAD_64 can be set independently, and.
327 * the code below will do the right thing.
Don Brace303932f2010-02-04 08:42:40 -0600328 */
Stephen M. Camerondb61bfc2010-02-25 14:03:22 -0600329#define IS_32_BIT ((8 - sizeof(long))/4)
330#define IS_64_BIT (!IS_32_BIT)
Stephen M. Cameron43aebfa2010-02-25 14:03:32 -0600331#define PAD_32 (4)
332#define PAD_64 (4)
Stephen M. Camerondb61bfc2010-02-25 14:03:22 -0600333#define COMMANDLIST_PAD (IS_32_BIT * PAD_32 + IS_64_BIT * PAD_64)
Don Brace303932f2010-02-04 08:42:40 -0600334 u8 pad[COMMANDLIST_PAD];
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800335};
336
337/* Configuration Table Structure */
338struct HostWrite {
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -0600339 u32 TransportRequest;
340 u32 Reserved;
341 u32 CoalIntDelay;
342 u32 CoalIntCount;
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800343};
344
Don Brace303932f2010-02-04 08:42:40 -0600345#define SIMPLE_MODE 0x02
346#define PERFORMANT_MODE 0x04
347#define MEMQ_MODE 0x08
348
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800349struct CfgTable {
Don Brace303932f2010-02-04 08:42:40 -0600350 u8 Signature[4];
351 u32 SpecValence;
352 u32 TransportSupport;
353 u32 TransportActive;
354 struct HostWrite HostWrite;
355 u32 CmdsOutMax;
356 u32 BusTypes;
357 u32 TransMethodOffset;
358 u8 ServerName[16];
359 u32 HeartBeat;
Stephen M. Cameron97a5e982013-12-04 17:10:16 -0600360 u32 driver_support;
361#define ENABLE_SCSI_PREFETCH 0x100
Stephen M. Cameron28e13442013-12-04 17:10:21 -0600362#define ENABLE_UNIT_ATTN 0x01
Don Brace303932f2010-02-04 08:42:40 -0600363 u32 MaxScatterGatherElements;
364 u32 MaxLogicalUnits;
365 u32 MaxPhysicalDevices;
366 u32 MaxPhysicalDrivesPerLogicalUnit;
367 u32 MaxPerformantModeCommands;
Stephen M. Cameron75167d22012-05-01 11:42:51 -0500368 u32 MaxBlockFetch;
369 u32 PowerConservationSupport;
370 u32 PowerConservationEnable;
371 u32 TMFSupportFlags;
372 u8 TMFTagMask[8];
373 u8 reserved[0x78 - 0x70];
Stephen M. Cameron1df85522010-06-16 13:51:40 -0500374 u32 misc_fw_support; /* offset 0x78 */
375#define MISC_FW_DOORBELL_RESET (0x02)
Stephen M. Cameroncf0b08d2011-05-03 14:59:46 -0500376#define MISC_FW_DOORBELL_RESET2 (0x010)
Stephen M. Cameron580ada32011-05-03 14:59:10 -0500377 u8 driver_version[32];
Stephen M. Cameron75167d22012-05-01 11:42:51 -0500378
Don Brace303932f2010-02-04 08:42:40 -0600379};
380
381#define NUM_BLOCKFETCH_ENTRIES 8
382struct TransTable_struct {
383 u32 BlockFetch[NUM_BLOCKFETCH_ENTRIES];
384 u32 RepQSize;
385 u32 RepQCount;
386 u32 RepQCtrAddrLow32;
387 u32 RepQCtrAddrHigh32;
Matt Gates254f7962012-05-01 11:43:06 -0500388#define MAX_REPLY_QUEUES 8
389 struct vals32 RepQAddr[MAX_REPLY_QUEUES];
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800390};
391
392struct hpsa_pci_info {
393 unsigned char bus;
394 unsigned char dev_fn;
395 unsigned short domain;
Stephen M. Cameron01a02ff2010-02-04 08:41:33 -0600396 u32 board_id;
Stephen M. Cameronedd16362009-12-08 14:09:11 -0800397};
398
399#pragma pack()
400#endif /* HPSA_CMD_H */