blob: 0578fa0dc14b73e6c26113d163759e1fe33b735d [file] [log] [blame]
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08001#ifndef _BNX2FC_H_
2#define _BNX2FC_H_
3/* bnx2fc.h: Broadcom NetXtreme II Linux FCoE offload driver.
4 *
Bhanu Prakash Gollapudi9b35baa2011-07-27 11:32:13 -07005 * Copyright (c) 2008 - 2011 Broadcom Corporation
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -08006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation.
10 *
11 * Written by: Bhanu Prakash Gollapudi (bprakash@broadcom.com)
12 */
13
14#include <linux/module.h>
15#include <linux/moduleparam.h>
16#include <linux/kernel.h>
17#include <linux/skbuff.h>
18#include <linux/netdevice.h>
19#include <linux/etherdevice.h>
20#include <linux/if_ether.h>
21#include <linux/if_vlan.h>
22#include <linux/kthread.h>
23#include <linux/crc32.h>
24#include <linux/cpu.h>
25#include <linux/types.h>
26#include <linux/list.h>
27#include <linux/delay.h>
28#include <linux/timer.h>
29#include <linux/errno.h>
30#include <linux/pci.h>
31#include <linux/init.h>
32#include <linux/dma-mapping.h>
33#include <linux/workqueue.h>
34#include <linux/mutex.h>
35#include <linux/spinlock.h>
36#include <linux/bitops.h>
37#include <linux/log2.h>
38#include <linux/interrupt.h>
39#include <linux/sched.h>
40#include <linux/io.h>
41
42#include <scsi/scsi.h>
43#include <scsi/scsi_host.h>
44#include <scsi/scsi_device.h>
45#include <scsi/scsi_cmnd.h>
46#include <scsi/scsi_eh.h>
47#include <scsi/scsi_tcq.h>
48#include <scsi/libfc.h>
49#include <scsi/libfcoe.h>
50#include <scsi/fc_encode.h>
51#include <scsi/scsi_transport.h>
52#include <scsi/scsi_transport_fc.h>
53#include <scsi/fc/fc_fip.h>
54#include <scsi/fc/fc_fc2.h>
55#include <scsi/fc_frame.h>
56#include <scsi/fc/fc_fcoe.h>
57#include <scsi/fc/fc_fcp.h>
58
59#include "57xx_hsi_bnx2fc.h"
60#include "bnx2fc_debug.h"
Jeff Kirsheradfc5212011-04-07 06:03:04 -070061#include "../../net/ethernet/broadcom/cnic_if.h"
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -080062#include "bnx2fc_constants.h"
63
64#define BNX2FC_NAME "bnx2fc"
Bhanu Prakash Gollapudie91506d2012-04-24 15:26:04 -070065#define BNX2FC_VERSION "1.0.11"
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -080066
67#define PFX "bnx2fc: "
68
69#define BNX2X_DOORBELL_PCI_BAR 2
70
71#define BNX2FC_MAX_BD_LEN 0xffff
72#define BNX2FC_BD_SPLIT_SZ 0x8000
73#define BNX2FC_MAX_BDS_PER_CMD 256
74
75#define BNX2FC_SQ_WQES_MAX 256
76
77#define BNX2FC_SCSI_MAX_SQES ((3 * BNX2FC_SQ_WQES_MAX) / 8)
78#define BNX2FC_TM_MAX_SQES ((BNX2FC_SQ_WQES_MAX) / 2)
79#define BNX2FC_ELS_MAX_SQES (BNX2FC_TM_MAX_SQES - 1)
80
81#define BNX2FC_RQ_WQES_MAX 16
82#define BNX2FC_CQ_WQES_MAX (BNX2FC_SQ_WQES_MAX + BNX2FC_RQ_WQES_MAX)
83
Michael Chandc219a22011-08-26 09:45:39 +000084#define BNX2FC_NUM_MAX_SESS 1024
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -080085#define BNX2FC_NUM_MAX_SESS_LOG (ilog2(BNX2FC_NUM_MAX_SESS))
86
Bhanu Gollapudi0ea5c272011-03-17 17:13:29 -070087#define BNX2FC_MAX_OUTSTANDING_CMNDS 2048
88#define BNX2FC_CAN_QUEUE BNX2FC_MAX_OUTSTANDING_CMNDS
89#define BNX2FC_ELSTM_XIDS BNX2FC_CAN_QUEUE
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -080090#define BNX2FC_MIN_PAYLOAD 256
91#define BNX2FC_MAX_PAYLOAD 2048
Bhanu Gollapudi1294bfe2011-03-17 17:13:34 -070092#define BNX2FC_MFS \
93 (BNX2FC_MAX_PAYLOAD + sizeof(struct fc_frame_header))
94#define BNX2FC_MINI_JUMBO_MTU 2500
95
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -080096
97#define BNX2FC_RQ_BUF_SZ 256
98#define BNX2FC_RQ_BUF_LOG_SZ (ilog2(BNX2FC_RQ_BUF_SZ))
99
100#define BNX2FC_SQ_WQE_SIZE (sizeof(struct fcoe_sqe))
101#define BNX2FC_CQ_WQE_SIZE (sizeof(struct fcoe_cqe))
102#define BNX2FC_RQ_WQE_SIZE (BNX2FC_RQ_BUF_SZ)
103#define BNX2FC_XFERQ_WQE_SIZE (sizeof(struct fcoe_xfrqe))
104#define BNX2FC_CONFQ_WQE_SIZE (sizeof(struct fcoe_confqe))
105#define BNX2FC_5771X_DB_PAGE_SIZE 128
106
Bhanu Gollapudi0ea5c272011-03-17 17:13:29 -0700107#define BNX2FC_MAX_TASKS \
108 (BNX2FC_MAX_OUTSTANDING_CMNDS + BNX2FC_ELSTM_XIDS)
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800109#define BNX2FC_TASK_SIZE 128
110#define BNX2FC_TASKS_PER_PAGE (PAGE_SIZE/BNX2FC_TASK_SIZE)
111#define BNX2FC_TASK_CTX_ARR_SZ (BNX2FC_MAX_TASKS/BNX2FC_TASKS_PER_PAGE)
112
113#define BNX2FC_MAX_ROWS_IN_HASH_TBL 8
114#define BNX2FC_HASH_TBL_CHUNK_SIZE (16 * 1024)
115
116#define BNX2FC_MAX_SEQS 255
Bhanu Prakash Gollapudi44c570b2012-01-23 18:00:47 -0800117#define BNX2FC_MAX_RETRY_CNT 3
118#define BNX2FC_MAX_RPORT_RETRY_CNT 255
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800119
120#define BNX2FC_READ (1 << 1)
121#define BNX2FC_WRITE (1 << 0)
122
123#define BNX2FC_MIN_XID 0
Bhanu Gollapudi0ea5c272011-03-17 17:13:29 -0700124#define BNX2FC_MAX_XID \
125 (BNX2FC_MAX_OUTSTANDING_CMNDS + BNX2FC_ELSTM_XIDS - 1)
Bhanu Prakash Gollapudi7d742f62012-01-23 18:00:48 -0800126#define FCOE_MAX_NUM_XIDS 0x2000
Bhanu Gollapudi0ea5c272011-03-17 17:13:29 -0700127#define FCOE_MIN_XID (BNX2FC_MAX_XID + 1)
Bhanu Prakash Gollapudi7d742f62012-01-23 18:00:48 -0800128#define FCOE_MAX_XID (FCOE_MIN_XID + FCOE_MAX_NUM_XIDS - 1)
129#define FCOE_XIDS_PER_CPU (FCOE_MIN_XID + (512 * nr_cpu_ids) - 1)
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800130#define BNX2FC_MAX_LUN 0xFFFF
131#define BNX2FC_MAX_FCP_TGT 256
132#define BNX2FC_MAX_CMD_LEN 16
133
134#define BNX2FC_TM_TIMEOUT 60 /* secs */
135#define BNX2FC_IO_TIMEOUT 20000UL /* msecs */
136
Nithin Nayak Sujirbefc9b42011-04-25 12:30:10 -0700137#define BNX2FC_WAIT_CNT 1200
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800138#define BNX2FC_FW_TIMEOUT (3 * HZ)
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800139#define PORT_MAX 2
140
141#define CMD_SCSI_STATUS(Cmnd) ((Cmnd)->SCp.Status)
142
143/* FC FCP Status */
144#define FC_GOOD 0
145
146#define BNX2FC_RNID_HBA 0x7
147
Bhanu Prakash Gollapudi74446952011-07-27 11:32:06 -0700148#define SRR_RETRY_COUNT 5
149#define REC_RETRY_COUNT 1
Bhanu Prakash Gollapudi7b594762011-07-27 11:32:07 -0700150#define BNX2FC_NUM_ERR_BITS 63
Bhanu Prakash Gollapudi74446952011-07-27 11:32:06 -0700151
Bhanu Prakash Gollapudi99cc6002011-10-23 23:23:56 -0700152#define BNX2FC_RELOGIN_WAIT_TIME 200
153#define BNX2FC_RELOGIN_WAIT_CNT 10
154
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800155/* bnx2fc driver uses only one instance of fcoe_percpu_s */
156extern struct fcoe_percpu_s bnx2fc_global;
157
158extern struct workqueue_struct *bnx2fc_wq;
159
160struct bnx2fc_percpu_s {
161 struct task_struct *iothread;
162 struct list_head work_list;
163 spinlock_t fp_work_lock;
164};
165
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800166struct bnx2fc_hba {
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -0700167 struct list_head list;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800168 struct cnic_dev *cnic;
169 struct pci_dev *pcidev;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800170 struct net_device *phys_dev;
171 unsigned long reg_with_cnic;
172 #define BNX2FC_CNIC_REGISTERED 1
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800173 struct bnx2fc_cmd_mgr *cmd_mgr;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800174 spinlock_t hba_lock;
175 struct mutex hba_mutex;
176 unsigned long adapter_state;
177 #define ADAPTER_STATE_UP 0
178 #define ADAPTER_STATE_GOING_DOWN 1
179 #define ADAPTER_STATE_LINK_DOWN 2
180 #define ADAPTER_STATE_READY 3
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -0700181 unsigned long flags;
182 #define BNX2FC_FLAG_FW_INIT_DONE 0
183 #define BNX2FC_FLAG_DESTROY_CMPL 1
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800184 u32 next_conn_id;
185 struct fcoe_task_ctx_entry **task_ctx;
186 dma_addr_t *task_ctx_dma;
187 struct regpair *task_ctx_bd_tbl;
188 dma_addr_t task_ctx_bd_dma;
189
190 int hash_tbl_segment_count;
191 void **hash_tbl_segments;
192 void *hash_tbl_pbl;
193 dma_addr_t hash_tbl_pbl_dma;
194 struct fcoe_t2_hash_table_entry *t2_hash_tbl;
195 dma_addr_t t2_hash_tbl_dma;
196 char *t2_hash_tbl_ptr;
197 dma_addr_t t2_hash_tbl_ptr_dma;
198
199 char *dummy_buffer;
200 dma_addr_t dummy_buf_dma;
201
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -0700202 /* Active list of offloaded sessions */
203 struct bnx2fc_rport **tgt_ofld_list;
204
205 /* statistics */
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800206 struct fcoe_statistics_params *stats_buffer;
207 dma_addr_t stats_buf_dma;
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -0700208 struct completion stat_req_done;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800209
210 /*destroy handling */
211 struct timer_list destroy_timer;
212 wait_queue_head_t destroy_wait;
213
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -0700214 /* linkdown handling */
215 wait_queue_head_t shutdown_wait;
216 int wait_for_link_down;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800217 int num_ofld_sess;
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -0700218 struct list_head vports;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800219};
220
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -0700221struct bnx2fc_interface {
222 struct list_head list;
223 unsigned long if_flags;
224 #define BNX2FC_CTLR_INIT_DONE 0
225 struct bnx2fc_hba *hba;
226 struct net_device *netdev;
227 struct packet_type fcoe_packet_type;
228 struct packet_type fip_packet_type;
229 struct workqueue_struct *timer_work_queue;
230 struct kref kref;
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -0700231 u8 vlan_enabled;
232 int vlan_id;
Bhanu Prakash Gollapudi8a5badf2011-08-30 15:54:48 -0700233 bool enabled;
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -0700234};
235
Robert Lovefd8f8902012-05-22 19:06:16 -0700236#define bnx2fc_from_ctlr(x) \
237 ((struct bnx2fc_interface *)((x) + 1))
238
239#define bnx2fc_to_ctlr(x) \
240 ((struct fcoe_ctlr *)(((struct fcoe_ctlr *)(x)) - 1))
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800241
Bhanu Prakash Gollapudid36b3272011-05-27 11:47:27 -0700242struct bnx2fc_lport {
243 struct list_head list;
244 struct fc_lport *lport;
245};
246
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800247struct bnx2fc_cmd_mgr {
248 struct bnx2fc_hba *hba;
249 u16 next_idx;
250 struct list_head *free_list;
251 spinlock_t *free_list_lock;
252 struct io_bdt **io_bdt_pool;
253 struct bnx2fc_cmd **cmds;
254};
255
256struct bnx2fc_rport {
257 struct fcoe_port *port;
258 struct fc_rport *rport;
259 struct fc_rport_priv *rdata;
260 void __iomem *ctx_base;
261#define DPM_TRIGER_TYPE 0x40
Bhanu Prakash Gollapudib252f4c2011-07-26 14:51:40 -0700262 u32 io_timeout;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800263 u32 fcoe_conn_id;
264 u32 context_id;
265 u32 sid;
Bhanu Prakash Gollapudib252f4c2011-07-26 14:51:40 -0700266 int dev_type;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800267
268 unsigned long flags;
269#define BNX2FC_FLAG_SESSION_READY 0x1
270#define BNX2FC_FLAG_OFFLOADED 0x2
271#define BNX2FC_FLAG_DISABLED 0x3
272#define BNX2FC_FLAG_DESTROYED 0x4
273#define BNX2FC_FLAG_OFLD_REQ_CMPL 0x5
Bhanu Prakash Gollapudiaea71a02011-07-26 14:51:39 -0700274#define BNX2FC_FLAG_CTX_ALLOC_FAILURE 0x6
275#define BNX2FC_FLAG_UPLD_REQ_COMPL 0x7
276#define BNX2FC_FLAG_EXPL_LOGO 0x8
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800277
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300278 u8 src_addr[ETH_ALEN];
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800279 u32 max_sqes;
280 u32 max_rqes;
281 u32 max_cqes;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300282 atomic_t free_sqes;
283
284 struct b577xx_doorbell_set_prod sq_db;
285 struct b577xx_fcoe_rx_doorbell rx_db;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800286
287 struct fcoe_sqe *sq;
288 dma_addr_t sq_dma;
289 u16 sq_prod_idx;
290 u8 sq_curr_toggle_bit;
291 u32 sq_mem_size;
292
293 struct fcoe_cqe *cq;
294 dma_addr_t cq_dma;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300295 u16 cq_cons_idx;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800296 u8 cq_curr_toggle_bit;
297 u32 cq_mem_size;
298
299 void *rq;
300 dma_addr_t rq_dma;
301 u32 rq_prod_idx;
302 u32 rq_cons_idx;
303 u32 rq_mem_size;
304
305 void *rq_pbl;
306 dma_addr_t rq_pbl_dma;
307 u32 rq_pbl_size;
308
309 struct fcoe_xfrqe *xferq;
310 dma_addr_t xferq_dma;
311 u32 xferq_mem_size;
312
313 struct fcoe_confqe *confq;
314 dma_addr_t confq_dma;
315 u32 confq_mem_size;
316
317 void *confq_pbl;
318 dma_addr_t confq_pbl_dma;
319 u32 confq_pbl_size;
320
321 struct fcoe_conn_db *conn_db;
322 dma_addr_t conn_db_dma;
323 u32 conn_db_mem_size;
324
325 struct fcoe_sqe *lcq;
326 dma_addr_t lcq_dma;
327 u32 lcq_mem_size;
328
329 void *ofld_req[4];
330 dma_addr_t ofld_req_dma[4];
331 void *enbl_req;
332 dma_addr_t enbl_req_dma;
333
334 spinlock_t tgt_lock;
335 spinlock_t cq_lock;
336 atomic_t num_active_ios;
337 u32 flush_in_prog;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800338 unsigned long timestamp;
339 struct list_head free_task_list;
340 struct bnx2fc_cmd *pending_queue[BNX2FC_SQ_WQES_MAX+1];
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800341 struct list_head active_cmd_queue;
342 struct list_head els_queue;
343 struct list_head io_retire_queue;
344 struct list_head active_tm_queue;
345
346 struct timer_list ofld_timer;
347 wait_queue_head_t ofld_wait;
348
349 struct timer_list upld_timer;
350 wait_queue_head_t upld_wait;
351};
352
353struct bnx2fc_mp_req {
354 u8 tm_flags;
355
356 u32 req_len;
357 void *req_buf;
358 dma_addr_t req_buf_dma;
359 struct fcoe_bd_ctx *mp_req_bd;
360 dma_addr_t mp_req_bd_dma;
361 struct fc_frame_header req_fc_hdr;
362
363 u32 resp_len;
364 void *resp_buf;
365 dma_addr_t resp_buf_dma;
366 struct fcoe_bd_ctx *mp_resp_bd;
367 dma_addr_t mp_resp_bd_dma;
368 struct fc_frame_header resp_fc_hdr;
369};
370
371struct bnx2fc_els_cb_arg {
372 struct bnx2fc_cmd *aborted_io_req;
373 struct bnx2fc_cmd *io_req;
374 u16 l2_oxid;
Bhanu Prakash Gollapudi6c5a7ce2011-07-27 11:32:05 -0700375 u32 offset;
376 enum fc_rctl r_ctl;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800377};
378
379/* bnx2fc command structure */
380struct bnx2fc_cmd {
381 struct list_head link;
382 u8 on_active_queue;
383 u8 on_tmf_queue;
384 u8 cmd_type;
385#define BNX2FC_SCSI_CMD 1
386#define BNX2FC_TASK_MGMT_CMD 2
387#define BNX2FC_ABTS 3
388#define BNX2FC_ELS 4
389#define BNX2FC_CLEANUP 5
Bhanu Prakash Gollapudi6c5a7ce2011-07-27 11:32:05 -0700390#define BNX2FC_SEQ_CLEANUP 6
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800391 u8 io_req_flags;
392 struct kref refcount;
393 struct fcoe_port *port;
394 struct bnx2fc_rport *tgt;
395 struct scsi_cmnd *sc_cmd;
396 struct bnx2fc_cmd_mgr *cmd_mgr;
397 struct bnx2fc_mp_req mp_req;
398 void (*cb_func)(struct bnx2fc_els_cb_arg *cb_arg);
399 struct bnx2fc_els_cb_arg *cb_arg;
400 struct delayed_work timeout_work; /* timer for ULP timeouts */
401 struct completion tm_done;
402 int wait_for_comp;
403 u16 xid;
Bhanu Prakash Gollapudi74446952011-07-27 11:32:06 -0700404 struct fcoe_err_report_entry err_entry;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800405 struct fcoe_task_ctx_entry *task;
406 struct io_bdt *bd_tbl;
407 struct fcp_rsp *rsp;
408 size_t data_xfer_len;
409 unsigned long req_flags;
410#define BNX2FC_FLAG_ISSUE_RRQ 0x1
411#define BNX2FC_FLAG_ISSUE_ABTS 0x2
412#define BNX2FC_FLAG_ABTS_DONE 0x3
413#define BNX2FC_FLAG_TM_COMPL 0x4
414#define BNX2FC_FLAG_TM_TIMEOUT 0x5
415#define BNX2FC_FLAG_IO_CLEANUP 0x6
416#define BNX2FC_FLAG_RETIRE_OXID 0x7
417#define BNX2FC_FLAG_EH_ABORT 0x8
418#define BNX2FC_FLAG_IO_COMPL 0x9
419#define BNX2FC_FLAG_ELS_DONE 0xa
420#define BNX2FC_FLAG_ELS_TIMEOUT 0xb
Bhanu Prakash Gollapudi74446952011-07-27 11:32:06 -0700421#define BNX2FC_FLAG_CMD_LOST 0xc
422#define BNX2FC_FLAG_SRR_SENT 0xd
423 u8 rec_retry;
424 u8 srr_retry;
425 u32 srr_offset;
426 u8 srr_rctl;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800427 u32 fcp_resid;
428 u32 fcp_rsp_len;
429 u32 fcp_sns_len;
430 u8 cdb_status; /* SCSI IO status */
431 u8 fcp_status; /* FCP IO status */
432 u8 fcp_rsp_code;
433 u8 scsi_comp_flags;
434};
435
436struct io_bdt {
437 struct bnx2fc_cmd *io_req;
438 struct fcoe_bd_ctx *bd_tbl;
439 dma_addr_t bd_tbl_dma;
440 u16 bd_valid;
441};
442
443struct bnx2fc_work {
444 struct list_head list;
445 struct bnx2fc_rport *tgt;
446 u16 wqe;
447};
448struct bnx2fc_unsol_els {
449 struct fc_lport *lport;
450 struct fc_frame *fp;
Bhanu Prakash Gollapudid36b3272011-05-27 11:47:27 -0700451 struct bnx2fc_hba *hba;
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800452 struct work_struct unsol_els_work;
453};
454
455
456
Bhanu Prakash Gollapudi74446952011-07-27 11:32:06 -0700457struct bnx2fc_cmd *bnx2fc_cmd_alloc(struct bnx2fc_rport *tgt);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800458struct bnx2fc_cmd *bnx2fc_elstm_alloc(struct bnx2fc_rport *tgt, int type);
459void bnx2fc_cmd_release(struct kref *ref);
460int bnx2fc_queuecommand(struct Scsi_Host *host, struct scsi_cmnd *sc_cmd);
461int bnx2fc_send_fw_fcoe_init_msg(struct bnx2fc_hba *hba);
462int bnx2fc_send_fw_fcoe_destroy_msg(struct bnx2fc_hba *hba);
463int bnx2fc_send_session_ofld_req(struct fcoe_port *port,
464 struct bnx2fc_rport *tgt);
465int bnx2fc_send_session_disable_req(struct fcoe_port *port,
466 struct bnx2fc_rport *tgt);
467int bnx2fc_send_session_destroy_req(struct bnx2fc_hba *hba,
468 struct bnx2fc_rport *tgt);
469int bnx2fc_map_doorbell(struct bnx2fc_rport *tgt);
470void bnx2fc_indicate_kcqe(void *context, struct kcqe *kcq[],
471 u32 num_cqe);
472int bnx2fc_setup_task_ctx(struct bnx2fc_hba *hba);
473void bnx2fc_free_task_ctx(struct bnx2fc_hba *hba);
474int bnx2fc_setup_fw_resc(struct bnx2fc_hba *hba);
475void bnx2fc_free_fw_resc(struct bnx2fc_hba *hba);
476struct bnx2fc_cmd_mgr *bnx2fc_cmd_mgr_alloc(struct bnx2fc_hba *hba,
477 u16 min_xid, u16 max_xid);
478void bnx2fc_cmd_mgr_free(struct bnx2fc_cmd_mgr *cmgr);
479void bnx2fc_get_link_state(struct bnx2fc_hba *hba);
480char *bnx2fc_get_next_rqe(struct bnx2fc_rport *tgt, u8 num_items);
481void bnx2fc_return_rqe(struct bnx2fc_rport *tgt, u8 num_items);
482int bnx2fc_get_paged_crc_eof(struct sk_buff *skb, int tlen);
483int bnx2fc_send_rrq(struct bnx2fc_cmd *aborted_io_req);
484int bnx2fc_send_adisc(struct bnx2fc_rport *tgt, struct fc_frame *fp);
485int bnx2fc_send_logo(struct bnx2fc_rport *tgt, struct fc_frame *fp);
486int bnx2fc_send_rls(struct bnx2fc_rport *tgt, struct fc_frame *fp);
487int bnx2fc_initiate_cleanup(struct bnx2fc_cmd *io_req);
488int bnx2fc_initiate_abts(struct bnx2fc_cmd *io_req);
489void bnx2fc_cmd_timer_set(struct bnx2fc_cmd *io_req,
490 unsigned int timer_msec);
491int bnx2fc_init_mp_req(struct bnx2fc_cmd *io_req);
492void bnx2fc_init_cleanup_task(struct bnx2fc_cmd *io_req,
493 struct fcoe_task_ctx_entry *task,
494 u16 orig_xid);
Bhanu Prakash Gollapudi6c5a7ce2011-07-27 11:32:05 -0700495void bnx2fc_init_seq_cleanup_task(struct bnx2fc_cmd *seq_clnup_req,
496 struct fcoe_task_ctx_entry *task,
497 struct bnx2fc_cmd *orig_io_req,
498 u32 offset);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800499void bnx2fc_init_mp_task(struct bnx2fc_cmd *io_req,
500 struct fcoe_task_ctx_entry *task);
501void bnx2fc_init_task(struct bnx2fc_cmd *io_req,
502 struct fcoe_task_ctx_entry *task);
503void bnx2fc_add_2_sq(struct bnx2fc_rport *tgt, u16 xid);
504void bnx2fc_ring_doorbell(struct bnx2fc_rport *tgt);
505int bnx2fc_eh_abort(struct scsi_cmnd *sc_cmd);
506int bnx2fc_eh_host_reset(struct scsi_cmnd *sc_cmd);
507int bnx2fc_eh_target_reset(struct scsi_cmnd *sc_cmd);
508int bnx2fc_eh_device_reset(struct scsi_cmnd *sc_cmd);
509void bnx2fc_rport_event_handler(struct fc_lport *lport,
510 struct fc_rport_priv *rport,
511 enum fc_rport_event event);
512void bnx2fc_process_scsi_cmd_compl(struct bnx2fc_cmd *io_req,
513 struct fcoe_task_ctx_entry *task,
514 u8 num_rq);
515void bnx2fc_process_cleanup_compl(struct bnx2fc_cmd *io_req,
516 struct fcoe_task_ctx_entry *task,
517 u8 num_rq);
518void bnx2fc_process_abts_compl(struct bnx2fc_cmd *io_req,
519 struct fcoe_task_ctx_entry *task,
520 u8 num_rq);
521void bnx2fc_process_tm_compl(struct bnx2fc_cmd *io_req,
522 struct fcoe_task_ctx_entry *task,
523 u8 num_rq);
524void bnx2fc_process_els_compl(struct bnx2fc_cmd *els_req,
525 struct fcoe_task_ctx_entry *task,
526 u8 num_rq);
527void bnx2fc_build_fcp_cmnd(struct bnx2fc_cmd *io_req,
528 struct fcp_cmnd *fcp_cmnd);
529
530
531
532void bnx2fc_flush_active_ios(struct bnx2fc_rport *tgt);
533struct fc_seq *bnx2fc_elsct_send(struct fc_lport *lport, u32 did,
534 struct fc_frame *fp, unsigned int op,
535 void (*resp)(struct fc_seq *,
536 struct fc_frame *,
537 void *),
538 void *arg, u32 timeout);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300539void bnx2fc_arm_cq(struct bnx2fc_rport *tgt);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800540int bnx2fc_process_new_cqes(struct bnx2fc_rport *tgt);
541void bnx2fc_process_cq_compl(struct bnx2fc_rport *tgt, u16 wqe);
542struct bnx2fc_rport *bnx2fc_tgt_lookup(struct fcoe_port *port,
543 u32 port_id);
544void bnx2fc_process_l2_frame_compl(struct bnx2fc_rport *tgt,
545 unsigned char *buf,
546 u32 frame_len, u16 l2_oxid);
547int bnx2fc_send_stat_req(struct bnx2fc_hba *hba);
Bhanu Prakash Gollapudi74446952011-07-27 11:32:06 -0700548int bnx2fc_post_io_req(struct bnx2fc_rport *tgt, struct bnx2fc_cmd *io_req);
Bhanu Prakash Gollapudi6c5a7ce2011-07-27 11:32:05 -0700549int bnx2fc_send_rec(struct bnx2fc_cmd *orig_io_req);
550int bnx2fc_send_srr(struct bnx2fc_cmd *orig_io_req, u32 offset, u8 r_ctl);
551void bnx2fc_process_seq_cleanup_compl(struct bnx2fc_cmd *seq_clnup_req,
552 struct fcoe_task_ctx_entry *task,
553 u8 rx_state);
554int bnx2fc_initiate_seq_cleanup(struct bnx2fc_cmd *orig_io_req, u32 offset,
555 enum fc_rctl r_ctl);
Bhanu Gollapudi853e2bd2011-02-04 12:10:34 -0800556
557#endif