2 * Disk Array driver for HP Smart Array SAS controllers
3 * Copyright 2000, 2009 Hewlett-Packard Development Company, L.P.
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.
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.
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.
18 * Questions/Comments/Bugfixes to iss_storagedev@hp.com
24 /* general boundary defintions */
25 #define SENSEINFOBYTES 32 /* may vary between hbas */
26 #define MAXSGENTRIES 31
27 #define MAXREPLYQS 256
29 /* Command Status value */
30 #define CMD_SUCCESS 0x0000
31 #define CMD_TARGET_STATUS 0x0001
32 #define CMD_DATA_UNDERRUN 0x0002
33 #define CMD_DATA_OVERRUN 0x0003
34 #define CMD_INVALID 0x0004
35 #define CMD_PROTOCOL_ERR 0x0005
36 #define CMD_HARDWARE_ERR 0x0006
37 #define CMD_CONNECTION_LOST 0x0007
38 #define CMD_ABORTED 0x0008
39 #define CMD_ABORT_FAILED 0x0009
40 #define CMD_UNSOLICITED_ABORT 0x000A
41 #define CMD_TIMEOUT 0x000B
42 #define CMD_UNABORTABLE 0x000C
44 /* Unit Attentions ASC's as defined for the MSA2012sa */
45 #define POWER_OR_RESET 0x29
46 #define STATE_CHANGED 0x2a
47 #define UNIT_ATTENTION_CLEARED 0x2f
48 #define LUN_FAILED 0x3e
49 #define REPORT_LUNS_CHANGED 0x3f
51 /* Unit Attentions ASCQ's as defined for the MSA2012sa */
53 /* These ASCQ's defined for ASC = POWER_OR_RESET */
54 #define POWER_ON_RESET 0x00
55 #define POWER_ON_REBOOT 0x01
56 #define SCSI_BUS_RESET 0x02
57 #define MSA_TARGET_RESET 0x03
58 #define CONTROLLER_FAILOVER 0x04
59 #define TRANSCEIVER_SE 0x05
60 #define TRANSCEIVER_LVD 0x06
62 /* These ASCQ's defined for ASC = STATE_CHANGED */
63 #define RESERVATION_PREEMPTED 0x03
64 #define ASYM_ACCESS_CHANGED 0x06
65 #define LUN_CAPACITY_CHANGED 0x09
67 /* transfer direction */
68 #define XFER_NONE 0x00
69 #define XFER_WRITE 0x01
70 #define XFER_READ 0x02
71 #define XFER_RSVD 0x03
74 #define ATTR_UNTAGGED 0x00
75 #define ATTR_SIMPLE 0x04
76 #define ATTR_HEADOFQUEUE 0x05
77 #define ATTR_ORDERED 0x06
84 /* config space register offsets */
85 #define CFG_VENDORID 0x00
86 #define CFG_DEVICEID 0x02
87 #define CFG_I2OBAR 0x10
88 #define CFG_MEM1BAR 0x14
90 /* i2o space register offsets */
91 #define I2O_IBDB_SET 0x20
92 #define I2O_IBDB_CLEAR 0x70
93 #define I2O_INT_STATUS 0x30
94 #define I2O_INT_MASK 0x34
95 #define I2O_IBPOST_Q 0x40
96 #define I2O_OBPOST_Q 0x44
97 #define I2O_DMA1_CFG 0x214
99 /* Configuration Table */
100 #define CFGTBL_ChangeReq 0x00000001l
101 #define CFGTBL_AccCmds 0x00000001l
103 #define CFGTBL_Trans_Simple 0x00000002l
104 #define CFGTBL_Trans_Performant 0x00000004l
106 #define CFGTBL_BusType_Ultra2 0x00000001l
107 #define CFGTBL_BusType_Ultra3 0x00000002l
108 #define CFGTBL_BusType_Fibre1G 0x00000100l
109 #define CFGTBL_BusType_Fibre2G 0x00000200l
120 /* FIXME this is a per controller value (barf!) */
121 #define HPSA_MAX_TARGETS_PER_CTLR 16
122 #define HPSA_MAX_LUN 256
123 #define HPSA_MAX_PHYS_LUN 1024
125 /* SCSI-3 Commands */
128 #define HPSA_INQUIRY 0x12
133 #define HPSA_REPORT_LOG 0xc2 /* Report Logical LUNs */
134 #define HPSA_REPORT_PHYS 0xc3 /* Report Physical LUNs */
135 struct ReportLUNdata
{
138 u8 LUN
[HPSA_MAX_LUN
][8];
141 struct ReportExtendedLUNdata
{
143 u8 extended_response_flag
;
145 u8 LUN
[HPSA_MAX_LUN
][24];
148 struct SenseSubsystem_info
{
154 #define HPSA_READ_CAPACITY 0x25 /* Read Capacity */
156 u8 total_size
[4]; /* Total size in blocks */
157 u8 block_size
[4]; /* Size of blocks in bytes */
161 /* 12 byte commands not implemented in firmware yet. */
162 #define HPSA_READ 0xa8
163 #define HPSA_WRITE 0xaa
166 #define HPSA_READ 0x28 /* Read(10) */
167 #define HPSA_WRITE 0x2a /* Write(10) */
170 #define BMIC_READ 0x26
171 #define BMIC_WRITE 0x27
172 #define BMIC_CACHE_FLUSH 0xc2
173 #define HPSA_CACHE_FLUSH 0x01 /* C2 was already being used by HPSA */
175 /* Command List Structure */
199 /* 2 level target device addr */
200 union SCSI3Addr Target
[2];
211 union SCSI3Addr SCSI3Lun
[4];
212 struct PhysDevAddr PhysDev
;
213 struct LogDevAddr LogDev
;
216 struct CommandListHeader
{
224 struct RequestBlock
{
235 struct ErrDescriptor
{
240 struct SGDescriptor
{
254 u8 offense_size
; /* size of offending entry */
255 u8 offense_num
; /* byte # of offense 0-base */
264 union MoreErrInfo MoreErrInfo
;
265 u8 SenseInfo
[SENSEINFOBYTES
];
268 #define CMD_IOCTL_PEND 0x01
269 #define CMD_SCSI 0x03
271 /* This structure needs to be divisible by 32 for new
272 * indexing method and performant mode.
276 #define USEEXTRA ((sizeof(void *) - 4)/4)
277 #define PADSIZE (PAD32 + PAD64DIFF * USEEXTRA)
279 #define DIRECT_LOOKUP_SHIFT 5
280 #define DIRECT_LOOKUP_BIT 0x10
282 #define HPSA_ERROR_BIT 0x02
283 struct ctlr_info
; /* defined in hpsa.h */
284 /* The size of this structure needs to be divisible by 32
285 * on all architectures because low 5 bits of the addresses
286 * are used as follows:
288 * bit 0: to device, used to indicate "performant mode" command
289 * from device, indidcates error status.
290 * bit 1-3: to device, indicates block fetch table entry for
291 * reducing DMA in fetching commands from host memory.
292 * bit 4: used to indicate whether tag is "direct lookup" (index),
297 struct CommandListHeader Header
;
298 struct RequestBlock Request
;
299 struct ErrDescriptor ErrDesc
;
300 struct SGDescriptor SG
[MAXSGENTRIES
];
301 /* information associated with the command */
302 u32 busaddr
; /* physical addr of this record */
303 struct ErrorInfo
*err_info
; /* pointer to the allocated mem */
307 struct hlist_node list
;
308 struct CommandList
*prev
;
309 struct CommandList
*next
;
311 struct completion
*waiting
;
315 /* on 64 bit architectures, to get this to be 32-byte-aligned
316 * it so happens we need no padding, on 32 bit systems,
317 * we need 8 bytes of padding. This does that.
319 #define COMMANDLIST_PAD ((8 - sizeof(long))/4 * 8)
320 u8 pad
[COMMANDLIST_PAD
];
324 /* Configuration Table Structure */
326 u32 TransportRequest
;
332 #define SIMPLE_MODE 0x02
333 #define PERFORMANT_MODE 0x04
334 #define MEMQ_MODE 0x08
339 u32 TransportSupport
;
341 struct HostWrite HostWrite
;
344 u32 TransMethodOffset
;
348 u32 MaxScatterGatherElements
;
350 u32 MaxPhysicalDevices
;
351 u32 MaxPhysicalDrivesPerLogicalUnit
;
352 u32 MaxPerformantModeCommands
;
355 #define NUM_BLOCKFETCH_ENTRIES 8
356 struct TransTable_struct
{
357 u32 BlockFetch
[NUM_BLOCKFETCH_ENTRIES
];
360 u32 RepQCtrAddrLow32
;
361 u32 RepQCtrAddrHigh32
;
366 struct hpsa_pci_info
{
368 unsigned char dev_fn
;
369 unsigned short domain
;
374 #endif /* HPSA_CMD_H */