/kern_oII/drivers/scsi/fnic/fnic.h

http://omnia2droid.googlecode.com/ · C++ Header · 265 lines · 191 code · 44 blank · 30 comment · 3 complexity · 07dddd6cb6ffdcbe2ff6ecf4fcb73b76 MD5 · raw file

  1. /*
  2. * Copyright 2008 Cisco Systems, Inc. All rights reserved.
  3. * Copyright 2007 Nuova Systems, Inc. All rights reserved.
  4. *
  5. * This program is free software; you may redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; version 2 of the License.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  10. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  11. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  12. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  13. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  14. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  15. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  16. * SOFTWARE.
  17. */
  18. #ifndef _FNIC_H_
  19. #define _FNIC_H_
  20. #include <linux/interrupt.h>
  21. #include <linux/netdevice.h>
  22. #include <linux/workqueue.h>
  23. #include <scsi/libfc.h>
  24. #include "fnic_io.h"
  25. #include "fnic_res.h"
  26. #include "vnic_dev.h"
  27. #include "vnic_wq.h"
  28. #include "vnic_rq.h"
  29. #include "vnic_cq.h"
  30. #include "vnic_wq_copy.h"
  31. #include "vnic_intr.h"
  32. #include "vnic_stats.h"
  33. #include "vnic_scsi.h"
  34. #define DRV_NAME "fnic"
  35. #define DRV_DESCRIPTION "Cisco FCoE HBA Driver"
  36. #define DRV_VERSION "1.0.0.1121"
  37. #define PFX DRV_NAME ": "
  38. #define DFX DRV_NAME "%d: "
  39. #define DESC_CLEAN_LOW_WATERMARK 8
  40. #define FNIC_MAX_IO_REQ 2048 /* scsi_cmnd tag map entries */
  41. #define FNIC_IO_LOCKS 64 /* IO locks: power of 2 */
  42. #define FNIC_DFLT_QUEUE_DEPTH 32
  43. #define FNIC_STATS_RATE_LIMIT 4 /* limit rate at which stats are pulled up */
  44. /*
  45. * Tag bits used for special requests.
  46. */
  47. #define BIT(nr) (1UL << (nr))
  48. #define FNIC_TAG_ABORT BIT(30) /* tag bit indicating abort */
  49. #define FNIC_TAG_DEV_RST BIT(29) /* indicates device reset */
  50. #define FNIC_TAG_MASK (BIT(24) - 1) /* mask for lookup */
  51. #define FNIC_NO_TAG -1
  52. /*
  53. * Usage of the scsi_cmnd scratchpad.
  54. * These fields are locked by the hashed io_req_lock.
  55. */
  56. #define CMD_SP(Cmnd) ((Cmnd)->SCp.ptr)
  57. #define CMD_STATE(Cmnd) ((Cmnd)->SCp.phase)
  58. #define CMD_ABTS_STATUS(Cmnd) ((Cmnd)->SCp.Message)
  59. #define CMD_LR_STATUS(Cmnd) ((Cmnd)->SCp.have_data_in)
  60. #define CMD_TAG(Cmnd) ((Cmnd)->SCp.sent_command)
  61. #define FCPIO_INVALID_CODE 0x100 /* hdr_status value unused by firmware */
  62. #define FNIC_LUN_RESET_TIMEOUT 10000 /* mSec */
  63. #define FNIC_HOST_RESET_TIMEOUT 10000 /* mSec */
  64. #define FNIC_RMDEVICE_TIMEOUT 1000 /* mSec */
  65. #define FNIC_HOST_RESET_SETTLE_TIME 30 /* Sec */
  66. #define FNIC_MAX_FCP_TARGET 256
  67. extern unsigned int fnic_log_level;
  68. #define FNIC_MAIN_LOGGING 0x01
  69. #define FNIC_FCS_LOGGING 0x02
  70. #define FNIC_SCSI_LOGGING 0x04
  71. #define FNIC_ISR_LOGGING 0x08
  72. #define FNIC_CHECK_LOGGING(LEVEL, CMD) \
  73. do { \
  74. if (unlikely(fnic_log_level & LEVEL)) \
  75. do { \
  76. CMD; \
  77. } while (0); \
  78. } while (0)
  79. #define FNIC_MAIN_DBG(kern_level, host, fmt, args...) \
  80. FNIC_CHECK_LOGGING(FNIC_MAIN_LOGGING, \
  81. shost_printk(kern_level, host, fmt, ##args);)
  82. #define FNIC_FCS_DBG(kern_level, host, fmt, args...) \
  83. FNIC_CHECK_LOGGING(FNIC_FCS_LOGGING, \
  84. shost_printk(kern_level, host, fmt, ##args);)
  85. #define FNIC_SCSI_DBG(kern_level, host, fmt, args...) \
  86. FNIC_CHECK_LOGGING(FNIC_SCSI_LOGGING, \
  87. shost_printk(kern_level, host, fmt, ##args);)
  88. #define FNIC_ISR_DBG(kern_level, host, fmt, args...) \
  89. FNIC_CHECK_LOGGING(FNIC_ISR_LOGGING, \
  90. shost_printk(kern_level, host, fmt, ##args);)
  91. extern const char *fnic_state_str[];
  92. enum fnic_intx_intr_index {
  93. FNIC_INTX_WQ_RQ_COPYWQ,
  94. FNIC_INTX_ERR,
  95. FNIC_INTX_NOTIFY,
  96. FNIC_INTX_INTR_MAX,
  97. };
  98. enum fnic_msix_intr_index {
  99. FNIC_MSIX_RQ,
  100. FNIC_MSIX_WQ,
  101. FNIC_MSIX_WQ_COPY,
  102. FNIC_MSIX_ERR_NOTIFY,
  103. FNIC_MSIX_INTR_MAX,
  104. };
  105. struct fnic_msix_entry {
  106. int requested;
  107. char devname[IFNAMSIZ];
  108. irqreturn_t (*isr)(int, void *);
  109. void *devid;
  110. };
  111. enum fnic_state {
  112. FNIC_IN_FC_MODE = 0,
  113. FNIC_IN_FC_TRANS_ETH_MODE,
  114. FNIC_IN_ETH_MODE,
  115. FNIC_IN_ETH_TRANS_FC_MODE,
  116. };
  117. #define FNIC_WQ_COPY_MAX 1
  118. #define FNIC_WQ_MAX 1
  119. #define FNIC_RQ_MAX 1
  120. #define FNIC_CQ_MAX (FNIC_WQ_COPY_MAX + FNIC_WQ_MAX + FNIC_RQ_MAX)
  121. struct mempool;
  122. /* Per-instance private data structure */
  123. struct fnic {
  124. struct fc_lport *lport;
  125. struct vnic_dev_bar bar0;
  126. struct msix_entry msix_entry[FNIC_MSIX_INTR_MAX];
  127. struct fnic_msix_entry msix[FNIC_MSIX_INTR_MAX];
  128. struct vnic_stats *stats;
  129. unsigned long stats_time; /* time of stats update */
  130. struct vnic_nic_cfg *nic_cfg;
  131. char name[IFNAMSIZ];
  132. struct timer_list notify_timer; /* used for MSI interrupts */
  133. unsigned int err_intr_offset;
  134. unsigned int link_intr_offset;
  135. unsigned int wq_count;
  136. unsigned int cq_count;
  137. u32 fcoui_mode:1; /* use fcoui address*/
  138. u32 vlan_hw_insert:1; /* let hw insert the tag */
  139. u32 in_remove:1; /* fnic device in removal */
  140. u32 stop_rx_link_events:1; /* stop proc. rx frames, link events */
  141. struct completion *remove_wait; /* device remove thread blocks */
  142. struct fc_frame *flogi;
  143. struct fc_frame *flogi_resp;
  144. u16 flogi_oxid;
  145. unsigned long s_id;
  146. enum fnic_state state;
  147. spinlock_t fnic_lock;
  148. u16 vlan_id; /* VLAN tag including priority */
  149. u8 mac_addr[ETH_ALEN];
  150. u8 dest_addr[ETH_ALEN];
  151. u8 data_src_addr[ETH_ALEN];
  152. u64 fcp_input_bytes; /* internal statistic */
  153. u64 fcp_output_bytes; /* internal statistic */
  154. u32 link_down_cnt;
  155. int link_status;
  156. struct list_head list;
  157. struct pci_dev *pdev;
  158. struct vnic_fc_config config;
  159. struct vnic_dev *vdev;
  160. unsigned int raw_wq_count;
  161. unsigned int wq_copy_count;
  162. unsigned int rq_count;
  163. int fw_ack_index[FNIC_WQ_COPY_MAX];
  164. unsigned short fw_ack_recd[FNIC_WQ_COPY_MAX];
  165. unsigned short wq_copy_desc_low[FNIC_WQ_COPY_MAX];
  166. unsigned int intr_count;
  167. u32 __iomem *legacy_pba;
  168. struct fnic_host_tag *tags;
  169. mempool_t *io_req_pool;
  170. mempool_t *io_sgl_pool[FNIC_SGL_NUM_CACHES];
  171. spinlock_t io_req_lock[FNIC_IO_LOCKS]; /* locks for scsi cmnds */
  172. struct work_struct link_work;
  173. struct work_struct frame_work;
  174. struct sk_buff_head frame_queue;
  175. /* copy work queue cache line section */
  176. ____cacheline_aligned struct vnic_wq_copy wq_copy[FNIC_WQ_COPY_MAX];
  177. /* completion queue cache line section */
  178. ____cacheline_aligned struct vnic_cq cq[FNIC_CQ_MAX];
  179. spinlock_t wq_copy_lock[FNIC_WQ_COPY_MAX];
  180. /* work queue cache line section */
  181. ____cacheline_aligned struct vnic_wq wq[FNIC_WQ_MAX];
  182. spinlock_t wq_lock[FNIC_WQ_MAX];
  183. /* receive queue cache line section */
  184. ____cacheline_aligned struct vnic_rq rq[FNIC_RQ_MAX];
  185. /* interrupt resource cache line section */
  186. ____cacheline_aligned struct vnic_intr intr[FNIC_MSIX_INTR_MAX];
  187. };
  188. extern struct workqueue_struct *fnic_event_queue;
  189. extern struct device_attribute *fnic_attrs[];
  190. void fnic_clear_intr_mode(struct fnic *fnic);
  191. int fnic_set_intr_mode(struct fnic *fnic);
  192. void fnic_free_intr(struct fnic *fnic);
  193. int fnic_request_intr(struct fnic *fnic);
  194. int fnic_send(struct fc_lport *, struct fc_frame *);
  195. void fnic_free_wq_buf(struct vnic_wq *wq, struct vnic_wq_buf *buf);
  196. void fnic_handle_frame(struct work_struct *work);
  197. void fnic_handle_link(struct work_struct *work);
  198. int fnic_rq_cmpl_handler(struct fnic *fnic, int);
  199. int fnic_alloc_rq_frame(struct vnic_rq *rq);
  200. void fnic_free_rq_buf(struct vnic_rq *rq, struct vnic_rq_buf *buf);
  201. int fnic_send_frame(struct fnic *fnic, struct fc_frame *fp);
  202. int fnic_queuecommand(struct scsi_cmnd *, void (*done)(struct scsi_cmnd *));
  203. int fnic_abort_cmd(struct scsi_cmnd *);
  204. int fnic_device_reset(struct scsi_cmnd *);
  205. int fnic_host_reset(struct scsi_cmnd *);
  206. int fnic_reset(struct Scsi_Host *);
  207. void fnic_scsi_cleanup(struct fc_lport *);
  208. void fnic_scsi_abort_io(struct fc_lport *);
  209. void fnic_empty_scsi_cleanup(struct fc_lport *);
  210. void fnic_exch_mgr_reset(struct fc_lport *, u32, u32);
  211. int fnic_wq_copy_cmpl_handler(struct fnic *fnic, int);
  212. int fnic_wq_cmpl_handler(struct fnic *fnic, int);
  213. int fnic_flogi_reg_handler(struct fnic *fnic);
  214. void fnic_wq_copy_cleanup_handler(struct vnic_wq_copy *wq,
  215. struct fcpio_host_req *desc);
  216. int fnic_fw_reset_handler(struct fnic *fnic);
  217. void fnic_terminate_rport_io(struct fc_rport *);
  218. const char *fnic_state_to_str(unsigned int state);
  219. void fnic_log_q_error(struct fnic *fnic);
  220. void fnic_handle_link_event(struct fnic *fnic);
  221. #endif /* _FNIC_H_ */