fnic.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378
  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 <linux/bitops.h>
  24. #include <scsi/libfc.h>
  25. #include <scsi/libfcoe.h>
  26. #include "fnic_io.h"
  27. #include "fnic_res.h"
  28. #include "fnic_trace.h"
  29. #include "fnic_stats.h"
  30. #include "vnic_dev.h"
  31. #include "vnic_wq.h"
  32. #include "vnic_rq.h"
  33. #include "vnic_cq.h"
  34. #include "vnic_wq_copy.h"
  35. #include "vnic_intr.h"
  36. #include "vnic_stats.h"
  37. #include "vnic_scsi.h"
  38. #define DRV_NAME "fnic"
  39. #define DRV_DESCRIPTION "Cisco FCoE HBA Driver"
  40. #define DRV_VERSION "1.5.0.23"
  41. #define PFX DRV_NAME ": "
  42. #define DFX DRV_NAME "%d: "
  43. #define DESC_CLEAN_LOW_WATERMARK 8
  44. #define FNIC_UCSM_DFLT_THROTTLE_CNT_BLD 16 /* UCSM default throttle count */
  45. #define FNIC_MIN_IO_REQ 256 /* Min IO throttle count */
  46. #define FNIC_MAX_IO_REQ 2048 /* scsi_cmnd tag map entries */
  47. #define FNIC_IO_LOCKS 64 /* IO locks: power of 2 */
  48. #define FNIC_DFLT_QUEUE_DEPTH 32
  49. #define FNIC_STATS_RATE_LIMIT 4 /* limit rate at which stats are pulled up */
  50. /*
  51. * Tag bits used for special requests.
  52. */
  53. #define FNIC_TAG_ABORT BIT(30) /* tag bit indicating abort */
  54. #define FNIC_TAG_DEV_RST BIT(29) /* indicates device reset */
  55. #define FNIC_TAG_MASK (BIT(24) - 1) /* mask for lookup */
  56. #define FNIC_NO_TAG -1
  57. /*
  58. * Command flags to identify the type of command and for other future
  59. * use.
  60. */
  61. #define FNIC_NO_FLAGS 0
  62. #define FNIC_IO_INITIALIZED BIT(0)
  63. #define FNIC_IO_ISSUED BIT(1)
  64. #define FNIC_IO_DONE BIT(2)
  65. #define FNIC_IO_REQ_NULL BIT(3)
  66. #define FNIC_IO_ABTS_PENDING BIT(4)
  67. #define FNIC_IO_ABORTED BIT(5)
  68. #define FNIC_IO_ABTS_ISSUED BIT(6)
  69. #define FNIC_IO_TERM_ISSUED BIT(7)
  70. #define FNIC_IO_INTERNAL_TERM_ISSUED BIT(8)
  71. #define FNIC_IO_ABT_TERM_DONE BIT(9)
  72. #define FNIC_IO_ABT_TERM_REQ_NULL BIT(10)
  73. #define FNIC_IO_ABT_TERM_TIMED_OUT BIT(11)
  74. #define FNIC_DEVICE_RESET BIT(12) /* Device reset request */
  75. #define FNIC_DEV_RST_ISSUED BIT(13)
  76. #define FNIC_DEV_RST_TIMED_OUT BIT(14)
  77. #define FNIC_DEV_RST_ABTS_ISSUED BIT(15)
  78. #define FNIC_DEV_RST_TERM_ISSUED BIT(16)
  79. #define FNIC_DEV_RST_DONE BIT(17)
  80. #define FNIC_DEV_RST_REQ_NULL BIT(18)
  81. #define FNIC_DEV_RST_ABTS_DONE BIT(19)
  82. #define FNIC_DEV_RST_TERM_DONE BIT(20)
  83. #define FNIC_DEV_RST_ABTS_PENDING BIT(21)
  84. /*
  85. * Usage of the scsi_cmnd scratchpad.
  86. * These fields are locked by the hashed io_req_lock.
  87. */
  88. #define CMD_SP(Cmnd) ((Cmnd)->SCp.ptr)
  89. #define CMD_STATE(Cmnd) ((Cmnd)->SCp.phase)
  90. #define CMD_ABTS_STATUS(Cmnd) ((Cmnd)->SCp.Message)
  91. #define CMD_LR_STATUS(Cmnd) ((Cmnd)->SCp.have_data_in)
  92. #define CMD_TAG(Cmnd) ((Cmnd)->SCp.sent_command)
  93. #define CMD_FLAGS(Cmnd) ((Cmnd)->SCp.Status)
  94. #define FCPIO_INVALID_CODE 0x100 /* hdr_status value unused by firmware */
  95. #define FNIC_LUN_RESET_TIMEOUT 10000 /* mSec */
  96. #define FNIC_HOST_RESET_TIMEOUT 10000 /* mSec */
  97. #define FNIC_RMDEVICE_TIMEOUT 1000 /* mSec */
  98. #define FNIC_HOST_RESET_SETTLE_TIME 30 /* Sec */
  99. #define FNIC_ABT_TERM_DELAY_TIMEOUT 500 /* mSec */
  100. #define FNIC_MAX_FCP_TARGET 256
  101. /**
  102. * state_flags to identify host state along along with fnic's state
  103. **/
  104. #define __FNIC_FLAGS_FWRESET BIT(0) /* fwreset in progress */
  105. #define __FNIC_FLAGS_BLOCK_IO BIT(1) /* IOs are blocked */
  106. #define FNIC_FLAGS_NONE (0)
  107. #define FNIC_FLAGS_FWRESET (__FNIC_FLAGS_FWRESET | \
  108. __FNIC_FLAGS_BLOCK_IO)
  109. #define FNIC_FLAGS_IO_BLOCKED (__FNIC_FLAGS_BLOCK_IO)
  110. #define fnic_set_state_flags(fnicp, st_flags) \
  111. __fnic_set_state_flags(fnicp, st_flags, 0)
  112. #define fnic_clear_state_flags(fnicp, st_flags) \
  113. __fnic_set_state_flags(fnicp, st_flags, 1)
  114. extern unsigned int fnic_log_level;
  115. #define FNIC_MAIN_LOGGING 0x01
  116. #define FNIC_FCS_LOGGING 0x02
  117. #define FNIC_SCSI_LOGGING 0x04
  118. #define FNIC_ISR_LOGGING 0x08
  119. #define FNIC_CHECK_LOGGING(LEVEL, CMD) \
  120. do { \
  121. if (unlikely(fnic_log_level & LEVEL)) \
  122. do { \
  123. CMD; \
  124. } while (0); \
  125. } while (0)
  126. #define FNIC_MAIN_DBG(kern_level, host, fmt, args...) \
  127. FNIC_CHECK_LOGGING(FNIC_MAIN_LOGGING, \
  128. shost_printk(kern_level, host, fmt, ##args);)
  129. #define FNIC_FCS_DBG(kern_level, host, fmt, args...) \
  130. FNIC_CHECK_LOGGING(FNIC_FCS_LOGGING, \
  131. shost_printk(kern_level, host, fmt, ##args);)
  132. #define FNIC_SCSI_DBG(kern_level, host, fmt, args...) \
  133. FNIC_CHECK_LOGGING(FNIC_SCSI_LOGGING, \
  134. shost_printk(kern_level, host, fmt, ##args);)
  135. #define FNIC_ISR_DBG(kern_level, host, fmt, args...) \
  136. FNIC_CHECK_LOGGING(FNIC_ISR_LOGGING, \
  137. shost_printk(kern_level, host, fmt, ##args);)
  138. #define FNIC_MAIN_NOTE(kern_level, host, fmt, args...) \
  139. shost_printk(kern_level, host, fmt, ##args)
  140. extern const char *fnic_state_str[];
  141. enum fnic_intx_intr_index {
  142. FNIC_INTX_WQ_RQ_COPYWQ,
  143. FNIC_INTX_ERR,
  144. FNIC_INTX_NOTIFY,
  145. FNIC_INTX_INTR_MAX,
  146. };
  147. enum fnic_msix_intr_index {
  148. FNIC_MSIX_RQ,
  149. FNIC_MSIX_WQ,
  150. FNIC_MSIX_WQ_COPY,
  151. FNIC_MSIX_ERR_NOTIFY,
  152. FNIC_MSIX_INTR_MAX,
  153. };
  154. struct fnic_msix_entry {
  155. int requested;
  156. char devname[IFNAMSIZ];
  157. irqreturn_t (*isr)(int, void *);
  158. void *devid;
  159. };
  160. enum fnic_state {
  161. FNIC_IN_FC_MODE = 0,
  162. FNIC_IN_FC_TRANS_ETH_MODE,
  163. FNIC_IN_ETH_MODE,
  164. FNIC_IN_ETH_TRANS_FC_MODE,
  165. };
  166. #define FNIC_WQ_COPY_MAX 1
  167. #define FNIC_WQ_MAX 1
  168. #define FNIC_RQ_MAX 1
  169. #define FNIC_CQ_MAX (FNIC_WQ_COPY_MAX + FNIC_WQ_MAX + FNIC_RQ_MAX)
  170. struct mempool;
  171. enum fnic_evt {
  172. FNIC_EVT_START_VLAN_DISC = 1,
  173. FNIC_EVT_START_FCF_DISC = 2,
  174. FNIC_EVT_MAX,
  175. };
  176. struct fnic_event {
  177. struct list_head list;
  178. struct fnic *fnic;
  179. enum fnic_evt event;
  180. };
  181. /* Per-instance private data structure */
  182. struct fnic {
  183. struct fc_lport *lport;
  184. struct fcoe_ctlr ctlr; /* FIP FCoE controller structure */
  185. struct vnic_dev_bar bar0;
  186. struct msix_entry msix_entry[FNIC_MSIX_INTR_MAX];
  187. struct fnic_msix_entry msix[FNIC_MSIX_INTR_MAX];
  188. struct vnic_stats *stats;
  189. unsigned long stats_time; /* time of stats update */
  190. unsigned long stats_reset_time; /* time of stats reset */
  191. struct vnic_nic_cfg *nic_cfg;
  192. char name[IFNAMSIZ];
  193. struct timer_list notify_timer; /* used for MSI interrupts */
  194. unsigned int fnic_max_tag_id;
  195. unsigned int err_intr_offset;
  196. unsigned int link_intr_offset;
  197. unsigned int wq_count;
  198. unsigned int cq_count;
  199. struct dentry *fnic_stats_debugfs_host;
  200. struct dentry *fnic_stats_debugfs_file;
  201. struct dentry *fnic_reset_debugfs_file;
  202. unsigned int reset_stats;
  203. atomic64_t io_cmpl_skip;
  204. struct fnic_stats fnic_stats;
  205. u32 vlan_hw_insert:1; /* let hw insert the tag */
  206. u32 in_remove:1; /* fnic device in removal */
  207. u32 stop_rx_link_events:1; /* stop proc. rx frames, link events */
  208. struct completion *remove_wait; /* device remove thread blocks */
  209. atomic_t in_flight; /* io counter */
  210. u32 _reserved; /* fill hole */
  211. unsigned long state_flags; /* protected by host lock */
  212. enum fnic_state state;
  213. spinlock_t fnic_lock;
  214. u16 vlan_id; /* VLAN tag including priority */
  215. u8 data_src_addr[ETH_ALEN];
  216. u64 fcp_input_bytes; /* internal statistic */
  217. u64 fcp_output_bytes; /* internal statistic */
  218. u32 link_down_cnt;
  219. int link_status;
  220. struct list_head list;
  221. struct pci_dev *pdev;
  222. struct vnic_fc_config config;
  223. struct vnic_dev *vdev;
  224. unsigned int raw_wq_count;
  225. unsigned int wq_copy_count;
  226. unsigned int rq_count;
  227. int fw_ack_index[FNIC_WQ_COPY_MAX];
  228. unsigned short fw_ack_recd[FNIC_WQ_COPY_MAX];
  229. unsigned short wq_copy_desc_low[FNIC_WQ_COPY_MAX];
  230. unsigned int intr_count;
  231. u32 __iomem *legacy_pba;
  232. struct fnic_host_tag *tags;
  233. mempool_t *io_req_pool;
  234. mempool_t *io_sgl_pool[FNIC_SGL_NUM_CACHES];
  235. spinlock_t io_req_lock[FNIC_IO_LOCKS]; /* locks for scsi cmnds */
  236. struct work_struct link_work;
  237. struct work_struct frame_work;
  238. struct sk_buff_head frame_queue;
  239. struct sk_buff_head tx_queue;
  240. /*** FIP related data members -- start ***/
  241. void (*set_vlan)(struct fnic *, u16 vlan);
  242. struct work_struct fip_frame_work;
  243. struct sk_buff_head fip_frame_queue;
  244. struct timer_list fip_timer;
  245. struct list_head vlans;
  246. spinlock_t vlans_lock;
  247. struct work_struct event_work;
  248. struct list_head evlist;
  249. /*** FIP related data members -- end ***/
  250. /* copy work queue cache line section */
  251. ____cacheline_aligned struct vnic_wq_copy wq_copy[FNIC_WQ_COPY_MAX];
  252. /* completion queue cache line section */
  253. ____cacheline_aligned struct vnic_cq cq[FNIC_CQ_MAX];
  254. spinlock_t wq_copy_lock[FNIC_WQ_COPY_MAX];
  255. /* work queue cache line section */
  256. ____cacheline_aligned struct vnic_wq wq[FNIC_WQ_MAX];
  257. spinlock_t wq_lock[FNIC_WQ_MAX];
  258. /* receive queue cache line section */
  259. ____cacheline_aligned struct vnic_rq rq[FNIC_RQ_MAX];
  260. /* interrupt resource cache line section */
  261. ____cacheline_aligned struct vnic_intr intr[FNIC_MSIX_INTR_MAX];
  262. };
  263. static inline struct fnic *fnic_from_ctlr(struct fcoe_ctlr *fip)
  264. {
  265. return container_of(fip, struct fnic, ctlr);
  266. }
  267. extern struct workqueue_struct *fnic_event_queue;
  268. extern struct workqueue_struct *fnic_fip_queue;
  269. extern struct device_attribute *fnic_attrs[];
  270. void fnic_clear_intr_mode(struct fnic *fnic);
  271. int fnic_set_intr_mode(struct fnic *fnic);
  272. void fnic_free_intr(struct fnic *fnic);
  273. int fnic_request_intr(struct fnic *fnic);
  274. int fnic_send(struct fc_lport *, struct fc_frame *);
  275. void fnic_free_wq_buf(struct vnic_wq *wq, struct vnic_wq_buf *buf);
  276. void fnic_handle_frame(struct work_struct *work);
  277. void fnic_handle_link(struct work_struct *work);
  278. void fnic_handle_event(struct work_struct *work);
  279. int fnic_rq_cmpl_handler(struct fnic *fnic, int);
  280. int fnic_alloc_rq_frame(struct vnic_rq *rq);
  281. void fnic_free_rq_buf(struct vnic_rq *rq, struct vnic_rq_buf *buf);
  282. void fnic_flush_tx(struct fnic *);
  283. void fnic_eth_send(struct fcoe_ctlr *, struct sk_buff *skb);
  284. void fnic_set_port_id(struct fc_lport *, u32, struct fc_frame *);
  285. void fnic_update_mac(struct fc_lport *, u8 *new);
  286. void fnic_update_mac_locked(struct fnic *, u8 *new);
  287. int fnic_queuecommand(struct Scsi_Host *, struct scsi_cmnd *);
  288. int fnic_abort_cmd(struct scsi_cmnd *);
  289. int fnic_device_reset(struct scsi_cmnd *);
  290. int fnic_host_reset(struct scsi_cmnd *);
  291. int fnic_reset(struct Scsi_Host *);
  292. void fnic_scsi_cleanup(struct fc_lport *);
  293. void fnic_scsi_abort_io(struct fc_lport *);
  294. void fnic_empty_scsi_cleanup(struct fc_lport *);
  295. void fnic_exch_mgr_reset(struct fc_lport *, u32, u32);
  296. int fnic_wq_copy_cmpl_handler(struct fnic *fnic, int);
  297. int fnic_wq_cmpl_handler(struct fnic *fnic, int);
  298. int fnic_flogi_reg_handler(struct fnic *fnic, u32);
  299. void fnic_wq_copy_cleanup_handler(struct vnic_wq_copy *wq,
  300. struct fcpio_host_req *desc);
  301. int fnic_fw_reset_handler(struct fnic *fnic);
  302. void fnic_terminate_rport_io(struct fc_rport *);
  303. const char *fnic_state_to_str(unsigned int state);
  304. void fnic_log_q_error(struct fnic *fnic);
  305. void fnic_handle_link_event(struct fnic *fnic);
  306. int fnic_is_abts_pending(struct fnic *, struct scsi_cmnd *);
  307. void fnic_handle_fip_frame(struct work_struct *work);
  308. void fnic_handle_fip_event(struct fnic *fnic);
  309. void fnic_fcoe_reset_vlans(struct fnic *fnic);
  310. void fnic_fcoe_evlist_free(struct fnic *fnic);
  311. extern void fnic_handle_fip_timer(struct fnic *fnic);
  312. static inline int
  313. fnic_chk_state_flags_locked(struct fnic *fnic, unsigned long st_flags)
  314. {
  315. return ((fnic->state_flags & st_flags) == st_flags);
  316. }
  317. void __fnic_set_state_flags(struct fnic *, unsigned long, unsigned long);
  318. void fnic_dump_fchost_stats(struct Scsi_Host *, struct fc_host_statistics *);
  319. #endif /* _FNIC_H_ */