cciss.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:6k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef CCISS_H
  2. #define CCISS_H
  3. #include <linux/genhd.h>
  4. #include "cciss_cmd.h"
  5. #define NWD 16
  6. #define NWD_SHIFT 4
  7. #define MAX_PART 16
  8. #define IO_OK 0
  9. #define IO_ERROR 1
  10. #define MAJOR_NR COMPAQ_CISS_MAJOR 
  11. struct ctlr_info;
  12. typedef struct ctlr_info ctlr_info_t;
  13. struct access_method {
  14. void (*submit_command)(ctlr_info_t *h, CommandList_struct *c);
  15. void (*set_intr_mask)(ctlr_info_t *h, unsigned long val);
  16. unsigned long (*fifo_full)(ctlr_info_t *h);
  17. unsigned long (*intr_pending)(ctlr_info_t *h);
  18. unsigned long (*command_completed)(ctlr_info_t *h);
  19. };
  20. typedef struct _drive_info_struct
  21. {
  22.   __u32   LunID;
  23. int  usage_count;
  24. int  nr_blocks;
  25. int block_size;
  26. int  heads;
  27. int sectors;
  28. int  cylinders;
  29. } drive_info_struct;
  30. struct ctlr_info 
  31. {
  32. int ctlr;
  33. char devname[8];
  34. char    *product_name;
  35. char firm_ver[4]; // Firmware version 
  36. struct pci_dev *pdev;
  37. __u32 board_id;
  38. ulong   vaddr;
  39. __u32 paddr;
  40. unsigned long io_mem_addr;
  41. unsigned long io_mem_length;
  42. CfgTable_struct *cfgtable;
  43. int intr;
  44. int  max_commands;
  45. int commands_outstanding;
  46. int  max_outstanding; /* Debug */ 
  47. int num_luns;
  48. int usage_count;  /* number of opens all all minor devices */
  49. // information about each logical volume
  50. drive_info_struct drv[CISS_MAX_LUN];
  51. struct access_method access;
  52. /* queue and queue Info */ 
  53. CommandList_struct *reqQ;
  54. CommandList_struct  *cmpQ;
  55. unsigned int Qdepth;
  56. unsigned int maxQsinceinit;
  57. unsigned int maxSG;
  58. //* pointers to command and error info pool */ 
  59. CommandList_struct  *cmd_pool;
  60. dma_addr_t cmd_pool_dhandle; 
  61. ErrorInfo_struct  *errinfo_pool;
  62. dma_addr_t errinfo_pool_dhandle; 
  63.         __u32    *cmd_pool_bits;
  64. int nr_allocs;
  65. int nr_frees; 
  66. // Disk structures we need to pass back
  67. struct gendisk   gendisk;
  68.    // indexed by minor numbers
  69. struct hd_struct hd[256];
  70. int              sizes[256];
  71. int              blocksizes[256];
  72. int              hardsizes[256];
  73. #ifdef CONFIG_CISS_SCSI_TAPE
  74. void *scsi_ctlr; /* ptr to structure containing scsi related stuff */
  75. #endif
  76. };
  77. /*  Defining the diffent access_menthods */
  78. /*
  79.  * Memory mapped FIFO interface (SMART 53xx cards)
  80.  */
  81. #define SA5_DOORBELL 0x20
  82. #define SA5_REQUEST_PORT_OFFSET 0x40
  83. #define SA5_REPLY_INTR_MASK_OFFSET 0x34
  84. #define SA5_REPLY_PORT_OFFSET 0x44
  85. #define SA5_INTR_STATUS 0x30
  86. #define SA5_CTCFG_OFFSET 0xB4
  87. #define SA5_CTMEM_OFFSET 0xB8
  88. #define SA5_INTR_OFF 0x08
  89. #define SA5B_INTR_OFF 0x04
  90. #define SA5_INTR_PENDING 0x08
  91. #define SA5B_INTR_PENDING 0x04
  92. #define FIFO_EMPTY 0xffffffff
  93. #define  CISS_ERROR_BIT 0x02
  94. #define CCISS_INTR_ON  1 
  95. #define CCISS_INTR_OFF 0
  96. /* 
  97. Send the command to the hardware 
  98. */
  99. static void SA5_submit_command( ctlr_info_t *h, CommandList_struct *c) 
  100. {
  101. #ifdef CCISS_DEBUG
  102.  printk("Sending %x - down to controllern", c->busaddr );
  103. #endif /* CCISS_DEBUG */ 
  104.          writel(c->busaddr, h->vaddr + SA5_REQUEST_PORT_OFFSET);
  105.  h->commands_outstanding++;
  106.  if ( h->commands_outstanding > h->max_outstanding)
  107. h->max_outstanding = h->commands_outstanding;
  108. }
  109. /*  
  110.  *  This card is the opposite of the other cards.  
  111.  *   0 turns interrupts on... 
  112.  *   0x08 turns them off... 
  113.  */
  114. static void SA5_intr_mask(ctlr_info_t *h, unsigned long val)
  115. {
  116. if (val) 
  117. { /* Turn interrupts on */
  118. writel(0, h->vaddr + SA5_REPLY_INTR_MASK_OFFSET);
  119. } else /* Turn them off */
  120. {
  121.          writel( SA5_INTR_OFF, 
  122. h->vaddr + SA5_REPLY_INTR_MASK_OFFSET);
  123. }
  124. }
  125. /*
  126.  *  This card is the opposite of the other cards.
  127.  *   0 turns interrupts on...
  128.  *   0x04 turns them off...
  129.  */
  130. static void SA5B_intr_mask(ctlr_info_t *h, unsigned long val)
  131. {
  132.         if (val)
  133.         { /* Turn interrupts on */
  134.                 writel(0, h->vaddr + SA5_REPLY_INTR_MASK_OFFSET);
  135.         } else /* Turn them off */
  136.         {
  137.                 writel( SA5B_INTR_OFF,
  138.                         h->vaddr + SA5_REPLY_INTR_MASK_OFFSET);
  139.         }
  140. }
  141. /*
  142.  *  Returns true if fifo is full.  
  143.  * 
  144.  */ 
  145. static unsigned long SA5_fifo_full(ctlr_info_t *h)
  146. {
  147. if( h->commands_outstanding >= h->max_commands)
  148. return(1);
  149. else 
  150. return(0);
  151. }
  152. /* 
  153.  *   returns value read from hardware. 
  154.  *     returns FIFO_EMPTY if there is nothing to read 
  155.  */ 
  156. static unsigned long SA5_completed(ctlr_info_t *h)
  157. {
  158. unsigned long register_value 
  159. = readl(h->vaddr + SA5_REPLY_PORT_OFFSET);
  160. if(register_value != FIFO_EMPTY)
  161. {
  162. h->commands_outstanding--;
  163. #ifdef CCISS_DEBUG
  164. printk("cciss:  Read %lx back from boardn", register_value);
  165. #endif /* CCISS_DEBUG */ 
  166. #ifdef CCISS_DEBUG
  167. else
  168. {
  169. printk("cciss:  FIFO Empty readn");
  170. }
  171. #endif 
  172. return ( register_value); 
  173. }
  174. /*
  175.  * Returns true if an interrupt is pending.. 
  176.  */
  177. static unsigned long SA5_intr_pending(ctlr_info_t *h)
  178. {
  179. unsigned long register_value  = 
  180. readl(h->vaddr + SA5_INTR_STATUS);
  181. #ifdef CCISS_DEBUG
  182. printk("cciss: intr_pending %lxn", register_value);
  183. #endif  /* CCISS_DEBUG */
  184. if( register_value &  SA5_INTR_PENDING) 
  185. return  1;
  186. return 0 ;
  187. }
  188. /*
  189.  *      Returns true if an interrupt is pending..
  190.  */
  191. static unsigned long SA5B_intr_pending(ctlr_info_t *h)
  192. {
  193.         unsigned long register_value  =
  194.                 readl(h->vaddr + SA5_INTR_STATUS);
  195. #ifdef CCISS_DEBUG
  196.         printk("cciss: intr_pending %lxn", register_value);
  197. #endif  /* CCISS_DEBUG */
  198.         if( register_value &  SA5B_INTR_PENDING)
  199.                 return  1;
  200.         return 0 ;
  201. }
  202. static struct access_method SA5_access = {
  203. SA5_submit_command,
  204. SA5_intr_mask,
  205. SA5_fifo_full,
  206. SA5_intr_pending,
  207. SA5_completed,
  208. };
  209. static struct access_method SA5B_access = {
  210.         SA5_submit_command,
  211.         SA5B_intr_mask,
  212.         SA5_fifo_full,
  213.         SA5B_intr_pending,
  214.         SA5_completed,
  215. };
  216. struct board_type {
  217. __u32 board_id;
  218. char *product_name;
  219. struct access_method *access;
  220. };
  221. #endif /* CCISS_H */