aacraid.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:33k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #define dprintk(x)
  2. #define AAC_NUM_FIB 128
  3. #define AAC_NUM_IO_FIB 116
  4. /*------------------------------------------------------------------------------
  5.  *              D E F I N E S
  6.  *----------------------------------------------------------------------------*/
  7. struct diskparm
  8. {
  9. int heads;
  10. int sectors;
  11. int cylinders;
  12. };
  13. /*
  14.  * DON'T CHANGE THE ORDER, this is set by the firmware
  15.  */
  16.  
  17. #define CT_NONE 0
  18. #define CT_VOLUME 1
  19. #define CT_MIRROR 2
  20. #define CT_STRIPE 3
  21. #define CT_RAID5 4
  22. #define CT_SSRW 5
  23. #define CT_SSRO 6
  24. #define CT_MORPH 7
  25. #define CT_PASSTHRU 8
  26. #define CT_RAID4 9
  27. #define CT_RAID10 10 /* stripe of mirror */
  28. #define CT_RAID00 11 /* stripe of stripe */
  29. #define CT_VOLUME_OF_MIRRORS 12 /* volume of mirror */
  30. #define CT_PSEUDO_RAID 13 /* really raid4 */
  31. #define CT_LAST_VOLUME_TYPE 14
  32. /*
  33.  * Types of objects addressable in some fashion by the client.
  34.  * This is a superset of those objects handled just by the filesystem
  35.  * and includes "raw" objects that an administrator would use to
  36.  * configure containers and filesystems.
  37.  */
  38. #define FT_REG 1 /* regular file */
  39. #define FT_DIR 2 /* directory */
  40. #define FT_BLK 3 /* "block" device - reserved */
  41. #define FT_CHR 4 /* "character special" device - reserved */
  42. #define FT_LNK 5 /* symbolic link */
  43. #define FT_SOCK 6 /* socket */
  44. #define FT_FIFO 7 /* fifo */
  45. #define FT_FILESYS 8 /* ADAPTEC's "FSA"(tm) filesystem */
  46. #define FT_DRIVE 9 /* physical disk - addressable in scsi by bus/target/lun */
  47. #define FT_SLICE 10 /* virtual disk - raw volume - slice */
  48. #define FT_PARTITION 11 /* FSA partition - carved out of a slice - building block for containers */
  49. #define FT_VOLUME 12 /* Container - Volume Set */
  50. #define FT_STRIPE 13 /* Container - Stripe Set */
  51. #define FT_MIRROR 14 /* Container - Mirror Set */
  52. #define FT_RAID5 15 /* Container - Raid 5 Set */
  53. #define FT_DATABASE 16 /* Storage object with "foreign" content manager */
  54. /*
  55.  * Host side memory scatter gather list
  56.  * Used by the adapter for read, write, and readdirplus operations
  57.  */
  58. struct sgentry {
  59. u32 addr; /* 32-bit Base address. */
  60. u32 count; /* Length. */
  61. };
  62. /*
  63.  * SGMAP
  64.  *
  65.  * This is the SGMAP structure for all commands that use
  66.  * 32-bit addressing.
  67.  *
  68.  * Note that the upper 16 bits of SgCount are used as flags.
  69.  * Only the lower 16 bits of SgCount are actually used as the
  70.  * SG element count.
  71.  */
  72. struct sgmap {
  73. u32 count;
  74. struct sgentry sg[1];
  75. };
  76. struct creation_info
  77. {
  78. u8  buildnum; /* e.g., 588 */
  79. u8  usec; /* e.g., 588 */
  80. u8   via; /* e.g., 1 = FSU,
  81.  *   2 = API
  82.  */
  83. u8   year;   /* e.g., 1997 = 97 */
  84. u32 date; /*
  85.  * unsigned  Month :4; // 1 - 12
  86.  * unsigned  Day :6; // 1 - 32
  87.  * unsigned  Hour :6; // 0 - 23
  88.  * unsigned  Minute :6; // 0 - 60
  89.  * unsigned  Second :6; // 0 - 60
  90.  */
  91. u64 serial; /* e.g., 0x1DEADB0BFAFAF001 */
  92. };
  93. /*
  94.  * Define all the constants needed for the communication interface
  95.  */
  96. /*
  97.  * Define how many queue entries each queue will have and the total
  98.  * number of entries for the entire communication interface. Also define
  99.  * how many queues we support.
  100.  *
  101.  * This has to match the controller
  102.  */
  103. #define NUMBER_OF_COMM_QUEUES  8   // 4 command; 4 response
  104. #define HOST_HIGH_CMD_ENTRIES  4
  105. #define HOST_NORM_CMD_ENTRIES  8
  106. #define ADAP_HIGH_CMD_ENTRIES  4
  107. #define ADAP_NORM_CMD_ENTRIES  512
  108. #define HOST_HIGH_RESP_ENTRIES 4
  109. #define HOST_NORM_RESP_ENTRIES 512
  110. #define ADAP_HIGH_RESP_ENTRIES 4
  111. #define ADAP_NORM_RESP_ENTRIES 8
  112. #define TOTAL_QUEUE_ENTRIES  
  113.     (HOST_NORM_CMD_ENTRIES + HOST_HIGH_CMD_ENTRIES + ADAP_NORM_CMD_ENTRIES + ADAP_HIGH_CMD_ENTRIES + 
  114.     HOST_NORM_RESP_ENTRIES + HOST_HIGH_RESP_ENTRIES + ADAP_NORM_RESP_ENTRIES + ADAP_HIGH_RESP_ENTRIES)
  115. /*
  116.  * Set the queues on a 16 byte alignment
  117.  */
  118.  
  119. #define QUEUE_ALIGNMENT 16
  120. /*
  121.  * The queue headers define the Communication Region queues. These
  122.  * are physically contiguous and accessible by both the adapter and the
  123.  * host. Even though all queue headers are in the same contiguous block
  124.  * they will be represented as individual units in the data structures.
  125.  */
  126. struct aac_entry {
  127. u32 size;       /* Size in bytes of the Fib which this QE points to */
  128. u32 addr; /* Receiver addressable address of the FIB (low 32 address bits) */
  129. };
  130. /*
  131.  * The adapter assumes the ProducerIndex and ConsumerIndex are grouped
  132.  * adjacently and in that order.
  133.  */
  134.  
  135. struct aac_qhdr {
  136. u64 header_addr; /* Address to hand the adapter to access to this queue head */
  137. u32 *producer; /* The producer index for this queue (host address) */
  138. u32 *consumer; /* The consumer index for this queue (host address) */
  139. };
  140. /*
  141.  * Define all the events which the adapter would like to notify
  142.  * the host of.
  143.  */
  144.  
  145. #define HostNormCmdQue 1 /* Change in host normal priority command queue */
  146. #define HostHighCmdQue 2 /* Change in host high priority command queue */
  147. #define HostNormRespQue 3 /* Change in host normal priority response queue */
  148. #define HostHighRespQue 4 /* Change in host high priority response queue */
  149. #define AdapNormRespNotFull 5
  150. #define AdapHighRespNotFull 6
  151. #define AdapNormCmdNotFull 7
  152. #define AdapHighCmdNotFull 8
  153. #define SynchCommandComplete 9
  154. #define AdapInternalError 0xfe    /* The adapter detected an internal error shutting down */
  155. /*
  156.  * Define all the events the host wishes to notify the
  157.  * adapter of. The first four values much match the Qid the
  158.  * corresponding queue.
  159.  */
  160. #define AdapNormCmdQue 2
  161. #define AdapHighCmdQue 3
  162. #define AdapNormRespQue 6
  163. #define AdapHighRespQue 7
  164. #define HostShutdown 8
  165. #define HostPowerFail 9
  166. #define FatalCommError 10
  167. #define HostNormRespNotFull 11
  168. #define HostHighRespNotFull 12
  169. #define HostNormCmdNotFull 13
  170. #define HostHighCmdNotFull 14
  171. #define FastIo 15
  172. #define AdapPrintfDone 16
  173. /*
  174.  * Define all the queues that the adapter and host use to communicate
  175.  * Number them to match the physical queue layout.
  176.  */
  177. enum aac_queue_types {
  178.         HostNormCmdQueue = 0, /* Adapter to host normal priority command traffic */
  179.         HostHighCmdQueue, /* Adapter to host high priority command traffic */
  180.         AdapNormCmdQueue, /* Host to adapter normal priority command traffic */
  181.         AdapHighCmdQueue, /* Host to adapter high priority command traffic */
  182.         HostNormRespQueue, /* Adapter to host normal priority response traffic */
  183.         HostHighRespQueue, /* Adapter to host high priority response traffic */
  184.         AdapNormRespQueue, /* Host to adapter normal priority response traffic */
  185.         AdapHighRespQueue /* Host to adapter high priority response traffic */
  186. };
  187. /*
  188.  * Assign type values to the FSA communication data structures
  189.  */
  190. #define FIB_MAGIC 0x0001
  191. /*
  192.  * Define the priority levels the FSA communication routines support.
  193.  */
  194. #define FsaNormal 1
  195. #define FsaHigh 2
  196. //
  197. // Define the FIB. The FIB is the where all the requested data and
  198. // command information are put to the application on the FSA adapter.
  199. //
  200. struct aac_fibhdr {
  201. u32 XferState; // Current transfer state for this CCB
  202. u16 Command; // Routing information for the destination
  203. u8 StructType; // Type FIB
  204. u8 Flags; // Flags for FIB
  205. u16 Size; // Size of this FIB in bytes
  206. u16 SenderSize; // Size of the FIB in the sender (for response sizing)
  207. u32 SenderFibAddress; // Host defined data in the FIB
  208. u32 ReceiverFibAddress; // Logical address of this FIB for the adapter
  209. u32 SenderData; // Place holder for the sender to store data
  210. union {
  211. struct {
  212.     u32 _ReceiverTimeStart;  // Timestamp for receipt of fib
  213.     u32 _ReceiverTimeDone; // Timestamp for completion of fib
  214. } _s;
  215. struct list_head _FibLinks; // Used to link Adapter Initiated Fibs on the host
  216. } _u;
  217. };
  218. #define FibLinks _u._FibLinks
  219. #define FIB_DATA_SIZE_IN_BYTES (512 - sizeof(struct aac_fibhdr))
  220. struct hw_fib {
  221. struct aac_fibhdr header;
  222. u8 data[FIB_DATA_SIZE_IN_BYTES]; // Command specific data
  223. };
  224. /*
  225.  * FIB commands
  226.  */
  227. #define  TestCommandResponse 1
  228. #define TestAdapterCommand 2
  229. /*
  230.  * Lowlevel and comm commands
  231.  */
  232. #define LastTestCommand 100
  233. #define ReinitHostNormCommandQueue 101
  234. #define ReinitHostHighCommandQueue 102
  235. #define ReinitHostHighRespQueue 103
  236. #define ReinitHostNormRespQueue 104
  237. #define ReinitAdapNormCommandQueue 105
  238. #define ReinitAdapHighCommandQueue 107
  239. #define ReinitAdapHighRespQueue 108
  240. #define ReinitAdapNormRespQueue 109
  241. #define InterfaceShutdown 110
  242. #define DmaCommandFib 120
  243. #define StartProfile 121
  244. #define TermProfile 122
  245. #define SpeedTest 123
  246. #define TakeABreakPt 124
  247. #define RequestPerfData 125
  248. #define SetInterruptDefTimer 126
  249. #define SetInterruptDefCount 127
  250. #define GetInterruptDefStatus 128
  251. #define LastCommCommand 129
  252. /*
  253.  * Filesystem commands
  254.  */
  255. #define NuFileSystem 300
  256. #define UFS 301
  257. #define HostFileSystem 302
  258. #define LastFileSystemCommand 303
  259. /*
  260.  * Container Commands
  261.  */
  262. #define ContainerCommand 500
  263. #define ContainerCommand64 501
  264. /*
  265.  * Cluster Commands
  266.  */
  267. #define ClusterCommand   550
  268. /*
  269.  * Scsi Port commands (scsi passthrough)
  270.  */
  271. #define ScsiPortCommand 600
  272. /*
  273.  * Misc house keeping and generic adapter initiated commands
  274.  */
  275. #define AifRequest 700
  276. #define CheckRevision 701
  277. #define FsaHostShutdown 702
  278. #define RequestAdapterInfo 703
  279. #define IsAdapterPaused 704
  280. #define SendHostTime 705
  281. #define LastMiscCommand 706
  282. //
  283. // Commands that will target the failover level on the FSA adapter
  284. //
  285. enum fib_xfer_state {
  286. HostOwned  = (1<<0),
  287. AdapterOwned  = (1<<1),
  288. FibInitialized  = (1<<2),
  289. FibEmpty  = (1<<3),
  290. AllocatedFromPool  = (1<<4),
  291. SentFromHost  = (1<<5),
  292. SentFromAdapter  = (1<<6),
  293. ResponseExpected  = (1<<7),
  294. NoResponseExpected  = (1<<8),
  295. AdapterProcessed  = (1<<9),
  296. HostProcessed  = (1<<10),
  297. HighPriority  = (1<<11),
  298. NormalPriority  = (1<<12),
  299. Async = (1<<13),
  300. AsyncIo = (1<<13), // rpbfix: remove with new regime
  301. PageFileIo = (1<<14), // rpbfix: remove with new regime
  302. ShutdownRequest = (1<<15),
  303. LazyWrite = (1<<16), // rpbfix: remove with new regime
  304. AdapterMicroFib = (1<<17),
  305. BIOSFibPath = (1<<18),
  306. FastResponseCapable = (1<<19),
  307. ApiFib = (1<<20) // Its an API Fib.
  308. };
  309. /*
  310.  * The following defines needs to be updated any time there is an
  311.  * incompatible change made to the aac_init structure.
  312.  */
  313. #define ADAPTER_INIT_STRUCT_REVISION 3
  314. struct aac_init
  315. {
  316. u32 InitStructRevision;
  317. u32 MiniPortRevision;
  318. u32 fsrev;
  319. u32 CommHeaderAddress;
  320. u32 FastIoCommAreaAddress;
  321. u32 AdapterFibsPhysicalAddress;
  322. u32 AdapterFibsVirtualAddress;
  323. u32 AdapterFibsSize;
  324. u32 AdapterFibAlign;
  325. u32 printfbuf;
  326. u32 printfbufsiz;
  327. u32 HostPhysMemPages; // number of 4k pages of host physical memory
  328. u32 HostElapsedSeconds; // number of seconds since 1970.
  329. };
  330. enum aac_log_level {
  331. LOG_INIT = 10,
  332. LOG_INFORMATIONAL = 20,
  333. LOG_WARNING = 30,
  334. LOG_LOW_ERROR = 40,
  335. LOG_MEDIUM_ERROR = 50,
  336. LOG_HIGH_ERROR = 60,
  337. LOG_PANIC = 70,
  338. LOG_DEBUG = 80,
  339. LOG_WINDBG_PRINT = 90
  340. };
  341. #define FSAFS_NTC_GET_ADAPTER_FIB_CONTEXT 0x030b
  342. #define FSAFS_NTC_FIB_CONTEXT 0x030c
  343. struct aac_dev;
  344. struct adapter_ops
  345. {
  346. void (*adapter_interrupt)(struct aac_dev *dev);
  347. void (*adapter_notify)(struct aac_dev *dev, u32 event);
  348. void (*adapter_enable_int)(struct aac_dev *dev, u32 event);
  349. void (*adapter_disable_int)(struct aac_dev *dev, u32 event);
  350. };
  351. /*
  352.  * Define which interrupt handler needs to be installed
  353.  */
  354. struct aac_driver_ident
  355. {
  356. u16 vendor;
  357. u16 device;
  358. u16 subsystem_vendor;
  359. u16 subsystem_device;
  360. int  (*init)(struct aac_dev *dev, unsigned long num);
  361. char * name;
  362. char * vname;
  363. char * model;
  364. };
  365. /*
  366.  * The adapter interface specs all queues to be located in the same
  367.  * physically contigous block. The host structure that defines the
  368.  * commuication queues will assume they are each a seperate physically
  369.  * contigous memory region that will support them all being one big
  370.  * contigous block. 
  371.  * There is a command and response queue for each level and direction of
  372.  * commuication. These regions are accessed by both the host and adapter.
  373.  */
  374.  
  375. struct aac_queue {
  376. u64   logical; /* This is the address we give the adapter */
  377. struct aac_entry *base;     /* This is the system virtual address */
  378. struct aac_qhdr  headers;        /* A pointer to the producer and consumer queue headers for this queue */
  379. u32   entries;     /* Number of queue entries on this queue */
  380. wait_queue_head_t qfull;        /* Event to wait on if the queue is full */
  381. wait_queue_head_t cmdready;    /* Indicates there is a Command ready from the adapter on this queue. */
  382.                                          /* This is only valid for adapter to host command queues. */                      
  383. spinlock_t   *lock;       /* Spinlock for this queue must take this lock before accessing the lock */
  384. spinlock_t lockdata; /* Actual lock (used only on one side of the lock) */
  385. unsigned long SavedIrql;       /* Previous IRQL when the spin lock is taken */
  386. u32 padding; /* Padding - FIXME - can remove I believe */
  387. struct list_head  cmdq;     /* A queue of FIBs which need to be prcessed by the FS thread. This is */
  388.                                          /* only valid for command queues which receive entries from the adapter. */
  389. struct list_head pendingq; /* A queue of outstanding fib's to the adapter. */
  390. unsigned long numpending; /* Number of entries on outstanding queue. */
  391. struct aac_dev * dev; /* Back pointer to adapter structure */
  392. };
  393. /*
  394.  * Message queues. The order here is important, see also the 
  395.  * queue type ordering
  396.  */
  397. struct aac_queue_block
  398. {
  399. struct aac_queue queue[8];
  400. };
  401. /*
  402.  * SaP1 Message Unit Registers
  403.  */
  404.  
  405. struct sa_drawbridge_CSR {
  406. //  Offset | Name
  407. u32 reserved[10]; // 00h-27h |   Reserved
  408. u8 LUT_Offset; // 28h | Looup Table Offset
  409. u8 reserved1[3]; //  29h-2bh | Reserved
  410. u32 LUT_Data; // 2ch | Looup Table Data
  411. u32 reserved2[26]; // 30h-97h | Reserved
  412. u16 PRICLEARIRQ; // 98h | Primary Clear Irq
  413. u16 SECCLEARIRQ; // 9ah | Secondary Clear Irq
  414. u16 PRISETIRQ; // 9ch | Primary Set Irq
  415. u16 SECSETIRQ; // 9eh | Secondary Set Irq
  416. u16 PRICLEARIRQMASK; // a0h | Primary Clear Irq Mask
  417. u16 SECCLEARIRQMASK; // a2h | Secondary Clear Irq Mask
  418. u16 PRISETIRQMASK; // a4h | Primary Set Irq Mask
  419. u16 SECSETIRQMASK; // a6h | Secondary Set Irq Mask
  420. u32 MAILBOX0; // a8h | Scratchpad 0
  421. u32 MAILBOX1; // ach | Scratchpad 1
  422. u32 MAILBOX2; // b0h | Scratchpad 2
  423. u32 MAILBOX3; // b4h | Scratchpad 3
  424. u32 MAILBOX4; // b8h | Scratchpad 4
  425. u32 MAILBOX5; // bch | Scratchpad 5
  426. u32 MAILBOX6; // c0h | Scratchpad 6
  427. u32 MAILBOX7; // c4h | Scratchpad 7
  428. u32 ROM_Setup_Data; // c8h |  Rom Setup and Data
  429. u32 ROM_Control_Addr; // cch |  Rom Control and Address
  430. u32 reserved3[12]; // d0h-ffh |  reserved
  431. u32 LUT[64]; // 100h-1ffh| Lookup Table Entries
  432. //
  433. //  TO DO
  434. // need to add DMA, I2O, UART, etc registers form 80h to 364h
  435. //
  436. };
  437. #define Mailbox0 SaDbCSR.MAILBOX0
  438. #define Mailbox1 SaDbCSR.MAILBOX1
  439. #define Mailbox2 SaDbCSR.MAILBOX2
  440. #define Mailbox3 SaDbCSR.MAILBOX3
  441. #define Mailbox4 SaDbCSR.MAILBOX4
  442. #define Mailbox5 SaDbCSR.MAILBOX5
  443. #define Mailbox7 SaDbCSR.MAILBOX7
  444. #define DoorbellReg_p SaDbCSR.PRISETIRQ
  445. #define DoorbellReg_s SaDbCSR.SECSETIRQ
  446. #define DoorbellClrReg_p SaDbCSR.PRICLEARIRQ
  447. #define DOORBELL_0 cpu_to_le16(0x0001)
  448. #define DOORBELL_1 cpu_to_le16(0x0002)
  449. #define DOORBELL_2 cpu_to_le16(0x0004)
  450. #define DOORBELL_3 cpu_to_le16(0x0008)
  451. #define DOORBELL_4 cpu_to_le16(0x0010)
  452. #define DOORBELL_5 cpu_to_le16(0x0020)
  453. #define DOORBELL_6 cpu_to_le16(0x0040)
  454. #define PrintfReady DOORBELL_5
  455. #define PrintfDone DOORBELL_5
  456. struct sa_registers {
  457. struct sa_drawbridge_CSR SaDbCSR; /* 98h - c4h */
  458. };
  459. #define Sa_MINIPORT_REVISION 1
  460. #define sa_readw(AEP, CSR) readl(&((AEP)->regs.sa->CSR))
  461. #define sa_readl(AEP,  CSR) readl(&((AEP)->regs.sa->CSR))
  462. #define sa_writew(AEP, CSR, value) writew(value, &((AEP)->regs.sa->CSR))
  463. #define sa_writel(AEP, CSR, value) writel(value, &((AEP)->regs.sa->CSR))
  464. /*
  465.  * Rx Message Unit Registers
  466.  */
  467. struct rx_mu_registers {
  468. //  Local |   PCI* | Name
  469. // | |
  470. u32 ARSR; // 1300h | 00h | APIC Register Select Register
  471. u32 reserved0; // 1304h | 04h | Reserved
  472. u32 AWR; // 1308h | 08h | APIC Window Register
  473. u32 reserved1; // 130Ch | 0Ch | Reserved
  474. u32 IMRx[2]; // 1310h | 10h | Inbound Message Registers
  475. u32 OMRx[2]; // 1318h | 18h | Outbound Message Registers
  476. u32 IDR; // 1320h | 20h | Inbound Doorbell Register
  477. u32 IISR; // 1324h | 24h | Inbound Interrupt Status Register
  478. u32 IIMR; // 1328h | 28h | Inbound Interrupt Mask Register
  479. u32 ODR; // 132Ch | 2Ch | Outbound Doorbell Register
  480. u32 OISR; // 1330h | 30h | Outbound Interrupt Status Register
  481. u32 OIMR; // 1334h | 34h | Outbound Interrupt Mask Register
  482. // * Must access through ATU Inbound Translation Window
  483. };
  484. struct rx_inbound {
  485. u32 Mailbox[8];
  486. };
  487. #define InboundMailbox0 IndexRegs.Mailbox[0]
  488. #define InboundMailbox1 IndexRegs.Mailbox[1]
  489. #define InboundMailbox2 IndexRegs.Mailbox[2]
  490. #define InboundMailbox3 IndexRegs.Mailbox[3]
  491. #define InboundMailbox4 IndexRegs.Mailbox[4]
  492. #define INBOUNDDOORBELL_0 cpu_to_le32(0x00000001)
  493. #define INBOUNDDOORBELL_1 cpu_to_le32(0x00000002)
  494. #define INBOUNDDOORBELL_2 cpu_to_le32(0x00000004)
  495. #define INBOUNDDOORBELL_3 cpu_to_le32(0x00000008)
  496. #define INBOUNDDOORBELL_4 cpu_to_le32(0x00000010)
  497. #define INBOUNDDOORBELL_5 cpu_to_le32(0x00000020)
  498. #define INBOUNDDOORBELL_6 cpu_to_le32(0x00000040)
  499. #define OUTBOUNDDOORBELL_0 cpu_to_le32(0x00000001)
  500. #define OUTBOUNDDOORBELL_1 cpu_to_le32(0x00000002)
  501. #define OUTBOUNDDOORBELL_2 cpu_to_le32(0x00000004)
  502. #define OUTBOUNDDOORBELL_3 cpu_to_le32(0x00000008)
  503. #define OUTBOUNDDOORBELL_4 cpu_to_le32(0x00000010)
  504. #define InboundDoorbellReg MUnit.IDR
  505. #define OutboundDoorbellReg MUnit.ODR
  506. struct rx_registers {
  507. struct rx_mu_registers MUnit; // 1300h - 1334h
  508. u32 reserved1[6]; // 1338h - 134ch
  509. struct rx_inbound IndexRegs;
  510. };
  511. #define rx_readb(AEP, CSR) readb(&((AEP)->regs.rx->CSR))
  512. #define rx_readl(AEP, CSR) readl(&((AEP)->regs.rx->CSR))
  513. #define rx_writeb(AEP, CSR, value) writeb(value, &((AEP)->regs.rx->CSR))
  514. #define rx_writel(AEP, CSR, value) writel(value, &((AEP)->regs.rx->CSR))
  515. struct fib;
  516. typedef void (*fib_callback)(void *ctxt, struct fib *fibctx);
  517. struct aac_fib_context {
  518. s16   type; // used for verification of structure
  519. s16   size;
  520. u32 jiffies; // used for cleanup
  521. struct list_head next; // used to link context's into a linked list
  522. struct semaphore  wait_sem; // this is used to wait for the next fib to arrive.
  523. int wait; // Set to true when thread is in WaitForSingleObject
  524. unsigned long count; // total number of FIBs on FibList
  525. struct list_head fibs;
  526. };
  527. #define MAXIMUM_NUM_CONTAINERS 64 // 4 Luns * 16 Targets
  528. #define MAXIMUM_NUM_ADAPTERS 8
  529. struct fsa_scsi_hba {
  530. unsigned long size[MAXIMUM_NUM_CONTAINERS];
  531. unsigned long type[MAXIMUM_NUM_CONTAINERS];
  532. unsigned char valid[MAXIMUM_NUM_CONTAINERS];
  533. unsigned char ro[MAXIMUM_NUM_CONTAINERS];
  534. unsigned char locked[MAXIMUM_NUM_CONTAINERS];
  535. unsigned char deleted[MAXIMUM_NUM_CONTAINERS];
  536. long devno[MAXIMUM_NUM_CONTAINERS];
  537. };
  538. struct fib {
  539. void *next; /* this is used by the allocator */
  540. s16 type;
  541. s16 size;
  542. /*
  543.  * The Adapter that this I/O is destined for.
  544.  */
  545. struct aac_dev  *dev;
  546. u64 logicaladdr; /* 64 bit */
  547. /*
  548.  * This is the event the sendfib routine will wait on if the
  549.  * caller did not pass one and this is synch io.
  550.  */
  551. struct semaphore  event_wait;
  552. spinlock_t event_lock;
  553. unsigned long done; /* gets set to 1 when fib is complete */
  554. fib_callback  callback;
  555. void  *callback_data;
  556. unsigned long flags;
  557. /*
  558.  * The following is used to put this fib context onto the 
  559.  * Outstanding I/O queue.
  560.  */
  561. struct list_head queue;
  562. void  *data;
  563. struct hw_fib *fib; /* Actual shared object */
  564. };
  565. struct aac_dev
  566. {
  567. struct aac_dev *next;
  568. const char *name;
  569. int id;
  570. u16 irq_mask;
  571. /*
  572.  * Map for 128 fib objects (64k)
  573.  */
  574. dma_addr_t hw_fib_pa;
  575. struct hw_fib *hw_fib_va;
  576. /*
  577.  * Fib Headers
  578.  */
  579. struct fib fibs[AAC_NUM_FIB];
  580. struct fib *free_fib;
  581. struct fib *timeout_fib;
  582. spinlock_t fib_lock;
  583. struct aac_queue_block *queues;
  584. /*
  585.  * The user API will use an IOCTL to register itself to receive
  586.  * FIBs from the adapter.  The following list is used to keep
  587.  * track of all the threads that have requested these FIBs.  The
  588.  * mutex is used to synchronize access to all data associated 
  589.  * with the adapter fibs.
  590.  */
  591. struct list_head fib_list;
  592. struct adapter_ops a_ops;
  593. unsigned long fsrev; /* Main driver's revision number */
  594. struct aac_init *init; /* Holds initialization info to communicate with adapter */
  595. void * init_pa;  /* Holds physical address of the init struct */
  596. struct pci_dev *pdev; /* Our PCI interface */
  597. void * printfbuf; /* pointer to buffer used for printf's from the adapter */
  598. void * comm_addr; /* Base address of Comm area */
  599. dma_addr_t comm_phys; /* Physical Address of Comm area */
  600. size_t comm_size;
  601. struct Scsi_Host *scsi_host_ptr;
  602. struct fsa_scsi_hba fsa_dev;
  603. int thread_pid;
  604. int cardtype;
  605. /*
  606.  * The following is the device specific extension.
  607.  */
  608. union
  609. {
  610. struct sa_registers *sa;
  611. struct rx_registers *rx;
  612. } regs;
  613. /*
  614.  * The following is the number of the individual adapter
  615.  */
  616. long devnum;
  617. int aif_thread;
  618. struct completion aif_completion;
  619. };
  620. #define AllocateAndMapFibSpace(dev, MapFibContext) 
  621. dev->a_ops.AllocateAndMapFibSpace(dev, MapFibContext)
  622. #define UnmapAndFreeFibSpace(dev, MapFibContext) 
  623. dev->a_ops.UnmapAndFreeFibSpace(dev, MapFibContext)
  624. #define aac_adapter_interrupt(dev) 
  625. dev->a_ops.adapter_interrupt(dev)
  626. #define aac_adapter_notify(dev, event) 
  627. dev->a_ops.adapter_notify(dev, event)
  628. #define aac_adapter_enable_int(dev, event) 
  629. dev->a_ops.adapter_enable_int(dev, event)
  630. #define aac_adapter_disable_int(dev, event) 
  631. dev->a_ops.adapter_disable_int(dev, event)
  632. #define FIB_CONTEXT_FLAG_TIMED_OUT (0x00000001)
  633. /*
  634.  * Define the command values
  635.  */
  636.  
  637. #define Null 0
  638. #define  GetAttributes 1
  639. #define  SetAttributes 2
  640. #define  Lookup 3
  641. #define  ReadLink 4
  642. #define  Read 5
  643. #define  Write 6
  644. #define Create 7
  645. #define MakeDirectory 8
  646. #define SymbolicLink 9
  647. #define MakeNode 10
  648. #define Removex 11
  649. #define RemoveDirectoryx 12
  650. #define Rename 13
  651. #define Link 14
  652. #define ReadDirectory 15
  653. #define ReadDirectoryPlus 16
  654. #define FileSystemStatus 17
  655. #define FileSystemInfo 18
  656. #define PathConfigure 19
  657. #define Commit 20
  658. #define Mount 21
  659. #define UnMount 22
  660. #define Newfs 23
  661. #define FsCheck 24
  662. #define FsSync 25
  663. #define SimReadWrite 26
  664. #define SetFileSystemStatus 27
  665. #define BlockRead 28
  666. #define BlockWrite 29
  667. #define NvramIoctl 30
  668. #define FsSyncWait 31
  669. #define ClearArchiveBit 32
  670. #define SetAcl 33
  671. #define GetAcl 34
  672. #define AssignAcl 35
  673. #define FaultInsertion 36 /* Fault Insertion Command */
  674. #define CrazyCache 37 /* Crazycache */
  675. #define MAX_FSACOMMAND_NUM 38
  676. /*
  677.  * Define the status returns. These are very unixlike although
  678.  * most are not in fact used
  679.  */
  680. #define ST_OK 0
  681. #define ST_PERM 1
  682. #define ST_NOENT 2
  683. #define ST_IO 5
  684. #define ST_NXIO 6
  685. #define ST_E2BIG 7
  686. #define ST_ACCES 13
  687. #define ST_EXIST 17
  688. #define ST_XDEV 18
  689. #define ST_NODEV 19
  690. #define ST_NOTDIR 20
  691. #define ST_ISDIR 21
  692. #define ST_INVAL 22
  693. #define ST_FBIG 27
  694. #define ST_NOSPC 28
  695. #define ST_ROFS 30
  696. #define ST_MLINK 31
  697. #define ST_WOULDBLOCK 35
  698. #define ST_NAMETOOLONG 63
  699. #define ST_NOTEMPTY 66
  700. #define ST_DQUOT 69
  701. #define ST_STALE 70
  702. #define ST_REMOTE 71
  703. #define ST_BADHANDLE 10001
  704. #define ST_NOT_SYNC 10002
  705. #define ST_BAD_COOKIE 10003
  706. #define ST_NOTSUPP 10004
  707. #define ST_TOOSMALL 10005
  708. #define ST_SERVERFAULT 10006
  709. #define ST_BADTYPE 10007
  710. #define ST_JUKEBOX 10008
  711. #define ST_NOTMOUNTED 10009
  712. #define ST_MAINTMODE 10010
  713. #define ST_STALEACL 10011
  714. /*
  715.  * On writes how does the client want the data written.
  716.  */
  717. #define CACHE_CSTABLE 1
  718. #define CACHE_UNSTABLE 2
  719. /*
  720.  * Lets the client know at which level the data was commited on
  721.  * a write request
  722.  */
  723. #define CMFILE_SYNCH_NVRAM 1
  724. #define CMDATA_SYNCH_NVRAM 2
  725. #define CMFILE_SYNCH 3
  726. #define CMDATA_SYNCH 4
  727. #define CMUNSTABLE 5
  728. struct aac_read
  729. {
  730. u32   command;
  731. u32  cid;
  732. u32  block;
  733. u32  count;
  734. struct sgmap sg; // Must be last in struct because it is variable
  735. };
  736. struct aac_read_reply
  737. {
  738. u32   status;
  739. u32  count;
  740. };
  741. struct aac_write
  742. {
  743. u32 command;
  744. u32  cid;
  745. u32  block;
  746. u32  count;
  747. u32   stable;
  748. struct sgmap sg; // Must be last in struct because it is variable
  749. };
  750. struct aac_write_reply
  751. {
  752. u32 status;
  753. u32  count;
  754. u32 committed;
  755. };
  756. /*
  757.  * Object-Server / Volume-Manager Dispatch Classes
  758.  */
  759. #define VM_Null 0
  760. #define VM_NameServe 1
  761. #define VM_ContainerConfig 2
  762. #define VM_Ioctl 3
  763. #define VM_FilesystemIoctl 4
  764. #define VM_CloseAll 5
  765. #define VM_CtBlockRead 6
  766. #define VM_CtBlockWrite 7
  767. #define VM_SliceBlockRead 8 /* raw access to configured "storage objects" */
  768. #define VM_SliceBlockWrite 9
  769. #define VM_DriveBlockRead 10 /* raw access to physical devices */
  770. #define VM_DriveBlockWrite 11
  771. #define VM_EnclosureMgt 12 /* enclosure management */
  772. #define VM_Unused 13 /* used to be diskset management */
  773. #define VM_CtBlockVerify 14
  774. #define VM_CtPerf 15 /* performance test */
  775. #define VM_CtBlockRead64 16
  776. #define VM_CtBlockWrite64 17
  777. #define VM_CtBlockVerify64 18
  778. #define MAX_VMCOMMAND_NUM 19 /* used for sizing stats array - leave last */
  779. /*
  780.  * Descriptive information (eg, vital stats)
  781.  * that a content manager might report.  The
  782.  * FileArray filesystem component is one example
  783.  * of a content manager.  Raw mode might be
  784.  * another.
  785.  */
  786. struct aac_fsinfo {
  787. u32  fsTotalSize; /* Consumed by fs, incl. metadata */
  788. u32  fsBlockSize;
  789. u32  fsFragSize;
  790. u32  fsMaxExtendSize;
  791. u32  fsSpaceUnits;
  792. u32  fsMaxNumFiles;
  793. u32  fsNumFreeFiles;
  794. u32  fsInodeDensity;
  795. }; /* valid iff ObjType == FT_FILESYS && !(ContentState & FSCS_NOTCLEAN) */
  796. union aac_contentinfo {
  797. struct aac_fsinfo filesys; /* valid iff ObjType == FT_FILESYS && !(ContentState & FSCS_NOTCLEAN) */
  798. };
  799. /*
  800.  * Query for "mountable" objects, ie, objects that are typically
  801.  * associated with a drive letter on the client (host) side.
  802.  */
  803. struct aac_mntent {
  804. u32     oid;
  805. char name[16]; // if applicable
  806. struct creation_info create_info; // if applicable
  807. u32 capacity;
  808. u32 vol;     // substrate structure
  809. u32 obj;         // FT_FILESYS, FT_DATABASE, etc.
  810. u32 state; // unready for mounting, readonly, etc.
  811. union aac_contentinfo fileinfo; // Info specific to content manager (eg, filesystem)
  812. u32 altoid; // != oid <==> snapshot or broken mirror exists
  813. };
  814. #define FSCS_READONLY 0x0002 /* possible result of broken mirror */
  815. struct aac_query_mount {
  816. u32 command;
  817. u32 type;
  818. u32 count;
  819. };
  820. struct aac_mount {
  821. u32 status;
  822. u32     type;           /* should be same as that requested */
  823. u32 count;
  824. struct aac_mntent mnt[1];
  825. };
  826. /*
  827.  * The following command is sent to shut down each container.
  828.  */
  829. struct aac_close {
  830. u32 command;
  831. u32 cid;
  832. };
  833. struct aac_query_disk
  834. {
  835. s32 cnum;
  836. s32 bus;
  837. s32 target;
  838. s32 lun;
  839. u32 valid;
  840. u32 locked;
  841. u32 deleted;
  842. s32 instance;
  843. s8 name[10];
  844. u32 unmapped;
  845. };
  846. struct aac_delete_disk {
  847. u32 disknum;
  848. u32 cnum;
  849. };
  850. struct fib_ioctl
  851. {
  852. char *fibctx;
  853. int wait;
  854. char *fib;
  855. };
  856. struct revision
  857. {
  858. int compat;
  859. unsigned long version;
  860. unsigned long build;
  861. };
  862. /*
  863.  *  Ugly - non Linux like ioctl coding for back compat.
  864.  */
  865. #define CTL_CODE(function, method) (                 
  866.     (4<< 16) | ((function) << 2) | (method) 
  867. )
  868. /*
  869.  * Define the method codes for how buffers are passed for I/O and FS 
  870.  * controls
  871.  */
  872. #define METHOD_BUFFERED                 0
  873. #define METHOD_NEITHER                  3
  874. /*
  875.  * Filesystem ioctls
  876.  */
  877. #define FSACTL_SENDFIB                   CTL_CODE(2050, METHOD_BUFFERED)
  878. #define FSACTL_DELETE_DISK 0x163
  879. #define FSACTL_QUERY_DISK 0x173
  880. #define FSACTL_OPEN_GET_ADAPTER_FIB CTL_CODE(2100, METHOD_BUFFERED)
  881. #define FSACTL_GET_NEXT_ADAPTER_FIB CTL_CODE(2101, METHOD_BUFFERED)
  882. #define FSACTL_CLOSE_GET_ADAPTER_FIB CTL_CODE(2102, METHOD_BUFFERED)
  883. #define FSACTL_MINIPORT_REV_CHECK               CTL_CODE(2107, METHOD_BUFFERED)
  884. #define FSACTL_FORCE_DELETE_DISK CTL_CODE(2120, METHOD_NEITHER)
  885. struct aac_common
  886. {
  887. /*
  888.  * If this value is set to 1 then interrupt moderation will occur 
  889.  * in the base commuication support.
  890.  */
  891. unsigned long irq_mod;
  892. int peak_fibs;
  893. int zero_fibs;
  894. unsigned long fib_timeouts;
  895. /*
  896.  * Statistical counters in debug mode
  897.  */
  898. #ifdef DBG
  899. unsigned long FibsSent;
  900. unsigned long FibRecved;
  901. unsigned long NoResponseSent;
  902. unsigned long NoResponseRecved;
  903. unsigned long AsyncSent;
  904. unsigned long AsyncRecved;
  905. unsigned long NormalSent;
  906. unsigned long NormalRecved;
  907. #endif
  908. };
  909. extern struct aac_common aac_config;
  910. /*
  911.  * The following macro is used when sending and receiving FIBs. It is
  912.  * only used for debugging.
  913.  */
  914.  
  915. #if DBG
  916. #define FIB_COUNTER_INCREMENT(counter) (counter)++
  917. #else
  918. #define FIB_COUNTER_INCREMENT(counter)
  919. #endif
  920. /*
  921.  * Adapter direct commands
  922.  */
  923. #define BREAKPOINT_REQUEST 0x00000004
  924. #define INIT_STRUCT_BASE_ADDRESS 0x00000005
  925. #define SEND_SYNCHRONOUS_FIB 0x0000000c
  926. /*
  927.  * Adapter Status Register
  928.  *
  929.  *  Phase Staus mailbox is 32bits:
  930.  * <31:16> = Phase Status
  931.  * <15:0>  = Phase
  932.  *
  933.  * The adapter reports is present state through the phase.  Only
  934.  * a single phase should be ever be set.  Each phase can have multiple
  935.  * phase status bits to provide more detailed information about the 
  936.  * state of the board.  Care should be taken to ensure that any phase 
  937.  * status bits that are set when changing the phase are also valid
  938.  * for the new phase or be cleared out.  Adapter software (monitor,
  939.  * iflash, kernel) is responsible for properly maintining the phase 
  940.  * status mailbox when it is running.
  941.  *
  942.  * MONKER_API Phases
  943.  *
  944.  * Phases are bit oriented.  It is NOT valid  to have multiple bits set
  945.  */
  946. #define SELF_TEST_FAILED cpu_to_le32(0x00000004)
  947. #define KERNEL_UP_AND_RUNNING cpu_to_le32(0x00000080)
  948. #define KERNEL_PANIC cpu_to_le32(0x00000100)
  949. /*
  950.  * Doorbell bit defines
  951.  */
  952. #define DoorBellPrintfDone cpu_to_le32(1<<5) // Host -> Adapter
  953. #define DoorBellAdapterNormCmdReady cpu_to_le32(1<<1) // Adapter -> Host
  954. #define DoorBellAdapterNormRespReady cpu_to_le32(1<<2) // Adapter -> Host
  955. #define DoorBellAdapterNormCmdNotFull cpu_to_le32(1<<3) // Adapter -> Host
  956. #define DoorBellAdapterNormRespNotFull cpu_to_le32(1<<4) // Adapter -> Host
  957. #define DoorBellPrintfReady cpu_to_le32(1<<5) // Adapter -> Host
  958. /*
  959.  * For FIB communication, we need all of the following things
  960.  * to send back to the user.
  961.  */
  962.  
  963. #define  AifCmdEventNotify 1 /* Notify of event */
  964. #define AifCmdJobProgress 2 /* Progress report */
  965. #define AifCmdAPIReport 3 /* Report from other user of API */
  966. #define AifCmdDriverNotify 4 /* Notify host driver of event */
  967. #define AifReqJobList 100 /* Gets back complete job list */
  968. #define AifReqJobsForCtr 101 /* Gets back jobs for specific container */
  969. #define AifReqJobsForScsi 102 /* Gets back jobs for specific SCSI device */ 
  970. #define AifReqJobReport 103 /* Gets back a specific job report or list of them */ 
  971. #define AifReqTerminateJob 104 /* Terminates job */
  972. #define AifReqSuspendJob 105 /* Suspends a job */
  973. #define AifReqResumeJob 106 /* Resumes a job */ 
  974. #define AifReqSendAPIReport 107 /* API generic report requests */
  975. #define AifReqAPIJobStart 108 /* Start a job from the API */
  976. #define AifReqAPIJobUpdate 109 /* Update a job report from the API */
  977. #define AifReqAPIJobFinish 110 /* Finish a job from the API */
  978. /*
  979.  * Adapter Initiated FIB command structures. Start with the adapter
  980.  * initiated FIBs that really come from the adapter, and get responded
  981.  * to by the host.
  982.  */
  983. struct aac_aifcmd {
  984. u32 command; /* Tell host what type of notify this is */
  985. u32 seqnum; /* To allow ordering of reports (if necessary) */
  986. u8 data[1]; /* Undefined length (from kernel viewpoint) */
  987. };
  988. /*
  989.  * Adapter Information Block
  990.  *
  991.  * This is returned by the RequestAdapterInfo block
  992.  */
  993.  
  994. struct aac_adapter_info
  995. {
  996. u32 platform;
  997. u32 cpu;
  998. u32 subcpu;
  999. u32 clock;
  1000. u32 execmem;
  1001. u32 buffermem;
  1002. u32 totalmem;
  1003. u32 kernelrev;
  1004. u32 kernelbuild;
  1005. u32 monitorrev;
  1006. u32 monitorbuild;
  1007. u32 hwrev;
  1008. u32 hwbuild;
  1009. u32 biosrev;
  1010. u32 biosbuild;
  1011. u32 clustering;
  1012. u32 clustermask;
  1013. u64 serial;
  1014. u32 battery;
  1015. u32 options;
  1016. u32 OEM;
  1017. };
  1018. const char *aac_driverinfo(struct Scsi_Host *);
  1019. struct fib *fib_alloc(struct aac_dev *dev);
  1020. int fib_setup(struct aac_dev *dev);
  1021. void fib_map_free(struct aac_dev *dev);
  1022. void fib_free(struct fib * context);
  1023. void fib_init(struct fib * context);
  1024. void fib_dealloc(struct fib * context);
  1025. void aac_printf(struct aac_dev *dev, u32 val);
  1026. int fib_send(u16 command, struct fib * context, unsigned long size, int priority, int wait, int reply, fib_callback callback, void *ctxt);
  1027. int aac_consumer_get(struct aac_dev * dev, struct aac_queue * q, struct aac_entry **entry);
  1028. int aac_consumer_avail(struct aac_dev * dev, struct aac_queue * q);
  1029. void aac_consumer_free(struct aac_dev * dev, struct aac_queue * q, u32 qnum);
  1030. int fib_complete(struct fib * context);
  1031. #define fib_data(fibctx) ((void *)(fibctx)->fib->data)
  1032. int aac_detach(struct aac_dev *dev);
  1033. struct aac_dev *aac_init_adapter(struct aac_dev *dev);
  1034. int aac_get_containers(struct aac_dev *dev);
  1035. int aac_scsi_cmd(Scsi_Cmnd *scsi_cmnd_ptr);
  1036. int aac_dev_ioctl(struct aac_dev *dev, int cmd, void *arg);
  1037. int aac_do_ioctl(struct aac_dev * dev, int cmd, void *arg);
  1038. int aac_rx_init(struct aac_dev *dev, unsigned long devNumber);
  1039. int aac_sa_init(struct aac_dev *dev, unsigned long devNumber);
  1040. unsigned int aac_response_normal(struct aac_queue * q);
  1041. unsigned int aac_command_normal(struct aac_queue * q);
  1042. int aac_command_thread(struct aac_dev * dev);
  1043. int aac_close_fib_context(struct aac_dev * dev, struct aac_fib_context *fibctx);
  1044. int fib_adapter_complete(struct fib * fibptr, unsigned short size);