xref: /OK3568_Linux_fs/kernel/drivers/scsi/3w-9xxx.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /*
2*4882a593Smuzhiyun    3w-9xxx.h -- 3ware 9000 Storage Controller device driver for Linux.
3*4882a593Smuzhiyun 
4*4882a593Smuzhiyun    Written By: Adam Radford <aradford@gmail.com>
5*4882a593Smuzhiyun    Modifications By: Tom Couch
6*4882a593Smuzhiyun 
7*4882a593Smuzhiyun    Copyright (C) 2004-2009 Applied Micro Circuits Corporation.
8*4882a593Smuzhiyun    Copyright (C) 2010 LSI Corporation.
9*4882a593Smuzhiyun 
10*4882a593Smuzhiyun    This program is free software; you can redistribute it and/or modify
11*4882a593Smuzhiyun    it under the terms of the GNU General Public License as published by
12*4882a593Smuzhiyun    the Free Software Foundation; version 2 of the License.
13*4882a593Smuzhiyun 
14*4882a593Smuzhiyun    This program is distributed in the hope that it will be useful,
15*4882a593Smuzhiyun    but WITHOUT ANY WARRANTY; without even the implied warranty of
16*4882a593Smuzhiyun    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17*4882a593Smuzhiyun    GNU General Public License for more details.
18*4882a593Smuzhiyun 
19*4882a593Smuzhiyun    NO WARRANTY
20*4882a593Smuzhiyun    THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR
21*4882a593Smuzhiyun    CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT
22*4882a593Smuzhiyun    LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,
23*4882a593Smuzhiyun    MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is
24*4882a593Smuzhiyun    solely responsible for determining the appropriateness of using and
25*4882a593Smuzhiyun    distributing the Program and assumes all risks associated with its
26*4882a593Smuzhiyun    exercise of rights under this Agreement, including but not limited to
27*4882a593Smuzhiyun    the risks and costs of program errors, damage to or loss of data,
28*4882a593Smuzhiyun    programs or equipment, and unavailability or interruption of operations.
29*4882a593Smuzhiyun 
30*4882a593Smuzhiyun    DISCLAIMER OF LIABILITY
31*4882a593Smuzhiyun    NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY
32*4882a593Smuzhiyun    DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33*4882a593Smuzhiyun    DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND
34*4882a593Smuzhiyun    ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
35*4882a593Smuzhiyun    TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
36*4882a593Smuzhiyun    USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
37*4882a593Smuzhiyun    HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES
38*4882a593Smuzhiyun 
39*4882a593Smuzhiyun    You should have received a copy of the GNU General Public License
40*4882a593Smuzhiyun    along with this program; if not, write to the Free Software
41*4882a593Smuzhiyun    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
42*4882a593Smuzhiyun 
43*4882a593Smuzhiyun    Bugs/Comments/Suggestions should be mailed to:
44*4882a593Smuzhiyun    aradford@gmail.com
45*4882a593Smuzhiyun */
46*4882a593Smuzhiyun 
47*4882a593Smuzhiyun #ifndef _3W_9XXX_H
48*4882a593Smuzhiyun #define _3W_9XXX_H
49*4882a593Smuzhiyun 
50*4882a593Smuzhiyun /* AEN string type */
51*4882a593Smuzhiyun typedef struct TAG_twa_message_type {
52*4882a593Smuzhiyun   unsigned int   code;
53*4882a593Smuzhiyun   char*          text;
54*4882a593Smuzhiyun } twa_message_type;
55*4882a593Smuzhiyun 
56*4882a593Smuzhiyun /* AEN strings */
57*4882a593Smuzhiyun static twa_message_type twa_aen_table[] = {
58*4882a593Smuzhiyun 	{0x0000, "AEN queue empty"},
59*4882a593Smuzhiyun 	{0x0001, "Controller reset occurred"},
60*4882a593Smuzhiyun 	{0x0002, "Degraded unit detected"},
61*4882a593Smuzhiyun 	{0x0003, "Controller error occurred"},
62*4882a593Smuzhiyun 	{0x0004, "Background rebuild failed"},
63*4882a593Smuzhiyun 	{0x0005, "Background rebuild done"},
64*4882a593Smuzhiyun 	{0x0006, "Incomplete unit detected"},
65*4882a593Smuzhiyun 	{0x0007, "Background initialize done"},
66*4882a593Smuzhiyun 	{0x0008, "Unclean shutdown detected"},
67*4882a593Smuzhiyun 	{0x0009, "Drive timeout detected"},
68*4882a593Smuzhiyun 	{0x000A, "Drive error detected"},
69*4882a593Smuzhiyun 	{0x000B, "Rebuild started"},
70*4882a593Smuzhiyun 	{0x000C, "Background initialize started"},
71*4882a593Smuzhiyun 	{0x000D, "Entire logical unit was deleted"},
72*4882a593Smuzhiyun 	{0x000E, "Background initialize failed"},
73*4882a593Smuzhiyun 	{0x000F, "SMART attribute exceeded threshold"},
74*4882a593Smuzhiyun 	{0x0010, "Power supply reported AC under range"},
75*4882a593Smuzhiyun 	{0x0011, "Power supply reported DC out of range"},
76*4882a593Smuzhiyun 	{0x0012, "Power supply reported a malfunction"},
77*4882a593Smuzhiyun 	{0x0013, "Power supply predicted malfunction"},
78*4882a593Smuzhiyun 	{0x0014, "Battery charge is below threshold"},
79*4882a593Smuzhiyun 	{0x0015, "Fan speed is below threshold"},
80*4882a593Smuzhiyun 	{0x0016, "Temperature sensor is above threshold"},
81*4882a593Smuzhiyun 	{0x0017, "Power supply was removed"},
82*4882a593Smuzhiyun 	{0x0018, "Power supply was inserted"},
83*4882a593Smuzhiyun 	{0x0019, "Drive was removed from a bay"},
84*4882a593Smuzhiyun 	{0x001A, "Drive was inserted into a bay"},
85*4882a593Smuzhiyun 	{0x001B, "Drive bay cover door was opened"},
86*4882a593Smuzhiyun 	{0x001C, "Drive bay cover door was closed"},
87*4882a593Smuzhiyun 	{0x001D, "Product case was opened"},
88*4882a593Smuzhiyun 	{0x0020, "Prepare for shutdown (power-off)"},
89*4882a593Smuzhiyun 	{0x0021, "Downgrade UDMA mode to lower speed"},
90*4882a593Smuzhiyun 	{0x0022, "Upgrade UDMA mode to higher speed"},
91*4882a593Smuzhiyun 	{0x0023, "Sector repair completed"},
92*4882a593Smuzhiyun 	{0x0024, "Sbuf memory test failed"},
93*4882a593Smuzhiyun 	{0x0025, "Error flushing cached write data to array"},
94*4882a593Smuzhiyun 	{0x0026, "Drive reported data ECC error"},
95*4882a593Smuzhiyun 	{0x0027, "DCB has checksum error"},
96*4882a593Smuzhiyun 	{0x0028, "DCB version is unsupported"},
97*4882a593Smuzhiyun 	{0x0029, "Background verify started"},
98*4882a593Smuzhiyun 	{0x002A, "Background verify failed"},
99*4882a593Smuzhiyun 	{0x002B, "Background verify done"},
100*4882a593Smuzhiyun 	{0x002C, "Bad sector overwritten during rebuild"},
101*4882a593Smuzhiyun 	{0x002D, "Background rebuild error on source drive"},
102*4882a593Smuzhiyun 	{0x002E, "Replace failed because replacement drive too small"},
103*4882a593Smuzhiyun 	{0x002F, "Verify failed because array was never initialized"},
104*4882a593Smuzhiyun 	{0x0030, "Unsupported ATA drive"},
105*4882a593Smuzhiyun 	{0x0031, "Synchronize host/controller time"},
106*4882a593Smuzhiyun 	{0x0032, "Spare capacity is inadequate for some units"},
107*4882a593Smuzhiyun 	{0x0033, "Background migration started"},
108*4882a593Smuzhiyun 	{0x0034, "Background migration failed"},
109*4882a593Smuzhiyun 	{0x0035, "Background migration done"},
110*4882a593Smuzhiyun 	{0x0036, "Verify detected and fixed data/parity mismatch"},
111*4882a593Smuzhiyun 	{0x0037, "SO-DIMM incompatible"},
112*4882a593Smuzhiyun 	{0x0038, "SO-DIMM not detected"},
113*4882a593Smuzhiyun 	{0x0039, "Corrected Sbuf ECC error"},
114*4882a593Smuzhiyun 	{0x003A, "Drive power on reset detected"},
115*4882a593Smuzhiyun 	{0x003B, "Background rebuild paused"},
116*4882a593Smuzhiyun 	{0x003C, "Background initialize paused"},
117*4882a593Smuzhiyun 	{0x003D, "Background verify paused"},
118*4882a593Smuzhiyun 	{0x003E, "Background migration paused"},
119*4882a593Smuzhiyun 	{0x003F, "Corrupt flash file system detected"},
120*4882a593Smuzhiyun 	{0x0040, "Flash file system repaired"},
121*4882a593Smuzhiyun 	{0x0041, "Unit number assignments were lost"},
122*4882a593Smuzhiyun 	{0x0042, "Error during read of primary DCB"},
123*4882a593Smuzhiyun 	{0x0043, "Latent error found in backup DCB"},
124*4882a593Smuzhiyun 	{0x00FC, "Recovered/finished array membership update"},
125*4882a593Smuzhiyun 	{0x00FD, "Handler lockup"},
126*4882a593Smuzhiyun 	{0x00FE, "Retrying PCI transfer"},
127*4882a593Smuzhiyun 	{0x00FF, "AEN queue is full"},
128*4882a593Smuzhiyun 	{0xFFFFFFFF, (char*) 0}
129*4882a593Smuzhiyun };
130*4882a593Smuzhiyun 
131*4882a593Smuzhiyun /* AEN severity table */
132*4882a593Smuzhiyun static char *twa_aen_severity_table[] =
133*4882a593Smuzhiyun {
134*4882a593Smuzhiyun 	"None", "ERROR", "WARNING", "INFO", "DEBUG", (char*) 0
135*4882a593Smuzhiyun };
136*4882a593Smuzhiyun 
137*4882a593Smuzhiyun /* Error strings */
138*4882a593Smuzhiyun static twa_message_type twa_error_table[] = {
139*4882a593Smuzhiyun 	{0x0100, "SGL entry contains zero data"},
140*4882a593Smuzhiyun 	{0x0101, "Invalid command opcode"},
141*4882a593Smuzhiyun 	{0x0102, "SGL entry has unaligned address"},
142*4882a593Smuzhiyun 	{0x0103, "SGL size does not match command"},
143*4882a593Smuzhiyun 	{0x0104, "SGL entry has illegal length"},
144*4882a593Smuzhiyun 	{0x0105, "Command packet is not aligned"},
145*4882a593Smuzhiyun 	{0x0106, "Invalid request ID"},
146*4882a593Smuzhiyun 	{0x0107, "Duplicate request ID"},
147*4882a593Smuzhiyun 	{0x0108, "ID not locked"},
148*4882a593Smuzhiyun 	{0x0109, "LBA out of range"},
149*4882a593Smuzhiyun 	{0x010A, "Logical unit not supported"},
150*4882a593Smuzhiyun 	{0x010B, "Parameter table does not exist"},
151*4882a593Smuzhiyun 	{0x010C, "Parameter index does not exist"},
152*4882a593Smuzhiyun 	{0x010D, "Invalid field in CDB"},
153*4882a593Smuzhiyun 	{0x010E, "Specified port has invalid drive"},
154*4882a593Smuzhiyun 	{0x010F, "Parameter item size mismatch"},
155*4882a593Smuzhiyun 	{0x0110, "Failed memory allocation"},
156*4882a593Smuzhiyun 	{0x0111, "Memory request too large"},
157*4882a593Smuzhiyun 	{0x0112, "Out of memory segments"},
158*4882a593Smuzhiyun 	{0x0113, "Invalid address to deallocate"},
159*4882a593Smuzhiyun 	{0x0114, "Out of memory"},
160*4882a593Smuzhiyun 	{0x0115, "Out of heap"},
161*4882a593Smuzhiyun 	{0x0120, "Double degrade"},
162*4882a593Smuzhiyun 	{0x0121, "Drive not degraded"},
163*4882a593Smuzhiyun 	{0x0122, "Reconstruct error"},
164*4882a593Smuzhiyun 	{0x0123, "Replace not accepted"},
165*4882a593Smuzhiyun 	{0x0124, "Replace drive capacity too small"},
166*4882a593Smuzhiyun 	{0x0125, "Sector count not allowed"},
167*4882a593Smuzhiyun 	{0x0126, "No spares left"},
168*4882a593Smuzhiyun 	{0x0127, "Reconstruct error"},
169*4882a593Smuzhiyun 	{0x0128, "Unit is offline"},
170*4882a593Smuzhiyun 	{0x0129, "Cannot update status to DCB"},
171*4882a593Smuzhiyun 	{0x0130, "Invalid stripe handle"},
172*4882a593Smuzhiyun 	{0x0131, "Handle that was not locked"},
173*4882a593Smuzhiyun 	{0x0132, "Handle that was not empty"},
174*4882a593Smuzhiyun 	{0x0133, "Handle has different owner"},
175*4882a593Smuzhiyun 	{0x0140, "IPR has parent"},
176*4882a593Smuzhiyun 	{0x0150, "Illegal Pbuf address alignment"},
177*4882a593Smuzhiyun 	{0x0151, "Illegal Pbuf transfer length"},
178*4882a593Smuzhiyun 	{0x0152, "Illegal Sbuf address alignment"},
179*4882a593Smuzhiyun 	{0x0153, "Illegal Sbuf transfer length"},
180*4882a593Smuzhiyun 	{0x0160, "Command packet too large"},
181*4882a593Smuzhiyun 	{0x0161, "SGL exceeds maximum length"},
182*4882a593Smuzhiyun 	{0x0162, "SGL has too many entries"},
183*4882a593Smuzhiyun 	{0x0170, "Insufficient resources for rebuilder"},
184*4882a593Smuzhiyun 	{0x0171, "Verify error (data != parity)"},
185*4882a593Smuzhiyun 	{0x0180, "Requested segment not in directory of this DCB"},
186*4882a593Smuzhiyun 	{0x0181, "DCB segment has unsupported version"},
187*4882a593Smuzhiyun 	{0x0182, "DCB segment has checksum error"},
188*4882a593Smuzhiyun 	{0x0183, "DCB support (settings) segment invalid"},
189*4882a593Smuzhiyun 	{0x0184, "DCB UDB (unit descriptor block) segment invalid"},
190*4882a593Smuzhiyun 	{0x0185, "DCB GUID (globally unique identifier) segment invalid"},
191*4882a593Smuzhiyun 	{0x01A0, "Could not clear Sbuf"},
192*4882a593Smuzhiyun 	{0x01C0, "Flash identify failed"},
193*4882a593Smuzhiyun 	{0x01C1, "Flash out of bounds"},
194*4882a593Smuzhiyun 	{0x01C2, "Flash verify error"},
195*4882a593Smuzhiyun 	{0x01C3, "Flash file object not found"},
196*4882a593Smuzhiyun 	{0x01C4, "Flash file already present"},
197*4882a593Smuzhiyun 	{0x01C5, "Flash file system full"},
198*4882a593Smuzhiyun 	{0x01C6, "Flash file not present"},
199*4882a593Smuzhiyun 	{0x01C7, "Flash file size error"},
200*4882a593Smuzhiyun 	{0x01C8, "Bad flash file checksum"},
201*4882a593Smuzhiyun 	{0x01CA, "Corrupt flash file system detected"},
202*4882a593Smuzhiyun 	{0x01D0, "Invalid field in parameter list"},
203*4882a593Smuzhiyun 	{0x01D1, "Parameter list length error"},
204*4882a593Smuzhiyun 	{0x01D2, "Parameter item is not changeable"},
205*4882a593Smuzhiyun 	{0x01D3, "Parameter item is not saveable"},
206*4882a593Smuzhiyun 	{0x0200, "UDMA CRC error"},
207*4882a593Smuzhiyun 	{0x0201, "Internal CRC error"},
208*4882a593Smuzhiyun 	{0x0202, "Data ECC error"},
209*4882a593Smuzhiyun 	{0x0203, "ADP level 1 error"},
210*4882a593Smuzhiyun 	{0x0204, "Port timeout"},
211*4882a593Smuzhiyun 	{0x0205, "Drive power on reset"},
212*4882a593Smuzhiyun 	{0x0206, "ADP level 2 error"},
213*4882a593Smuzhiyun 	{0x0207, "Soft reset failed"},
214*4882a593Smuzhiyun 	{0x0208, "Drive not ready"},
215*4882a593Smuzhiyun 	{0x0209, "Unclassified port error"},
216*4882a593Smuzhiyun 	{0x020A, "Drive aborted command"},
217*4882a593Smuzhiyun 	{0x0210, "Internal CRC error"},
218*4882a593Smuzhiyun 	{0x0211, "PCI abort error"},
219*4882a593Smuzhiyun 	{0x0212, "PCI parity error"},
220*4882a593Smuzhiyun 	{0x0213, "Port handler error"},
221*4882a593Smuzhiyun 	{0x0214, "Token interrupt count error"},
222*4882a593Smuzhiyun 	{0x0215, "Timeout waiting for PCI transfer"},
223*4882a593Smuzhiyun 	{0x0216, "Corrected buffer ECC"},
224*4882a593Smuzhiyun 	{0x0217, "Uncorrected buffer ECC"},
225*4882a593Smuzhiyun 	{0x0230, "Unsupported command during flash recovery"},
226*4882a593Smuzhiyun 	{0x0231, "Next image buffer expected"},
227*4882a593Smuzhiyun 	{0x0232, "Binary image architecture incompatible"},
228*4882a593Smuzhiyun 	{0x0233, "Binary image has no signature"},
229*4882a593Smuzhiyun 	{0x0234, "Binary image has bad checksum"},
230*4882a593Smuzhiyun 	{0x0235, "Image downloaded overflowed buffer"},
231*4882a593Smuzhiyun 	{0x0240, "I2C device not found"},
232*4882a593Smuzhiyun 	{0x0241, "I2C transaction aborted"},
233*4882a593Smuzhiyun 	{0x0242, "SO-DIMM parameter(s) incompatible using defaults"},
234*4882a593Smuzhiyun 	{0x0243, "SO-DIMM unsupported"},
235*4882a593Smuzhiyun 	{0x0248, "SPI transfer status error"},
236*4882a593Smuzhiyun 	{0x0249, "SPI transfer timeout error"},
237*4882a593Smuzhiyun 	{0x0250, "Invalid unit descriptor size in CreateUnit"},
238*4882a593Smuzhiyun 	{0x0251, "Unit descriptor size exceeds data buffer in CreateUnit"},
239*4882a593Smuzhiyun 	{0x0252, "Invalid value in CreateUnit descriptor"},
240*4882a593Smuzhiyun 	{0x0253, "Inadequate disk space to support descriptor in CreateUnit"},
241*4882a593Smuzhiyun 	{0x0254, "Unable to create data channel for this unit descriptor"},
242*4882a593Smuzhiyun 	{0x0255, "CreateUnit descriptor specifies a drive already in use"},
243*4882a593Smuzhiyun 	{0x0256, "Unable to write configuration to all disks during CreateUnit"},
244*4882a593Smuzhiyun 	{0x0257, "CreateUnit does not support this descriptor version"},
245*4882a593Smuzhiyun 	{0x0258, "Invalid subunit for RAID 0 or 5 in CreateUnit"},
246*4882a593Smuzhiyun 	{0x0259, "Too many descriptors in CreateUnit"},
247*4882a593Smuzhiyun 	{0x025A, "Invalid configuration specified in CreateUnit descriptor"},
248*4882a593Smuzhiyun 	{0x025B, "Invalid LBA offset specified in CreateUnit descriptor"},
249*4882a593Smuzhiyun 	{0x025C, "Invalid stripelet size specified in CreateUnit descriptor"},
250*4882a593Smuzhiyun 	{0x0260, "SMART attribute exceeded threshold"},
251*4882a593Smuzhiyun 	{0xFFFFFFFF, (char*) 0}
252*4882a593Smuzhiyun };
253*4882a593Smuzhiyun 
254*4882a593Smuzhiyun /* Control register bit definitions */
255*4882a593Smuzhiyun #define TW_CONTROL_CLEAR_HOST_INTERRUPT	       0x00080000
256*4882a593Smuzhiyun #define TW_CONTROL_CLEAR_ATTENTION_INTERRUPT   0x00040000
257*4882a593Smuzhiyun #define TW_CONTROL_MASK_COMMAND_INTERRUPT      0x00020000
258*4882a593Smuzhiyun #define TW_CONTROL_MASK_RESPONSE_INTERRUPT     0x00010000
259*4882a593Smuzhiyun #define TW_CONTROL_UNMASK_COMMAND_INTERRUPT    0x00008000
260*4882a593Smuzhiyun #define TW_CONTROL_UNMASK_RESPONSE_INTERRUPT   0x00004000
261*4882a593Smuzhiyun #define TW_CONTROL_CLEAR_ERROR_STATUS	       0x00000200
262*4882a593Smuzhiyun #define TW_CONTROL_ISSUE_SOFT_RESET	       0x00000100
263*4882a593Smuzhiyun #define TW_CONTROL_ENABLE_INTERRUPTS	       0x00000080
264*4882a593Smuzhiyun #define TW_CONTROL_DISABLE_INTERRUPTS	       0x00000040
265*4882a593Smuzhiyun #define TW_CONTROL_ISSUE_HOST_INTERRUPT	       0x00000020
266*4882a593Smuzhiyun #define TW_CONTROL_CLEAR_PARITY_ERROR          0x00800000
267*4882a593Smuzhiyun #define TW_CONTROL_CLEAR_QUEUE_ERROR           0x00400000
268*4882a593Smuzhiyun #define TW_CONTROL_CLEAR_PCI_ABORT             0x00100000
269*4882a593Smuzhiyun 
270*4882a593Smuzhiyun /* Status register bit definitions */
271*4882a593Smuzhiyun #define TW_STATUS_MAJOR_VERSION_MASK	       0xF0000000
272*4882a593Smuzhiyun #define TW_STATUS_MINOR_VERSION_MASK	       0x0F000000
273*4882a593Smuzhiyun #define TW_STATUS_PCI_PARITY_ERROR	       0x00800000
274*4882a593Smuzhiyun #define TW_STATUS_QUEUE_ERROR		       0x00400000
275*4882a593Smuzhiyun #define TW_STATUS_MICROCONTROLLER_ERROR	       0x00200000
276*4882a593Smuzhiyun #define TW_STATUS_PCI_ABORT		       0x00100000
277*4882a593Smuzhiyun #define TW_STATUS_HOST_INTERRUPT	       0x00080000
278*4882a593Smuzhiyun #define TW_STATUS_ATTENTION_INTERRUPT	       0x00040000
279*4882a593Smuzhiyun #define TW_STATUS_COMMAND_INTERRUPT	       0x00020000
280*4882a593Smuzhiyun #define TW_STATUS_RESPONSE_INTERRUPT	       0x00010000
281*4882a593Smuzhiyun #define TW_STATUS_COMMAND_QUEUE_FULL	       0x00008000
282*4882a593Smuzhiyun #define TW_STATUS_RESPONSE_QUEUE_EMPTY	       0x00004000
283*4882a593Smuzhiyun #define TW_STATUS_MICROCONTROLLER_READY	       0x00002000
284*4882a593Smuzhiyun #define TW_STATUS_COMMAND_QUEUE_EMPTY	       0x00001000
285*4882a593Smuzhiyun #define TW_STATUS_EXPECTED_BITS		       0x00002000
286*4882a593Smuzhiyun #define TW_STATUS_UNEXPECTED_BITS	       0x00F00000
287*4882a593Smuzhiyun #define TW_STATUS_VALID_INTERRUPT              0x00DF0000
288*4882a593Smuzhiyun 
289*4882a593Smuzhiyun /* PCI related defines */
290*4882a593Smuzhiyun #define TW_PCI_CLEAR_PARITY_ERRORS 0xc100
291*4882a593Smuzhiyun #define TW_PCI_CLEAR_PCI_ABORT     0x2000
292*4882a593Smuzhiyun 
293*4882a593Smuzhiyun /* Command packet opcodes used by the driver */
294*4882a593Smuzhiyun #define TW_OP_INIT_CONNECTION 0x1
295*4882a593Smuzhiyun #define TW_OP_GET_PARAM	      0x12
296*4882a593Smuzhiyun #define TW_OP_SET_PARAM	      0x13
297*4882a593Smuzhiyun #define TW_OP_EXECUTE_SCSI    0x10
298*4882a593Smuzhiyun #define TW_OP_DOWNLOAD_FIRMWARE 0x16
299*4882a593Smuzhiyun #define TW_OP_RESET             0x1C
300*4882a593Smuzhiyun 
301*4882a593Smuzhiyun /* Asynchronous Event Notification (AEN) codes used by the driver */
302*4882a593Smuzhiyun #define TW_AEN_QUEUE_EMPTY       0x0000
303*4882a593Smuzhiyun #define TW_AEN_SOFT_RESET        0x0001
304*4882a593Smuzhiyun #define TW_AEN_SYNC_TIME_WITH_HOST 0x031
305*4882a593Smuzhiyun #define TW_AEN_SEVERITY_ERROR    0x1
306*4882a593Smuzhiyun #define TW_AEN_SEVERITY_DEBUG    0x4
307*4882a593Smuzhiyun #define TW_AEN_NOT_RETRIEVED 0x1
308*4882a593Smuzhiyun #define TW_AEN_RETRIEVED 0x2
309*4882a593Smuzhiyun 
310*4882a593Smuzhiyun /* Command state defines */
311*4882a593Smuzhiyun #define TW_S_INITIAL   0x1  /* Initial state */
312*4882a593Smuzhiyun #define TW_S_STARTED   0x2  /* Id in use */
313*4882a593Smuzhiyun #define TW_S_POSTED    0x4  /* Posted to the controller */
314*4882a593Smuzhiyun #define TW_S_PENDING   0x8  /* Waiting to be posted in isr */
315*4882a593Smuzhiyun #define TW_S_COMPLETED 0x10 /* Completed by isr */
316*4882a593Smuzhiyun #define TW_S_FINISHED  0x20 /* I/O completely done */
317*4882a593Smuzhiyun 
318*4882a593Smuzhiyun /* Compatibility defines */
319*4882a593Smuzhiyun #define TW_9000_ARCH_ID 0x5
320*4882a593Smuzhiyun #define TW_CURRENT_DRIVER_SRL 35
321*4882a593Smuzhiyun #define TW_CURRENT_DRIVER_BUILD 0
322*4882a593Smuzhiyun #define TW_CURRENT_DRIVER_BRANCH 0
323*4882a593Smuzhiyun 
324*4882a593Smuzhiyun /* Misc defines */
325*4882a593Smuzhiyun #define TW_9550SX_DRAIN_COMPLETED	      0xFFFF
326*4882a593Smuzhiyun #define TW_SECTOR_SIZE                        512
327*4882a593Smuzhiyun #define TW_ALIGNMENT_9000                     4  /* 4 bytes */
328*4882a593Smuzhiyun #define TW_ALIGNMENT_9000_SGL                 0x3
329*4882a593Smuzhiyun #define TW_MAX_UNITS			      16
330*4882a593Smuzhiyun #define TW_MAX_UNITS_9650SE		      32
331*4882a593Smuzhiyun #define TW_INIT_MESSAGE_CREDITS		      0x100
332*4882a593Smuzhiyun #define TW_INIT_COMMAND_PACKET_SIZE	      0x3
333*4882a593Smuzhiyun #define TW_INIT_COMMAND_PACKET_SIZE_EXTENDED  0x6
334*4882a593Smuzhiyun #define TW_EXTENDED_INIT_CONNECT	      0x2
335*4882a593Smuzhiyun #define TW_BUNDLED_FW_SAFE_TO_FLASH	      0x4
336*4882a593Smuzhiyun #define TW_CTLR_FW_RECOMMENDS_FLASH	      0x8
337*4882a593Smuzhiyun #define TW_CTLR_FW_COMPATIBLE		      0x2
338*4882a593Smuzhiyun #define TW_BASE_FW_SRL			      24
339*4882a593Smuzhiyun #define TW_BASE_FW_BRANCH		      0
340*4882a593Smuzhiyun #define TW_BASE_FW_BUILD		      1
341*4882a593Smuzhiyun #define TW_FW_SRL_LUNS_SUPPORTED              28
342*4882a593Smuzhiyun #define TW_Q_LENGTH			      256
343*4882a593Smuzhiyun #define TW_Q_START			      0
344*4882a593Smuzhiyun #define TW_MAX_SLOT			      32
345*4882a593Smuzhiyun #define TW_MAX_RESET_TRIES		      2
346*4882a593Smuzhiyun #define TW_MAX_CMDS_PER_LUN		      254
347*4882a593Smuzhiyun #define TW_MAX_RESPONSE_DRAIN		      256
348*4882a593Smuzhiyun #define TW_MAX_AEN_DRAIN		      255
349*4882a593Smuzhiyun #define TW_IN_RESET                           2
350*4882a593Smuzhiyun #define TW_USING_MSI			      3
351*4882a593Smuzhiyun #define TW_IN_ATTENTION_LOOP		      4
352*4882a593Smuzhiyun #define TW_MAX_SECTORS                        256
353*4882a593Smuzhiyun #define TW_AEN_WAIT_TIME                      1000
354*4882a593Smuzhiyun #define TW_IOCTL_WAIT_TIME                    (1 * HZ) /* 1 second */
355*4882a593Smuzhiyun #define TW_MAX_CDB_LEN                        16
356*4882a593Smuzhiyun #define TW_ISR_DONT_COMPLETE                  2
357*4882a593Smuzhiyun #define TW_ISR_DONT_RESULT                    3
358*4882a593Smuzhiyun #define TW_IOCTL_CHRDEV_TIMEOUT               60 /* 60 seconds */
359*4882a593Smuzhiyun #define TW_IOCTL_CHRDEV_FREE                  -1
360*4882a593Smuzhiyun #define TW_COMMAND_OFFSET                     128 /* 128 bytes */
361*4882a593Smuzhiyun #define TW_VERSION_TABLE                      0x0402
362*4882a593Smuzhiyun #define TW_TIMEKEEP_TABLE		      0x040A
363*4882a593Smuzhiyun #define TW_INFORMATION_TABLE		      0x0403
364*4882a593Smuzhiyun #define TW_PARAM_FWVER			      3
365*4882a593Smuzhiyun #define TW_PARAM_FWVER_LENGTH		      16
366*4882a593Smuzhiyun #define TW_PARAM_BIOSVER		      4
367*4882a593Smuzhiyun #define TW_PARAM_BIOSVER_LENGTH		      16
368*4882a593Smuzhiyun #define TW_PARAM_PORTCOUNT		      3
369*4882a593Smuzhiyun #define TW_PARAM_PORTCOUNT_LENGTH	      1
370*4882a593Smuzhiyun #define TW_MIN_SGL_LENGTH                     0x200 /* 512 bytes */
371*4882a593Smuzhiyun #define TW_MAX_SENSE_LENGTH                   256
372*4882a593Smuzhiyun #define TW_EVENT_SOURCE_AEN                   0x1000
373*4882a593Smuzhiyun #define TW_EVENT_SOURCE_COMMAND               0x1001
374*4882a593Smuzhiyun #define TW_EVENT_SOURCE_PCHIP                 0x1002
375*4882a593Smuzhiyun #define TW_EVENT_SOURCE_DRIVER                0x1003
376*4882a593Smuzhiyun #define TW_IOCTL_GET_COMPATIBILITY_INFO	      0x101
377*4882a593Smuzhiyun #define TW_IOCTL_GET_LAST_EVENT               0x102
378*4882a593Smuzhiyun #define TW_IOCTL_GET_FIRST_EVENT              0x103
379*4882a593Smuzhiyun #define TW_IOCTL_GET_NEXT_EVENT               0x104
380*4882a593Smuzhiyun #define TW_IOCTL_GET_PREVIOUS_EVENT           0x105
381*4882a593Smuzhiyun #define TW_IOCTL_GET_LOCK                     0x106
382*4882a593Smuzhiyun #define TW_IOCTL_RELEASE_LOCK                 0x107
383*4882a593Smuzhiyun #define TW_IOCTL_FIRMWARE_PASS_THROUGH        0x108
384*4882a593Smuzhiyun #define TW_IOCTL_ERROR_STATUS_NOT_LOCKED      0x1001 // Not locked
385*4882a593Smuzhiyun #define TW_IOCTL_ERROR_STATUS_LOCKED          0x1002 // Already locked
386*4882a593Smuzhiyun #define TW_IOCTL_ERROR_STATUS_NO_MORE_EVENTS  0x1003 // No more events
387*4882a593Smuzhiyun #define TW_IOCTL_ERROR_STATUS_AEN_CLOBBER     0x1004 // AEN clobber occurred
388*4882a593Smuzhiyun #define TW_IOCTL_ERROR_OS_EFAULT	      -EFAULT // Bad address
389*4882a593Smuzhiyun #define TW_IOCTL_ERROR_OS_EINTR		      -EINTR  // Interrupted system call
390*4882a593Smuzhiyun #define TW_IOCTL_ERROR_OS_EINVAL	      -EINVAL // Invalid argument
391*4882a593Smuzhiyun #define TW_IOCTL_ERROR_OS_ENOMEM	      -ENOMEM // Out of memory
392*4882a593Smuzhiyun #define TW_IOCTL_ERROR_OS_ERESTARTSYS	      -ERESTARTSYS // Restart system call
393*4882a593Smuzhiyun #define TW_IOCTL_ERROR_OS_EIO		      -EIO // I/O error
394*4882a593Smuzhiyun #define TW_IOCTL_ERROR_OS_ENOTTY	      -ENOTTY // Not a typewriter
395*4882a593Smuzhiyun #define TW_IOCTL_ERROR_OS_ENODEV	      -ENODEV // No such device
396*4882a593Smuzhiyun #define TW_ALLOCATION_LENGTH		      128
397*4882a593Smuzhiyun #define TW_SENSE_DATA_LENGTH		      18
398*4882a593Smuzhiyun #define TW_STATUS_CHECK_CONDITION	      2
399*4882a593Smuzhiyun #define TW_ERROR_LOGICAL_UNIT_NOT_SUPPORTED   0x10a
400*4882a593Smuzhiyun #define TW_ERROR_UNIT_OFFLINE                 0x128
401*4882a593Smuzhiyun #define TW_MESSAGE_SOURCE_CONTROLLER_ERROR    3
402*4882a593Smuzhiyun #define TW_MESSAGE_SOURCE_CONTROLLER_EVENT    4
403*4882a593Smuzhiyun #define TW_MESSAGE_SOURCE_LINUX_DRIVER        6
404*4882a593Smuzhiyun #define TW_DRIVER TW_MESSAGE_SOURCE_LINUX_DRIVER
405*4882a593Smuzhiyun #define TW_MESSAGE_SOURCE_LINUX_OS            9
406*4882a593Smuzhiyun #define TW_OS TW_MESSAGE_SOURCE_LINUX_OS
407*4882a593Smuzhiyun #ifndef PCI_DEVICE_ID_3WARE_9000
408*4882a593Smuzhiyun #define PCI_DEVICE_ID_3WARE_9000 0x1002
409*4882a593Smuzhiyun #endif
410*4882a593Smuzhiyun #ifndef PCI_DEVICE_ID_3WARE_9550SX
411*4882a593Smuzhiyun #define PCI_DEVICE_ID_3WARE_9550SX 0x1003
412*4882a593Smuzhiyun #endif
413*4882a593Smuzhiyun #ifndef PCI_DEVICE_ID_3WARE_9650SE
414*4882a593Smuzhiyun #define PCI_DEVICE_ID_3WARE_9650SE 0x1004
415*4882a593Smuzhiyun #endif
416*4882a593Smuzhiyun #ifndef PCI_DEVICE_ID_3WARE_9690SA
417*4882a593Smuzhiyun #define PCI_DEVICE_ID_3WARE_9690SA 0x1005
418*4882a593Smuzhiyun #endif
419*4882a593Smuzhiyun 
420*4882a593Smuzhiyun /* Bitmask macros to eliminate bitfields */
421*4882a593Smuzhiyun 
422*4882a593Smuzhiyun /* opcode: 5, reserved: 3 */
423*4882a593Smuzhiyun #define TW_OPRES_IN(x,y) ((x << 5) | (y & 0x1f))
424*4882a593Smuzhiyun #define TW_OP_OUT(x) (x & 0x1f)
425*4882a593Smuzhiyun 
426*4882a593Smuzhiyun /* opcode: 5, sgloffset: 3 */
427*4882a593Smuzhiyun #define TW_OPSGL_IN(x,y) ((x << 5) | (y & 0x1f))
428*4882a593Smuzhiyun #define TW_SGL_OUT(x) ((x >> 5) & 0x7)
429*4882a593Smuzhiyun 
430*4882a593Smuzhiyun /* severity: 3, reserved: 5 */
431*4882a593Smuzhiyun #define TW_SEV_OUT(x) (x & 0x7)
432*4882a593Smuzhiyun 
433*4882a593Smuzhiyun /* reserved_1: 4, response_id: 8, reserved_2: 20 */
434*4882a593Smuzhiyun #define TW_RESID_OUT(x) ((x >> 4) & 0xff)
435*4882a593Smuzhiyun 
436*4882a593Smuzhiyun /* request_id: 12, lun: 4 */
437*4882a593Smuzhiyun #define TW_REQ_LUN_IN(lun, request_id) (((lun << 12) & 0xf000) | (request_id & 0xfff))
438*4882a593Smuzhiyun #define TW_LUN_OUT(lun) ((lun >> 12) & 0xf)
439*4882a593Smuzhiyun 
440*4882a593Smuzhiyun /* Macros */
441*4882a593Smuzhiyun #define TW_CONTROL_REG_ADDR(x) (x->base_addr)
442*4882a593Smuzhiyun #define TW_STATUS_REG_ADDR(x) ((unsigned char __iomem *)x->base_addr + 0x4)
443*4882a593Smuzhiyun #define TW_COMMAND_QUEUE_REG_ADDR(x) (sizeof(dma_addr_t) > 4 ? ((unsigned char __iomem *)x->base_addr + 0x20) : ((unsigned char __iomem *)x->base_addr + 0x8))
444*4882a593Smuzhiyun #define TW_COMMAND_QUEUE_REG_ADDR_LARGE(x) ((unsigned char __iomem *)x->base_addr + 0x20)
445*4882a593Smuzhiyun #define TW_RESPONSE_QUEUE_REG_ADDR(x) ((unsigned char __iomem *)x->base_addr + 0xC)
446*4882a593Smuzhiyun #define TW_RESPONSE_QUEUE_REG_ADDR_LARGE(x) ((unsigned char __iomem *)x->base_addr + 0x30)
447*4882a593Smuzhiyun #define TW_CLEAR_ALL_INTERRUPTS(x) (writel(TW_STATUS_VALID_INTERRUPT, TW_CONTROL_REG_ADDR(x)))
448*4882a593Smuzhiyun #define TW_CLEAR_ATTENTION_INTERRUPT(x) (writel(TW_CONTROL_CLEAR_ATTENTION_INTERRUPT, TW_CONTROL_REG_ADDR(x)))
449*4882a593Smuzhiyun #define TW_CLEAR_HOST_INTERRUPT(x) (writel(TW_CONTROL_CLEAR_HOST_INTERRUPT, TW_CONTROL_REG_ADDR(x)))
450*4882a593Smuzhiyun #define TW_DISABLE_INTERRUPTS(x) (writel(TW_CONTROL_DISABLE_INTERRUPTS, TW_CONTROL_REG_ADDR(x)))
451*4882a593Smuzhiyun #define TW_ENABLE_AND_CLEAR_INTERRUPTS(x) (writel(TW_CONTROL_CLEAR_ATTENTION_INTERRUPT | TW_CONTROL_UNMASK_RESPONSE_INTERRUPT | TW_CONTROL_ENABLE_INTERRUPTS, TW_CONTROL_REG_ADDR(x)))
452*4882a593Smuzhiyun #define TW_MASK_COMMAND_INTERRUPT(x) (writel(TW_CONTROL_MASK_COMMAND_INTERRUPT, TW_CONTROL_REG_ADDR(x)))
453*4882a593Smuzhiyun #define TW_UNMASK_COMMAND_INTERRUPT(x) (writel(TW_CONTROL_UNMASK_COMMAND_INTERRUPT, TW_CONTROL_REG_ADDR(x)))
454*4882a593Smuzhiyun #define TW_SOFT_RESET(x) (writel(TW_CONTROL_ISSUE_SOFT_RESET | \
455*4882a593Smuzhiyun 			TW_CONTROL_CLEAR_HOST_INTERRUPT | \
456*4882a593Smuzhiyun 			TW_CONTROL_CLEAR_ATTENTION_INTERRUPT | \
457*4882a593Smuzhiyun 			TW_CONTROL_MASK_COMMAND_INTERRUPT | \
458*4882a593Smuzhiyun 			TW_CONTROL_MASK_RESPONSE_INTERRUPT | \
459*4882a593Smuzhiyun 			TW_CONTROL_CLEAR_ERROR_STATUS | \
460*4882a593Smuzhiyun 			TW_CONTROL_DISABLE_INTERRUPTS, TW_CONTROL_REG_ADDR(x)))
461*4882a593Smuzhiyun #define TW_PRINTK(h,a,b,c) { \
462*4882a593Smuzhiyun if (h) \
463*4882a593Smuzhiyun printk(KERN_WARNING "3w-9xxx: scsi%d: ERROR: (0x%02X:0x%04X): %s.\n",h->host_no,a,b,c); \
464*4882a593Smuzhiyun else \
465*4882a593Smuzhiyun printk(KERN_WARNING "3w-9xxx: ERROR: (0x%02X:0x%04X): %s.\n",a,b,c); \
466*4882a593Smuzhiyun }
467*4882a593Smuzhiyun #define TW_MAX_LUNS(srl) (srl < TW_FW_SRL_LUNS_SUPPORTED ? 1 : 16)
468*4882a593Smuzhiyun #define TW_COMMAND_SIZE (sizeof(dma_addr_t) > 4 ? 5 : 4)
469*4882a593Smuzhiyun #define TW_APACHE_MAX_SGL_LENGTH (sizeof(dma_addr_t) > 4 ? 72 : 109)
470*4882a593Smuzhiyun #define TW_ESCALADE_MAX_SGL_LENGTH (sizeof(dma_addr_t) > 4 ? 41 : 62)
471*4882a593Smuzhiyun #define TW_PADDING_LENGTH (sizeof(dma_addr_t) > 4 ? 8 : 0)
472*4882a593Smuzhiyun #define TW_CPU_TO_SGL(x) (sizeof(dma_addr_t) > 4 ? cpu_to_le64(x) : cpu_to_le32(x))
473*4882a593Smuzhiyun 
474*4882a593Smuzhiyun #pragma pack(1)
475*4882a593Smuzhiyun 
476*4882a593Smuzhiyun /* Scatter Gather List Entry */
477*4882a593Smuzhiyun typedef struct TAG_TW_SG_Entry {
478*4882a593Smuzhiyun 	dma_addr_t address;
479*4882a593Smuzhiyun 	u32 length;
480*4882a593Smuzhiyun } TW_SG_Entry;
481*4882a593Smuzhiyun 
482*4882a593Smuzhiyun /* Command Packet */
483*4882a593Smuzhiyun typedef struct TW_Command {
484*4882a593Smuzhiyun 	unsigned char opcode__sgloffset;
485*4882a593Smuzhiyun 	unsigned char size;
486*4882a593Smuzhiyun 	unsigned char request_id;
487*4882a593Smuzhiyun 	unsigned char unit__hostid;
488*4882a593Smuzhiyun 	/* Second DWORD */
489*4882a593Smuzhiyun 	unsigned char status;
490*4882a593Smuzhiyun 	unsigned char flags;
491*4882a593Smuzhiyun 	union {
492*4882a593Smuzhiyun 		unsigned short block_count;
493*4882a593Smuzhiyun 		unsigned short parameter_count;
494*4882a593Smuzhiyun 	} byte6_offset;
495*4882a593Smuzhiyun 	union {
496*4882a593Smuzhiyun 		struct {
497*4882a593Smuzhiyun 			u32 lba;
498*4882a593Smuzhiyun 			TW_SG_Entry sgl[TW_ESCALADE_MAX_SGL_LENGTH];
499*4882a593Smuzhiyun 			dma_addr_t padding;
500*4882a593Smuzhiyun 		} io;
501*4882a593Smuzhiyun 		struct {
502*4882a593Smuzhiyun 			TW_SG_Entry sgl[TW_ESCALADE_MAX_SGL_LENGTH];
503*4882a593Smuzhiyun 			u32 padding;
504*4882a593Smuzhiyun 			dma_addr_t padding2;
505*4882a593Smuzhiyun 		} param;
506*4882a593Smuzhiyun 	} byte8_offset;
507*4882a593Smuzhiyun } TW_Command;
508*4882a593Smuzhiyun 
509*4882a593Smuzhiyun /* Command Packet for 9000+ controllers */
510*4882a593Smuzhiyun typedef struct TAG_TW_Command_Apache {
511*4882a593Smuzhiyun 	unsigned char opcode__reserved;
512*4882a593Smuzhiyun 	unsigned char unit;
513*4882a593Smuzhiyun 	unsigned short request_id__lunl;
514*4882a593Smuzhiyun 	unsigned char status;
515*4882a593Smuzhiyun 	unsigned char sgl_offset;
516*4882a593Smuzhiyun 	unsigned short sgl_entries__lunh;
517*4882a593Smuzhiyun 	unsigned char cdb[16];
518*4882a593Smuzhiyun 	TW_SG_Entry sg_list[TW_APACHE_MAX_SGL_LENGTH];
519*4882a593Smuzhiyun 	unsigned char padding[TW_PADDING_LENGTH];
520*4882a593Smuzhiyun } TW_Command_Apache;
521*4882a593Smuzhiyun 
522*4882a593Smuzhiyun /* New command packet header */
523*4882a593Smuzhiyun typedef struct TAG_TW_Command_Apache_Header {
524*4882a593Smuzhiyun 	unsigned char sense_data[TW_SENSE_DATA_LENGTH];
525*4882a593Smuzhiyun 	struct {
526*4882a593Smuzhiyun 		char reserved[4];
527*4882a593Smuzhiyun 		unsigned short error;
528*4882a593Smuzhiyun 		unsigned char padding;
529*4882a593Smuzhiyun 		unsigned char severity__reserved;
530*4882a593Smuzhiyun 	} status_block;
531*4882a593Smuzhiyun 	unsigned char err_specific_desc[98];
532*4882a593Smuzhiyun 	struct {
533*4882a593Smuzhiyun 		unsigned char size_header;
534*4882a593Smuzhiyun 		unsigned short reserved;
535*4882a593Smuzhiyun 		unsigned char size_sense;
536*4882a593Smuzhiyun 	} header_desc;
537*4882a593Smuzhiyun } TW_Command_Apache_Header;
538*4882a593Smuzhiyun 
539*4882a593Smuzhiyun /* This struct is a union of the 2 command packets */
540*4882a593Smuzhiyun typedef struct TAG_TW_Command_Full {
541*4882a593Smuzhiyun 	TW_Command_Apache_Header header;
542*4882a593Smuzhiyun 	union {
543*4882a593Smuzhiyun 		TW_Command oldcommand;
544*4882a593Smuzhiyun 		TW_Command_Apache newcommand;
545*4882a593Smuzhiyun 	} command;
546*4882a593Smuzhiyun } TW_Command_Full;
547*4882a593Smuzhiyun 
548*4882a593Smuzhiyun /* Initconnection structure */
549*4882a593Smuzhiyun typedef struct TAG_TW_Initconnect {
550*4882a593Smuzhiyun 	unsigned char opcode__reserved;
551*4882a593Smuzhiyun 	unsigned char size;
552*4882a593Smuzhiyun 	unsigned char request_id;
553*4882a593Smuzhiyun 	unsigned char res2;
554*4882a593Smuzhiyun 	unsigned char status;
555*4882a593Smuzhiyun 	unsigned char flags;
556*4882a593Smuzhiyun 	unsigned short message_credits;
557*4882a593Smuzhiyun 	u32 features;
558*4882a593Smuzhiyun 	unsigned short fw_srl;
559*4882a593Smuzhiyun 	unsigned short fw_arch_id;
560*4882a593Smuzhiyun 	unsigned short fw_branch;
561*4882a593Smuzhiyun 	unsigned short fw_build;
562*4882a593Smuzhiyun 	u32 result;
563*4882a593Smuzhiyun } TW_Initconnect;
564*4882a593Smuzhiyun 
565*4882a593Smuzhiyun /* Event info structure */
566*4882a593Smuzhiyun typedef struct TAG_TW_Event
567*4882a593Smuzhiyun {
568*4882a593Smuzhiyun 	unsigned int sequence_id;
569*4882a593Smuzhiyun 	unsigned int time_stamp_sec;
570*4882a593Smuzhiyun 	unsigned short aen_code;
571*4882a593Smuzhiyun 	unsigned char severity;
572*4882a593Smuzhiyun 	unsigned char retrieved;
573*4882a593Smuzhiyun 	unsigned char repeat_count;
574*4882a593Smuzhiyun 	unsigned char parameter_len;
575*4882a593Smuzhiyun 	unsigned char parameter_data[98];
576*4882a593Smuzhiyun } TW_Event;
577*4882a593Smuzhiyun 
578*4882a593Smuzhiyun typedef struct TAG_TW_Ioctl_Driver_Command {
579*4882a593Smuzhiyun 	unsigned int control_code;
580*4882a593Smuzhiyun 	unsigned int status;
581*4882a593Smuzhiyun 	unsigned int unique_id;
582*4882a593Smuzhiyun 	unsigned int sequence_id;
583*4882a593Smuzhiyun 	unsigned int os_specific;
584*4882a593Smuzhiyun 	unsigned int buffer_length;
585*4882a593Smuzhiyun } TW_Ioctl_Driver_Command;
586*4882a593Smuzhiyun 
587*4882a593Smuzhiyun typedef struct TAG_TW_Ioctl_Apache {
588*4882a593Smuzhiyun 	TW_Ioctl_Driver_Command driver_command;
589*4882a593Smuzhiyun         char padding[488];
590*4882a593Smuzhiyun 	TW_Command_Full firmware_command;
591*4882a593Smuzhiyun 	char data_buffer[1];
592*4882a593Smuzhiyun } TW_Ioctl_Buf_Apache;
593*4882a593Smuzhiyun 
594*4882a593Smuzhiyun /* Lock structure for ioctl get/release lock */
595*4882a593Smuzhiyun typedef struct TAG_TW_Lock {
596*4882a593Smuzhiyun 	unsigned long timeout_msec;
597*4882a593Smuzhiyun 	unsigned long time_remaining_msec;
598*4882a593Smuzhiyun 	unsigned long force_flag;
599*4882a593Smuzhiyun } TW_Lock;
600*4882a593Smuzhiyun 
601*4882a593Smuzhiyun /* GetParam descriptor */
602*4882a593Smuzhiyun typedef struct {
603*4882a593Smuzhiyun 	unsigned short	table_id;
604*4882a593Smuzhiyun 	unsigned short	parameter_id;
605*4882a593Smuzhiyun 	unsigned short	parameter_size_bytes;
606*4882a593Smuzhiyun 	unsigned short  actual_parameter_size_bytes;
607*4882a593Smuzhiyun 	unsigned char	data[1];
608*4882a593Smuzhiyun } TW_Param_Apache, *PTW_Param_Apache;
609*4882a593Smuzhiyun 
610*4882a593Smuzhiyun /* Response queue */
611*4882a593Smuzhiyun typedef union TAG_TW_Response_Queue {
612*4882a593Smuzhiyun 	u32 response_id;
613*4882a593Smuzhiyun 	u32 value;
614*4882a593Smuzhiyun } TW_Response_Queue;
615*4882a593Smuzhiyun 
616*4882a593Smuzhiyun /* Compatibility information structure */
617*4882a593Smuzhiyun typedef struct TAG_TW_Compatibility_Info
618*4882a593Smuzhiyun {
619*4882a593Smuzhiyun 	char driver_version[32];
620*4882a593Smuzhiyun 	unsigned short working_srl;
621*4882a593Smuzhiyun 	unsigned short working_branch;
622*4882a593Smuzhiyun 	unsigned short working_build;
623*4882a593Smuzhiyun 	unsigned short driver_srl_high;
624*4882a593Smuzhiyun 	unsigned short driver_branch_high;
625*4882a593Smuzhiyun 	unsigned short driver_build_high;
626*4882a593Smuzhiyun 	unsigned short driver_srl_low;
627*4882a593Smuzhiyun 	unsigned short driver_branch_low;
628*4882a593Smuzhiyun 	unsigned short driver_build_low;
629*4882a593Smuzhiyun 	unsigned short fw_on_ctlr_srl;
630*4882a593Smuzhiyun 	unsigned short fw_on_ctlr_branch;
631*4882a593Smuzhiyun 	unsigned short fw_on_ctlr_build;
632*4882a593Smuzhiyun } TW_Compatibility_Info;
633*4882a593Smuzhiyun 
634*4882a593Smuzhiyun #pragma pack()
635*4882a593Smuzhiyun 
636*4882a593Smuzhiyun typedef struct TAG_TW_Device_Extension {
637*4882a593Smuzhiyun 	u32                     __iomem *base_addr;
638*4882a593Smuzhiyun 	unsigned long	       	*generic_buffer_virt[TW_Q_LENGTH];
639*4882a593Smuzhiyun 	dma_addr_t	       	generic_buffer_phys[TW_Q_LENGTH];
640*4882a593Smuzhiyun 	TW_Command_Full	       	*command_packet_virt[TW_Q_LENGTH];
641*4882a593Smuzhiyun 	dma_addr_t		command_packet_phys[TW_Q_LENGTH];
642*4882a593Smuzhiyun 	struct pci_dev		*tw_pci_dev;
643*4882a593Smuzhiyun 	struct scsi_cmnd	*srb[TW_Q_LENGTH];
644*4882a593Smuzhiyun 	unsigned char		free_queue[TW_Q_LENGTH];
645*4882a593Smuzhiyun 	unsigned char		free_head;
646*4882a593Smuzhiyun 	unsigned char		free_tail;
647*4882a593Smuzhiyun 	unsigned char		pending_queue[TW_Q_LENGTH];
648*4882a593Smuzhiyun 	unsigned char		pending_head;
649*4882a593Smuzhiyun 	unsigned char		pending_tail;
650*4882a593Smuzhiyun 	int     		state[TW_Q_LENGTH];
651*4882a593Smuzhiyun 	unsigned int		posted_request_count;
652*4882a593Smuzhiyun 	unsigned int		max_posted_request_count;
653*4882a593Smuzhiyun 	unsigned int	        pending_request_count;
654*4882a593Smuzhiyun 	unsigned int		max_pending_request_count;
655*4882a593Smuzhiyun 	unsigned int		max_sgl_entries;
656*4882a593Smuzhiyun 	unsigned int		sgl_entries;
657*4882a593Smuzhiyun 	unsigned int		num_resets;
658*4882a593Smuzhiyun 	unsigned int		sector_count;
659*4882a593Smuzhiyun 	unsigned int		max_sector_count;
660*4882a593Smuzhiyun 	unsigned int		aen_count;
661*4882a593Smuzhiyun 	struct Scsi_Host	*host;
662*4882a593Smuzhiyun 	long			flags;
663*4882a593Smuzhiyun 	int			reset_print;
664*4882a593Smuzhiyun 	TW_Event                *event_queue[TW_Q_LENGTH];
665*4882a593Smuzhiyun 	unsigned char           error_index;
666*4882a593Smuzhiyun 	unsigned char		event_queue_wrapped;
667*4882a593Smuzhiyun 	unsigned int            error_sequence_id;
668*4882a593Smuzhiyun 	int                     ioctl_sem_lock;
669*4882a593Smuzhiyun 	ktime_t                 ioctl_time;
670*4882a593Smuzhiyun 	int			chrdev_request_id;
671*4882a593Smuzhiyun 	wait_queue_head_t	ioctl_wqueue;
672*4882a593Smuzhiyun 	struct mutex		ioctl_lock;
673*4882a593Smuzhiyun 	char			aen_clobber;
674*4882a593Smuzhiyun 	TW_Compatibility_Info	tw_compat_info;
675*4882a593Smuzhiyun } TW_Device_Extension;
676*4882a593Smuzhiyun 
677*4882a593Smuzhiyun #endif /* _3W_9XXX_H */
678*4882a593Smuzhiyun 
679