1 /* bnx2fc_tgt.c: QLogic Linux FCoE offload driver.
2 * Handles operations such as session offload/upload etc, and manages
3 * session resources such as connection id and qp resources.
5 * Copyright (c) 2008-2013 Broadcom Corporation
6 * Copyright (c) 2014-2016 QLogic Corporation
7 * Copyright (c) 2016-2017 Cavium Inc.
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation.
13 * Written by: Bhanu Prakash Gollapudi (bprakash@broadcom.com)
17 static void bnx2fc_upld_timer(struct timer_list
*t
);
18 static void bnx2fc_ofld_timer(struct timer_list
*t
);
19 static int bnx2fc_init_tgt(struct bnx2fc_rport
*tgt
,
20 struct fcoe_port
*port
,
21 struct fc_rport_priv
*rdata
);
22 static u32
bnx2fc_alloc_conn_id(struct bnx2fc_hba
*hba
,
23 struct bnx2fc_rport
*tgt
);
24 static int bnx2fc_alloc_session_resc(struct bnx2fc_hba
*hba
,
25 struct bnx2fc_rport
*tgt
);
26 static void bnx2fc_free_session_resc(struct bnx2fc_hba
*hba
,
27 struct bnx2fc_rport
*tgt
);
28 static void bnx2fc_free_conn_id(struct bnx2fc_hba
*hba
, u32 conn_id
);
30 static void bnx2fc_upld_timer(struct timer_list
*t
)
33 struct bnx2fc_rport
*tgt
= from_timer(tgt
, t
, upld_timer
);
35 BNX2FC_TGT_DBG(tgt
, "upld_timer - Upload compl not received!!\n");
36 /* fake upload completion */
37 clear_bit(BNX2FC_FLAG_OFFLOADED
, &tgt
->flags
);
38 clear_bit(BNX2FC_FLAG_ENABLED
, &tgt
->flags
);
39 set_bit(BNX2FC_FLAG_UPLD_REQ_COMPL
, &tgt
->flags
);
40 wake_up_interruptible(&tgt
->upld_wait
);
43 static void bnx2fc_ofld_timer(struct timer_list
*t
)
46 struct bnx2fc_rport
*tgt
= from_timer(tgt
, t
, ofld_timer
);
48 BNX2FC_TGT_DBG(tgt
, "entered bnx2fc_ofld_timer\n");
49 /* NOTE: This function should never be called, as
50 * offload should never timeout
53 * If the timer has expired, this session is dead
54 * Clear offloaded flag and logout of this device.
55 * Since OFFLOADED flag is cleared, this case
56 * will be considered as offload error and the
57 * port will be logged off, and conn_id, session
58 * resources are freed up in bnx2fc_offload_session
60 clear_bit(BNX2FC_FLAG_OFFLOADED
, &tgt
->flags
);
61 clear_bit(BNX2FC_FLAG_ENABLED
, &tgt
->flags
);
62 set_bit(BNX2FC_FLAG_OFLD_REQ_CMPL
, &tgt
->flags
);
63 wake_up_interruptible(&tgt
->ofld_wait
);
66 static void bnx2fc_ofld_wait(struct bnx2fc_rport
*tgt
)
68 timer_setup(&tgt
->ofld_timer
, bnx2fc_ofld_timer
, 0);
69 mod_timer(&tgt
->ofld_timer
, jiffies
+ BNX2FC_FW_TIMEOUT
);
71 wait_event_interruptible(tgt
->ofld_wait
,
73 BNX2FC_FLAG_OFLD_REQ_CMPL
,
75 if (signal_pending(current
))
76 flush_signals(current
);
77 del_timer_sync(&tgt
->ofld_timer
);
80 static void bnx2fc_offload_session(struct fcoe_port
*port
,
81 struct bnx2fc_rport
*tgt
,
82 struct fc_rport_priv
*rdata
)
84 struct fc_rport
*rport
= rdata
->rport
;
85 struct bnx2fc_interface
*interface
= port
->priv
;
86 struct bnx2fc_hba
*hba
= interface
->hba
;
90 /* Initialize bnx2fc_rport */
91 /* NOTE: tgt is already bzero'd */
92 rval
= bnx2fc_init_tgt(tgt
, port
, rdata
);
94 printk(KERN_ERR PFX
"Failed to allocate conn id for "
95 "port_id (%6x)\n", rport
->port_id
);
99 /* Allocate session resources */
100 rval
= bnx2fc_alloc_session_resc(hba
, tgt
);
102 printk(KERN_ERR PFX
"Failed to allocate resources\n");
107 * Initialize FCoE session offload process.
108 * Upon completion of offload process add
109 * rport to list of rports
112 clear_bit(BNX2FC_FLAG_OFLD_REQ_CMPL
, &tgt
->flags
);
113 rval
= bnx2fc_send_session_ofld_req(port
, tgt
);
115 printk(KERN_ERR PFX
"ofld_req failed\n");
120 * wait for the session is offloaded and enabled. 3 Secs
121 * should be ample time for this process to complete.
123 bnx2fc_ofld_wait(tgt
);
125 if (!(test_bit(BNX2FC_FLAG_OFFLOADED
, &tgt
->flags
))) {
126 if (test_and_clear_bit(BNX2FC_FLAG_CTX_ALLOC_FAILURE
,
128 BNX2FC_TGT_DBG(tgt
, "ctx_alloc_failure, "
129 "retry ofld..%d\n", i
++);
130 msleep_interruptible(1000);
139 if (bnx2fc_map_doorbell(tgt
)) {
140 printk(KERN_ERR PFX
"map doorbell failed - no mem\n");
143 clear_bit(BNX2FC_FLAG_OFLD_REQ_CMPL
, &tgt
->flags
);
144 rval
= bnx2fc_send_session_enable_req(port
, tgt
);
146 pr_err(PFX
"enable session failed\n");
149 bnx2fc_ofld_wait(tgt
);
150 if (!(test_bit(BNX2FC_FLAG_ENABLED
, &tgt
->flags
)))
155 /* couldn't offload the session. log off from this rport */
156 BNX2FC_TGT_DBG(tgt
, "bnx2fc_offload_session - offload error\n");
157 clear_bit(BNX2FC_FLAG_OFFLOADED
, &tgt
->flags
);
158 /* Free session resources */
159 bnx2fc_free_session_resc(hba
, tgt
);
161 if (tgt
->fcoe_conn_id
!= -1)
162 bnx2fc_free_conn_id(hba
, tgt
->fcoe_conn_id
);
163 fc_rport_logoff(rdata
);
166 void bnx2fc_flush_active_ios(struct bnx2fc_rport
*tgt
)
168 struct bnx2fc_cmd
*io_req
;
169 struct bnx2fc_cmd
*tmp
;
172 BNX2FC_TGT_DBG(tgt
, "Entered flush_active_ios - %d\n",
173 tgt
->num_active_ios
.counter
);
175 spin_lock_bh(&tgt
->tgt_lock
);
176 tgt
->flush_in_prog
= 1;
178 list_for_each_entry_safe(io_req
, tmp
, &tgt
->active_cmd_queue
, link
) {
180 list_del_init(&io_req
->link
);
181 io_req
->on_active_queue
= 0;
182 BNX2FC_IO_DBG(io_req
, "cmd_queue cleanup\n");
184 if (cancel_delayed_work(&io_req
->timeout_work
)) {
185 if (test_and_clear_bit(BNX2FC_FLAG_EH_ABORT
,
186 &io_req
->req_flags
)) {
187 /* Handle eh_abort timeout */
188 BNX2FC_IO_DBG(io_req
, "eh_abort for IO "
190 complete(&io_req
->tm_done
);
192 kref_put(&io_req
->refcount
,
193 bnx2fc_cmd_release
); /* drop timer hold */
196 set_bit(BNX2FC_FLAG_IO_COMPL
, &io_req
->req_flags
);
197 set_bit(BNX2FC_FLAG_IO_CLEANUP
, &io_req
->req_flags
);
199 /* Do not issue cleanup when disable request failed */
200 if (test_bit(BNX2FC_FLAG_DISABLE_FAILED
, &tgt
->flags
))
201 bnx2fc_process_cleanup_compl(io_req
, io_req
->task
, 0);
203 rc
= bnx2fc_initiate_cleanup(io_req
);
208 list_for_each_entry_safe(io_req
, tmp
, &tgt
->active_tm_queue
, link
) {
210 list_del_init(&io_req
->link
);
211 io_req
->on_tmf_queue
= 0;
212 BNX2FC_IO_DBG(io_req
, "tm_queue cleanup\n");
213 if (io_req
->wait_for_comp
)
214 complete(&io_req
->tm_done
);
217 list_for_each_entry_safe(io_req
, tmp
, &tgt
->els_queue
, link
) {
219 list_del_init(&io_req
->link
);
220 io_req
->on_active_queue
= 0;
222 BNX2FC_IO_DBG(io_req
, "els_queue cleanup\n");
224 if (cancel_delayed_work(&io_req
->timeout_work
))
225 kref_put(&io_req
->refcount
,
226 bnx2fc_cmd_release
); /* drop timer hold */
228 if ((io_req
->cb_func
) && (io_req
->cb_arg
)) {
229 io_req
->cb_func(io_req
->cb_arg
);
230 io_req
->cb_arg
= NULL
;
233 /* Do not issue cleanup when disable request failed */
234 if (test_bit(BNX2FC_FLAG_DISABLE_FAILED
, &tgt
->flags
))
235 bnx2fc_process_cleanup_compl(io_req
, io_req
->task
, 0);
237 rc
= bnx2fc_initiate_cleanup(io_req
);
242 list_for_each_entry_safe(io_req
, tmp
, &tgt
->io_retire_queue
, link
) {
244 list_del_init(&io_req
->link
);
246 BNX2FC_IO_DBG(io_req
, "retire_queue flush\n");
248 if (cancel_delayed_work(&io_req
->timeout_work
)) {
249 if (test_and_clear_bit(BNX2FC_FLAG_EH_ABORT
,
250 &io_req
->req_flags
)) {
251 /* Handle eh_abort timeout */
252 BNX2FC_IO_DBG(io_req
, "eh_abort for IO "
254 if (io_req
->wait_for_comp
)
255 complete(&io_req
->tm_done
);
257 kref_put(&io_req
->refcount
, bnx2fc_cmd_release
);
260 clear_bit(BNX2FC_FLAG_ISSUE_RRQ
, &io_req
->req_flags
);
263 BNX2FC_TGT_DBG(tgt
, "IOs flushed = %d\n", i
);
265 spin_unlock_bh(&tgt
->tgt_lock
);
266 /* wait for active_ios to go to 0 */
267 while ((tgt
->num_active_ios
.counter
!= 0) && (i
++ < BNX2FC_WAIT_CNT
))
269 if (tgt
->num_active_ios
.counter
!= 0)
270 printk(KERN_ERR PFX
"CLEANUP on port 0x%x:"
271 " active_ios = %d\n",
272 tgt
->rdata
->ids
.port_id
, tgt
->num_active_ios
.counter
);
273 spin_lock_bh(&tgt
->tgt_lock
);
274 tgt
->flush_in_prog
= 0;
275 spin_unlock_bh(&tgt
->tgt_lock
);
278 static void bnx2fc_upld_wait(struct bnx2fc_rport
*tgt
)
280 timer_setup(&tgt
->upld_timer
, bnx2fc_upld_timer
, 0);
281 mod_timer(&tgt
->upld_timer
, jiffies
+ BNX2FC_FW_TIMEOUT
);
282 wait_event_interruptible(tgt
->upld_wait
,
284 BNX2FC_FLAG_UPLD_REQ_COMPL
,
286 if (signal_pending(current
))
287 flush_signals(current
);
288 del_timer_sync(&tgt
->upld_timer
);
291 static void bnx2fc_upload_session(struct fcoe_port
*port
,
292 struct bnx2fc_rport
*tgt
)
294 struct bnx2fc_interface
*interface
= port
->priv
;
295 struct bnx2fc_hba
*hba
= interface
->hba
;
297 BNX2FC_TGT_DBG(tgt
, "upload_session: active_ios = %d\n",
298 tgt
->num_active_ios
.counter
);
301 * Called with hba->hba_mutex held.
302 * This is a blocking call
304 clear_bit(BNX2FC_FLAG_UPLD_REQ_COMPL
, &tgt
->flags
);
305 bnx2fc_send_session_disable_req(port
, tgt
);
308 * wait for upload to complete. 3 Secs
309 * should be sufficient time for this process to complete.
311 BNX2FC_TGT_DBG(tgt
, "waiting for disable compl\n");
312 bnx2fc_upld_wait(tgt
);
315 * traverse thru the active_q and tmf_q and cleanup
318 BNX2FC_TGT_DBG(tgt
, "flush/upload - disable wait flags = 0x%lx\n",
320 bnx2fc_flush_active_ios(tgt
);
322 /* Issue destroy KWQE */
323 if (test_bit(BNX2FC_FLAG_DISABLED
, &tgt
->flags
)) {
324 BNX2FC_TGT_DBG(tgt
, "send destroy req\n");
325 clear_bit(BNX2FC_FLAG_UPLD_REQ_COMPL
, &tgt
->flags
);
326 bnx2fc_send_session_destroy_req(hba
, tgt
);
328 /* wait for destroy to complete */
329 bnx2fc_upld_wait(tgt
);
331 if (!(test_bit(BNX2FC_FLAG_DESTROYED
, &tgt
->flags
)))
332 printk(KERN_ERR PFX
"ERROR!! destroy timed out\n");
334 BNX2FC_TGT_DBG(tgt
, "destroy wait complete flags = 0x%lx\n",
337 } else if (test_bit(BNX2FC_FLAG_DISABLE_FAILED
, &tgt
->flags
)) {
338 printk(KERN_ERR PFX
"ERROR!! DISABLE req failed, destroy"
339 " not sent to FW\n");
341 printk(KERN_ERR PFX
"ERROR!! DISABLE req timed out, destroy"
342 " not sent to FW\n");
345 /* Free session resources */
346 bnx2fc_free_session_resc(hba
, tgt
);
347 bnx2fc_free_conn_id(hba
, tgt
->fcoe_conn_id
);
350 static int bnx2fc_init_tgt(struct bnx2fc_rport
*tgt
,
351 struct fcoe_port
*port
,
352 struct fc_rport_priv
*rdata
)
355 struct fc_rport
*rport
= rdata
->rport
;
356 struct bnx2fc_interface
*interface
= port
->priv
;
357 struct bnx2fc_hba
*hba
= interface
->hba
;
358 struct b577xx_doorbell_set_prod
*sq_db
= &tgt
->sq_db
;
359 struct b577xx_fcoe_rx_doorbell
*rx_db
= &tgt
->rx_db
;
365 if (hba
->num_ofld_sess
>= BNX2FC_NUM_MAX_SESS
) {
366 BNX2FC_TGT_DBG(tgt
, "exceeded max sessions. logoff this tgt\n");
367 tgt
->fcoe_conn_id
= -1;
371 tgt
->fcoe_conn_id
= bnx2fc_alloc_conn_id(hba
, tgt
);
372 if (tgt
->fcoe_conn_id
== -1)
375 BNX2FC_TGT_DBG(tgt
, "init_tgt - conn_id = 0x%x\n", tgt
->fcoe_conn_id
);
377 tgt
->max_sqes
= BNX2FC_SQ_WQES_MAX
;
378 tgt
->max_rqes
= BNX2FC_RQ_WQES_MAX
;
379 tgt
->max_cqes
= BNX2FC_CQ_WQES_MAX
;
380 atomic_set(&tgt
->free_sqes
, BNX2FC_SQ_WQES_MAX
);
382 /* Initialize the toggle bit */
383 tgt
->sq_curr_toggle_bit
= 1;
384 tgt
->cq_curr_toggle_bit
= 1;
385 tgt
->sq_prod_idx
= 0;
386 tgt
->cq_cons_idx
= 0;
387 tgt
->rq_prod_idx
= 0x8000;
388 tgt
->rq_cons_idx
= 0;
389 atomic_set(&tgt
->num_active_ios
, 0);
390 tgt
->retry_delay_timestamp
= 0;
392 if (rdata
->flags
& FC_RP_FLAGS_RETRY
&&
393 rdata
->ids
.roles
& FC_RPORT_ROLE_FCP_TARGET
&&
394 !(rdata
->ids
.roles
& FC_RPORT_ROLE_FCP_INITIATOR
)) {
395 tgt
->dev_type
= TYPE_TAPE
;
396 tgt
->io_timeout
= 0; /* use default ULP timeout */
398 tgt
->dev_type
= TYPE_DISK
;
399 tgt
->io_timeout
= BNX2FC_IO_TIMEOUT
;
402 /* initialize sq doorbell */
403 sq_db
->header
.header
= B577XX_DOORBELL_HDR_DB_TYPE
;
404 sq_db
->header
.header
|= B577XX_FCOE_CONNECTION_TYPE
<<
405 B577XX_DOORBELL_HDR_CONN_TYPE_SHIFT
;
406 /* initialize rx doorbell */
407 rx_db
->hdr
.header
= ((0x1 << B577XX_DOORBELL_HDR_RX_SHIFT
) |
408 (0x1 << B577XX_DOORBELL_HDR_DB_TYPE_SHIFT
) |
409 (B577XX_FCOE_CONNECTION_TYPE
<<
410 B577XX_DOORBELL_HDR_CONN_TYPE_SHIFT
));
411 rx_db
->params
= (0x2 << B577XX_FCOE_RX_DOORBELL_NEGATIVE_ARM_SHIFT
) |
412 (0x3 << B577XX_FCOE_RX_DOORBELL_OPCODE_SHIFT
);
414 spin_lock_init(&tgt
->tgt_lock
);
415 spin_lock_init(&tgt
->cq_lock
);
417 /* Initialize active_cmd_queue list */
418 INIT_LIST_HEAD(&tgt
->active_cmd_queue
);
420 /* Initialize IO retire queue */
421 INIT_LIST_HEAD(&tgt
->io_retire_queue
);
423 INIT_LIST_HEAD(&tgt
->els_queue
);
425 /* Initialize active_tm_queue list */
426 INIT_LIST_HEAD(&tgt
->active_tm_queue
);
428 init_waitqueue_head(&tgt
->ofld_wait
);
429 init_waitqueue_head(&tgt
->upld_wait
);
435 * This event_callback is called after successful completion of libfc
436 * initiated target login. bnx2fc can proceed with initiating the session
439 void bnx2fc_rport_event_handler(struct fc_lport
*lport
,
440 struct fc_rport_priv
*rdata
,
441 enum fc_rport_event event
)
443 struct fcoe_port
*port
= lport_priv(lport
);
444 struct bnx2fc_interface
*interface
= port
->priv
;
445 struct bnx2fc_hba
*hba
= interface
->hba
;
446 struct fc_rport
*rport
= rdata
->rport
;
447 struct fc_rport_libfc_priv
*rp
;
448 struct bnx2fc_rport
*tgt
;
451 BNX2FC_HBA_DBG(lport
, "rport_event_hdlr: event = %d, port_id = 0x%x\n",
452 event
, rdata
->ids
.port_id
);
456 printk(KERN_ERR PFX
"rport is NULL: ERROR!\n");
461 if (rport
->port_id
== FC_FID_DIR_SERV
) {
463 * bnx2fc_rport structure doesn't exist for
465 * We should not come here, as lport will
466 * take care of fabric login
468 printk(KERN_ERR PFX
"%x - rport_event_handler ERROR\n",
473 if (rdata
->spp_type
!= FC_TYPE_FCP
) {
474 BNX2FC_HBA_DBG(lport
, "not FCP type target."
475 " not offloading\n");
478 if (!(rdata
->ids
.roles
& FC_RPORT_ROLE_FCP_TARGET
)) {
479 BNX2FC_HBA_DBG(lport
, "not FCP_TARGET"
480 " not offloading\n");
485 * Offlaod process is protected with hba mutex.
486 * Use the same mutex_lock for upload process too
488 mutex_lock(&hba
->hba_mutex
);
489 tgt
= (struct bnx2fc_rport
*)&rp
[1];
491 /* This can happen when ADISC finds the same target */
492 if (test_bit(BNX2FC_FLAG_ENABLED
, &tgt
->flags
)) {
493 BNX2FC_TGT_DBG(tgt
, "already offloaded\n");
494 mutex_unlock(&hba
->hba_mutex
);
499 * Offload the session. This is a blocking call, and will
500 * wait until the session is offloaded.
502 bnx2fc_offload_session(port
, tgt
, rdata
);
504 BNX2FC_TGT_DBG(tgt
, "OFFLOAD num_ofld_sess = %d\n",
507 if (test_bit(BNX2FC_FLAG_ENABLED
, &tgt
->flags
)) {
508 /* Session is offloaded and enabled. */
509 BNX2FC_TGT_DBG(tgt
, "sess offloaded\n");
510 /* This counter is protected with hba mutex */
511 hba
->num_ofld_sess
++;
513 set_bit(BNX2FC_FLAG_SESSION_READY
, &tgt
->flags
);
516 * Offload or enable would have failed.
517 * In offload/enable completion path, the
518 * rport would have already been removed
520 BNX2FC_TGT_DBG(tgt
, "Port is being logged off as "
521 "offloaded flag not set\n");
523 mutex_unlock(&hba
->hba_mutex
);
526 case RPORT_EV_FAILED
:
528 port_id
= rdata
->ids
.port_id
;
529 if (port_id
== FC_FID_DIR_SERV
)
533 printk(KERN_INFO PFX
"%x - rport not created Yet!!\n",
538 mutex_lock(&hba
->hba_mutex
);
540 * Perform session upload. Note that rdata->peers is already
541 * removed from disc->rports list before we get this event.
543 tgt
= (struct bnx2fc_rport
*)&rp
[1];
545 if (!(test_bit(BNX2FC_FLAG_ENABLED
, &tgt
->flags
))) {
546 mutex_unlock(&hba
->hba_mutex
);
549 clear_bit(BNX2FC_FLAG_SESSION_READY
, &tgt
->flags
);
551 bnx2fc_upload_session(port
, tgt
);
552 hba
->num_ofld_sess
--;
553 BNX2FC_TGT_DBG(tgt
, "UPLOAD num_ofld_sess = %d\n",
556 * Try to wake up the linkdown wait thread. If num_ofld_sess
557 * is 0, the waiting therad wakes up
559 if ((hba
->wait_for_link_down
) &&
560 (hba
->num_ofld_sess
== 0)) {
561 wake_up_interruptible(&hba
->shutdown_wait
);
563 mutex_unlock(&hba
->hba_mutex
);
573 * bnx2fc_tgt_lookup() - Lookup a bnx2fc_rport by port_id
575 * @port: fcoe_port struct to lookup the target port on
576 * @port_id: The remote port ID to look up
578 struct bnx2fc_rport
*bnx2fc_tgt_lookup(struct fcoe_port
*port
,
581 struct bnx2fc_interface
*interface
= port
->priv
;
582 struct bnx2fc_hba
*hba
= interface
->hba
;
583 struct bnx2fc_rport
*tgt
;
584 struct fc_rport_priv
*rdata
;
587 for (i
= 0; i
< BNX2FC_NUM_MAX_SESS
; i
++) {
588 tgt
= hba
->tgt_ofld_list
[i
];
589 if ((tgt
) && (tgt
->port
== port
)) {
591 if (rdata
->ids
.port_id
== port_id
) {
592 if (rdata
->rp_state
!= RPORT_ST_DELETE
) {
593 BNX2FC_TGT_DBG(tgt
, "rport "
597 BNX2FC_TGT_DBG(tgt
, "rport 0x%x "
598 "is in DELETED state\n",
610 * bnx2fc_alloc_conn_id - allocates FCOE Connection id
612 * @hba: pointer to adapter structure
613 * @tgt: pointer to bnx2fc_rport structure
615 static u32
bnx2fc_alloc_conn_id(struct bnx2fc_hba
*hba
,
616 struct bnx2fc_rport
*tgt
)
620 /* called with hba mutex held */
623 * tgt_ofld_list access is synchronized using
624 * both hba mutex and hba lock. Atleast hba mutex or
625 * hba lock needs to be held for read access.
628 spin_lock_bh(&hba
->hba_lock
);
629 next
= hba
->next_conn_id
;
630 conn_id
= hba
->next_conn_id
++;
631 if (hba
->next_conn_id
== BNX2FC_NUM_MAX_SESS
)
632 hba
->next_conn_id
= 0;
634 while (hba
->tgt_ofld_list
[conn_id
] != NULL
) {
636 if (conn_id
== BNX2FC_NUM_MAX_SESS
)
639 if (conn_id
== next
) {
640 /* No free conn_ids are available */
641 spin_unlock_bh(&hba
->hba_lock
);
645 hba
->tgt_ofld_list
[conn_id
] = tgt
;
646 tgt
->fcoe_conn_id
= conn_id
;
647 spin_unlock_bh(&hba
->hba_lock
);
651 static void bnx2fc_free_conn_id(struct bnx2fc_hba
*hba
, u32 conn_id
)
653 /* called with hba mutex held */
654 spin_lock_bh(&hba
->hba_lock
);
655 hba
->tgt_ofld_list
[conn_id
] = NULL
;
656 spin_unlock_bh(&hba
->hba_lock
);
660 *bnx2fc_alloc_session_resc - Allocate qp resources for the session
663 static int bnx2fc_alloc_session_resc(struct bnx2fc_hba
*hba
,
664 struct bnx2fc_rport
*tgt
)
670 /* Allocate and map SQ */
671 tgt
->sq_mem_size
= tgt
->max_sqes
* BNX2FC_SQ_WQE_SIZE
;
672 tgt
->sq_mem_size
= (tgt
->sq_mem_size
+ (CNIC_PAGE_SIZE
- 1)) &
675 tgt
->sq
= dma_alloc_coherent(&hba
->pcidev
->dev
, tgt
->sq_mem_size
,
676 &tgt
->sq_dma
, GFP_KERNEL
);
678 printk(KERN_ERR PFX
"unable to allocate SQ memory %d\n",
680 goto mem_alloc_failure
;
683 /* Allocate and map CQ */
684 tgt
->cq_mem_size
= tgt
->max_cqes
* BNX2FC_CQ_WQE_SIZE
;
685 tgt
->cq_mem_size
= (tgt
->cq_mem_size
+ (CNIC_PAGE_SIZE
- 1)) &
688 tgt
->cq
= dma_alloc_coherent(&hba
->pcidev
->dev
, tgt
->cq_mem_size
,
689 &tgt
->cq_dma
, GFP_KERNEL
);
691 printk(KERN_ERR PFX
"unable to allocate CQ memory %d\n",
693 goto mem_alloc_failure
;
696 /* Allocate and map RQ and RQ PBL */
697 tgt
->rq_mem_size
= tgt
->max_rqes
* BNX2FC_RQ_WQE_SIZE
;
698 tgt
->rq_mem_size
= (tgt
->rq_mem_size
+ (CNIC_PAGE_SIZE
- 1)) &
701 tgt
->rq
= dma_alloc_coherent(&hba
->pcidev
->dev
, tgt
->rq_mem_size
,
702 &tgt
->rq_dma
, GFP_KERNEL
);
704 printk(KERN_ERR PFX
"unable to allocate RQ memory %d\n",
706 goto mem_alloc_failure
;
709 tgt
->rq_pbl_size
= (tgt
->rq_mem_size
/ CNIC_PAGE_SIZE
) * sizeof(void *);
710 tgt
->rq_pbl_size
= (tgt
->rq_pbl_size
+ (CNIC_PAGE_SIZE
- 1)) &
713 tgt
->rq_pbl
= dma_alloc_coherent(&hba
->pcidev
->dev
, tgt
->rq_pbl_size
,
714 &tgt
->rq_pbl_dma
, GFP_KERNEL
);
716 printk(KERN_ERR PFX
"unable to allocate RQ PBL %d\n",
718 goto mem_alloc_failure
;
721 num_pages
= tgt
->rq_mem_size
/ CNIC_PAGE_SIZE
;
723 pbl
= (u32
*)tgt
->rq_pbl
;
725 while (num_pages
--) {
728 *pbl
= (u32
)((u64
)page
>> 32);
730 page
+= CNIC_PAGE_SIZE
;
733 /* Allocate and map XFERQ */
734 tgt
->xferq_mem_size
= tgt
->max_sqes
* BNX2FC_XFERQ_WQE_SIZE
;
735 tgt
->xferq_mem_size
= (tgt
->xferq_mem_size
+ (CNIC_PAGE_SIZE
- 1)) &
738 tgt
->xferq
= dma_alloc_coherent(&hba
->pcidev
->dev
,
739 tgt
->xferq_mem_size
, &tgt
->xferq_dma
,
742 printk(KERN_ERR PFX
"unable to allocate XFERQ %d\n",
743 tgt
->xferq_mem_size
);
744 goto mem_alloc_failure
;
747 /* Allocate and map CONFQ & CONFQ PBL */
748 tgt
->confq_mem_size
= tgt
->max_sqes
* BNX2FC_CONFQ_WQE_SIZE
;
749 tgt
->confq_mem_size
= (tgt
->confq_mem_size
+ (CNIC_PAGE_SIZE
- 1)) &
752 tgt
->confq
= dma_alloc_coherent(&hba
->pcidev
->dev
,
753 tgt
->confq_mem_size
, &tgt
->confq_dma
,
756 printk(KERN_ERR PFX
"unable to allocate CONFQ %d\n",
757 tgt
->confq_mem_size
);
758 goto mem_alloc_failure
;
761 tgt
->confq_pbl_size
=
762 (tgt
->confq_mem_size
/ CNIC_PAGE_SIZE
) * sizeof(void *);
763 tgt
->confq_pbl_size
=
764 (tgt
->confq_pbl_size
+ (CNIC_PAGE_SIZE
- 1)) & CNIC_PAGE_MASK
;
766 tgt
->confq_pbl
= dma_alloc_coherent(&hba
->pcidev
->dev
,
768 &tgt
->confq_pbl_dma
, GFP_KERNEL
);
769 if (!tgt
->confq_pbl
) {
770 printk(KERN_ERR PFX
"unable to allocate CONFQ PBL %d\n",
771 tgt
->confq_pbl_size
);
772 goto mem_alloc_failure
;
775 num_pages
= tgt
->confq_mem_size
/ CNIC_PAGE_SIZE
;
776 page
= tgt
->confq_dma
;
777 pbl
= (u32
*)tgt
->confq_pbl
;
779 while (num_pages
--) {
782 *pbl
= (u32
)((u64
)page
>> 32);
784 page
+= CNIC_PAGE_SIZE
;
787 /* Allocate and map ConnDB */
788 tgt
->conn_db_mem_size
= sizeof(struct fcoe_conn_db
);
790 tgt
->conn_db
= dma_alloc_coherent(&hba
->pcidev
->dev
,
791 tgt
->conn_db_mem_size
,
792 &tgt
->conn_db_dma
, GFP_KERNEL
);
794 printk(KERN_ERR PFX
"unable to allocate conn_db %d\n",
795 tgt
->conn_db_mem_size
);
796 goto mem_alloc_failure
;
800 /* Allocate and map LCQ */
801 tgt
->lcq_mem_size
= (tgt
->max_sqes
+ 8) * BNX2FC_SQ_WQE_SIZE
;
802 tgt
->lcq_mem_size
= (tgt
->lcq_mem_size
+ (CNIC_PAGE_SIZE
- 1)) &
805 tgt
->lcq
= dma_alloc_coherent(&hba
->pcidev
->dev
, tgt
->lcq_mem_size
,
806 &tgt
->lcq_dma
, GFP_KERNEL
);
809 printk(KERN_ERR PFX
"unable to allocate lcq %d\n",
811 goto mem_alloc_failure
;
814 tgt
->conn_db
->rq_prod
= 0x8000;
823 * bnx2i_free_session_resc - free qp resources for the session
825 * @hba: adapter structure pointer
826 * @tgt: bnx2fc_rport structure pointer
828 * Free QP resources - SQ/RQ/CQ/XFERQ memory and PBL
830 static void bnx2fc_free_session_resc(struct bnx2fc_hba
*hba
,
831 struct bnx2fc_rport
*tgt
)
833 void __iomem
*ctx_base_ptr
;
835 BNX2FC_TGT_DBG(tgt
, "Freeing up session resources\n");
837 spin_lock_bh(&tgt
->cq_lock
);
838 ctx_base_ptr
= tgt
->ctx_base
;
839 tgt
->ctx_base
= NULL
;
843 dma_free_coherent(&hba
->pcidev
->dev
, tgt
->lcq_mem_size
,
844 tgt
->lcq
, tgt
->lcq_dma
);
849 dma_free_coherent(&hba
->pcidev
->dev
, tgt
->conn_db_mem_size
,
850 tgt
->conn_db
, tgt
->conn_db_dma
);
853 /* Free confq and confq pbl */
854 if (tgt
->confq_pbl
) {
855 dma_free_coherent(&hba
->pcidev
->dev
, tgt
->confq_pbl_size
,
856 tgt
->confq_pbl
, tgt
->confq_pbl_dma
);
857 tgt
->confq_pbl
= NULL
;
860 dma_free_coherent(&hba
->pcidev
->dev
, tgt
->confq_mem_size
,
861 tgt
->confq
, tgt
->confq_dma
);
866 dma_free_coherent(&hba
->pcidev
->dev
, tgt
->xferq_mem_size
,
867 tgt
->xferq
, tgt
->xferq_dma
);
870 /* Free RQ PBL and RQ */
872 dma_free_coherent(&hba
->pcidev
->dev
, tgt
->rq_pbl_size
,
873 tgt
->rq_pbl
, tgt
->rq_pbl_dma
);
877 dma_free_coherent(&hba
->pcidev
->dev
, tgt
->rq_mem_size
,
878 tgt
->rq
, tgt
->rq_dma
);
883 dma_free_coherent(&hba
->pcidev
->dev
, tgt
->cq_mem_size
,
884 tgt
->cq
, tgt
->cq_dma
);
889 dma_free_coherent(&hba
->pcidev
->dev
, tgt
->sq_mem_size
,
890 tgt
->sq
, tgt
->sq_dma
);
893 spin_unlock_bh(&tgt
->cq_lock
);
896 iounmap(ctx_base_ptr
);