2 * Copyright 2008 Cisco Systems, Inc. All rights reserved.
3 * Copyright 2007 Nuova Systems, Inc. All rights reserved.
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.
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
18 #include <linux/mempool.h>
19 #include <linux/errno.h>
20 #include <linux/init.h>
21 #include <linux/workqueue.h>
22 #include <linux/pci.h>
23 #include <linux/scatterlist.h>
24 #include <linux/skbuff.h>
25 #include <linux/spinlock.h>
26 #include <linux/if_ether.h>
27 #include <linux/if_vlan.h>
28 #include <linux/delay.h>
29 #include <linux/gfp.h>
30 #include <scsi/scsi.h>
31 #include <scsi/scsi_host.h>
32 #include <scsi/scsi_device.h>
33 #include <scsi/scsi_cmnd.h>
34 #include <scsi/scsi_tcq.h>
35 #include <scsi/fc/fc_els.h>
36 #include <scsi/fc/fc_fcoe.h>
37 #include <scsi/libfc.h>
38 #include <scsi/fc_frame.h>
42 const char *fnic_state_str
[] = {
43 [FNIC_IN_FC_MODE
] = "FNIC_IN_FC_MODE",
44 [FNIC_IN_FC_TRANS_ETH_MODE
] = "FNIC_IN_FC_TRANS_ETH_MODE",
45 [FNIC_IN_ETH_MODE
] = "FNIC_IN_ETH_MODE",
46 [FNIC_IN_ETH_TRANS_FC_MODE
] = "FNIC_IN_ETH_TRANS_FC_MODE",
49 static const char *fnic_ioreq_state_str
[] = {
50 [FNIC_IOREQ_NOT_INITED
] = "FNIC_IOREQ_NOT_INITED",
51 [FNIC_IOREQ_CMD_PENDING
] = "FNIC_IOREQ_CMD_PENDING",
52 [FNIC_IOREQ_ABTS_PENDING
] = "FNIC_IOREQ_ABTS_PENDING",
53 [FNIC_IOREQ_ABTS_COMPLETE
] = "FNIC_IOREQ_ABTS_COMPLETE",
54 [FNIC_IOREQ_CMD_COMPLETE
] = "FNIC_IOREQ_CMD_COMPLETE",
57 static const char *fcpio_status_str
[] = {
58 [FCPIO_SUCCESS
] = "FCPIO_SUCCESS", /*0x0*/
59 [FCPIO_INVALID_HEADER
] = "FCPIO_INVALID_HEADER",
60 [FCPIO_OUT_OF_RESOURCE
] = "FCPIO_OUT_OF_RESOURCE",
61 [FCPIO_INVALID_PARAM
] = "FCPIO_INVALID_PARAM]",
62 [FCPIO_REQ_NOT_SUPPORTED
] = "FCPIO_REQ_NOT_SUPPORTED",
63 [FCPIO_IO_NOT_FOUND
] = "FCPIO_IO_NOT_FOUND",
64 [FCPIO_ABORTED
] = "FCPIO_ABORTED", /*0x41*/
65 [FCPIO_TIMEOUT
] = "FCPIO_TIMEOUT",
66 [FCPIO_SGL_INVALID
] = "FCPIO_SGL_INVALID",
67 [FCPIO_MSS_INVALID
] = "FCPIO_MSS_INVALID",
68 [FCPIO_DATA_CNT_MISMATCH
] = "FCPIO_DATA_CNT_MISMATCH",
69 [FCPIO_FW_ERR
] = "FCPIO_FW_ERR",
70 [FCPIO_ITMF_REJECTED
] = "FCPIO_ITMF_REJECTED",
71 [FCPIO_ITMF_FAILED
] = "FCPIO_ITMF_FAILED",
72 [FCPIO_ITMF_INCORRECT_LUN
] = "FCPIO_ITMF_INCORRECT_LUN",
73 [FCPIO_CMND_REJECTED
] = "FCPIO_CMND_REJECTED",
74 [FCPIO_NO_PATH_AVAIL
] = "FCPIO_NO_PATH_AVAIL",
75 [FCPIO_PATH_FAILED
] = "FCPIO_PATH_FAILED",
76 [FCPIO_LUNMAP_CHNG_PEND
] = "FCPIO_LUNHMAP_CHNG_PEND",
79 const char *fnic_state_to_str(unsigned int state
)
81 if (state
>= ARRAY_SIZE(fnic_state_str
) || !fnic_state_str
[state
])
84 return fnic_state_str
[state
];
87 static const char *fnic_ioreq_state_to_str(unsigned int state
)
89 if (state
>= ARRAY_SIZE(fnic_ioreq_state_str
) ||
90 !fnic_ioreq_state_str
[state
])
93 return fnic_ioreq_state_str
[state
];
96 static const char *fnic_fcpio_status_to_str(unsigned int status
)
98 if (status
>= ARRAY_SIZE(fcpio_status_str
) || !fcpio_status_str
[status
])
101 return fcpio_status_str
[status
];
104 static void fnic_cleanup_io(struct fnic
*fnic
, int exclude_id
);
106 static inline spinlock_t
*fnic_io_lock_hash(struct fnic
*fnic
,
107 struct scsi_cmnd
*sc
)
109 u32 hash
= sc
->request
->tag
& (FNIC_IO_LOCKS
- 1);
111 return &fnic
->io_req_lock
[hash
];
114 static inline spinlock_t
*fnic_io_lock_tag(struct fnic
*fnic
,
117 return &fnic
->io_req_lock
[tag
& (FNIC_IO_LOCKS
- 1)];
121 * Unmap the data buffer and sense buffer for an io_req,
122 * also unmap and free the device-private scatter/gather list.
124 static void fnic_release_ioreq_buf(struct fnic
*fnic
,
125 struct fnic_io_req
*io_req
,
126 struct scsi_cmnd
*sc
)
128 if (io_req
->sgl_list_pa
)
129 pci_unmap_single(fnic
->pdev
, io_req
->sgl_list_pa
,
130 sizeof(io_req
->sgl_list
[0]) * io_req
->sgl_cnt
,
135 mempool_free(io_req
->sgl_list_alloc
,
136 fnic
->io_sgl_pool
[io_req
->sgl_type
]);
137 if (io_req
->sense_buf_pa
)
138 pci_unmap_single(fnic
->pdev
, io_req
->sense_buf_pa
,
139 SCSI_SENSE_BUFFERSIZE
, PCI_DMA_FROMDEVICE
);
142 /* Free up Copy Wq descriptors. Called with copy_wq lock held */
143 static int free_wq_copy_descs(struct fnic
*fnic
, struct vnic_wq_copy
*wq
)
145 /* if no Ack received from firmware, then nothing to clean */
146 if (!fnic
->fw_ack_recd
[0])
150 * Update desc_available count based on number of freed descriptors
151 * Account for wraparound
153 if (wq
->to_clean_index
<= fnic
->fw_ack_index
[0])
154 wq
->ring
.desc_avail
+= (fnic
->fw_ack_index
[0]
155 - wq
->to_clean_index
+ 1);
157 wq
->ring
.desc_avail
+= (wq
->ring
.desc_count
159 + fnic
->fw_ack_index
[0] + 1);
162 * just bump clean index to ack_index+1 accounting for wraparound
163 * this will essentially free up all descriptors between
164 * to_clean_index and fw_ack_index, both inclusive
167 (fnic
->fw_ack_index
[0] + 1) % wq
->ring
.desc_count
;
169 /* we have processed the acks received so far */
170 fnic
->fw_ack_recd
[0] = 0;
176 * __fnic_set_state_flags
177 * Sets/Clears bits in fnic's state_flags
180 __fnic_set_state_flags(struct fnic
*fnic
, unsigned long st_flags
,
181 unsigned long clearbits
)
183 struct Scsi_Host
*host
= fnic
->lport
->host
;
184 int sh_locked
= spin_is_locked(host
->host_lock
);
185 unsigned long flags
= 0;
188 spin_lock_irqsave(host
->host_lock
, flags
);
191 fnic
->state_flags
&= ~st_flags
;
193 fnic
->state_flags
|= st_flags
;
196 spin_unlock_irqrestore(host
->host_lock
, flags
);
203 * fnic_fw_reset_handler
204 * Routine to send reset msg to fw
206 int fnic_fw_reset_handler(struct fnic
*fnic
)
208 struct vnic_wq_copy
*wq
= &fnic
->wq_copy
[0];
212 /* indicate fwreset to io path */
213 fnic_set_state_flags(fnic
, FNIC_FLAGS_FWRESET
);
215 skb_queue_purge(&fnic
->frame_queue
);
216 skb_queue_purge(&fnic
->tx_queue
);
218 /* wait for io cmpl */
219 while (atomic_read(&fnic
->in_flight
))
220 schedule_timeout(msecs_to_jiffies(1));
222 spin_lock_irqsave(&fnic
->wq_copy_lock
[0], flags
);
224 if (vnic_wq_copy_desc_avail(wq
) <= fnic
->wq_copy_desc_low
[0])
225 free_wq_copy_descs(fnic
, wq
);
227 if (!vnic_wq_copy_desc_avail(wq
))
230 fnic_queue_wq_copy_desc_fw_reset(wq
, SCSI_NO_TAG
);
231 atomic64_inc(&fnic
->fnic_stats
.fw_stats
.active_fw_reqs
);
232 if (atomic64_read(&fnic
->fnic_stats
.fw_stats
.active_fw_reqs
) >
233 atomic64_read(&fnic
->fnic_stats
.fw_stats
.max_fw_reqs
))
234 atomic64_set(&fnic
->fnic_stats
.fw_stats
.max_fw_reqs
,
236 &fnic
->fnic_stats
.fw_stats
.active_fw_reqs
));
239 spin_unlock_irqrestore(&fnic
->wq_copy_lock
[0], flags
);
242 atomic64_inc(&fnic
->fnic_stats
.reset_stats
.fw_resets
);
243 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
244 "Issued fw reset\n");
246 fnic_clear_state_flags(fnic
, FNIC_FLAGS_FWRESET
);
247 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
248 "Failed to issue fw reset\n");
256 * fnic_flogi_reg_handler
257 * Routine to send flogi register msg to fw
259 int fnic_flogi_reg_handler(struct fnic
*fnic
, u32 fc_id
)
261 struct vnic_wq_copy
*wq
= &fnic
->wq_copy
[0];
262 enum fcpio_flogi_reg_format_type format
;
263 struct fc_lport
*lp
= fnic
->lport
;
268 spin_lock_irqsave(&fnic
->wq_copy_lock
[0], flags
);
270 if (vnic_wq_copy_desc_avail(wq
) <= fnic
->wq_copy_desc_low
[0])
271 free_wq_copy_descs(fnic
, wq
);
273 if (!vnic_wq_copy_desc_avail(wq
)) {
275 goto flogi_reg_ioreq_end
;
278 if (fnic
->ctlr
.map_dest
) {
279 memset(gw_mac
, 0xff, ETH_ALEN
);
280 format
= FCPIO_FLOGI_REG_DEF_DEST
;
282 memcpy(gw_mac
, fnic
->ctlr
.dest_addr
, ETH_ALEN
);
283 format
= FCPIO_FLOGI_REG_GW_DEST
;
286 if ((fnic
->config
.flags
& VFCF_FIP_CAPABLE
) && !fnic
->ctlr
.map_dest
) {
287 fnic_queue_wq_copy_desc_fip_reg(wq
, SCSI_NO_TAG
,
290 lp
->r_a_tov
, lp
->e_d_tov
);
291 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
292 "FLOGI FIP reg issued fcid %x src %pM dest %pM\n",
293 fc_id
, fnic
->data_src_addr
, gw_mac
);
295 fnic_queue_wq_copy_desc_flogi_reg(wq
, SCSI_NO_TAG
,
296 format
, fc_id
, gw_mac
);
297 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
298 "FLOGI reg issued fcid %x map %d dest %pM\n",
299 fc_id
, fnic
->ctlr
.map_dest
, gw_mac
);
302 atomic64_inc(&fnic
->fnic_stats
.fw_stats
.active_fw_reqs
);
303 if (atomic64_read(&fnic
->fnic_stats
.fw_stats
.active_fw_reqs
) >
304 atomic64_read(&fnic
->fnic_stats
.fw_stats
.max_fw_reqs
))
305 atomic64_set(&fnic
->fnic_stats
.fw_stats
.max_fw_reqs
,
306 atomic64_read(&fnic
->fnic_stats
.fw_stats
.active_fw_reqs
));
309 spin_unlock_irqrestore(&fnic
->wq_copy_lock
[0], flags
);
314 * fnic_queue_wq_copy_desc
315 * Routine to enqueue a wq copy desc
317 static inline int fnic_queue_wq_copy_desc(struct fnic
*fnic
,
318 struct vnic_wq_copy
*wq
,
319 struct fnic_io_req
*io_req
,
320 struct scsi_cmnd
*sc
,
323 struct scatterlist
*sg
;
324 struct fc_rport
*rport
= starget_to_rport(scsi_target(sc
->device
));
325 struct fc_rport_libfc_priv
*rp
= rport
->dd_data
;
326 struct host_sg_desc
*desc
;
327 struct misc_stats
*misc_stats
= &fnic
->fnic_stats
.misc_stats
;
329 unsigned long intr_flags
;
332 struct scsi_lun fc_lun
;
336 /* For each SGE, create a device desc entry */
337 desc
= io_req
->sgl_list
;
338 for_each_sg(scsi_sglist(sc
), sg
, sg_count
, i
) {
339 desc
->addr
= cpu_to_le64(sg_dma_address(sg
));
340 desc
->len
= cpu_to_le32(sg_dma_len(sg
));
345 io_req
->sgl_list_pa
= pci_map_single
348 sizeof(io_req
->sgl_list
[0]) * sg_count
,
351 r
= pci_dma_mapping_error(fnic
->pdev
, io_req
->sgl_list_pa
);
353 printk(KERN_ERR
"PCI mapping failed with error %d\n", r
);
354 return SCSI_MLQUEUE_HOST_BUSY
;
358 io_req
->sense_buf_pa
= pci_map_single(fnic
->pdev
,
360 SCSI_SENSE_BUFFERSIZE
,
363 r
= pci_dma_mapping_error(fnic
->pdev
, io_req
->sense_buf_pa
);
365 pci_unmap_single(fnic
->pdev
, io_req
->sgl_list_pa
,
366 sizeof(io_req
->sgl_list
[0]) * sg_count
,
368 printk(KERN_ERR
"PCI mapping failed with error %d\n", r
);
369 return SCSI_MLQUEUE_HOST_BUSY
;
372 int_to_scsilun(sc
->device
->lun
, &fc_lun
);
374 /* Enqueue the descriptor in the Copy WQ */
375 spin_lock_irqsave(&fnic
->wq_copy_lock
[0], intr_flags
);
377 if (vnic_wq_copy_desc_avail(wq
) <= fnic
->wq_copy_desc_low
[0])
378 free_wq_copy_descs(fnic
, wq
);
380 if (unlikely(!vnic_wq_copy_desc_avail(wq
))) {
381 spin_unlock_irqrestore(&fnic
->wq_copy_lock
[0], intr_flags
);
382 FNIC_SCSI_DBG(KERN_INFO
, fnic
->lport
->host
,
383 "fnic_queue_wq_copy_desc failure - no descriptors\n");
384 atomic64_inc(&misc_stats
->io_cpwq_alloc_failures
);
385 return SCSI_MLQUEUE_HOST_BUSY
;
389 if (sc
->sc_data_direction
== DMA_FROM_DEVICE
)
390 flags
= FCPIO_ICMND_RDDATA
;
391 else if (sc
->sc_data_direction
== DMA_TO_DEVICE
)
392 flags
= FCPIO_ICMND_WRDATA
;
395 if ((fnic
->config
.flags
& VFCF_FCP_SEQ_LVL_ERR
) &&
396 (rp
->flags
& FC_RP_FLAGS_RETRY
))
397 exch_flags
|= FCPIO_ICMND_SRFLAG_RETRY
;
399 fnic_queue_wq_copy_desc_icmnd_16(wq
, sc
->request
->tag
,
400 0, exch_flags
, io_req
->sgl_cnt
,
401 SCSI_SENSE_BUFFERSIZE
,
403 io_req
->sense_buf_pa
,
404 0, /* scsi cmd ref, always 0 */
405 FCPIO_ICMND_PTA_SIMPLE
,
406 /* scsi pri and tag */
407 flags
, /* command flags */
408 sc
->cmnd
, sc
->cmd_len
,
410 fc_lun
.scsi_lun
, io_req
->port_id
,
411 rport
->maxframe_size
, rp
->r_a_tov
,
414 atomic64_inc(&fnic
->fnic_stats
.fw_stats
.active_fw_reqs
);
415 if (atomic64_read(&fnic
->fnic_stats
.fw_stats
.active_fw_reqs
) >
416 atomic64_read(&fnic
->fnic_stats
.fw_stats
.max_fw_reqs
))
417 atomic64_set(&fnic
->fnic_stats
.fw_stats
.max_fw_reqs
,
418 atomic64_read(&fnic
->fnic_stats
.fw_stats
.active_fw_reqs
));
420 spin_unlock_irqrestore(&fnic
->wq_copy_lock
[0], intr_flags
);
426 * Routine to send a scsi cdb
427 * Called with host_lock held and interrupts disabled.
429 static int fnic_queuecommand_lck(struct scsi_cmnd
*sc
, void (*done
)(struct scsi_cmnd
*))
431 struct fc_lport
*lp
= shost_priv(sc
->device
->host
);
432 struct fc_rport
*rport
;
433 struct fnic_io_req
*io_req
= NULL
;
434 struct fnic
*fnic
= lport_priv(lp
);
435 struct fnic_stats
*fnic_stats
= &fnic
->fnic_stats
;
436 struct vnic_wq_copy
*wq
;
440 unsigned long flags
= 0;
442 spinlock_t
*io_lock
= NULL
;
443 int io_lock_acquired
= 0;
444 struct fc_rport_libfc_priv
*rp
;
446 if (unlikely(fnic_chk_state_flags_locked(fnic
, FNIC_FLAGS_IO_BLOCKED
)))
447 return SCSI_MLQUEUE_HOST_BUSY
;
449 rport
= starget_to_rport(scsi_target(sc
->device
));
451 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
452 "returning DID_NO_CONNECT for IO as rport is NULL\n");
453 sc
->result
= DID_NO_CONNECT
<< 16;
458 ret
= fc_remote_port_chkready(rport
);
460 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
461 "rport is not ready\n");
462 atomic64_inc(&fnic_stats
->misc_stats
.rport_not_ready
);
469 if (!rp
|| rp
->rp_state
!= RPORT_ST_READY
) {
470 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
471 "returning DID_NO_CONNECT for IO as rport is removed\n");
472 atomic64_inc(&fnic_stats
->misc_stats
.rport_not_ready
);
473 sc
->result
= DID_NO_CONNECT
<<16;
478 if (lp
->state
!= LPORT_ST_READY
|| !(lp
->link_up
))
479 return SCSI_MLQUEUE_HOST_BUSY
;
481 atomic_inc(&fnic
->in_flight
);
484 * Release host lock, use driver resource specific locks from here.
485 * Don't re-enable interrupts in case they were disabled prior to the
486 * caller disabling them.
488 spin_unlock(lp
->host
->host_lock
);
489 CMD_STATE(sc
) = FNIC_IOREQ_NOT_INITED
;
490 CMD_FLAGS(sc
) = FNIC_NO_FLAGS
;
492 /* Get a new io_req for this SCSI IO */
493 io_req
= mempool_alloc(fnic
->io_req_pool
, GFP_ATOMIC
);
495 atomic64_inc(&fnic_stats
->io_stats
.alloc_failures
);
496 ret
= SCSI_MLQUEUE_HOST_BUSY
;
499 memset(io_req
, 0, sizeof(*io_req
));
501 /* Map the data buffer */
502 sg_count
= scsi_dma_map(sc
);
504 FNIC_TRACE(fnic_queuecommand
, sc
->device
->host
->host_no
,
505 sc
->request
->tag
, sc
, 0, sc
->cmnd
[0],
506 sg_count
, CMD_STATE(sc
));
507 mempool_free(io_req
, fnic
->io_req_pool
);
511 /* Determine the type of scatter/gather list we need */
512 io_req
->sgl_cnt
= sg_count
;
513 io_req
->sgl_type
= FNIC_SGL_CACHE_DFLT
;
514 if (sg_count
> FNIC_DFLT_SG_DESC_CNT
)
515 io_req
->sgl_type
= FNIC_SGL_CACHE_MAX
;
519 mempool_alloc(fnic
->io_sgl_pool
[io_req
->sgl_type
],
521 if (!io_req
->sgl_list
) {
522 atomic64_inc(&fnic_stats
->io_stats
.alloc_failures
);
523 ret
= SCSI_MLQUEUE_HOST_BUSY
;
525 mempool_free(io_req
, fnic
->io_req_pool
);
529 /* Cache sgl list allocated address before alignment */
530 io_req
->sgl_list_alloc
= io_req
->sgl_list
;
531 ptr
= (unsigned long) io_req
->sgl_list
;
532 if (ptr
% FNIC_SG_DESC_ALIGN
) {
533 io_req
->sgl_list
= (struct host_sg_desc
*)
534 (((unsigned long) ptr
535 + FNIC_SG_DESC_ALIGN
- 1)
536 & ~(FNIC_SG_DESC_ALIGN
- 1));
541 * Will acquire lock defore setting to IO initialized.
544 io_lock
= fnic_io_lock_hash(fnic
, sc
);
545 spin_lock_irqsave(io_lock
, flags
);
547 /* initialize rest of io_req */
548 io_lock_acquired
= 1;
549 io_req
->port_id
= rport
->port_id
;
550 io_req
->start_time
= jiffies
;
551 CMD_STATE(sc
) = FNIC_IOREQ_CMD_PENDING
;
552 CMD_SP(sc
) = (char *)io_req
;
553 CMD_FLAGS(sc
) |= FNIC_IO_INITIALIZED
;
554 sc
->scsi_done
= done
;
556 /* create copy wq desc and enqueue it */
557 wq
= &fnic
->wq_copy
[0];
558 ret
= fnic_queue_wq_copy_desc(fnic
, wq
, io_req
, sc
, sg_count
);
561 * In case another thread cancelled the request,
562 * refetch the pointer under the lock.
564 FNIC_TRACE(fnic_queuecommand
, sc
->device
->host
->host_no
,
565 sc
->request
->tag
, sc
, 0, 0, 0,
566 (((u64
)CMD_FLAGS(sc
) << 32) | CMD_STATE(sc
)));
567 io_req
= (struct fnic_io_req
*)CMD_SP(sc
);
569 CMD_STATE(sc
) = FNIC_IOREQ_CMD_COMPLETE
;
570 spin_unlock_irqrestore(io_lock
, flags
);
572 fnic_release_ioreq_buf(fnic
, io_req
, sc
);
573 mempool_free(io_req
, fnic
->io_req_pool
);
575 atomic_dec(&fnic
->in_flight
);
576 /* acquire host lock before returning to SCSI */
577 spin_lock(lp
->host
->host_lock
);
580 atomic64_inc(&fnic_stats
->io_stats
.active_ios
);
581 atomic64_inc(&fnic_stats
->io_stats
.num_ios
);
582 if (atomic64_read(&fnic_stats
->io_stats
.active_ios
) >
583 atomic64_read(&fnic_stats
->io_stats
.max_active_ios
))
584 atomic64_set(&fnic_stats
->io_stats
.max_active_ios
,
585 atomic64_read(&fnic_stats
->io_stats
.active_ios
));
587 /* REVISIT: Use per IO lock in the final code */
588 CMD_FLAGS(sc
) |= FNIC_IO_ISSUED
;
591 cmd_trace
= ((u64
)sc
->cmnd
[0] << 56 | (u64
)sc
->cmnd
[7] << 40 |
592 (u64
)sc
->cmnd
[8] << 32 | (u64
)sc
->cmnd
[2] << 24 |
593 (u64
)sc
->cmnd
[3] << 16 | (u64
)sc
->cmnd
[4] << 8 |
596 FNIC_TRACE(fnic_queuecommand
, sc
->device
->host
->host_no
,
597 sc
->request
->tag
, sc
, io_req
,
599 (((u64
)CMD_FLAGS(sc
) >> 32) | CMD_STATE(sc
)));
601 /* if only we issued IO, will we have the io lock */
602 if (io_lock_acquired
)
603 spin_unlock_irqrestore(io_lock
, flags
);
605 atomic_dec(&fnic
->in_flight
);
606 /* acquire host lock before returning to SCSI */
607 spin_lock(lp
->host
->host_lock
);
611 DEF_SCSI_QCMD(fnic_queuecommand
)
614 * fnic_fcpio_fw_reset_cmpl_handler
615 * Routine to handle fw reset completion
617 static int fnic_fcpio_fw_reset_cmpl_handler(struct fnic
*fnic
,
618 struct fcpio_fw_req
*desc
)
622 struct fcpio_tag tag
;
625 struct reset_stats
*reset_stats
= &fnic
->fnic_stats
.reset_stats
;
627 fcpio_header_dec(&desc
->hdr
, &type
, &hdr_status
, &tag
);
629 atomic64_inc(&reset_stats
->fw_reset_completions
);
631 /* Clean up all outstanding io requests */
632 fnic_cleanup_io(fnic
, SCSI_NO_TAG
);
634 atomic64_set(&fnic
->fnic_stats
.fw_stats
.active_fw_reqs
, 0);
635 atomic64_set(&fnic
->fnic_stats
.io_stats
.active_ios
, 0);
637 spin_lock_irqsave(&fnic
->fnic_lock
, flags
);
639 /* fnic should be in FC_TRANS_ETH_MODE */
640 if (fnic
->state
== FNIC_IN_FC_TRANS_ETH_MODE
) {
641 /* Check status of reset completion */
643 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
644 "reset cmpl success\n");
645 /* Ready to send flogi out */
646 fnic
->state
= FNIC_IN_ETH_MODE
;
648 FNIC_SCSI_DBG(KERN_DEBUG
,
650 "fnic fw_reset : failed %s\n",
651 fnic_fcpio_status_to_str(hdr_status
));
654 * Unable to change to eth mode, cannot send out flogi
655 * Change state to fc mode, so that subsequent Flogi
656 * requests from libFC will cause more attempts to
657 * reset the firmware. Free the cached flogi
659 fnic
->state
= FNIC_IN_FC_MODE
;
660 atomic64_inc(&reset_stats
->fw_reset_failures
);
664 FNIC_SCSI_DBG(KERN_DEBUG
,
666 "Unexpected state %s while processing"
667 " reset cmpl\n", fnic_state_to_str(fnic
->state
));
668 atomic64_inc(&reset_stats
->fw_reset_failures
);
672 /* Thread removing device blocks till firmware reset is complete */
673 if (fnic
->remove_wait
)
674 complete(fnic
->remove_wait
);
677 * If fnic is being removed, or fw reset failed
678 * free the flogi frame. Else, send it out
680 if (fnic
->remove_wait
|| ret
) {
681 spin_unlock_irqrestore(&fnic
->fnic_lock
, flags
);
682 skb_queue_purge(&fnic
->tx_queue
);
683 goto reset_cmpl_handler_end
;
686 spin_unlock_irqrestore(&fnic
->fnic_lock
, flags
);
690 reset_cmpl_handler_end
:
691 fnic_clear_state_flags(fnic
, FNIC_FLAGS_FWRESET
);
697 * fnic_fcpio_flogi_reg_cmpl_handler
698 * Routine to handle flogi register completion
700 static int fnic_fcpio_flogi_reg_cmpl_handler(struct fnic
*fnic
,
701 struct fcpio_fw_req
*desc
)
705 struct fcpio_tag tag
;
709 fcpio_header_dec(&desc
->hdr
, &type
, &hdr_status
, &tag
);
711 /* Update fnic state based on status of flogi reg completion */
712 spin_lock_irqsave(&fnic
->fnic_lock
, flags
);
714 if (fnic
->state
== FNIC_IN_ETH_TRANS_FC_MODE
) {
716 /* Check flogi registration completion status */
718 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
719 "flog reg succeeded\n");
720 fnic
->state
= FNIC_IN_FC_MODE
;
722 FNIC_SCSI_DBG(KERN_DEBUG
,
724 "fnic flogi reg :failed %s\n",
725 fnic_fcpio_status_to_str(hdr_status
));
726 fnic
->state
= FNIC_IN_ETH_MODE
;
730 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
731 "Unexpected fnic state %s while"
732 " processing flogi reg completion\n",
733 fnic_state_to_str(fnic
->state
));
738 if (fnic
->stop_rx_link_events
) {
739 spin_unlock_irqrestore(&fnic
->fnic_lock
, flags
);
740 goto reg_cmpl_handler_end
;
742 spin_unlock_irqrestore(&fnic
->fnic_lock
, flags
);
745 queue_work(fnic_event_queue
, &fnic
->frame_work
);
747 spin_unlock_irqrestore(&fnic
->fnic_lock
, flags
);
750 reg_cmpl_handler_end
:
754 static inline int is_ack_index_in_range(struct vnic_wq_copy
*wq
,
757 if (wq
->to_clean_index
<= wq
->to_use_index
) {
758 /* out of range, stale request_out index */
759 if (request_out
< wq
->to_clean_index
||
760 request_out
>= wq
->to_use_index
)
763 /* out of range, stale request_out index */
764 if (request_out
< wq
->to_clean_index
&&
765 request_out
>= wq
->to_use_index
)
768 /* request_out index is in range */
774 * Mark that ack received and store the Ack index. If there are multiple
775 * acks received before Tx thread cleans it up, the latest value will be
776 * used which is correct behavior. This state should be in the copy Wq
777 * instead of in the fnic
779 static inline void fnic_fcpio_ack_handler(struct fnic
*fnic
,
780 unsigned int cq_index
,
781 struct fcpio_fw_req
*desc
)
783 struct vnic_wq_copy
*wq
;
784 u16 request_out
= desc
->u
.ack
.request_out
;
786 u64
*ox_id_tag
= (u64
*)(void *)desc
;
788 /* mark the ack state */
789 wq
= &fnic
->wq_copy
[cq_index
- fnic
->raw_wq_count
- fnic
->rq_count
];
790 spin_lock_irqsave(&fnic
->wq_copy_lock
[0], flags
);
792 fnic
->fnic_stats
.misc_stats
.last_ack_time
= jiffies
;
793 if (is_ack_index_in_range(wq
, request_out
)) {
794 fnic
->fw_ack_index
[0] = request_out
;
795 fnic
->fw_ack_recd
[0] = 1;
798 &fnic
->fnic_stats
.misc_stats
.ack_index_out_of_range
);
800 spin_unlock_irqrestore(&fnic
->wq_copy_lock
[0], flags
);
801 FNIC_TRACE(fnic_fcpio_ack_handler
,
802 fnic
->lport
->host
->host_no
, 0, 0, ox_id_tag
[2], ox_id_tag
[3],
803 ox_id_tag
[4], ox_id_tag
[5]);
807 * fnic_fcpio_icmnd_cmpl_handler
808 * Routine to handle icmnd completions
810 static void fnic_fcpio_icmnd_cmpl_handler(struct fnic
*fnic
,
811 struct fcpio_fw_req
*desc
)
815 struct fcpio_tag tag
;
818 struct fcpio_icmnd_cmpl
*icmnd_cmpl
;
819 struct fnic_io_req
*io_req
;
820 struct scsi_cmnd
*sc
;
821 struct fnic_stats
*fnic_stats
= &fnic
->fnic_stats
;
825 unsigned long start_time
;
827 /* Decode the cmpl description to get the io_req id */
828 fcpio_header_dec(&desc
->hdr
, &type
, &hdr_status
, &tag
);
829 fcpio_tag_id_dec(&tag
, &id
);
830 icmnd_cmpl
= &desc
->u
.icmnd_cmpl
;
832 if (id
>= fnic
->fnic_max_tag_id
) {
833 shost_printk(KERN_ERR
, fnic
->lport
->host
,
834 "Tag out of range tag %x hdr status = %s\n",
835 id
, fnic_fcpio_status_to_str(hdr_status
));
839 sc
= scsi_host_find_tag(fnic
->lport
->host
, id
);
842 atomic64_inc(&fnic_stats
->io_stats
.sc_null
);
843 shost_printk(KERN_ERR
, fnic
->lport
->host
,
844 "icmnd_cmpl sc is null - "
845 "hdr status = %s tag = 0x%x desc = 0x%p\n",
846 fnic_fcpio_status_to_str(hdr_status
), id
, desc
);
847 FNIC_TRACE(fnic_fcpio_icmnd_cmpl_handler
,
848 fnic
->lport
->host
->host_no
, id
,
849 ((u64
)icmnd_cmpl
->_resvd0
[1] << 16 |
850 (u64
)icmnd_cmpl
->_resvd0
[0]),
851 ((u64
)hdr_status
<< 16 |
852 (u64
)icmnd_cmpl
->scsi_status
<< 8 |
853 (u64
)icmnd_cmpl
->flags
), desc
,
854 (u64
)icmnd_cmpl
->residual
, 0);
858 io_lock
= fnic_io_lock_hash(fnic
, sc
);
859 spin_lock_irqsave(io_lock
, flags
);
860 io_req
= (struct fnic_io_req
*)CMD_SP(sc
);
861 WARN_ON_ONCE(!io_req
);
863 atomic64_inc(&fnic_stats
->io_stats
.ioreq_null
);
864 CMD_FLAGS(sc
) |= FNIC_IO_REQ_NULL
;
865 spin_unlock_irqrestore(io_lock
, flags
);
866 shost_printk(KERN_ERR
, fnic
->lport
->host
,
867 "icmnd_cmpl io_req is null - "
868 "hdr status = %s tag = 0x%x sc 0x%p\n",
869 fnic_fcpio_status_to_str(hdr_status
), id
, sc
);
872 start_time
= io_req
->start_time
;
874 /* firmware completed the io */
875 io_req
->io_completed
= 1;
878 * if SCSI-ML has already issued abort on this command,
879 * ignore completion of the IO. The abts path will clean it up
881 if (CMD_STATE(sc
) == FNIC_IOREQ_ABTS_PENDING
) {
882 spin_unlock_irqrestore(io_lock
, flags
);
883 CMD_FLAGS(sc
) |= FNIC_IO_ABTS_PENDING
;
884 switch (hdr_status
) {
886 CMD_FLAGS(sc
) |= FNIC_IO_DONE
;
887 FNIC_SCSI_DBG(KERN_INFO
, fnic
->lport
->host
,
888 "icmnd_cmpl ABTS pending hdr status = %s "
889 "sc 0x%p scsi_status %x residual %d\n",
890 fnic_fcpio_status_to_str(hdr_status
), sc
,
891 icmnd_cmpl
->scsi_status
,
892 icmnd_cmpl
->residual
);
895 CMD_FLAGS(sc
) |= FNIC_IO_ABORTED
;
898 FNIC_SCSI_DBG(KERN_INFO
, fnic
->lport
->host
,
899 "icmnd_cmpl abts pending "
900 "hdr status = %s tag = 0x%x sc = 0x%p\n",
901 fnic_fcpio_status_to_str(hdr_status
),
908 /* Mark the IO as complete */
909 CMD_STATE(sc
) = FNIC_IOREQ_CMD_COMPLETE
;
911 icmnd_cmpl
= &desc
->u
.icmnd_cmpl
;
913 switch (hdr_status
) {
915 sc
->result
= (DID_OK
<< 16) | icmnd_cmpl
->scsi_status
;
916 xfer_len
= scsi_bufflen(sc
);
917 scsi_set_resid(sc
, icmnd_cmpl
->residual
);
919 if (icmnd_cmpl
->flags
& FCPIO_ICMND_CMPL_RESID_UNDER
)
920 xfer_len
-= icmnd_cmpl
->residual
;
922 if (icmnd_cmpl
->scsi_status
== SAM_STAT_TASK_SET_FULL
)
923 atomic64_inc(&fnic_stats
->misc_stats
.queue_fulls
);
926 case FCPIO_TIMEOUT
: /* request was timed out */
927 atomic64_inc(&fnic_stats
->misc_stats
.fcpio_timeout
);
928 sc
->result
= (DID_TIME_OUT
<< 16) | icmnd_cmpl
->scsi_status
;
931 case FCPIO_ABORTED
: /* request was aborted */
932 atomic64_inc(&fnic_stats
->misc_stats
.fcpio_aborted
);
933 sc
->result
= (DID_ERROR
<< 16) | icmnd_cmpl
->scsi_status
;
936 case FCPIO_DATA_CNT_MISMATCH
: /* recv/sent more/less data than exp. */
937 atomic64_inc(&fnic_stats
->misc_stats
.data_count_mismatch
);
938 scsi_set_resid(sc
, icmnd_cmpl
->residual
);
939 sc
->result
= (DID_ERROR
<< 16) | icmnd_cmpl
->scsi_status
;
942 case FCPIO_OUT_OF_RESOURCE
: /* out of resources to complete request */
943 atomic64_inc(&fnic_stats
->fw_stats
.fw_out_of_resources
);
944 sc
->result
= (DID_REQUEUE
<< 16) | icmnd_cmpl
->scsi_status
;
947 case FCPIO_IO_NOT_FOUND
: /* requested I/O was not found */
948 atomic64_inc(&fnic_stats
->io_stats
.io_not_found
);
949 sc
->result
= (DID_ERROR
<< 16) | icmnd_cmpl
->scsi_status
;
952 case FCPIO_SGL_INVALID
: /* request was aborted due to sgl error */
953 atomic64_inc(&fnic_stats
->misc_stats
.sgl_invalid
);
954 sc
->result
= (DID_ERROR
<< 16) | icmnd_cmpl
->scsi_status
;
957 case FCPIO_FW_ERR
: /* request was terminated due fw error */
958 atomic64_inc(&fnic_stats
->fw_stats
.io_fw_errs
);
959 sc
->result
= (DID_ERROR
<< 16) | icmnd_cmpl
->scsi_status
;
962 case FCPIO_MSS_INVALID
: /* request was aborted due to mss error */
963 atomic64_inc(&fnic_stats
->misc_stats
.mss_invalid
);
964 sc
->result
= (DID_ERROR
<< 16) | icmnd_cmpl
->scsi_status
;
967 case FCPIO_INVALID_HEADER
: /* header contains invalid data */
968 case FCPIO_INVALID_PARAM
: /* some parameter in request invalid */
969 case FCPIO_REQ_NOT_SUPPORTED
:/* request type is not supported */
971 sc
->result
= (DID_ERROR
<< 16) | icmnd_cmpl
->scsi_status
;
975 /* Break link with the SCSI command */
977 CMD_FLAGS(sc
) |= FNIC_IO_DONE
;
979 spin_unlock_irqrestore(io_lock
, flags
);
981 if (hdr_status
!= FCPIO_SUCCESS
) {
982 atomic64_inc(&fnic_stats
->io_stats
.io_failures
);
983 shost_printk(KERN_ERR
, fnic
->lport
->host
, "hdr status = %s\n",
984 fnic_fcpio_status_to_str(hdr_status
));
987 fnic_release_ioreq_buf(fnic
, io_req
, sc
);
989 mempool_free(io_req
, fnic
->io_req_pool
);
991 cmd_trace
= ((u64
)hdr_status
<< 56) |
992 (u64
)icmnd_cmpl
->scsi_status
<< 48 |
993 (u64
)icmnd_cmpl
->flags
<< 40 | (u64
)sc
->cmnd
[0] << 32 |
994 (u64
)sc
->cmnd
[2] << 24 | (u64
)sc
->cmnd
[3] << 16 |
995 (u64
)sc
->cmnd
[4] << 8 | sc
->cmnd
[5];
997 FNIC_TRACE(fnic_fcpio_icmnd_cmpl_handler
,
998 sc
->device
->host
->host_no
, id
, sc
,
999 ((u64
)icmnd_cmpl
->_resvd0
[1] << 56 |
1000 (u64
)icmnd_cmpl
->_resvd0
[0] << 48 |
1001 jiffies_to_msecs(jiffies
- start_time
)),
1003 (((u64
)CMD_FLAGS(sc
) << 32) | CMD_STATE(sc
)));
1005 if (sc
->sc_data_direction
== DMA_FROM_DEVICE
) {
1006 fnic
->lport
->host_stats
.fcp_input_requests
++;
1007 fnic
->fcp_input_bytes
+= xfer_len
;
1008 } else if (sc
->sc_data_direction
== DMA_TO_DEVICE
) {
1009 fnic
->lport
->host_stats
.fcp_output_requests
++;
1010 fnic
->fcp_output_bytes
+= xfer_len
;
1012 fnic
->lport
->host_stats
.fcp_control_requests
++;
1014 atomic64_dec(&fnic_stats
->io_stats
.active_ios
);
1015 if (atomic64_read(&fnic
->io_cmpl_skip
))
1016 atomic64_dec(&fnic
->io_cmpl_skip
);
1018 atomic64_inc(&fnic_stats
->io_stats
.io_completions
);
1020 /* Call SCSI completion function to complete the IO */
1025 /* fnic_fcpio_itmf_cmpl_handler
1026 * Routine to handle itmf completions
1028 static void fnic_fcpio_itmf_cmpl_handler(struct fnic
*fnic
,
1029 struct fcpio_fw_req
*desc
)
1033 struct fcpio_tag tag
;
1035 struct scsi_cmnd
*sc
;
1036 struct fnic_io_req
*io_req
;
1037 struct fnic_stats
*fnic_stats
= &fnic
->fnic_stats
;
1038 struct abort_stats
*abts_stats
= &fnic
->fnic_stats
.abts_stats
;
1039 struct terminate_stats
*term_stats
= &fnic
->fnic_stats
.term_stats
;
1040 struct misc_stats
*misc_stats
= &fnic
->fnic_stats
.misc_stats
;
1041 unsigned long flags
;
1042 spinlock_t
*io_lock
;
1043 unsigned long start_time
;
1045 fcpio_header_dec(&desc
->hdr
, &type
, &hdr_status
, &tag
);
1046 fcpio_tag_id_dec(&tag
, &id
);
1048 if ((id
& FNIC_TAG_MASK
) >= fnic
->fnic_max_tag_id
) {
1049 shost_printk(KERN_ERR
, fnic
->lport
->host
,
1050 "Tag out of range tag %x hdr status = %s\n",
1051 id
, fnic_fcpio_status_to_str(hdr_status
));
1055 sc
= scsi_host_find_tag(fnic
->lport
->host
, id
& FNIC_TAG_MASK
);
1058 atomic64_inc(&fnic_stats
->io_stats
.sc_null
);
1059 shost_printk(KERN_ERR
, fnic
->lport
->host
,
1060 "itmf_cmpl sc is null - hdr status = %s tag = 0x%x\n",
1061 fnic_fcpio_status_to_str(hdr_status
), id
);
1064 io_lock
= fnic_io_lock_hash(fnic
, sc
);
1065 spin_lock_irqsave(io_lock
, flags
);
1066 io_req
= (struct fnic_io_req
*)CMD_SP(sc
);
1067 WARN_ON_ONCE(!io_req
);
1069 atomic64_inc(&fnic_stats
->io_stats
.ioreq_null
);
1070 spin_unlock_irqrestore(io_lock
, flags
);
1071 CMD_FLAGS(sc
) |= FNIC_IO_ABT_TERM_REQ_NULL
;
1072 shost_printk(KERN_ERR
, fnic
->lport
->host
,
1073 "itmf_cmpl io_req is null - "
1074 "hdr status = %s tag = 0x%x sc 0x%p\n",
1075 fnic_fcpio_status_to_str(hdr_status
), id
, sc
);
1078 start_time
= io_req
->start_time
;
1080 if ((id
& FNIC_TAG_ABORT
) && (id
& FNIC_TAG_DEV_RST
)) {
1081 /* Abort and terminate completion of device reset req */
1082 /* REVISIT : Add asserts about various flags */
1083 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
1084 "dev reset abts cmpl recd. id %x status %s\n",
1085 id
, fnic_fcpio_status_to_str(hdr_status
));
1086 CMD_STATE(sc
) = FNIC_IOREQ_ABTS_COMPLETE
;
1087 CMD_ABTS_STATUS(sc
) = hdr_status
;
1088 CMD_FLAGS(sc
) |= FNIC_DEV_RST_DONE
;
1089 if (io_req
->abts_done
)
1090 complete(io_req
->abts_done
);
1091 spin_unlock_irqrestore(io_lock
, flags
);
1092 } else if (id
& FNIC_TAG_ABORT
) {
1093 /* Completion of abort cmd */
1094 switch (hdr_status
) {
1098 if (CMD_FLAGS(sc
) & FNIC_IO_ABTS_ISSUED
)
1099 atomic64_inc(&abts_stats
->abort_fw_timeouts
);
1102 &term_stats
->terminate_fw_timeouts
);
1104 case FCPIO_ITMF_REJECTED
:
1105 FNIC_SCSI_DBG(KERN_INFO
, fnic
->lport
->host
,
1106 "abort reject recd. id %d\n",
1107 (int)(id
& FNIC_TAG_MASK
));
1109 case FCPIO_IO_NOT_FOUND
:
1110 if (CMD_FLAGS(sc
) & FNIC_IO_ABTS_ISSUED
)
1111 atomic64_inc(&abts_stats
->abort_io_not_found
);
1114 &term_stats
->terminate_io_not_found
);
1117 if (CMD_FLAGS(sc
) & FNIC_IO_ABTS_ISSUED
)
1118 atomic64_inc(&abts_stats
->abort_failures
);
1121 &term_stats
->terminate_failures
);
1124 if (CMD_STATE(sc
) != FNIC_IOREQ_ABTS_PENDING
) {
1125 /* This is a late completion. Ignore it */
1126 spin_unlock_irqrestore(io_lock
, flags
);
1130 CMD_FLAGS(sc
) |= FNIC_IO_ABT_TERM_DONE
;
1132 /* If the status is IO not found consider it as success */
1133 if (hdr_status
== FCPIO_IO_NOT_FOUND
)
1134 CMD_ABTS_STATUS(sc
) = FCPIO_SUCCESS
;
1136 CMD_ABTS_STATUS(sc
) = hdr_status
;
1138 atomic64_dec(&fnic_stats
->io_stats
.active_ios
);
1139 if (atomic64_read(&fnic
->io_cmpl_skip
))
1140 atomic64_dec(&fnic
->io_cmpl_skip
);
1142 atomic64_inc(&fnic_stats
->io_stats
.io_completions
);
1144 if (!(CMD_FLAGS(sc
) & (FNIC_IO_ABORTED
| FNIC_IO_DONE
)))
1145 atomic64_inc(&misc_stats
->no_icmnd_itmf_cmpls
);
1147 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
1148 "abts cmpl recd. id %d status %s\n",
1149 (int)(id
& FNIC_TAG_MASK
),
1150 fnic_fcpio_status_to_str(hdr_status
));
1153 * If scsi_eh thread is blocked waiting for abts to complete,
1154 * signal completion to it. IO will be cleaned in the thread
1155 * else clean it in this context
1157 if (io_req
->abts_done
) {
1158 complete(io_req
->abts_done
);
1159 spin_unlock_irqrestore(io_lock
, flags
);
1161 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
1162 "abts cmpl, completing IO\n");
1164 sc
->result
= (DID_ERROR
<< 16);
1166 spin_unlock_irqrestore(io_lock
, flags
);
1168 fnic_release_ioreq_buf(fnic
, io_req
, sc
);
1169 mempool_free(io_req
, fnic
->io_req_pool
);
1170 if (sc
->scsi_done
) {
1171 FNIC_TRACE(fnic_fcpio_itmf_cmpl_handler
,
1172 sc
->device
->host
->host_no
, id
,
1174 jiffies_to_msecs(jiffies
- start_time
),
1176 (((u64
)hdr_status
<< 40) |
1177 (u64
)sc
->cmnd
[0] << 32 |
1178 (u64
)sc
->cmnd
[2] << 24 |
1179 (u64
)sc
->cmnd
[3] << 16 |
1180 (u64
)sc
->cmnd
[4] << 8 | sc
->cmnd
[5]),
1181 (((u64
)CMD_FLAGS(sc
) << 32) |
1187 } else if (id
& FNIC_TAG_DEV_RST
) {
1188 /* Completion of device reset */
1189 CMD_LR_STATUS(sc
) = hdr_status
;
1190 if (CMD_STATE(sc
) == FNIC_IOREQ_ABTS_PENDING
) {
1191 spin_unlock_irqrestore(io_lock
, flags
);
1192 CMD_FLAGS(sc
) |= FNIC_DEV_RST_ABTS_PENDING
;
1193 FNIC_TRACE(fnic_fcpio_itmf_cmpl_handler
,
1194 sc
->device
->host
->host_no
, id
, sc
,
1195 jiffies_to_msecs(jiffies
- start_time
),
1197 (((u64
)CMD_FLAGS(sc
) << 32) | CMD_STATE(sc
)));
1198 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
1199 "Terminate pending "
1200 "dev reset cmpl recd. id %d status %s\n",
1201 (int)(id
& FNIC_TAG_MASK
),
1202 fnic_fcpio_status_to_str(hdr_status
));
1205 if (CMD_FLAGS(sc
) & FNIC_DEV_RST_TIMED_OUT
) {
1206 /* Need to wait for terminate completion */
1207 spin_unlock_irqrestore(io_lock
, flags
);
1208 FNIC_TRACE(fnic_fcpio_itmf_cmpl_handler
,
1209 sc
->device
->host
->host_no
, id
, sc
,
1210 jiffies_to_msecs(jiffies
- start_time
),
1212 (((u64
)CMD_FLAGS(sc
) << 32) | CMD_STATE(sc
)));
1213 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
1214 "dev reset cmpl recd after time out. "
1215 "id %d status %s\n",
1216 (int)(id
& FNIC_TAG_MASK
),
1217 fnic_fcpio_status_to_str(hdr_status
));
1220 CMD_STATE(sc
) = FNIC_IOREQ_CMD_COMPLETE
;
1221 CMD_FLAGS(sc
) |= FNIC_DEV_RST_DONE
;
1222 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
1223 "dev reset cmpl recd. id %d status %s\n",
1224 (int)(id
& FNIC_TAG_MASK
),
1225 fnic_fcpio_status_to_str(hdr_status
));
1226 if (io_req
->dr_done
)
1227 complete(io_req
->dr_done
);
1228 spin_unlock_irqrestore(io_lock
, flags
);
1231 shost_printk(KERN_ERR
, fnic
->lport
->host
,
1232 "Unexpected itmf io state %s tag %x\n",
1233 fnic_ioreq_state_to_str(CMD_STATE(sc
)), id
);
1234 spin_unlock_irqrestore(io_lock
, flags
);
1240 * fnic_fcpio_cmpl_handler
1241 * Routine to service the cq for wq_copy
1243 static int fnic_fcpio_cmpl_handler(struct vnic_dev
*vdev
,
1244 unsigned int cq_index
,
1245 struct fcpio_fw_req
*desc
)
1247 struct fnic
*fnic
= vnic_dev_priv(vdev
);
1249 switch (desc
->hdr
.type
) {
1250 case FCPIO_ICMND_CMPL
: /* fw completed a command */
1251 case FCPIO_ITMF_CMPL
: /* fw completed itmf (abort cmd, lun reset)*/
1252 case FCPIO_FLOGI_REG_CMPL
: /* fw completed flogi_reg */
1253 case FCPIO_FLOGI_FIP_REG_CMPL
: /* fw completed flogi_fip_reg */
1254 case FCPIO_RESET_CMPL
: /* fw completed reset */
1255 atomic64_dec(&fnic
->fnic_stats
.fw_stats
.active_fw_reqs
);
1261 switch (desc
->hdr
.type
) {
1262 case FCPIO_ACK
: /* fw copied copy wq desc to its queue */
1263 fnic_fcpio_ack_handler(fnic
, cq_index
, desc
);
1266 case FCPIO_ICMND_CMPL
: /* fw completed a command */
1267 fnic_fcpio_icmnd_cmpl_handler(fnic
, desc
);
1270 case FCPIO_ITMF_CMPL
: /* fw completed itmf (abort cmd, lun reset)*/
1271 fnic_fcpio_itmf_cmpl_handler(fnic
, desc
);
1274 case FCPIO_FLOGI_REG_CMPL
: /* fw completed flogi_reg */
1275 case FCPIO_FLOGI_FIP_REG_CMPL
: /* fw completed flogi_fip_reg */
1276 fnic_fcpio_flogi_reg_cmpl_handler(fnic
, desc
);
1279 case FCPIO_RESET_CMPL
: /* fw completed reset */
1280 fnic_fcpio_fw_reset_cmpl_handler(fnic
, desc
);
1284 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
1285 "firmware completion type %d\n",
1294 * fnic_wq_copy_cmpl_handler
1295 * Routine to process wq copy
1297 int fnic_wq_copy_cmpl_handler(struct fnic
*fnic
, int copy_work_to_do
)
1299 unsigned int wq_work_done
= 0;
1300 unsigned int i
, cq_index
;
1301 unsigned int cur_work_done
;
1303 for (i
= 0; i
< fnic
->wq_copy_count
; i
++) {
1304 cq_index
= i
+ fnic
->raw_wq_count
+ fnic
->rq_count
;
1305 cur_work_done
= vnic_cq_copy_service(&fnic
->cq
[cq_index
],
1306 fnic_fcpio_cmpl_handler
,
1308 wq_work_done
+= cur_work_done
;
1310 return wq_work_done
;
1313 static void fnic_cleanup_io(struct fnic
*fnic
, int exclude_id
)
1316 struct fnic_io_req
*io_req
;
1317 unsigned long flags
= 0;
1318 struct scsi_cmnd
*sc
;
1319 spinlock_t
*io_lock
;
1320 unsigned long start_time
= 0;
1321 struct fnic_stats
*fnic_stats
= &fnic
->fnic_stats
;
1323 for (i
= 0; i
< fnic
->fnic_max_tag_id
; i
++) {
1324 if (i
== exclude_id
)
1327 io_lock
= fnic_io_lock_tag(fnic
, i
);
1328 spin_lock_irqsave(io_lock
, flags
);
1329 sc
= scsi_host_find_tag(fnic
->lport
->host
, i
);
1331 spin_unlock_irqrestore(io_lock
, flags
);
1335 io_req
= (struct fnic_io_req
*)CMD_SP(sc
);
1336 if ((CMD_FLAGS(sc
) & FNIC_DEVICE_RESET
) &&
1337 !(CMD_FLAGS(sc
) & FNIC_DEV_RST_DONE
)) {
1339 * We will be here only when FW completes reset
1340 * without sending completions for outstanding ios.
1342 CMD_FLAGS(sc
) |= FNIC_DEV_RST_DONE
;
1343 if (io_req
&& io_req
->dr_done
)
1344 complete(io_req
->dr_done
);
1345 else if (io_req
&& io_req
->abts_done
)
1346 complete(io_req
->abts_done
);
1347 spin_unlock_irqrestore(io_lock
, flags
);
1349 } else if (CMD_FLAGS(sc
) & FNIC_DEVICE_RESET
) {
1350 spin_unlock_irqrestore(io_lock
, flags
);
1354 spin_unlock_irqrestore(io_lock
, flags
);
1355 goto cleanup_scsi_cmd
;
1360 spin_unlock_irqrestore(io_lock
, flags
);
1363 * If there is a scsi_cmnd associated with this io_req, then
1364 * free the corresponding state
1366 start_time
= io_req
->start_time
;
1367 fnic_release_ioreq_buf(fnic
, io_req
, sc
);
1368 mempool_free(io_req
, fnic
->io_req_pool
);
1371 sc
->result
= DID_TRANSPORT_DISRUPTED
<< 16;
1372 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
1373 "%s: sc duration = %lu DID_TRANSPORT_DISRUPTED\n",
1374 __func__
, (jiffies
- start_time
));
1376 if (atomic64_read(&fnic
->io_cmpl_skip
))
1377 atomic64_dec(&fnic
->io_cmpl_skip
);
1379 atomic64_inc(&fnic_stats
->io_stats
.io_completions
);
1381 /* Complete the command to SCSI */
1382 if (sc
->scsi_done
) {
1383 FNIC_TRACE(fnic_cleanup_io
,
1384 sc
->device
->host
->host_no
, i
, sc
,
1385 jiffies_to_msecs(jiffies
- start_time
),
1386 0, ((u64
)sc
->cmnd
[0] << 32 |
1387 (u64
)sc
->cmnd
[2] << 24 |
1388 (u64
)sc
->cmnd
[3] << 16 |
1389 (u64
)sc
->cmnd
[4] << 8 | sc
->cmnd
[5]),
1390 (((u64
)CMD_FLAGS(sc
) << 32) | CMD_STATE(sc
)));
1397 void fnic_wq_copy_cleanup_handler(struct vnic_wq_copy
*wq
,
1398 struct fcpio_host_req
*desc
)
1401 struct fnic
*fnic
= vnic_dev_priv(wq
->vdev
);
1402 struct fnic_io_req
*io_req
;
1403 struct scsi_cmnd
*sc
;
1404 unsigned long flags
;
1405 spinlock_t
*io_lock
;
1406 unsigned long start_time
= 0;
1408 /* get the tag reference */
1409 fcpio_tag_id_dec(&desc
->hdr
.tag
, &id
);
1410 id
&= FNIC_TAG_MASK
;
1412 if (id
>= fnic
->fnic_max_tag_id
)
1415 sc
= scsi_host_find_tag(fnic
->lport
->host
, id
);
1419 io_lock
= fnic_io_lock_hash(fnic
, sc
);
1420 spin_lock_irqsave(io_lock
, flags
);
1422 /* Get the IO context which this desc refers to */
1423 io_req
= (struct fnic_io_req
*)CMD_SP(sc
);
1425 /* fnic interrupts are turned off by now */
1428 spin_unlock_irqrestore(io_lock
, flags
);
1429 goto wq_copy_cleanup_scsi_cmd
;
1434 spin_unlock_irqrestore(io_lock
, flags
);
1436 start_time
= io_req
->start_time
;
1437 fnic_release_ioreq_buf(fnic
, io_req
, sc
);
1438 mempool_free(io_req
, fnic
->io_req_pool
);
1440 wq_copy_cleanup_scsi_cmd
:
1441 sc
->result
= DID_NO_CONNECT
<< 16;
1442 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
, "wq_copy_cleanup_handler:"
1443 " DID_NO_CONNECT\n");
1445 if (sc
->scsi_done
) {
1446 FNIC_TRACE(fnic_wq_copy_cleanup_handler
,
1447 sc
->device
->host
->host_no
, id
, sc
,
1448 jiffies_to_msecs(jiffies
- start_time
),
1449 0, ((u64
)sc
->cmnd
[0] << 32 |
1450 (u64
)sc
->cmnd
[2] << 24 | (u64
)sc
->cmnd
[3] << 16 |
1451 (u64
)sc
->cmnd
[4] << 8 | sc
->cmnd
[5]),
1452 (((u64
)CMD_FLAGS(sc
) << 32) | CMD_STATE(sc
)));
1458 static inline int fnic_queue_abort_io_req(struct fnic
*fnic
, int tag
,
1459 u32 task_req
, u8
*fc_lun
,
1460 struct fnic_io_req
*io_req
)
1462 struct vnic_wq_copy
*wq
= &fnic
->wq_copy
[0];
1463 struct Scsi_Host
*host
= fnic
->lport
->host
;
1464 struct misc_stats
*misc_stats
= &fnic
->fnic_stats
.misc_stats
;
1465 unsigned long flags
;
1467 spin_lock_irqsave(host
->host_lock
, flags
);
1468 if (unlikely(fnic_chk_state_flags_locked(fnic
,
1469 FNIC_FLAGS_IO_BLOCKED
))) {
1470 spin_unlock_irqrestore(host
->host_lock
, flags
);
1473 atomic_inc(&fnic
->in_flight
);
1474 spin_unlock_irqrestore(host
->host_lock
, flags
);
1476 spin_lock_irqsave(&fnic
->wq_copy_lock
[0], flags
);
1478 if (vnic_wq_copy_desc_avail(wq
) <= fnic
->wq_copy_desc_low
[0])
1479 free_wq_copy_descs(fnic
, wq
);
1481 if (!vnic_wq_copy_desc_avail(wq
)) {
1482 spin_unlock_irqrestore(&fnic
->wq_copy_lock
[0], flags
);
1483 atomic_dec(&fnic
->in_flight
);
1484 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
1485 "fnic_queue_abort_io_req: failure: no descriptors\n");
1486 atomic64_inc(&misc_stats
->abts_cpwq_alloc_failures
);
1489 fnic_queue_wq_copy_desc_itmf(wq
, tag
| FNIC_TAG_ABORT
,
1490 0, task_req
, tag
, fc_lun
, io_req
->port_id
,
1491 fnic
->config
.ra_tov
, fnic
->config
.ed_tov
);
1493 atomic64_inc(&fnic
->fnic_stats
.fw_stats
.active_fw_reqs
);
1494 if (atomic64_read(&fnic
->fnic_stats
.fw_stats
.active_fw_reqs
) >
1495 atomic64_read(&fnic
->fnic_stats
.fw_stats
.max_fw_reqs
))
1496 atomic64_set(&fnic
->fnic_stats
.fw_stats
.max_fw_reqs
,
1497 atomic64_read(&fnic
->fnic_stats
.fw_stats
.active_fw_reqs
));
1499 spin_unlock_irqrestore(&fnic
->wq_copy_lock
[0], flags
);
1500 atomic_dec(&fnic
->in_flight
);
1505 static void fnic_rport_exch_reset(struct fnic
*fnic
, u32 port_id
)
1510 struct fnic_io_req
*io_req
;
1511 spinlock_t
*io_lock
;
1512 unsigned long flags
;
1513 struct scsi_cmnd
*sc
;
1514 struct reset_stats
*reset_stats
= &fnic
->fnic_stats
.reset_stats
;
1515 struct terminate_stats
*term_stats
= &fnic
->fnic_stats
.term_stats
;
1516 struct scsi_lun fc_lun
;
1517 enum fnic_ioreq_state old_ioreq_state
;
1519 FNIC_SCSI_DBG(KERN_DEBUG
,
1521 "fnic_rport_exch_reset called portid 0x%06x\n",
1524 if (fnic
->in_remove
)
1527 for (tag
= 0; tag
< fnic
->fnic_max_tag_id
; tag
++) {
1529 io_lock
= fnic_io_lock_tag(fnic
, tag
);
1530 spin_lock_irqsave(io_lock
, flags
);
1531 sc
= scsi_host_find_tag(fnic
->lport
->host
, tag
);
1533 spin_unlock_irqrestore(io_lock
, flags
);
1537 io_req
= (struct fnic_io_req
*)CMD_SP(sc
);
1539 if (!io_req
|| io_req
->port_id
!= port_id
) {
1540 spin_unlock_irqrestore(io_lock
, flags
);
1544 if ((CMD_FLAGS(sc
) & FNIC_DEVICE_RESET
) &&
1545 (!(CMD_FLAGS(sc
) & FNIC_DEV_RST_ISSUED
))) {
1546 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
1547 "fnic_rport_exch_reset dev rst not pending sc 0x%p\n",
1549 spin_unlock_irqrestore(io_lock
, flags
);
1554 * Found IO that is still pending with firmware and
1555 * belongs to rport that went away
1557 if (CMD_STATE(sc
) == FNIC_IOREQ_ABTS_PENDING
) {
1558 spin_unlock_irqrestore(io_lock
, flags
);
1561 if (io_req
->abts_done
) {
1562 shost_printk(KERN_ERR
, fnic
->lport
->host
,
1563 "fnic_rport_exch_reset: io_req->abts_done is set "
1565 fnic_ioreq_state_to_str(CMD_STATE(sc
)));
1568 if (!(CMD_FLAGS(sc
) & FNIC_IO_ISSUED
)) {
1569 shost_printk(KERN_ERR
, fnic
->lport
->host
,
1571 "IO not yet issued %p tag 0x%x flags "
1573 sc
, tag
, CMD_FLAGS(sc
), CMD_STATE(sc
));
1575 old_ioreq_state
= CMD_STATE(sc
);
1576 CMD_STATE(sc
) = FNIC_IOREQ_ABTS_PENDING
;
1577 CMD_ABTS_STATUS(sc
) = FCPIO_INVALID_CODE
;
1578 if (CMD_FLAGS(sc
) & FNIC_DEVICE_RESET
) {
1579 atomic64_inc(&reset_stats
->device_reset_terminates
);
1580 abt_tag
= (tag
| FNIC_TAG_DEV_RST
);
1581 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
1582 "fnic_rport_exch_reset dev rst sc 0x%p\n",
1586 BUG_ON(io_req
->abts_done
);
1588 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
1589 "fnic_rport_reset_exch: Issuing abts\n");
1591 spin_unlock_irqrestore(io_lock
, flags
);
1593 /* Now queue the abort command to firmware */
1594 int_to_scsilun(sc
->device
->lun
, &fc_lun
);
1596 if (fnic_queue_abort_io_req(fnic
, abt_tag
,
1597 FCPIO_ITMF_ABT_TASK_TERM
,
1598 fc_lun
.scsi_lun
, io_req
)) {
1600 * Revert the cmd state back to old state, if
1601 * it hasn't changed in between. This cmd will get
1602 * aborted later by scsi_eh, or cleaned up during
1605 spin_lock_irqsave(io_lock
, flags
);
1606 if (CMD_STATE(sc
) == FNIC_IOREQ_ABTS_PENDING
)
1607 CMD_STATE(sc
) = old_ioreq_state
;
1608 spin_unlock_irqrestore(io_lock
, flags
);
1610 spin_lock_irqsave(io_lock
, flags
);
1611 if (CMD_FLAGS(sc
) & FNIC_DEVICE_RESET
)
1612 CMD_FLAGS(sc
) |= FNIC_DEV_RST_TERM_ISSUED
;
1614 CMD_FLAGS(sc
) |= FNIC_IO_INTERNAL_TERM_ISSUED
;
1615 spin_unlock_irqrestore(io_lock
, flags
);
1616 atomic64_inc(&term_stats
->terminates
);
1620 if (term_cnt
> atomic64_read(&term_stats
->max_terminates
))
1621 atomic64_set(&term_stats
->max_terminates
, term_cnt
);
1625 void fnic_terminate_rport_io(struct fc_rport
*rport
)
1630 struct fnic_io_req
*io_req
;
1631 spinlock_t
*io_lock
;
1632 unsigned long flags
;
1633 struct scsi_cmnd
*sc
;
1634 struct scsi_lun fc_lun
;
1635 struct fc_rport_libfc_priv
*rdata
;
1636 struct fc_lport
*lport
;
1638 struct fc_rport
*cmd_rport
;
1639 struct reset_stats
*reset_stats
;
1640 struct terminate_stats
*term_stats
;
1641 enum fnic_ioreq_state old_ioreq_state
;
1644 printk(KERN_ERR
"fnic_terminate_rport_io: rport is NULL\n");
1647 rdata
= rport
->dd_data
;
1650 printk(KERN_ERR
"fnic_terminate_rport_io: rdata is NULL\n");
1653 lport
= rdata
->local_port
;
1656 printk(KERN_ERR
"fnic_terminate_rport_io: lport is NULL\n");
1659 fnic
= lport_priv(lport
);
1660 FNIC_SCSI_DBG(KERN_DEBUG
,
1661 fnic
->lport
->host
, "fnic_terminate_rport_io called"
1662 " wwpn 0x%llx, wwnn0x%llx, rport 0x%p, portid 0x%06x\n",
1663 rport
->port_name
, rport
->node_name
, rport
,
1666 if (fnic
->in_remove
)
1669 reset_stats
= &fnic
->fnic_stats
.reset_stats
;
1670 term_stats
= &fnic
->fnic_stats
.term_stats
;
1672 for (tag
= 0; tag
< fnic
->fnic_max_tag_id
; tag
++) {
1674 io_lock
= fnic_io_lock_tag(fnic
, tag
);
1675 spin_lock_irqsave(io_lock
, flags
);
1676 sc
= scsi_host_find_tag(fnic
->lport
->host
, tag
);
1678 spin_unlock_irqrestore(io_lock
, flags
);
1682 cmd_rport
= starget_to_rport(scsi_target(sc
->device
));
1683 if (rport
!= cmd_rport
) {
1684 spin_unlock_irqrestore(io_lock
, flags
);
1688 io_req
= (struct fnic_io_req
*)CMD_SP(sc
);
1690 if (!io_req
|| rport
!= cmd_rport
) {
1691 spin_unlock_irqrestore(io_lock
, flags
);
1695 if ((CMD_FLAGS(sc
) & FNIC_DEVICE_RESET
) &&
1696 (!(CMD_FLAGS(sc
) & FNIC_DEV_RST_ISSUED
))) {
1697 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
1698 "fnic_terminate_rport_io dev rst not pending sc 0x%p\n",
1700 spin_unlock_irqrestore(io_lock
, flags
);
1704 * Found IO that is still pending with firmware and
1705 * belongs to rport that went away
1707 if (CMD_STATE(sc
) == FNIC_IOREQ_ABTS_PENDING
) {
1708 spin_unlock_irqrestore(io_lock
, flags
);
1711 if (io_req
->abts_done
) {
1712 shost_printk(KERN_ERR
, fnic
->lport
->host
,
1713 "fnic_terminate_rport_io: io_req->abts_done is set "
1715 fnic_ioreq_state_to_str(CMD_STATE(sc
)));
1717 if (!(CMD_FLAGS(sc
) & FNIC_IO_ISSUED
)) {
1718 FNIC_SCSI_DBG(KERN_INFO
, fnic
->lport
->host
,
1719 "fnic_terminate_rport_io "
1720 "IO not yet issued %p tag 0x%x flags "
1722 sc
, tag
, CMD_FLAGS(sc
), CMD_STATE(sc
));
1724 old_ioreq_state
= CMD_STATE(sc
);
1725 CMD_STATE(sc
) = FNIC_IOREQ_ABTS_PENDING
;
1726 CMD_ABTS_STATUS(sc
) = FCPIO_INVALID_CODE
;
1727 if (CMD_FLAGS(sc
) & FNIC_DEVICE_RESET
) {
1728 atomic64_inc(&reset_stats
->device_reset_terminates
);
1729 abt_tag
= (tag
| FNIC_TAG_DEV_RST
);
1730 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
1731 "fnic_terminate_rport_io dev rst sc 0x%p\n", sc
);
1734 BUG_ON(io_req
->abts_done
);
1736 FNIC_SCSI_DBG(KERN_DEBUG
,
1738 "fnic_terminate_rport_io: Issuing abts\n");
1740 spin_unlock_irqrestore(io_lock
, flags
);
1742 /* Now queue the abort command to firmware */
1743 int_to_scsilun(sc
->device
->lun
, &fc_lun
);
1745 if (fnic_queue_abort_io_req(fnic
, abt_tag
,
1746 FCPIO_ITMF_ABT_TASK_TERM
,
1747 fc_lun
.scsi_lun
, io_req
)) {
1749 * Revert the cmd state back to old state, if
1750 * it hasn't changed in between. This cmd will get
1751 * aborted later by scsi_eh, or cleaned up during
1754 spin_lock_irqsave(io_lock
, flags
);
1755 if (CMD_STATE(sc
) == FNIC_IOREQ_ABTS_PENDING
)
1756 CMD_STATE(sc
) = old_ioreq_state
;
1757 spin_unlock_irqrestore(io_lock
, flags
);
1759 spin_lock_irqsave(io_lock
, flags
);
1760 if (CMD_FLAGS(sc
) & FNIC_DEVICE_RESET
)
1761 CMD_FLAGS(sc
) |= FNIC_DEV_RST_TERM_ISSUED
;
1763 CMD_FLAGS(sc
) |= FNIC_IO_INTERNAL_TERM_ISSUED
;
1764 spin_unlock_irqrestore(io_lock
, flags
);
1765 atomic64_inc(&term_stats
->terminates
);
1769 if (term_cnt
> atomic64_read(&term_stats
->max_terminates
))
1770 atomic64_set(&term_stats
->max_terminates
, term_cnt
);
1775 * This function is exported to SCSI for sending abort cmnds.
1776 * A SCSI IO is represented by a io_req in the driver.
1777 * The ioreq is linked to the SCSI Cmd, thus a link with the ULP's IO.
1779 int fnic_abort_cmd(struct scsi_cmnd
*sc
)
1781 struct fc_lport
*lp
;
1783 struct fnic_io_req
*io_req
= NULL
;
1784 struct fc_rport
*rport
;
1785 spinlock_t
*io_lock
;
1786 unsigned long flags
;
1787 unsigned long start_time
= 0;
1790 struct scsi_lun fc_lun
;
1791 struct fnic_stats
*fnic_stats
;
1792 struct abort_stats
*abts_stats
;
1793 struct terminate_stats
*term_stats
;
1794 enum fnic_ioreq_state old_ioreq_state
;
1796 DECLARE_COMPLETION_ONSTACK(tm_done
);
1798 /* Wait for rport to unblock */
1799 fc_block_scsi_eh(sc
);
1801 /* Get local-port, check ready and link up */
1802 lp
= shost_priv(sc
->device
->host
);
1804 fnic
= lport_priv(lp
);
1805 fnic_stats
= &fnic
->fnic_stats
;
1806 abts_stats
= &fnic
->fnic_stats
.abts_stats
;
1807 term_stats
= &fnic
->fnic_stats
.term_stats
;
1809 rport
= starget_to_rport(scsi_target(sc
->device
));
1810 tag
= sc
->request
->tag
;
1811 FNIC_SCSI_DBG(KERN_DEBUG
,
1813 "Abort Cmd called FCID 0x%x, LUN 0x%llx TAG %x flags %x\n",
1814 rport
->port_id
, sc
->device
->lun
, tag
, CMD_FLAGS(sc
));
1816 CMD_FLAGS(sc
) = FNIC_NO_FLAGS
;
1818 if (lp
->state
!= LPORT_ST_READY
|| !(lp
->link_up
)) {
1820 goto fnic_abort_cmd_end
;
1824 * Avoid a race between SCSI issuing the abort and the device
1825 * completing the command.
1827 * If the command is already completed by the fw cmpl code,
1828 * we just return SUCCESS from here. This means that the abort
1829 * succeeded. In the SCSI ML, since the timeout for command has
1830 * happened, the completion wont actually complete the command
1831 * and it will be considered as an aborted command
1833 * The CMD_SP will not be cleared except while holding io_req_lock.
1835 io_lock
= fnic_io_lock_hash(fnic
, sc
);
1836 spin_lock_irqsave(io_lock
, flags
);
1837 io_req
= (struct fnic_io_req
*)CMD_SP(sc
);
1839 spin_unlock_irqrestore(io_lock
, flags
);
1840 goto fnic_abort_cmd_end
;
1843 io_req
->abts_done
= &tm_done
;
1845 if (CMD_STATE(sc
) == FNIC_IOREQ_ABTS_PENDING
) {
1846 spin_unlock_irqrestore(io_lock
, flags
);
1850 * Command is still pending, need to abort it
1851 * If the firmware completes the command after this point,
1852 * the completion wont be done till mid-layer, since abort
1853 * has already started.
1855 old_ioreq_state
= CMD_STATE(sc
);
1856 CMD_STATE(sc
) = FNIC_IOREQ_ABTS_PENDING
;
1857 CMD_ABTS_STATUS(sc
) = FCPIO_INVALID_CODE
;
1859 spin_unlock_irqrestore(io_lock
, flags
);
1862 * Check readiness of the remote port. If the path to remote
1863 * port is up, then send abts to the remote port to terminate
1864 * the IO. Else, just locally terminate the IO in the firmware
1866 if (fc_remote_port_chkready(rport
) == 0)
1867 task_req
= FCPIO_ITMF_ABT_TASK
;
1869 atomic64_inc(&fnic_stats
->misc_stats
.rport_not_ready
);
1870 task_req
= FCPIO_ITMF_ABT_TASK_TERM
;
1873 /* Now queue the abort command to firmware */
1874 int_to_scsilun(sc
->device
->lun
, &fc_lun
);
1876 if (fnic_queue_abort_io_req(fnic
, sc
->request
->tag
, task_req
,
1877 fc_lun
.scsi_lun
, io_req
)) {
1878 spin_lock_irqsave(io_lock
, flags
);
1879 if (CMD_STATE(sc
) == FNIC_IOREQ_ABTS_PENDING
)
1880 CMD_STATE(sc
) = old_ioreq_state
;
1881 io_req
= (struct fnic_io_req
*)CMD_SP(sc
);
1883 io_req
->abts_done
= NULL
;
1884 spin_unlock_irqrestore(io_lock
, flags
);
1886 goto fnic_abort_cmd_end
;
1888 if (task_req
== FCPIO_ITMF_ABT_TASK
) {
1889 CMD_FLAGS(sc
) |= FNIC_IO_ABTS_ISSUED
;
1890 atomic64_inc(&fnic_stats
->abts_stats
.aborts
);
1892 CMD_FLAGS(sc
) |= FNIC_IO_TERM_ISSUED
;
1893 atomic64_inc(&fnic_stats
->term_stats
.terminates
);
1897 * We queued an abort IO, wait for its completion.
1898 * Once the firmware completes the abort command, it will
1899 * wake up this thread.
1902 wait_for_completion_timeout(&tm_done
,
1904 (2 * fnic
->config
.ra_tov
+
1905 fnic
->config
.ed_tov
));
1907 /* Check the abort status */
1908 spin_lock_irqsave(io_lock
, flags
);
1910 io_req
= (struct fnic_io_req
*)CMD_SP(sc
);
1912 atomic64_inc(&fnic_stats
->io_stats
.ioreq_null
);
1913 spin_unlock_irqrestore(io_lock
, flags
);
1914 CMD_FLAGS(sc
) |= FNIC_IO_ABT_TERM_REQ_NULL
;
1916 goto fnic_abort_cmd_end
;
1918 io_req
->abts_done
= NULL
;
1920 /* fw did not complete abort, timed out */
1921 if (CMD_ABTS_STATUS(sc
) == FCPIO_INVALID_CODE
) {
1922 spin_unlock_irqrestore(io_lock
, flags
);
1923 if (task_req
== FCPIO_ITMF_ABT_TASK
) {
1924 atomic64_inc(&abts_stats
->abort_drv_timeouts
);
1926 atomic64_inc(&term_stats
->terminate_drv_timeouts
);
1928 CMD_FLAGS(sc
) |= FNIC_IO_ABT_TERM_TIMED_OUT
;
1930 goto fnic_abort_cmd_end
;
1933 /* IO out of order */
1935 if (!(CMD_FLAGS(sc
) & (FNIC_IO_ABORTED
| FNIC_IO_DONE
))) {
1936 spin_unlock_irqrestore(io_lock
, flags
);
1937 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
1938 "Issuing Host reset due to out of order IO\n");
1940 if (fnic_host_reset(sc
) == FAILED
) {
1941 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
1942 "fnic_host_reset failed.\n");
1945 goto fnic_abort_cmd_end
;
1948 CMD_STATE(sc
) = FNIC_IOREQ_ABTS_COMPLETE
;
1950 start_time
= io_req
->start_time
;
1952 * firmware completed the abort, check the status,
1953 * free the io_req if successful. If abort fails,
1954 * Device reset will clean the I/O.
1956 if (CMD_ABTS_STATUS(sc
) == FCPIO_SUCCESS
)
1960 spin_unlock_irqrestore(io_lock
, flags
);
1961 goto fnic_abort_cmd_end
;
1964 spin_unlock_irqrestore(io_lock
, flags
);
1966 fnic_release_ioreq_buf(fnic
, io_req
, sc
);
1967 mempool_free(io_req
, fnic
->io_req_pool
);
1969 if (sc
->scsi_done
) {
1970 /* Call SCSI completion function to complete the IO */
1971 sc
->result
= (DID_ABORT
<< 16);
1976 FNIC_TRACE(fnic_abort_cmd
, sc
->device
->host
->host_no
,
1977 sc
->request
->tag
, sc
,
1978 jiffies_to_msecs(jiffies
- start_time
),
1979 0, ((u64
)sc
->cmnd
[0] << 32 |
1980 (u64
)sc
->cmnd
[2] << 24 | (u64
)sc
->cmnd
[3] << 16 |
1981 (u64
)sc
->cmnd
[4] << 8 | sc
->cmnd
[5]),
1982 (((u64
)CMD_FLAGS(sc
) << 32) | CMD_STATE(sc
)));
1984 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
1985 "Returning from abort cmd type %x %s\n", task_req
,
1987 "SUCCESS" : "FAILED");
1991 static inline int fnic_queue_dr_io_req(struct fnic
*fnic
,
1992 struct scsi_cmnd
*sc
,
1993 struct fnic_io_req
*io_req
)
1995 struct vnic_wq_copy
*wq
= &fnic
->wq_copy
[0];
1996 struct Scsi_Host
*host
= fnic
->lport
->host
;
1997 struct misc_stats
*misc_stats
= &fnic
->fnic_stats
.misc_stats
;
1998 struct scsi_lun fc_lun
;
2000 unsigned long intr_flags
;
2002 spin_lock_irqsave(host
->host_lock
, intr_flags
);
2003 if (unlikely(fnic_chk_state_flags_locked(fnic
,
2004 FNIC_FLAGS_IO_BLOCKED
))) {
2005 spin_unlock_irqrestore(host
->host_lock
, intr_flags
);
2008 atomic_inc(&fnic
->in_flight
);
2009 spin_unlock_irqrestore(host
->host_lock
, intr_flags
);
2011 spin_lock_irqsave(&fnic
->wq_copy_lock
[0], intr_flags
);
2013 if (vnic_wq_copy_desc_avail(wq
) <= fnic
->wq_copy_desc_low
[0])
2014 free_wq_copy_descs(fnic
, wq
);
2016 if (!vnic_wq_copy_desc_avail(wq
)) {
2017 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
2018 "queue_dr_io_req failure - no descriptors\n");
2019 atomic64_inc(&misc_stats
->devrst_cpwq_alloc_failures
);
2024 /* fill in the lun info */
2025 int_to_scsilun(sc
->device
->lun
, &fc_lun
);
2027 fnic_queue_wq_copy_desc_itmf(wq
, sc
->request
->tag
| FNIC_TAG_DEV_RST
,
2028 0, FCPIO_ITMF_LUN_RESET
, SCSI_NO_TAG
,
2029 fc_lun
.scsi_lun
, io_req
->port_id
,
2030 fnic
->config
.ra_tov
, fnic
->config
.ed_tov
);
2032 atomic64_inc(&fnic
->fnic_stats
.fw_stats
.active_fw_reqs
);
2033 if (atomic64_read(&fnic
->fnic_stats
.fw_stats
.active_fw_reqs
) >
2034 atomic64_read(&fnic
->fnic_stats
.fw_stats
.max_fw_reqs
))
2035 atomic64_set(&fnic
->fnic_stats
.fw_stats
.max_fw_reqs
,
2036 atomic64_read(&fnic
->fnic_stats
.fw_stats
.active_fw_reqs
));
2039 spin_unlock_irqrestore(&fnic
->wq_copy_lock
[0], intr_flags
);
2040 atomic_dec(&fnic
->in_flight
);
2046 * Clean up any pending aborts on the lun
2047 * For each outstanding IO on this lun, whose abort is not completed by fw,
2048 * issue a local abort. Wait for abort to complete. Return 0 if all commands
2049 * successfully aborted, 1 otherwise
2051 static int fnic_clean_pending_aborts(struct fnic
*fnic
,
2052 struct scsi_cmnd
*lr_sc
,
2057 struct fnic_io_req
*io_req
;
2058 spinlock_t
*io_lock
;
2059 unsigned long flags
;
2061 struct scsi_cmnd
*sc
;
2062 struct scsi_lun fc_lun
;
2063 struct scsi_device
*lun_dev
= lr_sc
->device
;
2064 DECLARE_COMPLETION_ONSTACK(tm_done
);
2065 enum fnic_ioreq_state old_ioreq_state
;
2067 for (tag
= 0; tag
< fnic
->fnic_max_tag_id
; tag
++) {
2068 io_lock
= fnic_io_lock_tag(fnic
, tag
);
2069 spin_lock_irqsave(io_lock
, flags
);
2070 sc
= scsi_host_find_tag(fnic
->lport
->host
, tag
);
2072 * ignore this lun reset cmd if issued using new SC
2073 * or cmds that do not belong to this lun
2075 if (!sc
|| ((sc
== lr_sc
) && new_sc
) || sc
->device
!= lun_dev
) {
2076 spin_unlock_irqrestore(io_lock
, flags
);
2080 io_req
= (struct fnic_io_req
*)CMD_SP(sc
);
2082 if (!io_req
|| sc
->device
!= lun_dev
) {
2083 spin_unlock_irqrestore(io_lock
, flags
);
2088 * Found IO that is still pending with firmware and
2089 * belongs to the LUN that we are resetting
2091 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
2092 "Found IO in %s on lun\n",
2093 fnic_ioreq_state_to_str(CMD_STATE(sc
)));
2095 if (CMD_STATE(sc
) == FNIC_IOREQ_ABTS_PENDING
) {
2096 spin_unlock_irqrestore(io_lock
, flags
);
2099 if ((CMD_FLAGS(sc
) & FNIC_DEVICE_RESET
) &&
2100 (!(CMD_FLAGS(sc
) & FNIC_DEV_RST_ISSUED
))) {
2101 FNIC_SCSI_DBG(KERN_INFO
, fnic
->lport
->host
,
2102 "%s dev rst not pending sc 0x%p\n", __func__
,
2104 spin_unlock_irqrestore(io_lock
, flags
);
2108 if (io_req
->abts_done
)
2109 shost_printk(KERN_ERR
, fnic
->lport
->host
,
2110 "%s: io_req->abts_done is set state is %s\n",
2111 __func__
, fnic_ioreq_state_to_str(CMD_STATE(sc
)));
2112 old_ioreq_state
= CMD_STATE(sc
);
2114 * Any pending IO issued prior to reset is expected to be
2115 * in abts pending state, if not we need to set
2116 * FNIC_IOREQ_ABTS_PENDING to indicate the IO is abort pending.
2117 * When IO is completed, the IO will be handed over and
2118 * handled in this function.
2120 CMD_STATE(sc
) = FNIC_IOREQ_ABTS_PENDING
;
2122 BUG_ON(io_req
->abts_done
);
2125 if (CMD_FLAGS(sc
) & FNIC_DEVICE_RESET
) {
2126 abt_tag
|= FNIC_TAG_DEV_RST
;
2127 FNIC_SCSI_DBG(KERN_INFO
, fnic
->lport
->host
,
2128 "%s: dev rst sc 0x%p\n", __func__
, sc
);
2131 CMD_ABTS_STATUS(sc
) = FCPIO_INVALID_CODE
;
2132 io_req
->abts_done
= &tm_done
;
2133 spin_unlock_irqrestore(io_lock
, flags
);
2135 /* Now queue the abort command to firmware */
2136 int_to_scsilun(sc
->device
->lun
, &fc_lun
);
2138 if (fnic_queue_abort_io_req(fnic
, abt_tag
,
2139 FCPIO_ITMF_ABT_TASK_TERM
,
2140 fc_lun
.scsi_lun
, io_req
)) {
2141 spin_lock_irqsave(io_lock
, flags
);
2142 io_req
= (struct fnic_io_req
*)CMD_SP(sc
);
2144 io_req
->abts_done
= NULL
;
2145 if (CMD_STATE(sc
) == FNIC_IOREQ_ABTS_PENDING
)
2146 CMD_STATE(sc
) = old_ioreq_state
;
2147 spin_unlock_irqrestore(io_lock
, flags
);
2149 goto clean_pending_aborts_end
;
2151 spin_lock_irqsave(io_lock
, flags
);
2152 if (CMD_FLAGS(sc
) & FNIC_DEVICE_RESET
)
2153 CMD_FLAGS(sc
) |= FNIC_DEV_RST_TERM_ISSUED
;
2154 spin_unlock_irqrestore(io_lock
, flags
);
2156 CMD_FLAGS(sc
) |= FNIC_IO_INTERNAL_TERM_ISSUED
;
2158 wait_for_completion_timeout(&tm_done
,
2160 (fnic
->config
.ed_tov
));
2162 /* Recheck cmd state to check if it is now aborted */
2163 spin_lock_irqsave(io_lock
, flags
);
2164 io_req
= (struct fnic_io_req
*)CMD_SP(sc
);
2166 spin_unlock_irqrestore(io_lock
, flags
);
2167 CMD_FLAGS(sc
) |= FNIC_IO_ABT_TERM_REQ_NULL
;
2171 io_req
->abts_done
= NULL
;
2173 /* if abort is still pending with fw, fail */
2174 if (CMD_ABTS_STATUS(sc
) == FCPIO_INVALID_CODE
) {
2175 spin_unlock_irqrestore(io_lock
, flags
);
2176 CMD_FLAGS(sc
) |= FNIC_IO_ABT_TERM_DONE
;
2178 goto clean_pending_aborts_end
;
2180 CMD_STATE(sc
) = FNIC_IOREQ_ABTS_COMPLETE
;
2182 /* original sc used for lr is handled by dev reset code */
2185 spin_unlock_irqrestore(io_lock
, flags
);
2187 /* original sc used for lr is handled by dev reset code */
2189 fnic_release_ioreq_buf(fnic
, io_req
, sc
);
2190 mempool_free(io_req
, fnic
->io_req_pool
);
2194 * Any IO is returned during reset, it needs to call scsi_done
2195 * to return the scsi_cmnd to upper layer.
2197 if (sc
->scsi_done
) {
2198 /* Set result to let upper SCSI layer retry */
2199 sc
->result
= DID_RESET
<< 16;
2204 schedule_timeout(msecs_to_jiffies(2 * fnic
->config
.ed_tov
));
2206 /* walk again to check, if IOs are still pending in fw */
2207 if (fnic_is_abts_pending(fnic
, lr_sc
))
2210 clean_pending_aborts_end
:
2215 * fnic_scsi_host_start_tag
2216 * Allocates tagid from host's tag list
2219 fnic_scsi_host_start_tag(struct fnic
*fnic
, struct scsi_cmnd
*sc
)
2221 struct blk_queue_tag
*bqt
= fnic
->lport
->host
->bqt
;
2222 int tag
, ret
= SCSI_NO_TAG
;
2226 pr_err("Tags are not supported\n");
2231 tag
= find_next_zero_bit(bqt
->tag_map
, bqt
->max_depth
, 1);
2232 if (tag
>= bqt
->max_depth
) {
2233 pr_err("Tag allocation failure\n");
2236 } while (test_and_set_bit(tag
, bqt
->tag_map
));
2238 bqt
->tag_index
[tag
] = sc
->request
;
2239 sc
->request
->tag
= tag
;
2241 if (!sc
->request
->special
)
2242 sc
->request
->special
= sc
;
2251 * fnic_scsi_host_end_tag
2252 * frees tag allocated by fnic_scsi_host_start_tag.
2255 fnic_scsi_host_end_tag(struct fnic
*fnic
, struct scsi_cmnd
*sc
)
2257 struct blk_queue_tag
*bqt
= fnic
->lport
->host
->bqt
;
2258 int tag
= sc
->request
->tag
;
2260 if (tag
== SCSI_NO_TAG
)
2263 BUG_ON(!bqt
|| !bqt
->tag_index
[tag
]);
2267 bqt
->tag_index
[tag
] = NULL
;
2268 clear_bit(tag
, bqt
->tag_map
);
2274 * SCSI Eh thread issues a Lun Reset when one or more commands on a LUN
2275 * fail to get aborted. It calls driver's eh_device_reset with a SCSI command
2278 int fnic_device_reset(struct scsi_cmnd
*sc
)
2280 struct fc_lport
*lp
;
2282 struct fnic_io_req
*io_req
= NULL
;
2283 struct fc_rport
*rport
;
2286 spinlock_t
*io_lock
;
2287 unsigned long flags
;
2288 unsigned long start_time
= 0;
2289 struct scsi_lun fc_lun
;
2290 struct fnic_stats
*fnic_stats
;
2291 struct reset_stats
*reset_stats
;
2293 DECLARE_COMPLETION_ONSTACK(tm_done
);
2294 int tag_gen_flag
= 0; /*to track tags allocated by fnic driver*/
2297 /* Wait for rport to unblock */
2298 fc_block_scsi_eh(sc
);
2300 /* Get local-port, check ready and link up */
2301 lp
= shost_priv(sc
->device
->host
);
2303 fnic
= lport_priv(lp
);
2304 fnic_stats
= &fnic
->fnic_stats
;
2305 reset_stats
= &fnic
->fnic_stats
.reset_stats
;
2307 atomic64_inc(&reset_stats
->device_resets
);
2309 rport
= starget_to_rport(scsi_target(sc
->device
));
2310 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
2311 "Device reset called FCID 0x%x, LUN 0x%llx sc 0x%p\n",
2312 rport
->port_id
, sc
->device
->lun
, sc
);
2314 if (lp
->state
!= LPORT_ST_READY
|| !(lp
->link_up
))
2315 goto fnic_device_reset_end
;
2317 /* Check if remote port up */
2318 if (fc_remote_port_chkready(rport
)) {
2319 atomic64_inc(&fnic_stats
->misc_stats
.rport_not_ready
);
2320 goto fnic_device_reset_end
;
2323 CMD_FLAGS(sc
) = FNIC_DEVICE_RESET
;
2324 /* Allocate tag if not present */
2326 tag
= sc
->request
->tag
;
2327 if (unlikely(tag
< 0)) {
2329 * XXX(hch): current the midlayer fakes up a struct
2330 * request for the explicit reset ioctls, and those
2331 * don't have a tag allocated to them. The below
2332 * code pokes into midlayer structures to paper over
2333 * this design issue, but that won't work for blk-mq.
2335 * Either someone who can actually test the hardware
2336 * will have to come up with a similar hack for the
2337 * blk-mq case, or we'll have to bite the bullet and
2338 * fix the way the EH ioctls work for real, but until
2339 * that happens we fail these explicit requests here.
2342 tag
= fnic_scsi_host_start_tag(fnic
, sc
);
2343 if (unlikely(tag
== SCSI_NO_TAG
))
2344 goto fnic_device_reset_end
;
2348 io_lock
= fnic_io_lock_hash(fnic
, sc
);
2349 spin_lock_irqsave(io_lock
, flags
);
2350 io_req
= (struct fnic_io_req
*)CMD_SP(sc
);
2353 * If there is a io_req attached to this command, then use it,
2354 * else allocate a new one.
2357 io_req
= mempool_alloc(fnic
->io_req_pool
, GFP_ATOMIC
);
2359 spin_unlock_irqrestore(io_lock
, flags
);
2360 goto fnic_device_reset_end
;
2362 memset(io_req
, 0, sizeof(*io_req
));
2363 io_req
->port_id
= rport
->port_id
;
2364 CMD_SP(sc
) = (char *)io_req
;
2366 io_req
->dr_done
= &tm_done
;
2367 CMD_STATE(sc
) = FNIC_IOREQ_CMD_PENDING
;
2368 CMD_LR_STATUS(sc
) = FCPIO_INVALID_CODE
;
2369 spin_unlock_irqrestore(io_lock
, flags
);
2371 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
, "TAG %x\n", tag
);
2374 * issue the device reset, if enqueue failed, clean up the ioreq
2375 * and break assoc with scsi cmd
2377 if (fnic_queue_dr_io_req(fnic
, sc
, io_req
)) {
2378 spin_lock_irqsave(io_lock
, flags
);
2379 io_req
= (struct fnic_io_req
*)CMD_SP(sc
);
2381 io_req
->dr_done
= NULL
;
2382 goto fnic_device_reset_clean
;
2384 spin_lock_irqsave(io_lock
, flags
);
2385 CMD_FLAGS(sc
) |= FNIC_DEV_RST_ISSUED
;
2386 spin_unlock_irqrestore(io_lock
, flags
);
2389 * Wait on the local completion for LUN reset. The io_req may be
2390 * freed while we wait since we hold no lock.
2392 wait_for_completion_timeout(&tm_done
,
2393 msecs_to_jiffies(FNIC_LUN_RESET_TIMEOUT
));
2395 spin_lock_irqsave(io_lock
, flags
);
2396 io_req
= (struct fnic_io_req
*)CMD_SP(sc
);
2398 spin_unlock_irqrestore(io_lock
, flags
);
2399 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
2400 "io_req is null tag 0x%x sc 0x%p\n", tag
, sc
);
2401 goto fnic_device_reset_end
;
2403 io_req
->dr_done
= NULL
;
2405 status
= CMD_LR_STATUS(sc
);
2408 * If lun reset not completed, bail out with failed. io_req
2409 * gets cleaned up during higher levels of EH
2411 if (status
== FCPIO_INVALID_CODE
) {
2412 atomic64_inc(&reset_stats
->device_reset_timeouts
);
2413 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
2414 "Device reset timed out\n");
2415 CMD_FLAGS(sc
) |= FNIC_DEV_RST_TIMED_OUT
;
2416 spin_unlock_irqrestore(io_lock
, flags
);
2417 int_to_scsilun(sc
->device
->lun
, &fc_lun
);
2419 * Issue abort and terminate on device reset request.
2420 * If q'ing of terminate fails, retry it after a delay.
2423 spin_lock_irqsave(io_lock
, flags
);
2424 if (CMD_FLAGS(sc
) & FNIC_DEV_RST_TERM_ISSUED
) {
2425 spin_unlock_irqrestore(io_lock
, flags
);
2428 spin_unlock_irqrestore(io_lock
, flags
);
2429 if (fnic_queue_abort_io_req(fnic
,
2430 tag
| FNIC_TAG_DEV_RST
,
2431 FCPIO_ITMF_ABT_TASK_TERM
,
2432 fc_lun
.scsi_lun
, io_req
)) {
2433 wait_for_completion_timeout(&tm_done
,
2434 msecs_to_jiffies(FNIC_ABT_TERM_DELAY_TIMEOUT
));
2436 spin_lock_irqsave(io_lock
, flags
);
2437 CMD_FLAGS(sc
) |= FNIC_DEV_RST_TERM_ISSUED
;
2438 CMD_STATE(sc
) = FNIC_IOREQ_ABTS_PENDING
;
2439 io_req
->abts_done
= &tm_done
;
2440 spin_unlock_irqrestore(io_lock
, flags
);
2441 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
2442 "Abort and terminate issued on Device reset "
2443 "tag 0x%x sc 0x%p\n", tag
, sc
);
2448 spin_lock_irqsave(io_lock
, flags
);
2449 if (!(CMD_FLAGS(sc
) & FNIC_DEV_RST_DONE
)) {
2450 spin_unlock_irqrestore(io_lock
, flags
);
2451 wait_for_completion_timeout(&tm_done
,
2452 msecs_to_jiffies(FNIC_LUN_RESET_TIMEOUT
));
2455 io_req
= (struct fnic_io_req
*)CMD_SP(sc
);
2456 io_req
->abts_done
= NULL
;
2457 goto fnic_device_reset_clean
;
2461 spin_unlock_irqrestore(io_lock
, flags
);
2464 /* Completed, but not successful, clean up the io_req, return fail */
2465 if (status
!= FCPIO_SUCCESS
) {
2466 spin_lock_irqsave(io_lock
, flags
);
2467 FNIC_SCSI_DBG(KERN_DEBUG
,
2469 "Device reset completed - failed\n");
2470 io_req
= (struct fnic_io_req
*)CMD_SP(sc
);
2471 goto fnic_device_reset_clean
;
2475 * Clean up any aborts on this lun that have still not
2476 * completed. If any of these fail, then LUN reset fails.
2477 * clean_pending_aborts cleans all cmds on this lun except
2478 * the lun reset cmd. If all cmds get cleaned, the lun reset
2481 if (fnic_clean_pending_aborts(fnic
, sc
, new_sc
)) {
2482 spin_lock_irqsave(io_lock
, flags
);
2483 io_req
= (struct fnic_io_req
*)CMD_SP(sc
);
2484 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
2485 "Device reset failed"
2486 " since could not abort all IOs\n");
2487 goto fnic_device_reset_clean
;
2490 /* Clean lun reset command */
2491 spin_lock_irqsave(io_lock
, flags
);
2492 io_req
= (struct fnic_io_req
*)CMD_SP(sc
);
2494 /* Completed, and successful */
2497 fnic_device_reset_clean
:
2501 spin_unlock_irqrestore(io_lock
, flags
);
2504 start_time
= io_req
->start_time
;
2505 fnic_release_ioreq_buf(fnic
, io_req
, sc
);
2506 mempool_free(io_req
, fnic
->io_req_pool
);
2509 fnic_device_reset_end
:
2510 FNIC_TRACE(fnic_device_reset
, sc
->device
->host
->host_no
,
2511 sc
->request
->tag
, sc
,
2512 jiffies_to_msecs(jiffies
- start_time
),
2513 0, ((u64
)sc
->cmnd
[0] << 32 |
2514 (u64
)sc
->cmnd
[2] << 24 | (u64
)sc
->cmnd
[3] << 16 |
2515 (u64
)sc
->cmnd
[4] << 8 | sc
->cmnd
[5]),
2516 (((u64
)CMD_FLAGS(sc
) << 32) | CMD_STATE(sc
)));
2518 /* free tag if it is allocated */
2519 if (unlikely(tag_gen_flag
))
2520 fnic_scsi_host_end_tag(fnic
, sc
);
2522 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
2523 "Returning from device reset %s\n",
2525 "SUCCESS" : "FAILED");
2528 atomic64_inc(&reset_stats
->device_reset_failures
);
2533 /* Clean up all IOs, clean up libFC local port */
2534 int fnic_reset(struct Scsi_Host
*shost
)
2536 struct fc_lport
*lp
;
2539 struct reset_stats
*reset_stats
;
2541 lp
= shost_priv(shost
);
2542 fnic
= lport_priv(lp
);
2543 reset_stats
= &fnic
->fnic_stats
.reset_stats
;
2545 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
2546 "fnic_reset called\n");
2548 atomic64_inc(&reset_stats
->fnic_resets
);
2551 * Reset local port, this will clean up libFC exchanges,
2552 * reset remote port sessions, and if link is up, begin flogi
2554 ret
= fc_lport_reset(lp
);
2556 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
2557 "Returning from fnic reset %s\n",
2559 "SUCCESS" : "FAILED");
2562 atomic64_inc(&reset_stats
->fnic_reset_completions
);
2564 atomic64_inc(&reset_stats
->fnic_reset_failures
);
2570 * SCSI Error handling calls driver's eh_host_reset if all prior
2571 * error handling levels return FAILED. If host reset completes
2572 * successfully, and if link is up, then Fabric login begins.
2574 * Host Reset is the highest level of error recovery. If this fails, then
2575 * host is offlined by SCSI.
2578 int fnic_host_reset(struct scsi_cmnd
*sc
)
2581 unsigned long wait_host_tmo
;
2582 struct Scsi_Host
*shost
= sc
->device
->host
;
2583 struct fc_lport
*lp
= shost_priv(shost
);
2584 struct fnic
*fnic
= lport_priv(lp
);
2585 unsigned long flags
;
2587 spin_lock_irqsave(&fnic
->fnic_lock
, flags
);
2588 if (fnic
->internal_reset_inprogress
== 0) {
2589 fnic
->internal_reset_inprogress
= 1;
2591 spin_unlock_irqrestore(&fnic
->fnic_lock
, flags
);
2592 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
2593 "host reset in progress skipping another host reset\n");
2596 spin_unlock_irqrestore(&fnic
->fnic_lock
, flags
);
2599 * If fnic_reset is successful, wait for fabric login to complete
2600 * scsi-ml tries to send a TUR to every device if host reset is
2601 * successful, so before returning to scsi, fabric should be up
2603 ret
= (fnic_reset(shost
) == 0) ? SUCCESS
: FAILED
;
2604 if (ret
== SUCCESS
) {
2605 wait_host_tmo
= jiffies
+ FNIC_HOST_RESET_SETTLE_TIME
* HZ
;
2607 while (time_before(jiffies
, wait_host_tmo
)) {
2608 if ((lp
->state
== LPORT_ST_READY
) &&
2617 spin_lock_irqsave(&fnic
->fnic_lock
, flags
);
2618 fnic
->internal_reset_inprogress
= 0;
2619 spin_unlock_irqrestore(&fnic
->fnic_lock
, flags
);
2624 * This fxn is called from libFC when host is removed
2626 void fnic_scsi_abort_io(struct fc_lport
*lp
)
2629 unsigned long flags
;
2630 enum fnic_state old_state
;
2631 struct fnic
*fnic
= lport_priv(lp
);
2632 DECLARE_COMPLETION_ONSTACK(remove_wait
);
2634 /* Issue firmware reset for fnic, wait for reset to complete */
2636 spin_lock_irqsave(&fnic
->fnic_lock
, flags
);
2637 if (unlikely(fnic
->state
== FNIC_IN_FC_TRANS_ETH_MODE
)) {
2638 /* fw reset is in progress, poll for its completion */
2639 spin_unlock_irqrestore(&fnic
->fnic_lock
, flags
);
2640 schedule_timeout(msecs_to_jiffies(100));
2641 goto retry_fw_reset
;
2644 fnic
->remove_wait
= &remove_wait
;
2645 old_state
= fnic
->state
;
2646 fnic
->state
= FNIC_IN_FC_TRANS_ETH_MODE
;
2647 fnic_update_mac_locked(fnic
, fnic
->ctlr
.ctl_src_addr
);
2648 spin_unlock_irqrestore(&fnic
->fnic_lock
, flags
);
2650 err
= fnic_fw_reset_handler(fnic
);
2652 spin_lock_irqsave(&fnic
->fnic_lock
, flags
);
2653 if (fnic
->state
== FNIC_IN_FC_TRANS_ETH_MODE
)
2654 fnic
->state
= old_state
;
2655 fnic
->remove_wait
= NULL
;
2656 spin_unlock_irqrestore(&fnic
->fnic_lock
, flags
);
2660 /* Wait for firmware reset to complete */
2661 wait_for_completion_timeout(&remove_wait
,
2662 msecs_to_jiffies(FNIC_RMDEVICE_TIMEOUT
));
2664 spin_lock_irqsave(&fnic
->fnic_lock
, flags
);
2665 fnic
->remove_wait
= NULL
;
2666 FNIC_SCSI_DBG(KERN_DEBUG
, fnic
->lport
->host
,
2667 "fnic_scsi_abort_io %s\n",
2668 (fnic
->state
== FNIC_IN_ETH_MODE
) ?
2669 "SUCCESS" : "FAILED");
2670 spin_unlock_irqrestore(&fnic
->fnic_lock
, flags
);
2675 * This fxn called from libFC to clean up driver IO state on link down
2677 void fnic_scsi_cleanup(struct fc_lport
*lp
)
2679 unsigned long flags
;
2680 enum fnic_state old_state
;
2681 struct fnic
*fnic
= lport_priv(lp
);
2683 /* issue fw reset */
2685 spin_lock_irqsave(&fnic
->fnic_lock
, flags
);
2686 if (unlikely(fnic
->state
== FNIC_IN_FC_TRANS_ETH_MODE
)) {
2687 /* fw reset is in progress, poll for its completion */
2688 spin_unlock_irqrestore(&fnic
->fnic_lock
, flags
);
2689 schedule_timeout(msecs_to_jiffies(100));
2690 goto retry_fw_reset
;
2692 old_state
= fnic
->state
;
2693 fnic
->state
= FNIC_IN_FC_TRANS_ETH_MODE
;
2694 fnic_update_mac_locked(fnic
, fnic
->ctlr
.ctl_src_addr
);
2695 spin_unlock_irqrestore(&fnic
->fnic_lock
, flags
);
2697 if (fnic_fw_reset_handler(fnic
)) {
2698 spin_lock_irqsave(&fnic
->fnic_lock
, flags
);
2699 if (fnic
->state
== FNIC_IN_FC_TRANS_ETH_MODE
)
2700 fnic
->state
= old_state
;
2701 spin_unlock_irqrestore(&fnic
->fnic_lock
, flags
);
2706 void fnic_empty_scsi_cleanup(struct fc_lport
*lp
)
2710 void fnic_exch_mgr_reset(struct fc_lport
*lp
, u32 sid
, u32 did
)
2712 struct fnic
*fnic
= lport_priv(lp
);
2714 /* Non-zero sid, nothing to do */
2716 goto call_fc_exch_mgr_reset
;
2719 fnic_rport_exch_reset(fnic
, did
);
2720 goto call_fc_exch_mgr_reset
;
2725 * link down or device being removed
2727 if (!fnic
->in_remove
)
2728 fnic_scsi_cleanup(lp
);
2730 fnic_scsi_abort_io(lp
);
2732 /* call libFC exch mgr reset to reset its exchanges */
2733 call_fc_exch_mgr_reset
:
2734 fc_exch_mgr_reset(lp
, sid
, did
);
2739 * fnic_is_abts_pending() is a helper function that
2740 * walks through tag map to check if there is any IOs pending,if there is one,
2741 * then it returns 1 (true), otherwise 0 (false)
2742 * if @lr_sc is non NULL, then it checks IOs specific to particular LUN,
2743 * otherwise, it checks for all IOs.
2745 int fnic_is_abts_pending(struct fnic
*fnic
, struct scsi_cmnd
*lr_sc
)
2748 struct fnic_io_req
*io_req
;
2749 spinlock_t
*io_lock
;
2750 unsigned long flags
;
2752 struct scsi_cmnd
*sc
;
2753 struct scsi_device
*lun_dev
= NULL
;
2756 lun_dev
= lr_sc
->device
;
2758 /* walk again to check, if IOs are still pending in fw */
2759 for (tag
= 0; tag
< fnic
->fnic_max_tag_id
; tag
++) {
2760 sc
= scsi_host_find_tag(fnic
->lport
->host
, tag
);
2762 * ignore this lun reset cmd or cmds that do not belong to
2765 if (!sc
|| (lr_sc
&& (sc
->device
!= lun_dev
|| sc
== lr_sc
)))
2768 io_lock
= fnic_io_lock_hash(fnic
, sc
);
2769 spin_lock_irqsave(io_lock
, flags
);
2771 io_req
= (struct fnic_io_req
*)CMD_SP(sc
);
2773 if (!io_req
|| sc
->device
!= lun_dev
) {
2774 spin_unlock_irqrestore(io_lock
, flags
);
2779 * Found IO that is still pending with firmware and
2780 * belongs to the LUN that we are resetting
2782 FNIC_SCSI_DBG(KERN_INFO
, fnic
->lport
->host
,
2783 "Found IO in %s on lun\n",
2784 fnic_ioreq_state_to_str(CMD_STATE(sc
)));
2786 if (CMD_STATE(sc
) == FNIC_IOREQ_ABTS_PENDING
)
2788 spin_unlock_irqrestore(io_lock
, flags
);