blob: 6f4906ee9a5e94c4090550e78a417edd244d861b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#if (!defined(dprintk))
2# define dprintk(x)
3#endif
4
5/*------------------------------------------------------------------------------
6 * D E F I N E S
7 *----------------------------------------------------------------------------*/
8
9#define MAXIMUM_NUM_CONTAINERS 32
10
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -070011#define AAC_NUM_MGT_FIB 8
12#define AAC_NUM_IO_FIB (512 - AAC_NUM_MGT_FIB)
13#define AAC_NUM_FIB (AAC_NUM_IO_FIB + AAC_NUM_MGT_FIB)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
15#define AAC_MAX_LUN (8)
16
17#define AAC_MAX_HOSTPHYSMEMPAGES (0xfffff)
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -070018/*
19 * max_sectors is an unsigned short, otherwise limit is 0x100000000 / 512
20 * Linux has starvation problems if we permit larger than 4MB I/O ...
21 */
22#define AAC_MAX_32BIT_SGBCOUNT ((unsigned short)8192)
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24/*
25 * These macros convert from physical channels to virtual channels
26 */
27#define CONTAINER_CHANNEL (0)
28#define ID_LUN_TO_CONTAINER(id, lun) (id)
29#define CONTAINER_TO_CHANNEL(cont) (CONTAINER_CHANNEL)
30#define CONTAINER_TO_ID(cont) (cont)
31#define CONTAINER_TO_LUN(cont) (0)
32
33#define aac_phys_to_logical(x) (x+1)
34#define aac_logical_to_phys(x) (x?x-1:0)
35
36/* #define AAC_DETAILED_STATUS_INFO */
37
38struct diskparm
39{
40 int heads;
41 int sectors;
42 int cylinders;
43};
44
45
46/*
47 * DON'T CHANGE THE ORDER, this is set by the firmware
48 */
49
50#define CT_NONE 0
51#define CT_VOLUME 1
52#define CT_MIRROR 2
53#define CT_STRIPE 3
54#define CT_RAID5 4
55#define CT_SSRW 5
56#define CT_SSRO 6
57#define CT_MORPH 7
58#define CT_PASSTHRU 8
59#define CT_RAID4 9
60#define CT_RAID10 10 /* stripe of mirror */
61#define CT_RAID00 11 /* stripe of stripe */
62#define CT_VOLUME_OF_MIRRORS 12 /* volume of mirror */
63#define CT_PSEUDO_RAID 13 /* really raid4 */
64#define CT_LAST_VOLUME_TYPE 14
65#define CT_OK 218
66
67/*
68 * Types of objects addressable in some fashion by the client.
69 * This is a superset of those objects handled just by the filesystem
70 * and includes "raw" objects that an administrator would use to
71 * configure containers and filesystems.
72 */
73
74#define FT_REG 1 /* regular file */
75#define FT_DIR 2 /* directory */
76#define FT_BLK 3 /* "block" device - reserved */
77#define FT_CHR 4 /* "character special" device - reserved */
78#define FT_LNK 5 /* symbolic link */
79#define FT_SOCK 6 /* socket */
80#define FT_FIFO 7 /* fifo */
81#define FT_FILESYS 8 /* ADAPTEC's "FSA"(tm) filesystem */
82#define FT_DRIVE 9 /* physical disk - addressable in scsi by bus/id/lun */
83#define FT_SLICE 10 /* virtual disk - raw volume - slice */
84#define FT_PARTITION 11 /* FSA partition - carved out of a slice - building block for containers */
85#define FT_VOLUME 12 /* Container - Volume Set */
86#define FT_STRIPE 13 /* Container - Stripe Set */
87#define FT_MIRROR 14 /* Container - Mirror Set */
88#define FT_RAID5 15 /* Container - Raid 5 Set */
89#define FT_DATABASE 16 /* Storage object with "foreign" content manager */
90
91/*
92 * Host side memory scatter gather list
93 * Used by the adapter for read, write, and readdirplus operations
94 * We have separate 32 and 64 bit version because even
95 * on 64 bit systems not all cards support the 64 bit version
96 */
97struct sgentry {
Mark Haverkamp 56b58712005-04-27 06:05:51 -070098 __le32 addr; /* 32-bit address. */
99 __le32 count; /* Length. */
100};
101
102struct user_sgentry {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 u32 addr; /* 32-bit address. */
104 u32 count; /* Length. */
105};
106
107struct sgentry64 {
Mark Haverkamp 56b58712005-04-27 06:05:51 -0700108 __le32 addr[2]; /* 64-bit addr. 2 pieces for data alignment */
109 __le32 count; /* Length. */
110};
111
112struct user_sgentry64 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 u32 addr[2]; /* 64-bit addr. 2 pieces for data alignment */
114 u32 count; /* Length. */
115};
116
117/*
118 * SGMAP
119 *
120 * This is the SGMAP structure for all commands that use
121 * 32-bit addressing.
122 */
123
124struct sgmap {
Mark Haverkamp 56b58712005-04-27 06:05:51 -0700125 __le32 count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 struct sgentry sg[1];
127};
128
Mark Haverkamp 56b58712005-04-27 06:05:51 -0700129struct user_sgmap {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 u32 count;
Mark Haverkamp 56b58712005-04-27 06:05:51 -0700131 struct user_sgentry sg[1];
132};
133
134struct sgmap64 {
135 __le32 count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 struct sgentry64 sg[1];
137};
138
Mark Haverkamp 56b58712005-04-27 06:05:51 -0700139struct user_sgmap64 {
140 u32 count;
141 struct user_sgentry64 sg[1];
142};
143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144struct creation_info
145{
146 u8 buildnum; /* e.g., 588 */
147 u8 usec; /* e.g., 588 */
148 u8 via; /* e.g., 1 = FSU,
149 * 2 = API
150 */
151 u8 year; /* e.g., 1997 = 97 */
Mark Haverkamp 56b58712005-04-27 06:05:51 -0700152 __le32 date; /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 * unsigned Month :4; // 1 - 12
154 * unsigned Day :6; // 1 - 32
155 * unsigned Hour :6; // 0 - 23
156 * unsigned Minute :6; // 0 - 60
157 * unsigned Second :6; // 0 - 60
158 */
Mark Haverkamp 56b58712005-04-27 06:05:51 -0700159 __le32 serial[2]; /* e.g., 0x1DEADB0BFAFAF001 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160};
161
162
163/*
164 * Define all the constants needed for the communication interface
165 */
166
167/*
168 * Define how many queue entries each queue will have and the total
169 * number of entries for the entire communication interface. Also define
170 * how many queues we support.
171 *
172 * This has to match the controller
173 */
174
175#define NUMBER_OF_COMM_QUEUES 8 // 4 command; 4 response
176#define HOST_HIGH_CMD_ENTRIES 4
177#define HOST_NORM_CMD_ENTRIES 8
178#define ADAP_HIGH_CMD_ENTRIES 4
179#define ADAP_NORM_CMD_ENTRIES 512
180#define HOST_HIGH_RESP_ENTRIES 4
181#define HOST_NORM_RESP_ENTRIES 512
182#define ADAP_HIGH_RESP_ENTRIES 4
183#define ADAP_NORM_RESP_ENTRIES 8
184
185#define TOTAL_QUEUE_ENTRIES \
186 (HOST_NORM_CMD_ENTRIES + HOST_HIGH_CMD_ENTRIES + ADAP_NORM_CMD_ENTRIES + ADAP_HIGH_CMD_ENTRIES + \
187 HOST_NORM_RESP_ENTRIES + HOST_HIGH_RESP_ENTRIES + ADAP_NORM_RESP_ENTRIES + ADAP_HIGH_RESP_ENTRIES)
188
189
190/*
191 * Set the queues on a 16 byte alignment
192 */
193
194#define QUEUE_ALIGNMENT 16
195
196/*
197 * The queue headers define the Communication Region queues. These
198 * are physically contiguous and accessible by both the adapter and the
199 * host. Even though all queue headers are in the same contiguous block
200 * they will be represented as individual units in the data structures.
201 */
202
203struct aac_entry {
Mark Haverkamp 56b58712005-04-27 06:05:51 -0700204 __le32 size; /* Size in bytes of Fib which this QE points to */
205 __le32 addr; /* Receiver address of the FIB */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206};
207
208/*
209 * The adapter assumes the ProducerIndex and ConsumerIndex are grouped
210 * adjacently and in that order.
211 */
212
213struct aac_qhdr {
Mark Haverkamp 56b58712005-04-27 06:05:51 -0700214 __le64 header_addr;/* Address to hand the adapter to access
215 to this queue head */
216 __le32 *producer; /* The producer index for this queue (host address) */
217 __le32 *consumer; /* The consumer index for this queue (host address) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218};
219
220/*
221 * Define all the events which the adapter would like to notify
222 * the host of.
223 */
224
225#define HostNormCmdQue 1 /* Change in host normal priority command queue */
226#define HostHighCmdQue 2 /* Change in host high priority command queue */
227#define HostNormRespQue 3 /* Change in host normal priority response queue */
228#define HostHighRespQue 4 /* Change in host high priority response queue */
229#define AdapNormRespNotFull 5
230#define AdapHighRespNotFull 6
231#define AdapNormCmdNotFull 7
232#define AdapHighCmdNotFull 8
233#define SynchCommandComplete 9
234#define AdapInternalError 0xfe /* The adapter detected an internal error shutting down */
235
236/*
237 * Define all the events the host wishes to notify the
238 * adapter of. The first four values much match the Qid the
239 * corresponding queue.
240 */
241
242#define AdapNormCmdQue 2
243#define AdapHighCmdQue 3
244#define AdapNormRespQue 6
245#define AdapHighRespQue 7
246#define HostShutdown 8
247#define HostPowerFail 9
248#define FatalCommError 10
249#define HostNormRespNotFull 11
250#define HostHighRespNotFull 12
251#define HostNormCmdNotFull 13
252#define HostHighCmdNotFull 14
253#define FastIo 15
254#define AdapPrintfDone 16
255
256/*
257 * Define all the queues that the adapter and host use to communicate
258 * Number them to match the physical queue layout.
259 */
260
261enum aac_queue_types {
262 HostNormCmdQueue = 0, /* Adapter to host normal priority command traffic */
263 HostHighCmdQueue, /* Adapter to host high priority command traffic */
264 AdapNormCmdQueue, /* Host to adapter normal priority command traffic */
265 AdapHighCmdQueue, /* Host to adapter high priority command traffic */
266 HostNormRespQueue, /* Adapter to host normal priority response traffic */
267 HostHighRespQueue, /* Adapter to host high priority response traffic */
268 AdapNormRespQueue, /* Host to adapter normal priority response traffic */
269 AdapHighRespQueue /* Host to adapter high priority response traffic */
270};
271
272/*
273 * Assign type values to the FSA communication data structures
274 */
275
276#define FIB_MAGIC 0x0001
277
278/*
279 * Define the priority levels the FSA communication routines support.
280 */
281
282#define FsaNormal 1
283#define FsaHigh 2
284
285/*
286 * Define the FIB. The FIB is the where all the requested data and
287 * command information are put to the application on the FSA adapter.
288 */
289
290struct aac_fibhdr {
Mark Haverkamp 56b58712005-04-27 06:05:51 -0700291 __le32 XferState; /* Current transfer state for this CCB */
292 __le16 Command; /* Routing information for the destination */
293 u8 StructType; /* Type FIB */
294 u8 Flags; /* Flags for FIB */
295 __le16 Size; /* Size of this FIB in bytes */
296 __le16 SenderSize; /* Size of the FIB in the sender
297 (for response sizing) */
298 __le32 SenderFibAddress; /* Host defined data in the FIB */
299 __le32 ReceiverFibAddress;/* Logical address of this FIB for
300 the adapter */
301 u32 SenderData; /* Place holder for the sender to store data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 union {
303 struct {
Mark Haverkamp 56b58712005-04-27 06:05:51 -0700304 __le32 _ReceiverTimeStart; /* Timestamp for
305 receipt of fib */
306 __le32 _ReceiverTimeDone; /* Timestamp for
307 completion of fib */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 } _s;
309 } _u;
310};
311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312struct hw_fib {
313 struct aac_fibhdr header;
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700314 u8 data[512-sizeof(struct aac_fibhdr)]; // Command specific data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315};
316
317/*
318 * FIB commands
319 */
320
321#define TestCommandResponse 1
322#define TestAdapterCommand 2
323/*
324 * Lowlevel and comm commands
325 */
326#define LastTestCommand 100
327#define ReinitHostNormCommandQueue 101
328#define ReinitHostHighCommandQueue 102
329#define ReinitHostHighRespQueue 103
330#define ReinitHostNormRespQueue 104
331#define ReinitAdapNormCommandQueue 105
332#define ReinitAdapHighCommandQueue 107
333#define ReinitAdapHighRespQueue 108
334#define ReinitAdapNormRespQueue 109
335#define InterfaceShutdown 110
336#define DmaCommandFib 120
337#define StartProfile 121
338#define TermProfile 122
339#define SpeedTest 123
340#define TakeABreakPt 124
341#define RequestPerfData 125
342#define SetInterruptDefTimer 126
343#define SetInterruptDefCount 127
344#define GetInterruptDefStatus 128
345#define LastCommCommand 129
346/*
347 * Filesystem commands
348 */
349#define NuFileSystem 300
350#define UFS 301
351#define HostFileSystem 302
352#define LastFileSystemCommand 303
353/*
354 * Container Commands
355 */
356#define ContainerCommand 500
357#define ContainerCommand64 501
358/*
359 * Cluster Commands
360 */
361#define ClusterCommand 550
362/*
363 * Scsi Port commands (scsi passthrough)
364 */
365#define ScsiPortCommand 600
366#define ScsiPortCommand64 601
367/*
368 * Misc house keeping and generic adapter initiated commands
369 */
370#define AifRequest 700
371#define CheckRevision 701
372#define FsaHostShutdown 702
373#define RequestAdapterInfo 703
374#define IsAdapterPaused 704
375#define SendHostTime 705
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700376#define RequestSupplementAdapterInfo 706
377#define LastMiscCommand 707
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700379/*
380 * Commands that will target the failover level on the FSA adapter
381 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
383enum fib_xfer_state {
384 HostOwned = (1<<0),
385 AdapterOwned = (1<<1),
386 FibInitialized = (1<<2),
387 FibEmpty = (1<<3),
388 AllocatedFromPool = (1<<4),
389 SentFromHost = (1<<5),
390 SentFromAdapter = (1<<6),
391 ResponseExpected = (1<<7),
392 NoResponseExpected = (1<<8),
393 AdapterProcessed = (1<<9),
394 HostProcessed = (1<<10),
395 HighPriority = (1<<11),
396 NormalPriority = (1<<12),
397 Async = (1<<13),
398 AsyncIo = (1<<13), // rpbfix: remove with new regime
399 PageFileIo = (1<<14), // rpbfix: remove with new regime
400 ShutdownRequest = (1<<15),
401 LazyWrite = (1<<16), // rpbfix: remove with new regime
402 AdapterMicroFib = (1<<17),
403 BIOSFibPath = (1<<18),
404 FastResponseCapable = (1<<19),
405 ApiFib = (1<<20) // Its an API Fib.
406};
407
408/*
409 * The following defines needs to be updated any time there is an
410 * incompatible change made to the aac_init structure.
411 */
412
413#define ADAPTER_INIT_STRUCT_REVISION 3
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700414#define ADAPTER_INIT_STRUCT_REVISION_4 4 // rocket science
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
416struct aac_init
417{
Mark Haverkamp 56b58712005-04-27 06:05:51 -0700418 __le32 InitStructRevision;
419 __le32 MiniPortRevision;
420 __le32 fsrev;
421 __le32 CommHeaderAddress;
422 __le32 FastIoCommAreaAddress;
423 __le32 AdapterFibsPhysicalAddress;
424 __le32 AdapterFibsVirtualAddress;
425 __le32 AdapterFibsSize;
426 __le32 AdapterFibAlign;
427 __le32 printfbuf;
428 __le32 printfbufsiz;
429 __le32 HostPhysMemPages; /* number of 4k pages of host
430 physical memory */
431 __le32 HostElapsedSeconds; /* number of seconds since 1970. */
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700432 /*
433 * ADAPTER_INIT_STRUCT_REVISION_4 begins here
434 */
435 __le32 InitFlags; /* flags for supported features */
436#define INITFLAGS_NEW_COMM_SUPPORTED 0x00000001
437 __le32 MaxIoCommands; /* max outstanding commands */
438 __le32 MaxIoSize; /* largest I/O command */
439 __le32 MaxFibSize; /* largest FIB to adapter */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440};
441
442enum aac_log_level {
443 LOG_AAC_INIT = 10,
444 LOG_AAC_INFORMATIONAL = 20,
445 LOG_AAC_WARNING = 30,
446 LOG_AAC_LOW_ERROR = 40,
447 LOG_AAC_MEDIUM_ERROR = 50,
448 LOG_AAC_HIGH_ERROR = 60,
449 LOG_AAC_PANIC = 70,
450 LOG_AAC_DEBUG = 80,
451 LOG_AAC_WINDBG_PRINT = 90
452};
453
454#define FSAFS_NTC_GET_ADAPTER_FIB_CONTEXT 0x030b
455#define FSAFS_NTC_FIB_CONTEXT 0x030c
456
457struct aac_dev;
458
459struct adapter_ops
460{
461 void (*adapter_interrupt)(struct aac_dev *dev);
462 void (*adapter_notify)(struct aac_dev *dev, u32 event);
Mark Haverkampbd1aac82005-08-03 15:39:01 -0700463 void (*adapter_disable_int)(struct aac_dev *dev);
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700464 int (*adapter_sync_cmd)(struct aac_dev *dev, u32 command, u32 p1, u32 p2, u32 p3, u32 p4, u32 p5, u32 p6, u32 *status, u32 *r1, u32 *r2, u32 *r3, u32 *r4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 int (*adapter_check_health)(struct aac_dev *dev);
466};
467
468/*
469 * Define which interrupt handler needs to be installed
470 */
471
472struct aac_driver_ident
473{
474 int (*init)(struct aac_dev *dev);
475 char * name;
476 char * vname;
477 char * model;
478 u16 channels;
479 int quirks;
480};
481/*
482 * Some adapter firmware needs communication memory
483 * below 2gig. This tells the init function to set the
484 * dma mask such that fib memory will be allocated where the
485 * adapter firmware can get to it.
486 */
487#define AAC_QUIRK_31BIT 0x0001
488
489/*
490 * Some adapter firmware, when the raid card's cache is turned off, can not
491 * split up scatter gathers in order to deal with the limits of the
492 * underlying CHIM. This limit is 34 scatter gather elements.
493 */
494#define AAC_QUIRK_34SG 0x0002
495
496/*
497 * This adapter is a slave (no Firmware)
498 */
499#define AAC_QUIRK_SLAVE 0x0004
500
501/*
502 * This adapter is a master.
503 */
504#define AAC_QUIRK_MASTER 0x0008
505
506/*
507 * The adapter interface specs all queues to be located in the same
508 * physically contigous block. The host structure that defines the
509 * commuication queues will assume they are each a separate physically
510 * contigous memory region that will support them all being one big
511 * contigous block.
512 * There is a command and response queue for each level and direction of
513 * commuication. These regions are accessed by both the host and adapter.
514 */
515
516struct aac_queue {
517 u64 logical; /*address we give the adapter */
518 struct aac_entry *base; /*system virtual address */
519 struct aac_qhdr headers; /*producer,consumer q headers*/
520 u32 entries; /*Number of queue entries */
521 wait_queue_head_t qfull; /*Event to wait on if q full */
522 wait_queue_head_t cmdready; /*Cmd ready from the adapter */
523 /* This is only valid for adapter to host command queues. */
524 spinlock_t *lock; /* Spinlock for this queue must take this lock before accessing the lock */
525 spinlock_t lockdata; /* Actual lock (used only on one side of the lock) */
526 unsigned long SavedIrql; /* Previous IRQL when the spin lock is taken */
527 u32 padding; /* Padding - FIXME - can remove I believe */
528 struct list_head cmdq; /* A queue of FIBs which need to be prcessed by the FS thread. This is */
529 /* only valid for command queues which receive entries from the adapter. */
530 struct list_head pendingq; /* A queue of outstanding fib's to the adapter. */
531 u32 numpending; /* Number of entries on outstanding queue. */
532 struct aac_dev * dev; /* Back pointer to adapter structure */
533};
534
535/*
536 * Message queues. The order here is important, see also the
537 * queue type ordering
538 */
539
540struct aac_queue_block
541{
542 struct aac_queue queue[8];
543};
544
545/*
546 * SaP1 Message Unit Registers
547 */
548
549struct sa_drawbridge_CSR {
550 /* Offset | Name */
551 __le32 reserved[10]; /* 00h-27h | Reserved */
552 u8 LUT_Offset; /* 28h | Lookup Table Offset */
553 u8 reserved1[3]; /* 29h-2bh | Reserved */
554 __le32 LUT_Data; /* 2ch | Looup Table Data */
555 __le32 reserved2[26]; /* 30h-97h | Reserved */
556 __le16 PRICLEARIRQ; /* 98h | Primary Clear Irq */
557 __le16 SECCLEARIRQ; /* 9ah | Secondary Clear Irq */
558 __le16 PRISETIRQ; /* 9ch | Primary Set Irq */
559 __le16 SECSETIRQ; /* 9eh | Secondary Set Irq */
560 __le16 PRICLEARIRQMASK;/* a0h | Primary Clear Irq Mask */
561 __le16 SECCLEARIRQMASK;/* a2h | Secondary Clear Irq Mask */
562 __le16 PRISETIRQMASK; /* a4h | Primary Set Irq Mask */
563 __le16 SECSETIRQMASK; /* a6h | Secondary Set Irq Mask */
564 __le32 MAILBOX0; /* a8h | Scratchpad 0 */
565 __le32 MAILBOX1; /* ach | Scratchpad 1 */
566 __le32 MAILBOX2; /* b0h | Scratchpad 2 */
567 __le32 MAILBOX3; /* b4h | Scratchpad 3 */
568 __le32 MAILBOX4; /* b8h | Scratchpad 4 */
569 __le32 MAILBOX5; /* bch | Scratchpad 5 */
570 __le32 MAILBOX6; /* c0h | Scratchpad 6 */
571 __le32 MAILBOX7; /* c4h | Scratchpad 7 */
572 __le32 ROM_Setup_Data; /* c8h | Rom Setup and Data */
573 __le32 ROM_Control_Addr;/* cch | Rom Control and Address */
574 __le32 reserved3[12]; /* d0h-ffh | reserved */
575 __le32 LUT[64]; /* 100h-1ffh | Lookup Table Entries */
576};
577
578#define Mailbox0 SaDbCSR.MAILBOX0
579#define Mailbox1 SaDbCSR.MAILBOX1
580#define Mailbox2 SaDbCSR.MAILBOX2
581#define Mailbox3 SaDbCSR.MAILBOX3
582#define Mailbox4 SaDbCSR.MAILBOX4
583#define Mailbox5 SaDbCSR.MAILBOX5
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700584#define Mailbox6 SaDbCSR.MAILBOX6
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585#define Mailbox7 SaDbCSR.MAILBOX7
586
587#define DoorbellReg_p SaDbCSR.PRISETIRQ
588#define DoorbellReg_s SaDbCSR.SECSETIRQ
589#define DoorbellClrReg_p SaDbCSR.PRICLEARIRQ
590
591
592#define DOORBELL_0 0x0001
593#define DOORBELL_1 0x0002
594#define DOORBELL_2 0x0004
595#define DOORBELL_3 0x0008
596#define DOORBELL_4 0x0010
597#define DOORBELL_5 0x0020
598#define DOORBELL_6 0x0040
599
600
601#define PrintfReady DOORBELL_5
602#define PrintfDone DOORBELL_5
603
604struct sa_registers {
605 struct sa_drawbridge_CSR SaDbCSR; /* 98h - c4h */
606};
607
608
609#define Sa_MINIPORT_REVISION 1
610
611#define sa_readw(AEP, CSR) readl(&((AEP)->regs.sa->CSR))
612#define sa_readl(AEP, CSR) readl(&((AEP)->regs.sa->CSR))
613#define sa_writew(AEP, CSR, value) writew(value, &((AEP)->regs.sa->CSR))
614#define sa_writel(AEP, CSR, value) writel(value, &((AEP)->regs.sa->CSR))
615
616/*
617 * Rx Message Unit Registers
618 */
619
620struct rx_mu_registers {
621 /* Local | PCI*| Name */
622 __le32 ARSR; /* 1300h | 00h | APIC Register Select Register */
623 __le32 reserved0; /* 1304h | 04h | Reserved */
624 __le32 AWR; /* 1308h | 08h | APIC Window Register */
625 __le32 reserved1; /* 130Ch | 0Ch | Reserved */
626 __le32 IMRx[2]; /* 1310h | 10h | Inbound Message Registers */
627 __le32 OMRx[2]; /* 1318h | 18h | Outbound Message Registers */
628 __le32 IDR; /* 1320h | 20h | Inbound Doorbell Register */
629 __le32 IISR; /* 1324h | 24h | Inbound Interrupt
630 Status Register */
631 __le32 IIMR; /* 1328h | 28h | Inbound Interrupt
632 Mask Register */
633 __le32 ODR; /* 132Ch | 2Ch | Outbound Doorbell Register */
634 __le32 OISR; /* 1330h | 30h | Outbound Interrupt
635 Status Register */
636 __le32 OIMR; /* 1334h | 34h | Outbound Interrupt
637 Mask Register */
638 /* * Must access through ATU Inbound
639 Translation Window */
640};
641
642struct rx_inbound {
643 __le32 Mailbox[8];
644};
645
646#define InboundMailbox0 IndexRegs.Mailbox[0]
647#define InboundMailbox1 IndexRegs.Mailbox[1]
648#define InboundMailbox2 IndexRegs.Mailbox[2]
649#define InboundMailbox3 IndexRegs.Mailbox[3]
650#define InboundMailbox4 IndexRegs.Mailbox[4]
651#define InboundMailbox5 IndexRegs.Mailbox[5]
652#define InboundMailbox6 IndexRegs.Mailbox[6]
653
654#define INBOUNDDOORBELL_0 0x00000001
655#define INBOUNDDOORBELL_1 0x00000002
656#define INBOUNDDOORBELL_2 0x00000004
657#define INBOUNDDOORBELL_3 0x00000008
658#define INBOUNDDOORBELL_4 0x00000010
659#define INBOUNDDOORBELL_5 0x00000020
660#define INBOUNDDOORBELL_6 0x00000040
661
662#define OUTBOUNDDOORBELL_0 0x00000001
663#define OUTBOUNDDOORBELL_1 0x00000002
664#define OUTBOUNDDOORBELL_2 0x00000004
665#define OUTBOUNDDOORBELL_3 0x00000008
666#define OUTBOUNDDOORBELL_4 0x00000010
667
668#define InboundDoorbellReg MUnit.IDR
669#define OutboundDoorbellReg MUnit.ODR
670
671struct rx_registers {
672 struct rx_mu_registers MUnit; /* 1300h - 1334h */
673 __le32 reserved1[6]; /* 1338h - 134ch */
674 struct rx_inbound IndexRegs;
675};
676
677#define rx_readb(AEP, CSR) readb(&((AEP)->regs.rx->CSR))
678#define rx_readl(AEP, CSR) readl(&((AEP)->regs.rx->CSR))
679#define rx_writeb(AEP, CSR, value) writeb(value, &((AEP)->regs.rx->CSR))
680#define rx_writel(AEP, CSR, value) writel(value, &((AEP)->regs.rx->CSR))
681
682/*
683 * Rkt Message Unit Registers (same as Rx, except a larger reserve region)
684 */
685
686#define rkt_mu_registers rx_mu_registers
687#define rkt_inbound rx_inbound
688
689struct rkt_registers {
690 struct rkt_mu_registers MUnit; /* 1300h - 1334h */
691 __le32 reserved1[1010]; /* 1338h - 22fch */
692 struct rkt_inbound IndexRegs; /* 2300h - */
693};
694
695#define rkt_readb(AEP, CSR) readb(&((AEP)->regs.rkt->CSR))
696#define rkt_readl(AEP, CSR) readl(&((AEP)->regs.rkt->CSR))
697#define rkt_writeb(AEP, CSR, value) writeb(value, &((AEP)->regs.rkt->CSR))
698#define rkt_writel(AEP, CSR, value) writel(value, &((AEP)->regs.rkt->CSR))
699
700struct fib;
701
702typedef void (*fib_callback)(void *ctxt, struct fib *fibctx);
703
704struct aac_fib_context {
705 s16 type; // used for verification of structure
706 s16 size;
707 u32 unique; // unique value representing this context
708 ulong jiffies; // used for cleanup - dmb changed to ulong
709 struct list_head next; // used to link context's into a linked list
710 struct semaphore wait_sem; // this is used to wait for the next fib to arrive.
711 int wait; // Set to true when thread is in WaitForSingleObject
712 unsigned long count; // total number of FIBs on FibList
713 struct list_head fib_list; // this holds fibs and their attachd hw_fibs
714};
715
716struct sense_data {
717 u8 error_code; /* 70h (current errors), 71h(deferred errors) */
718 u8 valid:1; /* A valid bit of one indicates that the information */
719 /* field contains valid information as defined in the
720 * SCSI-2 Standard.
721 */
722 u8 segment_number; /* Only used for COPY, COMPARE, or COPY AND VERIFY Commands */
723 u8 sense_key:4; /* Sense Key */
724 u8 reserved:1;
725 u8 ILI:1; /* Incorrect Length Indicator */
726 u8 EOM:1; /* End Of Medium - reserved for random access devices */
727 u8 filemark:1; /* Filemark - reserved for random access devices */
728
729 u8 information[4]; /* for direct-access devices, contains the unsigned
730 * logical block address or residue associated with
731 * the sense key
732 */
733 u8 add_sense_len; /* number of additional sense bytes to follow this field */
734 u8 cmnd_info[4]; /* not used */
735 u8 ASC; /* Additional Sense Code */
736 u8 ASCQ; /* Additional Sense Code Qualifier */
737 u8 FRUC; /* Field Replaceable Unit Code - not used */
738 u8 bit_ptr:3; /* indicates which byte of the CDB or parameter data
739 * was in error
740 */
741 u8 BPV:1; /* bit pointer valid (BPV): 1- indicates that
742 * the bit_ptr field has valid value
743 */
744 u8 reserved2:2;
745 u8 CD:1; /* command data bit: 1- illegal parameter in CDB.
746 * 0- illegal parameter in data.
747 */
748 u8 SKSV:1;
749 u8 field_ptr[2]; /* byte of the CDB or parameter data in error */
750};
751
752struct fsa_dev_info {
753 u64 last;
754 u64 size;
755 u32 type;
756 u16 queue_depth;
757 u8 valid;
758 u8 ro;
759 u8 locked;
760 u8 deleted;
761 char devname[8];
762 struct sense_data sense_data;
763};
764
765struct fib {
766 void *next; /* this is used by the allocator */
767 s16 type;
768 s16 size;
769 /*
770 * The Adapter that this I/O is destined for.
771 */
772 struct aac_dev *dev;
773 /*
774 * This is the event the sendfib routine will wait on if the
775 * caller did not pass one and this is synch io.
776 */
777 struct semaphore event_wait;
778 spinlock_t event_lock;
779
780 u32 done; /* gets set to 1 when fib is complete */
781 fib_callback callback;
782 void *callback_data;
783 u32 flags; // u32 dmb was ulong
784 /*
785 * The following is used to put this fib context onto the
786 * Outstanding I/O queue.
787 */
788 struct list_head queue;
789 /*
790 * And for the internal issue/reply queues (we may be able
791 * to merge these two)
792 */
793 struct list_head fiblink;
794 void *data;
795 struct hw_fib *hw_fib; /* Actual shared object */
796 dma_addr_t hw_fib_pa; /* physical address of hw_fib*/
797};
798
799/*
800 * Adapter Information Block
801 *
802 * This is returned by the RequestAdapterInfo block
803 */
804
805struct aac_adapter_info
806{
Mark Haverkamp 56b58712005-04-27 06:05:51 -0700807 __le32 platform;
808 __le32 cpu;
809 __le32 subcpu;
810 __le32 clock;
811 __le32 execmem;
812 __le32 buffermem;
813 __le32 totalmem;
814 __le32 kernelrev;
815 __le32 kernelbuild;
816 __le32 monitorrev;
817 __le32 monitorbuild;
818 __le32 hwrev;
819 __le32 hwbuild;
820 __le32 biosrev;
821 __le32 biosbuild;
822 __le32 cluster;
823 __le32 clusterchannelmask;
824 __le32 serial[2];
825 __le32 battery;
826 __le32 options;
827 __le32 OEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828};
829
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700830struct aac_supplement_adapter_info
831{
832 u8 AdapterTypeText[17+1];
833 u8 Pad[2];
834 __le32 FlashMemoryByteSize;
835 __le32 FlashImageId;
836 __le32 MaxNumberPorts;
837 __le32 Version;
838 __le32 FeatureBits;
839 u8 SlotNumber;
840 u8 ReservedPad0[0];
841 u8 BuildDate[12];
842 __le32 CurrentNumberPorts;
843 __le32 ReservedGrowth[24];
844};
845#define AAC_FEATURE_FALCON 0x00000010
846#define AAC_SIS_VERSION_V3 3
847#define AAC_SIS_SLOT_UNKNOWN 0xFF
848
Mark Haverkamp84971732005-06-20 11:55:24 -0700849#define GetBusInfo 0x00000009
850struct aac_bus_info {
851 __le32 Command; /* VM_Ioctl */
852 __le32 ObjType; /* FT_DRIVE */
853 __le32 MethodId; /* 1 = SCSI Layer */
854 __le32 ObjectId; /* Handle */
855 __le32 CtlCmd; /* GetBusInfo */
856};
857
858struct aac_bus_info_response {
859 __le32 Status; /* ST_OK */
860 __le32 ObjType;
861 __le32 MethodId; /* unused */
862 __le32 ObjectId; /* unused */
863 __le32 CtlCmd; /* unused */
864 __le32 ProbeComplete;
865 __le32 BusCount;
866 __le32 TargetsPerBus;
867 u8 InitiatorBusId[10];
868 u8 BusValid[10];
869};
870
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871/*
872 * Battery platforms
873 */
874#define AAC_BAT_REQ_PRESENT (1)
875#define AAC_BAT_REQ_NOTPRESENT (2)
876#define AAC_BAT_OPT_PRESENT (3)
877#define AAC_BAT_OPT_NOTPRESENT (4)
878#define AAC_BAT_NOT_SUPPORTED (5)
879/*
880 * cpu types
881 */
882#define AAC_CPU_SIMULATOR (1)
883#define AAC_CPU_I960 (2)
884#define AAC_CPU_STRONGARM (3)
885
886/*
887 * Supported Options
888 */
889#define AAC_OPT_SNAPSHOT cpu_to_le32(1)
890#define AAC_OPT_CLUSTERS cpu_to_le32(1<<1)
891#define AAC_OPT_WRITE_CACHE cpu_to_le32(1<<2)
892#define AAC_OPT_64BIT_DATA cpu_to_le32(1<<3)
893#define AAC_OPT_HOST_TIME_FIB cpu_to_le32(1<<4)
894#define AAC_OPT_RAID50 cpu_to_le32(1<<5)
895#define AAC_OPT_4GB_WINDOW cpu_to_le32(1<<6)
896#define AAC_OPT_SCSI_UPGRADEABLE cpu_to_le32(1<<7)
897#define AAC_OPT_SOFT_ERR_REPORT cpu_to_le32(1<<8)
898#define AAC_OPT_SUPPORTED_RECONDITION cpu_to_le32(1<<9)
899#define AAC_OPT_SGMAP_HOST64 cpu_to_le32(1<<10)
900#define AAC_OPT_ALARM cpu_to_le32(1<<11)
901#define AAC_OPT_NONDASD cpu_to_le32(1<<12)
902#define AAC_OPT_SCSI_MANAGED cpu_to_le32(1<<13)
903#define AAC_OPT_RAID_SCSI_MODE cpu_to_le32(1<<14)
904#define AAC_OPT_SUPPLEMENT_ADAPTER_INFO cpu_to_le32(1<<16)
905#define AAC_OPT_NEW_COMM cpu_to_le32(1<<17)
906#define AAC_OPT_NEW_COMM_64 cpu_to_le32(1<<18)
907
908struct aac_dev
909{
910 struct list_head entry;
911 const char *name;
912 int id;
913
914 u16 irq_mask;
915 /*
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700916 * negotiated FIB settings
917 */
918 unsigned max_fib_size;
919 unsigned sg_tablesize;
920
921 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 * Map for 128 fib objects (64k)
923 */
924 dma_addr_t hw_fib_pa;
925 struct hw_fib *hw_fib_va;
926 struct hw_fib *aif_base_va;
927 /*
928 * Fib Headers
929 */
930 struct fib *fibs;
931
932 struct fib *free_fib;
933 struct fib *timeout_fib;
934 spinlock_t fib_lock;
935
936 struct aac_queue_block *queues;
937 /*
938 * The user API will use an IOCTL to register itself to receive
939 * FIBs from the adapter. The following list is used to keep
940 * track of all the threads that have requested these FIBs. The
941 * mutex is used to synchronize access to all data associated
942 * with the adapter fibs.
943 */
944 struct list_head fib_list;
945
946 struct adapter_ops a_ops;
947 unsigned long fsrev; /* Main driver's revision number */
948
949 struct aac_init *init; /* Holds initialization info to communicate with adapter */
950 dma_addr_t init_pa; /* Holds physical address of the init struct */
951
952 struct pci_dev *pdev; /* Our PCI interface */
953 void * printfbuf; /* pointer to buffer used for printf's from the adapter */
954 void * comm_addr; /* Base address of Comm area */
955 dma_addr_t comm_phys; /* Physical Address of Comm area */
956 size_t comm_size;
957
958 struct Scsi_Host *scsi_host_ptr;
959 int maximum_num_containers;
Mark Haverkamp84971732005-06-20 11:55:24 -0700960 int maximum_num_physicals;
961 int maximum_num_channels;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 struct fsa_dev_info *fsa_dev;
963 pid_t thread_pid;
964 int cardtype;
965
966 /*
967 * The following is the device specific extension.
968 */
969 union
970 {
971 struct sa_registers __iomem *sa;
972 struct rx_registers __iomem *rx;
973 struct rkt_registers __iomem *rkt;
974 } regs;
975 u32 OIMR; /* Mask Register Cache */
976 /*
977 * AIF thread states
978 */
979 u32 aif_thread;
980 struct completion aif_completion;
981 struct aac_adapter_info adapter_info;
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700982 struct aac_supplement_adapter_info supplement_adapter_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 /* These are in adapter info but they are in the io flow so
984 * lets break them out so we don't have to do an AND to check them
985 */
986 u8 nondasd_support;
987 u8 dac_support;
988 u8 raid_scsi_mode;
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700989 u8 printf_enabled;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990};
991
992#define aac_adapter_interrupt(dev) \
993 (dev)->a_ops.adapter_interrupt(dev)
994
995#define aac_adapter_notify(dev, event) \
996 (dev)->a_ops.adapter_notify(dev, event)
997
Mark Haverkampbd1aac82005-08-03 15:39:01 -0700998#define aac_adapter_disable_int(dev) \
999 (dev)->a_ops.adapter_disable_int(dev)
1000
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -07001001#define aac_adapter_sync_cmd(dev, command, p1, p2, p3, p4, p5, p6, status, r1, r2, r3, r4) \
1002 (dev)->a_ops.adapter_sync_cmd(dev, command, p1, p2, p3, p4, p5, p6, status, r1, r2, r3, r4)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
1004#define aac_adapter_check_health(dev) \
1005 (dev)->a_ops.adapter_check_health(dev)
1006
1007
1008#define FIB_CONTEXT_FLAG_TIMED_OUT (0x00000001)
1009
1010/*
1011 * Define the command values
1012 */
1013
1014#define Null 0
1015#define GetAttributes 1
1016#define SetAttributes 2
1017#define Lookup 3
1018#define ReadLink 4
1019#define Read 5
1020#define Write 6
1021#define Create 7
1022#define MakeDirectory 8
1023#define SymbolicLink 9
1024#define MakeNode 10
1025#define Removex 11
1026#define RemoveDirectoryx 12
1027#define Rename 13
1028#define Link 14
1029#define ReadDirectory 15
1030#define ReadDirectoryPlus 16
1031#define FileSystemStatus 17
1032#define FileSystemInfo 18
1033#define PathConfigure 19
1034#define Commit 20
1035#define Mount 21
1036#define UnMount 22
1037#define Newfs 23
1038#define FsCheck 24
1039#define FsSync 25
1040#define SimReadWrite 26
1041#define SetFileSystemStatus 27
1042#define BlockRead 28
1043#define BlockWrite 29
1044#define NvramIoctl 30
1045#define FsSyncWait 31
1046#define ClearArchiveBit 32
1047#define SetAcl 33
1048#define GetAcl 34
1049#define AssignAcl 35
1050#define FaultInsertion 36 /* Fault Insertion Command */
1051#define CrazyCache 37 /* Crazycache */
1052
1053#define MAX_FSACOMMAND_NUM 38
1054
1055
1056/*
1057 * Define the status returns. These are very unixlike although
1058 * most are not in fact used
1059 */
1060
1061#define ST_OK 0
1062#define ST_PERM 1
1063#define ST_NOENT 2
1064#define ST_IO 5
1065#define ST_NXIO 6
1066#define ST_E2BIG 7
1067#define ST_ACCES 13
1068#define ST_EXIST 17
1069#define ST_XDEV 18
1070#define ST_NODEV 19
1071#define ST_NOTDIR 20
1072#define ST_ISDIR 21
1073#define ST_INVAL 22
1074#define ST_FBIG 27
1075#define ST_NOSPC 28
1076#define ST_ROFS 30
1077#define ST_MLINK 31
1078#define ST_WOULDBLOCK 35
1079#define ST_NAMETOOLONG 63
1080#define ST_NOTEMPTY 66
1081#define ST_DQUOT 69
1082#define ST_STALE 70
1083#define ST_REMOTE 71
1084#define ST_BADHANDLE 10001
1085#define ST_NOT_SYNC 10002
1086#define ST_BAD_COOKIE 10003
1087#define ST_NOTSUPP 10004
1088#define ST_TOOSMALL 10005
1089#define ST_SERVERFAULT 10006
1090#define ST_BADTYPE 10007
1091#define ST_JUKEBOX 10008
1092#define ST_NOTMOUNTED 10009
1093#define ST_MAINTMODE 10010
1094#define ST_STALEACL 10011
1095
1096/*
1097 * On writes how does the client want the data written.
1098 */
1099
1100#define CACHE_CSTABLE 1
1101#define CACHE_UNSTABLE 2
1102
1103/*
1104 * Lets the client know at which level the data was commited on
1105 * a write request
1106 */
1107
1108#define CMFILE_SYNCH_NVRAM 1
1109#define CMDATA_SYNCH_NVRAM 2
1110#define CMFILE_SYNCH 3
1111#define CMDATA_SYNCH 4
1112#define CMUNSTABLE 5
1113
1114struct aac_read
1115{
Mark Haverkamp 56b58712005-04-27 06:05:51 -07001116 __le32 command;
1117 __le32 cid;
1118 __le32 block;
1119 __le32 count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 struct sgmap sg; // Must be last in struct because it is variable
1121};
1122
1123struct aac_read64
1124{
Mark Haverkamp 56b58712005-04-27 06:05:51 -07001125 __le32 command;
1126 __le16 cid;
1127 __le16 sector_count;
1128 __le32 block;
1129 __le16 pad;
1130 __le16 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 struct sgmap64 sg; // Must be last in struct because it is variable
1132};
1133
1134struct aac_read_reply
1135{
Mark Haverkamp 56b58712005-04-27 06:05:51 -07001136 __le32 status;
1137 __le32 count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138};
1139
1140struct aac_write
1141{
Mark Haverkamp 56b58712005-04-27 06:05:51 -07001142 __le32 command;
1143 __le32 cid;
1144 __le32 block;
1145 __le32 count;
1146 __le32 stable; // Not used
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 struct sgmap sg; // Must be last in struct because it is variable
1148};
1149
1150struct aac_write64
1151{
Mark Haverkamp 56b58712005-04-27 06:05:51 -07001152 __le32 command;
1153 __le16 cid;
1154 __le16 sector_count;
1155 __le32 block;
1156 __le16 pad;
1157 __le16 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 struct sgmap64 sg; // Must be last in struct because it is variable
1159};
1160struct aac_write_reply
1161{
Mark Haverkamp 56b58712005-04-27 06:05:51 -07001162 __le32 status;
1163 __le32 count;
1164 __le32 committed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165};
1166
1167#define CT_FLUSH_CACHE 129
1168struct aac_synchronize {
Mark Haverkamp 56b58712005-04-27 06:05:51 -07001169 __le32 command; /* VM_ContainerConfig */
1170 __le32 type; /* CT_FLUSH_CACHE */
1171 __le32 cid;
1172 __le32 parm1;
1173 __le32 parm2;
1174 __le32 parm3;
1175 __le32 parm4;
1176 __le32 count; /* sizeof(((struct aac_synchronize_reply *)NULL)->data) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177};
1178
1179struct aac_synchronize_reply {
Mark Haverkamp 56b58712005-04-27 06:05:51 -07001180 __le32 dummy0;
1181 __le32 dummy1;
1182 __le32 status; /* CT_OK */
1183 __le32 parm1;
1184 __le32 parm2;
1185 __le32 parm3;
1186 __le32 parm4;
1187 __le32 parm5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 u8 data[16];
1189};
1190
1191struct aac_srb
1192{
Mark Haverkamp 56b58712005-04-27 06:05:51 -07001193 __le32 function;
1194 __le32 channel;
1195 __le32 id;
1196 __le32 lun;
1197 __le32 timeout;
1198 __le32 flags;
1199 __le32 count; // Data xfer size
1200 __le32 retry_limit;
1201 __le32 cdb_size;
1202 u8 cdb[16];
1203 struct sgmap sg;
1204};
1205
1206/*
1207 * This and assocated data structs are used by the
1208 * ioctl caller and are in cpu order.
1209 */
1210struct user_aac_srb
1211{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 u32 function;
1213 u32 channel;
1214 u32 id;
1215 u32 lun;
1216 u32 timeout;
1217 u32 flags;
1218 u32 count; // Data xfer size
1219 u32 retry_limit;
1220 u32 cdb_size;
1221 u8 cdb[16];
Mark Haverkamp 56b58712005-04-27 06:05:51 -07001222 struct user_sgmap sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223};
1224
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225#define AAC_SENSE_BUFFERSIZE 30
1226
1227struct aac_srb_reply
1228{
Mark Haverkamp 56b58712005-04-27 06:05:51 -07001229 __le32 status;
1230 __le32 srb_status;
1231 __le32 scsi_status;
1232 __le32 data_xfer_length;
1233 __le32 sense_data_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 u8 sense_data[AAC_SENSE_BUFFERSIZE]; // Can this be SCSI_SENSE_BUFFERSIZE
1235};
1236/*
1237 * SRB Flags
1238 */
1239#define SRB_NoDataXfer 0x0000
1240#define SRB_DisableDisconnect 0x0004
1241#define SRB_DisableSynchTransfer 0x0008
1242#define SRB_BypassFrozenQueue 0x0010
1243#define SRB_DisableAutosense 0x0020
1244#define SRB_DataIn 0x0040
1245#define SRB_DataOut 0x0080
1246
1247/*
1248 * SRB Functions - set in aac_srb->function
1249 */
1250#define SRBF_ExecuteScsi 0x0000
1251#define SRBF_ClaimDevice 0x0001
1252#define SRBF_IO_Control 0x0002
1253#define SRBF_ReceiveEvent 0x0003
1254#define SRBF_ReleaseQueue 0x0004
1255#define SRBF_AttachDevice 0x0005
1256#define SRBF_ReleaseDevice 0x0006
1257#define SRBF_Shutdown 0x0007
1258#define SRBF_Flush 0x0008
1259#define SRBF_AbortCommand 0x0010
1260#define SRBF_ReleaseRecovery 0x0011
1261#define SRBF_ResetBus 0x0012
1262#define SRBF_ResetDevice 0x0013
1263#define SRBF_TerminateIO 0x0014
1264#define SRBF_FlushQueue 0x0015
1265#define SRBF_RemoveDevice 0x0016
1266#define SRBF_DomainValidation 0x0017
1267
1268/*
1269 * SRB SCSI Status - set in aac_srb->scsi_status
1270 */
1271#define SRB_STATUS_PENDING 0x00
1272#define SRB_STATUS_SUCCESS 0x01
1273#define SRB_STATUS_ABORTED 0x02
1274#define SRB_STATUS_ABORT_FAILED 0x03
1275#define SRB_STATUS_ERROR 0x04
1276#define SRB_STATUS_BUSY 0x05
1277#define SRB_STATUS_INVALID_REQUEST 0x06
1278#define SRB_STATUS_INVALID_PATH_ID 0x07
1279#define SRB_STATUS_NO_DEVICE 0x08
1280#define SRB_STATUS_TIMEOUT 0x09
1281#define SRB_STATUS_SELECTION_TIMEOUT 0x0A
1282#define SRB_STATUS_COMMAND_TIMEOUT 0x0B
1283#define SRB_STATUS_MESSAGE_REJECTED 0x0D
1284#define SRB_STATUS_BUS_RESET 0x0E
1285#define SRB_STATUS_PARITY_ERROR 0x0F
1286#define SRB_STATUS_REQUEST_SENSE_FAILED 0x10
1287#define SRB_STATUS_NO_HBA 0x11
1288#define SRB_STATUS_DATA_OVERRUN 0x12
1289#define SRB_STATUS_UNEXPECTED_BUS_FREE 0x13
1290#define SRB_STATUS_PHASE_SEQUENCE_FAILURE 0x14
1291#define SRB_STATUS_BAD_SRB_BLOCK_LENGTH 0x15
1292#define SRB_STATUS_REQUEST_FLUSHED 0x16
1293#define SRB_STATUS_DELAYED_RETRY 0x17
1294#define SRB_STATUS_INVALID_LUN 0x20
1295#define SRB_STATUS_INVALID_TARGET_ID 0x21
1296#define SRB_STATUS_BAD_FUNCTION 0x22
1297#define SRB_STATUS_ERROR_RECOVERY 0x23
1298#define SRB_STATUS_NOT_STARTED 0x24
1299#define SRB_STATUS_NOT_IN_USE 0x30
1300#define SRB_STATUS_FORCE_ABORT 0x31
1301#define SRB_STATUS_DOMAIN_VALIDATION_FAIL 0x32
1302
1303/*
1304 * Object-Server / Volume-Manager Dispatch Classes
1305 */
1306
1307#define VM_Null 0
1308#define VM_NameServe 1
1309#define VM_ContainerConfig 2
1310#define VM_Ioctl 3
1311#define VM_FilesystemIoctl 4
1312#define VM_CloseAll 5
1313#define VM_CtBlockRead 6
1314#define VM_CtBlockWrite 7
1315#define VM_SliceBlockRead 8 /* raw access to configured "storage objects" */
1316#define VM_SliceBlockWrite 9
1317#define VM_DriveBlockRead 10 /* raw access to physical devices */
1318#define VM_DriveBlockWrite 11
1319#define VM_EnclosureMgt 12 /* enclosure management */
1320#define VM_Unused 13 /* used to be diskset management */
1321#define VM_CtBlockVerify 14
1322#define VM_CtPerf 15 /* performance test */
1323#define VM_CtBlockRead64 16
1324#define VM_CtBlockWrite64 17
1325#define VM_CtBlockVerify64 18
1326#define VM_CtHostRead64 19
1327#define VM_CtHostWrite64 20
1328
1329#define MAX_VMCOMMAND_NUM 21 /* used for sizing stats array - leave last */
1330
1331/*
1332 * Descriptive information (eg, vital stats)
1333 * that a content manager might report. The
1334 * FileArray filesystem component is one example
1335 * of a content manager. Raw mode might be
1336 * another.
1337 */
1338
1339struct aac_fsinfo {
Mark Haverkamp 56b58712005-04-27 06:05:51 -07001340 __le32 fsTotalSize; /* Consumed by fs, incl. metadata */
1341 __le32 fsBlockSize;
1342 __le32 fsFragSize;
1343 __le32 fsMaxExtendSize;
1344 __le32 fsSpaceUnits;
1345 __le32 fsMaxNumFiles;
1346 __le32 fsNumFreeFiles;
1347 __le32 fsInodeDensity;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348}; /* valid iff ObjType == FT_FILESYS && !(ContentState & FSCS_NOTCLEAN) */
1349
1350union aac_contentinfo {
1351 struct aac_fsinfo filesys; /* valid iff ObjType == FT_FILESYS && !(ContentState & FSCS_NOTCLEAN) */
1352};
1353
1354/*
1355 * Query for Container Configuration Status
1356 */
1357
1358#define CT_GET_CONFIG_STATUS 147
1359struct aac_get_config_status {
Mark Haverkamp 56b58712005-04-27 06:05:51 -07001360 __le32 command; /* VM_ContainerConfig */
1361 __le32 type; /* CT_GET_CONFIG_STATUS */
1362 __le32 parm1;
1363 __le32 parm2;
1364 __le32 parm3;
1365 __le32 parm4;
1366 __le32 parm5;
1367 __le32 count; /* sizeof(((struct aac_get_config_status_resp *)NULL)->data) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368};
1369
1370#define CFACT_CONTINUE 0
1371#define CFACT_PAUSE 1
1372#define CFACT_ABORT 2
1373struct aac_get_config_status_resp {
Mark Haverkamp 56b58712005-04-27 06:05:51 -07001374 __le32 response; /* ST_OK */
1375 __le32 dummy0;
1376 __le32 status; /* CT_OK */
1377 __le32 parm1;
1378 __le32 parm2;
1379 __le32 parm3;
1380 __le32 parm4;
1381 __le32 parm5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 struct {
Mark Haverkamp 56b58712005-04-27 06:05:51 -07001383 __le32 action; /* CFACT_CONTINUE, CFACT_PAUSE or CFACT_ABORT */
1384 __le16 flags;
1385 __le16 count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 } data;
1387};
1388
1389/*
1390 * Accept the configuration as-is
1391 */
1392
1393#define CT_COMMIT_CONFIG 152
1394
1395struct aac_commit_config {
Mark Haverkamp 56b58712005-04-27 06:05:51 -07001396 __le32 command; /* VM_ContainerConfig */
1397 __le32 type; /* CT_COMMIT_CONFIG */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398};
1399
1400/*
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -07001401 * Query for Container Configuration Status
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 */
1403
1404#define CT_GET_CONTAINER_COUNT 4
1405struct aac_get_container_count {
Mark Haverkamp 56b58712005-04-27 06:05:51 -07001406 __le32 command; /* VM_ContainerConfig */
1407 __le32 type; /* CT_GET_CONTAINER_COUNT */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408};
1409
1410struct aac_get_container_count_resp {
Mark Haverkamp 56b58712005-04-27 06:05:51 -07001411 __le32 response; /* ST_OK */
1412 __le32 dummy0;
1413 __le32 MaxContainers;
1414 __le32 ContainerSwitchEntries;
1415 __le32 MaxPartitions;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416};
1417
1418
1419/*
1420 * Query for "mountable" objects, ie, objects that are typically
1421 * associated with a drive letter on the client (host) side.
1422 */
1423
1424struct aac_mntent {
Mark Haverkamp 56b58712005-04-27 06:05:51 -07001425 __le32 oid;
1426 u8 name[16]; /* if applicable */
1427 struct creation_info create_info; /* if applicable */
1428 __le32 capacity;
1429 __le32 vol; /* substrate structure */
1430 __le32 obj; /* FT_FILESYS,
1431 FT_DATABASE, etc. */
1432 __le32 state; /* unready for mounting,
1433 readonly, etc. */
1434 union aac_contentinfo fileinfo; /* Info specific to content
1435 manager (eg, filesystem) */
1436 __le32 altoid; /* != oid <==> snapshot or
1437 broken mirror exists */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438};
1439
1440#define FSCS_NOTCLEAN 0x0001 /* fsck is neccessary before mounting */
1441#define FSCS_READONLY 0x0002 /* possible result of broken mirror */
1442#define FSCS_HIDDEN 0x0004 /* should be ignored - set during a clear */
1443
1444struct aac_query_mount {
Mark Haverkamp 56b58712005-04-27 06:05:51 -07001445 __le32 command;
1446 __le32 type;
1447 __le32 count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448};
1449
1450struct aac_mount {
Mark Haverkamp 56b58712005-04-27 06:05:51 -07001451 __le32 status;
1452 __le32 type; /* should be same as that requested */
1453 __le32 count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 struct aac_mntent mnt[1];
1455};
1456
1457#define CT_READ_NAME 130
1458struct aac_get_name {
Mark Haverkamp 56b58712005-04-27 06:05:51 -07001459 __le32 command; /* VM_ContainerConfig */
1460 __le32 type; /* CT_READ_NAME */
1461 __le32 cid;
1462 __le32 parm1;
1463 __le32 parm2;
1464 __le32 parm3;
1465 __le32 parm4;
1466 __le32 count; /* sizeof(((struct aac_get_name_resp *)NULL)->data) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467};
1468
1469#define CT_OK 218
1470struct aac_get_name_resp {
Mark Haverkamp 56b58712005-04-27 06:05:51 -07001471 __le32 dummy0;
1472 __le32 dummy1;
1473 __le32 status; /* CT_OK */
1474 __le32 parm1;
1475 __le32 parm2;
1476 __le32 parm3;
1477 __le32 parm4;
1478 __le32 parm5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 u8 data[16];
1480};
1481
1482/*
1483 * The following command is sent to shut down each container.
1484 */
1485
1486struct aac_close {
Mark Haverkamp 56b58712005-04-27 06:05:51 -07001487 __le32 command;
1488 __le32 cid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489};
1490
1491struct aac_query_disk
1492{
1493 s32 cnum;
1494 s32 bus;
1495 s32 id;
1496 s32 lun;
1497 u32 valid;
1498 u32 locked;
1499 u32 deleted;
1500 s32 instance;
1501 s8 name[10];
1502 u32 unmapped;
1503};
1504
1505struct aac_delete_disk {
1506 u32 disknum;
1507 u32 cnum;
1508};
1509
1510struct fib_ioctl
1511{
1512 u32 fibctx;
1513 s32 wait;
1514 char __user *fib;
1515};
1516
1517struct revision
1518{
Mark Haverkampc7f47602005-08-03 15:38:55 -07001519 __le32 compat;
1520 __le32 version;
1521 __le32 build;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522};
1523
Mark Haverkampc7f47602005-08-03 15:38:55 -07001524
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525/*
1526 * Ugly - non Linux like ioctl coding for back compat.
1527 */
1528
1529#define CTL_CODE(function, method) ( \
1530 (4<< 16) | ((function) << 2) | (method) \
1531)
1532
1533/*
1534 * Define the method codes for how buffers are passed for I/O and FS
1535 * controls
1536 */
1537
1538#define METHOD_BUFFERED 0
1539#define METHOD_NEITHER 3
1540
1541/*
1542 * Filesystem ioctls
1543 */
1544
1545#define FSACTL_SENDFIB CTL_CODE(2050, METHOD_BUFFERED)
1546#define FSACTL_SEND_RAW_SRB CTL_CODE(2067, METHOD_BUFFERED)
1547#define FSACTL_DELETE_DISK 0x163
1548#define FSACTL_QUERY_DISK 0x173
1549#define FSACTL_OPEN_GET_ADAPTER_FIB CTL_CODE(2100, METHOD_BUFFERED)
1550#define FSACTL_GET_NEXT_ADAPTER_FIB CTL_CODE(2101, METHOD_BUFFERED)
1551#define FSACTL_CLOSE_GET_ADAPTER_FIB CTL_CODE(2102, METHOD_BUFFERED)
1552#define FSACTL_MINIPORT_REV_CHECK CTL_CODE(2107, METHOD_BUFFERED)
1553#define FSACTL_GET_PCI_INFO CTL_CODE(2119, METHOD_BUFFERED)
1554#define FSACTL_FORCE_DELETE_DISK CTL_CODE(2120, METHOD_NEITHER)
1555#define FSACTL_GET_CONTAINERS 2131
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -07001556#define FSACTL_SEND_LARGE_FIB CTL_CODE(2138, METHOD_BUFFERED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
1558
1559struct aac_common
1560{
1561 /*
1562 * If this value is set to 1 then interrupt moderation will occur
1563 * in the base commuication support.
1564 */
1565 u32 irq_mod;
1566 u32 peak_fibs;
1567 u32 zero_fibs;
1568 u32 fib_timeouts;
1569 /*
1570 * Statistical counters in debug mode
1571 */
1572#ifdef DBG
1573 u32 FibsSent;
1574 u32 FibRecved;
1575 u32 NoResponseSent;
1576 u32 NoResponseRecved;
1577 u32 AsyncSent;
1578 u32 AsyncRecved;
1579 u32 NormalSent;
1580 u32 NormalRecved;
1581#endif
1582};
1583
1584extern struct aac_common aac_config;
1585
1586
1587/*
1588 * The following macro is used when sending and receiving FIBs. It is
1589 * only used for debugging.
1590 */
1591
1592#ifdef DBG
1593#define FIB_COUNTER_INCREMENT(counter) (counter)++
1594#else
1595#define FIB_COUNTER_INCREMENT(counter)
1596#endif
1597
1598/*
1599 * Adapter direct commands
1600 * Monitor/Kernel API
1601 */
1602
1603#define BREAKPOINT_REQUEST 0x00000004
1604#define INIT_STRUCT_BASE_ADDRESS 0x00000005
1605#define READ_PERMANENT_PARAMETERS 0x0000000a
1606#define WRITE_PERMANENT_PARAMETERS 0x0000000b
1607#define HOST_CRASHING 0x0000000d
1608#define SEND_SYNCHRONOUS_FIB 0x0000000c
1609#define COMMAND_POST_RESULTS 0x00000014
1610#define GET_ADAPTER_PROPERTIES 0x00000019
1611#define GET_DRIVER_BUFFER_PROPERTIES 0x00000023
1612#define RCV_TEMP_READINGS 0x00000025
1613#define GET_COMM_PREFERRED_SETTINGS 0x00000026
1614#define IOP_RESET 0x00001000
1615#define RE_INIT_ADAPTER 0x000000ee
1616
1617/*
1618 * Adapter Status Register
1619 *
1620 * Phase Staus mailbox is 32bits:
1621 * <31:16> = Phase Status
1622 * <15:0> = Phase
1623 *
1624 * The adapter reports is present state through the phase. Only
1625 * a single phase should be ever be set. Each phase can have multiple
1626 * phase status bits to provide more detailed information about the
1627 * state of the board. Care should be taken to ensure that any phase
1628 * status bits that are set when changing the phase are also valid
1629 * for the new phase or be cleared out. Adapter software (monitor,
1630 * iflash, kernel) is responsible for properly maintining the phase
1631 * status mailbox when it is running.
1632 *
1633 * MONKER_API Phases
1634 *
1635 * Phases are bit oriented. It is NOT valid to have multiple bits set
1636 */
1637
1638#define SELF_TEST_FAILED 0x00000004
1639#define MONITOR_PANIC 0x00000020
1640#define KERNEL_UP_AND_RUNNING 0x00000080
1641#define KERNEL_PANIC 0x00000100
1642
1643/*
1644 * Doorbell bit defines
1645 */
1646
1647#define DoorBellSyncCmdAvailable (1<<0) /* Host -> Adapter */
1648#define DoorBellPrintfDone (1<<5) /* Host -> Adapter */
1649#define DoorBellAdapterNormCmdReady (1<<1) /* Adapter -> Host */
1650#define DoorBellAdapterNormRespReady (1<<2) /* Adapter -> Host */
1651#define DoorBellAdapterNormCmdNotFull (1<<3) /* Adapter -> Host */
1652#define DoorBellAdapterNormRespNotFull (1<<4) /* Adapter -> Host */
1653#define DoorBellPrintfReady (1<<5) /* Adapter -> Host */
1654
1655/*
1656 * For FIB communication, we need all of the following things
1657 * to send back to the user.
1658 */
1659
1660#define AifCmdEventNotify 1 /* Notify of event */
1661#define AifEnConfigChange 3 /* Adapter configuration change */
1662#define AifEnContainerChange 4 /* Container configuration change */
1663#define AifEnDeviceFailure 5 /* SCSI device failed */
1664#define AifEnAddContainer 15 /* A new array was created */
1665#define AifEnDeleteContainer 16 /* A container was deleted */
1666#define AifEnExpEvent 23 /* Firmware Event Log */
1667#define AifExeFirmwarePanic 3 /* Firmware Event Panic */
1668#define AifHighPriority 3 /* Highest Priority Event */
1669
1670#define AifCmdJobProgress 2 /* Progress report */
1671#define AifJobCtrZero 101 /* Array Zero progress */
1672#define AifJobStsSuccess 1 /* Job completes */
1673#define AifCmdAPIReport 3 /* Report from other user of API */
1674#define AifCmdDriverNotify 4 /* Notify host driver of event */
1675#define AifDenMorphComplete 200 /* A morph operation completed */
1676#define AifDenVolumeExtendComplete 201 /* A volume extend completed */
1677#define AifReqJobList 100 /* Gets back complete job list */
1678#define AifReqJobsForCtr 101 /* Gets back jobs for specific container */
1679#define AifReqJobsForScsi 102 /* Gets back jobs for specific SCSI device */
1680#define AifReqJobReport 103 /* Gets back a specific job report or list of them */
1681#define AifReqTerminateJob 104 /* Terminates job */
1682#define AifReqSuspendJob 105 /* Suspends a job */
1683#define AifReqResumeJob 106 /* Resumes a job */
1684#define AifReqSendAPIReport 107 /* API generic report requests */
1685#define AifReqAPIJobStart 108 /* Start a job from the API */
1686#define AifReqAPIJobUpdate 109 /* Update a job report from the API */
1687#define AifReqAPIJobFinish 110 /* Finish a job from the API */
1688
1689/*
1690 * Adapter Initiated FIB command structures. Start with the adapter
1691 * initiated FIBs that really come from the adapter, and get responded
1692 * to by the host.
1693 */
1694
1695struct aac_aifcmd {
Mark Haverkamp 56b58712005-04-27 06:05:51 -07001696 __le32 command; /* Tell host what type of notify this is */
1697 __le32 seqnum; /* To allow ordering of reports (if necessary) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 u8 data[1]; /* Undefined length (from kernel viewpoint) */
1699};
1700
1701/**
1702 * Convert capacity to cylinders
1703 * accounting for the fact capacity could be a 64 bit value
1704 *
1705 */
1706static inline u32 cap_to_cyls(sector_t capacity, u32 divisor)
1707{
1708 sector_div(capacity, divisor);
1709 return (u32)capacity;
1710}
1711
1712struct scsi_cmnd;
1713
1714const char *aac_driverinfo(struct Scsi_Host *);
1715struct fib *fib_alloc(struct aac_dev *dev);
1716int fib_setup(struct aac_dev *dev);
1717void fib_map_free(struct aac_dev *dev);
1718void fib_free(struct fib * context);
1719void fib_init(struct fib * context);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720void aac_printf(struct aac_dev *dev, u32 val);
1721int fib_send(u16 command, struct fib * context, unsigned long size, int priority, int wait, int reply, fib_callback callback, void *ctxt);
1722int aac_consumer_get(struct aac_dev * dev, struct aac_queue * q, struct aac_entry **entry);
1723void aac_consumer_free(struct aac_dev * dev, struct aac_queue * q, u32 qnum);
1724int fib_complete(struct fib * context);
1725#define fib_data(fibctx) ((void *)(fibctx)->hw_fib->data)
1726struct aac_dev *aac_init_adapter(struct aac_dev *dev);
1727int aac_get_config_status(struct aac_dev *dev);
1728int aac_get_containers(struct aac_dev *dev);
1729int aac_scsi_cmd(struct scsi_cmnd *cmd);
1730int aac_dev_ioctl(struct aac_dev *dev, int cmd, void __user *arg);
1731int aac_do_ioctl(struct aac_dev * dev, int cmd, void __user *arg);
1732int aac_rx_init(struct aac_dev *dev);
1733int aac_rkt_init(struct aac_dev *dev);
1734int aac_sa_init(struct aac_dev *dev);
1735unsigned int aac_response_normal(struct aac_queue * q);
1736unsigned int aac_command_normal(struct aac_queue * q);
1737int aac_command_thread(struct aac_dev * dev);
1738int aac_close_fib_context(struct aac_dev * dev, struct aac_fib_context *fibctx);
1739int fib_adapter_complete(struct fib * fibptr, unsigned short size);
1740struct aac_driver_ident* aac_get_driver_ident(int devtype);
1741int aac_get_adapter_info(struct aac_dev* dev);
1742int aac_send_shutdown(struct aac_dev *dev);
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -07001743extern int numacb;
1744extern int acbsize;
Mark Haverkampc7f47602005-08-03 15:38:55 -07001745extern char aac_driver_version[];