be.h 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. /**
  2. * Copyright (C) 2005 - 2015 Emulex
  3. * All rights reserved.
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License version 2
  7. * as published by the Free Software Foundation. The full GNU General
  8. * Public License is included in this distribution in the file called COPYING.
  9. *
  10. * Contact Information:
  11. * linux-drivers@avagotech.com
  12. *
  13. * Emulex
  14. * 3333 Susan Street
  15. * Costa Mesa, CA 92626
  16. */
  17. #ifndef BEISCSI_H
  18. #define BEISCSI_H
  19. #include <linux/pci.h>
  20. #include <linux/if_vlan.h>
  21. #include <linux/blk-iopoll.h>
  22. #define FW_VER_LEN 32
  23. #define MCC_Q_LEN 128
  24. #define MCC_CQ_LEN 256
  25. #define MAX_MCC_CMD 16
  26. /* BladeEngine Generation numbers */
  27. #define BE_GEN2 2
  28. #define BE_GEN3 3
  29. #define BE_GEN4 4
  30. struct be_dma_mem {
  31. void *va;
  32. dma_addr_t dma;
  33. u32 size;
  34. };
  35. struct be_queue_info {
  36. struct be_dma_mem dma_mem;
  37. u16 len;
  38. u16 entry_size; /* Size of an element in the queue */
  39. u16 id;
  40. u16 tail, head;
  41. bool created;
  42. atomic_t used; /* Number of valid elements in the queue */
  43. };
  44. static inline u32 MODULO(u16 val, u16 limit)
  45. {
  46. WARN_ON(limit & (limit - 1));
  47. return val & (limit - 1);
  48. }
  49. static inline void index_inc(u16 *index, u16 limit)
  50. {
  51. *index = MODULO((*index + 1), limit);
  52. }
  53. static inline void *queue_head_node(struct be_queue_info *q)
  54. {
  55. return q->dma_mem.va + q->head * q->entry_size;
  56. }
  57. static inline void *queue_get_wrb(struct be_queue_info *q, unsigned int wrb_num)
  58. {
  59. return q->dma_mem.va + wrb_num * q->entry_size;
  60. }
  61. static inline void *queue_tail_node(struct be_queue_info *q)
  62. {
  63. return q->dma_mem.va + q->tail * q->entry_size;
  64. }
  65. static inline void queue_head_inc(struct be_queue_info *q)
  66. {
  67. index_inc(&q->head, q->len);
  68. }
  69. static inline void queue_tail_inc(struct be_queue_info *q)
  70. {
  71. index_inc(&q->tail, q->len);
  72. }
  73. /*ISCSI */
  74. struct be_aic_obj { /* Adaptive interrupt coalescing (AIC) info */
  75. bool enable;
  76. u32 min_eqd; /* in usecs */
  77. u32 max_eqd; /* in usecs */
  78. u32 prev_eqd; /* in usecs */
  79. u32 et_eqd; /* configured val when aic is off */
  80. ulong jiffs;
  81. u64 eq_prev; /* Used to calculate eqe */
  82. };
  83. struct be_eq_obj {
  84. bool todo_mcc_cq;
  85. bool todo_cq;
  86. u32 cq_count;
  87. struct be_queue_info q;
  88. struct beiscsi_hba *phba;
  89. struct be_queue_info *cq;
  90. struct work_struct work_cqs; /* Work Item */
  91. struct blk_iopoll iopoll;
  92. };
  93. struct be_mcc_obj {
  94. struct be_queue_info q;
  95. struct be_queue_info cq;
  96. };
  97. struct beiscsi_mcc_tag_state {
  98. #define MCC_TAG_STATE_COMPLETED 0x00
  99. #define MCC_TAG_STATE_RUNNING 0x01
  100. #define MCC_TAG_STATE_TIMEOUT 0x02
  101. uint8_t tag_state;
  102. struct be_dma_mem tag_mem_state;
  103. };
  104. struct be_ctrl_info {
  105. u8 __iomem *csr;
  106. u8 __iomem *db; /* Door Bell */
  107. u8 __iomem *pcicfg; /* PCI config space */
  108. struct pci_dev *pdev;
  109. /* Mbox used for cmd request/response */
  110. spinlock_t mbox_lock; /* For serializing mbox cmds to BE card */
  111. struct be_dma_mem mbox_mem;
  112. /* Mbox mem is adjusted to align to 16 bytes. The allocated addr
  113. * is stored for freeing purpose */
  114. struct be_dma_mem mbox_mem_alloced;
  115. /* MCC Rings */
  116. struct be_mcc_obj mcc_obj;
  117. spinlock_t mcc_lock; /* For serializing mcc cmds to BE card */
  118. spinlock_t mcc_cq_lock;
  119. wait_queue_head_t mcc_wait[MAX_MCC_CMD + 1];
  120. unsigned int mcc_tag[MAX_MCC_CMD];
  121. unsigned int mcc_numtag[MAX_MCC_CMD + 1];
  122. unsigned short mcc_alloc_index;
  123. unsigned short mcc_free_index;
  124. unsigned int mcc_tag_available;
  125. struct beiscsi_mcc_tag_state ptag_state[MAX_MCC_CMD + 1];
  126. };
  127. #include "be_cmds.h"
  128. #define PAGE_SHIFT_4K 12
  129. #define PAGE_SIZE_4K (1 << PAGE_SHIFT_4K)
  130. #define mcc_timeout 120000 /* 12s timeout */
  131. #define BEISCSI_LOGOUT_SYNC_DELAY 250
  132. /* Returns number of pages spanned by the data starting at the given addr */
  133. #define PAGES_4K_SPANNED(_address, size) \
  134. ((u32)((((size_t)(_address) & (PAGE_SIZE_4K - 1)) + \
  135. (size) + (PAGE_SIZE_4K - 1)) >> PAGE_SHIFT_4K))
  136. /* Returns bit offset within a DWORD of a bitfield */
  137. #define AMAP_BIT_OFFSET(_struct, field) \
  138. (((size_t)&(((_struct *)0)->field))%32)
  139. /* Returns the bit mask of the field that is NOT shifted into location. */
  140. static inline u32 amap_mask(u32 bitsize)
  141. {
  142. return (bitsize == 32 ? 0xFFFFFFFF : (1 << bitsize) - 1);
  143. }
  144. static inline void amap_set(void *ptr, u32 dw_offset, u32 mask,
  145. u32 offset, u32 value)
  146. {
  147. u32 *dw = (u32 *) ptr + dw_offset;
  148. *dw &= ~(mask << offset);
  149. *dw |= (mask & value) << offset;
  150. }
  151. #define AMAP_SET_BITS(_struct, field, ptr, val) \
  152. amap_set(ptr, \
  153. offsetof(_struct, field)/32, \
  154. amap_mask(sizeof(((_struct *)0)->field)), \
  155. AMAP_BIT_OFFSET(_struct, field), \
  156. val)
  157. static inline u32 amap_get(void *ptr, u32 dw_offset, u32 mask, u32 offset)
  158. {
  159. u32 *dw = ptr;
  160. return mask & (*(dw + dw_offset) >> offset);
  161. }
  162. #define AMAP_GET_BITS(_struct, field, ptr) \
  163. amap_get(ptr, \
  164. offsetof(_struct, field)/32, \
  165. amap_mask(sizeof(((_struct *)0)->field)), \
  166. AMAP_BIT_OFFSET(_struct, field))
  167. #define be_dws_cpu_to_le(wrb, len) swap_dws(wrb, len)
  168. #define be_dws_le_to_cpu(wrb, len) swap_dws(wrb, len)
  169. static inline void swap_dws(void *wrb, int len)
  170. {
  171. #ifdef __BIG_ENDIAN
  172. u32 *dw = wrb;
  173. WARN_ON(len % 4);
  174. do {
  175. *dw = cpu_to_le32(*dw);
  176. dw++;
  177. len -= 4;
  178. } while (len);
  179. #endif /* __BIG_ENDIAN */
  180. }
  181. #endif /* BEISCSI_H */