blob: c987c4fcdadc99936ae988287b15761dd0da849f [file] [log] [blame]
dea31012005-04-17 16:05:31 -05001/*******************************************************************
2 * This file is part of the Emulex Linux Device Driver for *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04003 * Fibre Channel Host Bus Adapters. *
James Smart9413aff2007-04-25 09:53:35 -04004 * Copyright (C) 2004-2007 Emulex. All rights reserved. *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04005 * EMULEX and SLI are trademarks of Emulex. *
dea31012005-04-17 16:05:31 -05006 * www.emulex.com *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04007 * Portions Copyright (C) 2004-2005 Christoph Hellwig *
dea31012005-04-17 16:05:31 -05008 * *
9 * This program is free software; you can redistribute it and/or *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -040010 * modify it under the terms of version 2 of the GNU General *
11 * Public License as published by the Free Software Foundation. *
12 * This program is distributed in the hope that it will be useful. *
13 * ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND *
14 * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, *
15 * FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE *
16 * DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD *
17 * TO BE LEGALLY INVALID. See the GNU General Public License for *
18 * more details, a copy of which can be found in the file COPYING *
19 * included with this package. *
dea31012005-04-17 16:05:31 -050020 *******************************************************************/
21
dea31012005-04-17 16:05:31 -050022#include <linux/pci.h>
23#include <linux/interrupt.h>
James Smarta90f5682006-08-17 11:58:04 -040024#include <linux/delay.h>
dea31012005-04-17 16:05:31 -050025
26#include <scsi/scsi.h>
27#include <scsi/scsi_device.h>
28#include <scsi/scsi_host.h>
29#include <scsi/scsi_tcq.h>
30#include <scsi/scsi_transport_fc.h>
31
32#include "lpfc_version.h"
33#include "lpfc_hw.h"
34#include "lpfc_sli.h"
35#include "lpfc_disc.h"
36#include "lpfc_scsi.h"
37#include "lpfc.h"
38#include "lpfc_logmsg.h"
39#include "lpfc_crtn.h"
James Smart92d7f7b2007-06-17 19:56:38 -050040#include "lpfc_vport.h"
dea31012005-04-17 16:05:31 -050041
42#define LPFC_RESET_WAIT 2
43#define LPFC_ABORT_WAIT 2
44
dea31012005-04-17 16:05:31 -050045/*
James Smart92d7f7b2007-06-17 19:56:38 -050046 * This function is called with no lock held when there is a resource
47 * error in driver or in firmware.
48 */
49void
50lpfc_adjust_queue_depth(struct lpfc_hba *phba)
51{
52 unsigned long flags;
53
54 spin_lock_irqsave(&phba->hbalock, flags);
55 atomic_inc(&phba->num_rsrc_err);
56 phba->last_rsrc_error_time = jiffies;
57
58 if ((phba->last_ramp_down_time + QUEUE_RAMP_DOWN_INTERVAL) > jiffies) {
59 spin_unlock_irqrestore(&phba->hbalock, flags);
60 return;
61 }
62
63 phba->last_ramp_down_time = jiffies;
64
65 spin_unlock_irqrestore(&phba->hbalock, flags);
66
67 spin_lock_irqsave(&phba->pport->work_port_lock, flags);
68 if ((phba->pport->work_port_events &
69 WORKER_RAMP_DOWN_QUEUE) == 0) {
70 phba->pport->work_port_events |= WORKER_RAMP_DOWN_QUEUE;
71 }
72 spin_unlock_irqrestore(&phba->pport->work_port_lock, flags);
73
74 spin_lock_irqsave(&phba->hbalock, flags);
75 if (phba->work_wait)
76 wake_up(phba->work_wait);
77 spin_unlock_irqrestore(&phba->hbalock, flags);
78
79 return;
80}
81
82/*
83 * This function is called with no lock held when there is a successful
84 * SCSI command completion.
85 */
86static inline void
James Smart3de2a652007-08-02 11:09:59 -040087lpfc_rampup_queue_depth(struct lpfc_vport *vport,
James Smart92d7f7b2007-06-17 19:56:38 -050088 struct scsi_device *sdev)
89{
90 unsigned long flags;
James Smart3de2a652007-08-02 11:09:59 -040091 struct lpfc_hba *phba = vport->phba;
James Smart92d7f7b2007-06-17 19:56:38 -050092 atomic_inc(&phba->num_cmd_success);
93
James Smart3de2a652007-08-02 11:09:59 -040094 if (vport->cfg_lun_queue_depth <= sdev->queue_depth)
James Smart92d7f7b2007-06-17 19:56:38 -050095 return;
James Smart92d7f7b2007-06-17 19:56:38 -050096 spin_lock_irqsave(&phba->hbalock, flags);
97 if (((phba->last_ramp_up_time + QUEUE_RAMP_UP_INTERVAL) > jiffies) ||
98 ((phba->last_rsrc_error_time + QUEUE_RAMP_UP_INTERVAL ) > jiffies)) {
99 spin_unlock_irqrestore(&phba->hbalock, flags);
100 return;
101 }
James Smart92d7f7b2007-06-17 19:56:38 -0500102 phba->last_ramp_up_time = jiffies;
103 spin_unlock_irqrestore(&phba->hbalock, flags);
104
105 spin_lock_irqsave(&phba->pport->work_port_lock, flags);
106 if ((phba->pport->work_port_events &
107 WORKER_RAMP_UP_QUEUE) == 0) {
108 phba->pport->work_port_events |= WORKER_RAMP_UP_QUEUE;
109 }
110 spin_unlock_irqrestore(&phba->pport->work_port_lock, flags);
111
112 spin_lock_irqsave(&phba->hbalock, flags);
113 if (phba->work_wait)
114 wake_up(phba->work_wait);
115 spin_unlock_irqrestore(&phba->hbalock, flags);
116}
117
118void
119lpfc_ramp_down_queue_handler(struct lpfc_hba *phba)
120{
James Smart549e55c2007-08-02 11:09:51 -0400121 struct lpfc_vport **vports;
122 struct Scsi_Host *shost;
James Smart92d7f7b2007-06-17 19:56:38 -0500123 struct scsi_device *sdev;
124 unsigned long new_queue_depth;
125 unsigned long num_rsrc_err, num_cmd_success;
James Smart549e55c2007-08-02 11:09:51 -0400126 int i;
James Smart92d7f7b2007-06-17 19:56:38 -0500127
128 num_rsrc_err = atomic_read(&phba->num_rsrc_err);
129 num_cmd_success = atomic_read(&phba->num_cmd_success);
130
James Smart549e55c2007-08-02 11:09:51 -0400131 vports = lpfc_create_vport_work_array(phba);
132 if (vports != NULL)
133 for(i = 0; i < LPFC_MAX_VPORTS && vports[i] != NULL; i++) {
134 shost = lpfc_shost_from_vport(vports[i]);
135 shost_for_each_device(sdev, shost) {
James Smart92d7f7b2007-06-17 19:56:38 -0500136 new_queue_depth =
James Smart549e55c2007-08-02 11:09:51 -0400137 sdev->queue_depth * num_rsrc_err /
138 (num_rsrc_err + num_cmd_success);
139 if (!new_queue_depth)
140 new_queue_depth = sdev->queue_depth - 1;
141 else
142 new_queue_depth = sdev->queue_depth -
143 new_queue_depth;
144 if (sdev->ordered_tags)
145 scsi_adjust_queue_depth(sdev,
146 MSG_ORDERED_TAG,
147 new_queue_depth);
148 else
149 scsi_adjust_queue_depth(sdev,
150 MSG_SIMPLE_TAG,
151 new_queue_depth);
152 }
James Smart92d7f7b2007-06-17 19:56:38 -0500153 }
James Smart549e55c2007-08-02 11:09:51 -0400154 lpfc_destroy_vport_work_array(vports);
James Smart92d7f7b2007-06-17 19:56:38 -0500155 atomic_set(&phba->num_rsrc_err, 0);
156 atomic_set(&phba->num_cmd_success, 0);
157}
158
159void
160lpfc_ramp_up_queue_handler(struct lpfc_hba *phba)
161{
James Smart549e55c2007-08-02 11:09:51 -0400162 struct lpfc_vport **vports;
163 struct Scsi_Host *shost;
James Smart92d7f7b2007-06-17 19:56:38 -0500164 struct scsi_device *sdev;
James Smart549e55c2007-08-02 11:09:51 -0400165 int i;
James Smart92d7f7b2007-06-17 19:56:38 -0500166
James Smart549e55c2007-08-02 11:09:51 -0400167 vports = lpfc_create_vport_work_array(phba);
168 if (vports != NULL)
169 for(i = 0; i < LPFC_MAX_VPORTS && vports[i] != NULL; i++) {
170 shost = lpfc_shost_from_vport(vports[i]);
171 shost_for_each_device(sdev, shost) {
172 if (sdev->ordered_tags)
173 scsi_adjust_queue_depth(sdev,
174 MSG_ORDERED_TAG,
175 sdev->queue_depth+1);
176 else
177 scsi_adjust_queue_depth(sdev,
178 MSG_SIMPLE_TAG,
179 sdev->queue_depth+1);
180 }
James Smart92d7f7b2007-06-17 19:56:38 -0500181 }
James Smart549e55c2007-08-02 11:09:51 -0400182 lpfc_destroy_vport_work_array(vports);
James Smart92d7f7b2007-06-17 19:56:38 -0500183 atomic_set(&phba->num_rsrc_err, 0);
184 atomic_set(&phba->num_cmd_success, 0);
185}
186
187/*
dea31012005-04-17 16:05:31 -0500188 * This routine allocates a scsi buffer, which contains all the necessary
189 * information needed to initiate a SCSI I/O. The non-DMAable buffer region
190 * contains information to build the IOCB. The DMAable region contains
191 * memory for the FCP CMND, FCP RSP, and the inital BPL. In addition to
192 * allocating memeory, the FCP CMND and FCP RSP BDEs are setup in the BPL
193 * and the BPL BDE is setup in the IOCB.
194 */
195static struct lpfc_scsi_buf *
James Smart2e0fef82007-06-17 19:56:36 -0500196lpfc_new_scsi_buf(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -0500197{
James Smart2e0fef82007-06-17 19:56:36 -0500198 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -0500199 struct lpfc_scsi_buf *psb;
200 struct ulp_bde64 *bpl;
201 IOCB_t *iocb;
202 dma_addr_t pdma_phys;
James Bottomley604a3e32005-10-29 10:28:33 -0500203 uint16_t iotag;
dea31012005-04-17 16:05:31 -0500204
Mariusz Kozlowskibbfbbbc2007-08-11 10:13:24 +0200205 psb = kzalloc(sizeof(struct lpfc_scsi_buf), GFP_KERNEL);
dea31012005-04-17 16:05:31 -0500206 if (!psb)
207 return NULL;
dea31012005-04-17 16:05:31 -0500208
209 /*
210 * Get memory from the pci pool to map the virt space to pci bus space
211 * for an I/O. The DMA buffer includes space for the struct fcp_cmnd,
212 * struct fcp_rsp and the number of bde's necessary to support the
213 * sg_tablesize.
214 */
215 psb->data = pci_pool_alloc(phba->lpfc_scsi_dma_buf_pool, GFP_KERNEL,
216 &psb->dma_handle);
217 if (!psb->data) {
218 kfree(psb);
219 return NULL;
220 }
221
222 /* Initialize virtual ptrs to dma_buf region. */
223 memset(psb->data, 0, phba->cfg_sg_dma_buf_size);
224
James Bottomley604a3e32005-10-29 10:28:33 -0500225 /* Allocate iotag for psb->cur_iocbq. */
226 iotag = lpfc_sli_next_iotag(phba, &psb->cur_iocbq);
227 if (iotag == 0) {
228 pci_pool_free(phba->lpfc_scsi_dma_buf_pool,
229 psb->data, psb->dma_handle);
230 kfree (psb);
231 return NULL;
232 }
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -0400233 psb->cur_iocbq.iocb_flag |= LPFC_IO_FCP;
James Bottomley604a3e32005-10-29 10:28:33 -0500234
dea31012005-04-17 16:05:31 -0500235 psb->fcp_cmnd = psb->data;
236 psb->fcp_rsp = psb->data + sizeof(struct fcp_cmnd);
237 psb->fcp_bpl = psb->data + sizeof(struct fcp_cmnd) +
238 sizeof(struct fcp_rsp);
239
240 /* Initialize local short-hand pointers. */
241 bpl = psb->fcp_bpl;
242 pdma_phys = psb->dma_handle;
243
244 /*
245 * The first two bdes are the FCP_CMD and FCP_RSP. The balance are sg
246 * list bdes. Initialize the first two and leave the rest for
247 * queuecommand.
248 */
249 bpl->addrHigh = le32_to_cpu(putPaddrHigh(pdma_phys));
250 bpl->addrLow = le32_to_cpu(putPaddrLow(pdma_phys));
251 bpl->tus.f.bdeSize = sizeof (struct fcp_cmnd);
252 bpl->tus.f.bdeFlags = BUFF_USE_CMND;
253 bpl->tus.w = le32_to_cpu(bpl->tus.w);
254 bpl++;
255
256 /* Setup the physical region for the FCP RSP */
257 pdma_phys += sizeof (struct fcp_cmnd);
258 bpl->addrHigh = le32_to_cpu(putPaddrHigh(pdma_phys));
259 bpl->addrLow = le32_to_cpu(putPaddrLow(pdma_phys));
260 bpl->tus.f.bdeSize = sizeof (struct fcp_rsp);
261 bpl->tus.f.bdeFlags = (BUFF_USE_CMND | BUFF_USE_RCV);
262 bpl->tus.w = le32_to_cpu(bpl->tus.w);
263
264 /*
265 * Since the IOCB for the FCP I/O is built into this lpfc_scsi_buf,
266 * initialize it with all known data now.
267 */
268 pdma_phys += (sizeof (struct fcp_rsp));
269 iocb = &psb->cur_iocbq.iocb;
270 iocb->un.fcpi64.bdl.ulpIoTag32 = 0;
271 iocb->un.fcpi64.bdl.addrHigh = putPaddrHigh(pdma_phys);
272 iocb->un.fcpi64.bdl.addrLow = putPaddrLow(pdma_phys);
273 iocb->un.fcpi64.bdl.bdeSize = (2 * sizeof (struct ulp_bde64));
274 iocb->un.fcpi64.bdl.bdeFlags = BUFF_TYPE_BDL;
275 iocb->ulpBdeCount = 1;
276 iocb->ulpClass = CLASS3;
277
278 return psb;
279}
280
Adrian Bunk455c53e2006-01-06 20:21:28 +0100281static struct lpfc_scsi_buf*
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -0500282lpfc_get_scsi_buf(struct lpfc_hba * phba)
dea31012005-04-17 16:05:31 -0500283{
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -0400284 struct lpfc_scsi_buf * lpfc_cmd = NULL;
285 struct list_head *scsi_buf_list = &phba->lpfc_scsi_buf_list;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -0500286 unsigned long iflag = 0;
dea31012005-04-17 16:05:31 -0500287
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -0500288 spin_lock_irqsave(&phba->scsi_buf_list_lock, iflag);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -0400289 list_remove_head(scsi_buf_list, lpfc_cmd, struct lpfc_scsi_buf, list);
James Smart1dcb58e2007-04-25 09:51:30 -0400290 if (lpfc_cmd) {
291 lpfc_cmd->seg_cnt = 0;
292 lpfc_cmd->nonsg_phys = 0;
293 }
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -0500294 spin_unlock_irqrestore(&phba->scsi_buf_list_lock, iflag);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -0400295 return lpfc_cmd;
296}
297
298static void
James Smart92d7f7b2007-06-17 19:56:38 -0500299lpfc_release_scsi_buf(struct lpfc_hba *phba, struct lpfc_scsi_buf *psb)
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -0400300{
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -0500301 unsigned long iflag = 0;
dea31012005-04-17 16:05:31 -0500302
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -0500303 spin_lock_irqsave(&phba->scsi_buf_list_lock, iflag);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -0400304 psb->pCmd = NULL;
dea31012005-04-17 16:05:31 -0500305 list_add_tail(&psb->list, &phba->lpfc_scsi_buf_list);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -0500306 spin_unlock_irqrestore(&phba->scsi_buf_list_lock, iflag);
dea31012005-04-17 16:05:31 -0500307}
308
309static int
James Smart92d7f7b2007-06-17 19:56:38 -0500310lpfc_scsi_prep_dma_buf(struct lpfc_hba *phba, struct lpfc_scsi_buf *lpfc_cmd)
dea31012005-04-17 16:05:31 -0500311{
312 struct scsi_cmnd *scsi_cmnd = lpfc_cmd->pCmd;
313 struct scatterlist *sgel = NULL;
314 struct fcp_cmnd *fcp_cmnd = lpfc_cmd->fcp_cmnd;
315 struct ulp_bde64 *bpl = lpfc_cmd->fcp_bpl;
316 IOCB_t *iocb_cmd = &lpfc_cmd->cur_iocbq.iocb;
317 dma_addr_t physaddr;
318 uint32_t i, num_bde = 0;
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -0500319 int nseg, datadir = scsi_cmnd->sc_data_direction;
dea31012005-04-17 16:05:31 -0500320
321 /*
322 * There are three possibilities here - use scatter-gather segment, use
323 * the single mapping, or neither. Start the lpfc command prep by
324 * bumping the bpl beyond the fcp_cmnd and fcp_rsp regions to the first
325 * data bde entry.
326 */
327 bpl += 2;
FUJITA Tomonoric59fd9e2007-07-04 06:03:11 -0700328 if (scsi_sg_count(scsi_cmnd)) {
dea31012005-04-17 16:05:31 -0500329 /*
330 * The driver stores the segment count returned from pci_map_sg
331 * because this a count of dma-mappings used to map the use_sg
332 * pages. They are not guaranteed to be the same for those
333 * architectures that implement an IOMMU.
334 */
dea31012005-04-17 16:05:31 -0500335
FUJITA Tomonoric59fd9e2007-07-04 06:03:11 -0700336 nseg = dma_map_sg(&phba->pcidev->dev, scsi_sglist(scsi_cmnd),
337 scsi_sg_count(scsi_cmnd), datadir);
338 if (unlikely(!nseg))
339 return 1;
340
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -0500341 lpfc_cmd->seg_cnt = nseg;
dea31012005-04-17 16:05:31 -0500342 if (lpfc_cmd->seg_cnt > phba->cfg_sg_seg_cnt) {
343 printk(KERN_ERR "%s: Too many sg segments from "
344 "dma_map_sg. Config %d, seg_cnt %d",
345 __FUNCTION__, phba->cfg_sg_seg_cnt,
346 lpfc_cmd->seg_cnt);
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -0500347 scsi_dma_unmap(scsi_cmnd);
dea31012005-04-17 16:05:31 -0500348 return 1;
349 }
350
351 /*
352 * The driver established a maximum scatter-gather segment count
353 * during probe that limits the number of sg elements in any
354 * single scsi command. Just run through the seg_cnt and format
355 * the bde's.
356 */
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -0500357 scsi_for_each_sg(scsi_cmnd, sgel, nseg, i) {
dea31012005-04-17 16:05:31 -0500358 physaddr = sg_dma_address(sgel);
359 bpl->addrLow = le32_to_cpu(putPaddrLow(physaddr));
360 bpl->addrHigh = le32_to_cpu(putPaddrHigh(physaddr));
361 bpl->tus.f.bdeSize = sg_dma_len(sgel);
362 if (datadir == DMA_TO_DEVICE)
363 bpl->tus.f.bdeFlags = 0;
364 else
365 bpl->tus.f.bdeFlags = BUFF_USE_RCV;
366 bpl->tus.w = le32_to_cpu(bpl->tus.w);
367 bpl++;
dea31012005-04-17 16:05:31 -0500368 num_bde++;
369 }
FUJITA Tomonoric59fd9e2007-07-04 06:03:11 -0700370 }
dea31012005-04-17 16:05:31 -0500371
372 /*
373 * Finish initializing those IOCB fields that are dependent on the
James.Smart@Emulex.Com483f05f2005-08-10 15:02:45 -0400374 * scsi_cmnd request_buffer. Note that the bdeSize is explicitly
375 * reinitialized since all iocb memory resources are used many times
376 * for transmit, receive, and continuation bpl's.
dea31012005-04-17 16:05:31 -0500377 */
James.Smart@Emulex.Com483f05f2005-08-10 15:02:45 -0400378 iocb_cmd->un.fcpi64.bdl.bdeSize = (2 * sizeof (struct ulp_bde64));
dea31012005-04-17 16:05:31 -0500379 iocb_cmd->un.fcpi64.bdl.bdeSize +=
380 (num_bde * sizeof (struct ulp_bde64));
381 iocb_cmd->ulpBdeCount = 1;
382 iocb_cmd->ulpLe = 1;
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -0500383 fcp_cmnd->fcpDl = be32_to_cpu(scsi_bufflen(scsi_cmnd));
dea31012005-04-17 16:05:31 -0500384 return 0;
385}
386
387static void
James Smartbcf4dbf2006-07-06 15:50:08 -0400388lpfc_scsi_unprep_dma_buf(struct lpfc_hba * phba, struct lpfc_scsi_buf * psb)
389{
390 /*
391 * There are only two special cases to consider. (1) the scsi command
392 * requested scatter-gather usage or (2) the scsi command allocated
393 * a request buffer, but did not request use_sg. There is a third
394 * case, but it does not require resource deallocation.
395 */
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -0500396 if (psb->seg_cnt > 0)
397 scsi_dma_unmap(psb->pCmd);
James Smartbcf4dbf2006-07-06 15:50:08 -0400398}
399
400static void
James Smart2e0fef82007-06-17 19:56:36 -0500401lpfc_handle_fcp_err(struct lpfc_vport *vport, struct lpfc_scsi_buf *lpfc_cmd,
402 struct lpfc_iocbq *rsp_iocb)
dea31012005-04-17 16:05:31 -0500403{
404 struct scsi_cmnd *cmnd = lpfc_cmd->pCmd;
405 struct fcp_cmnd *fcpcmd = lpfc_cmd->fcp_cmnd;
406 struct fcp_rsp *fcprsp = lpfc_cmd->fcp_rsp;
James Smart7054a602007-04-25 09:52:34 -0400407 uint32_t fcpi_parm = rsp_iocb->iocb.un.fcpi.fcpi_parm;
dea31012005-04-17 16:05:31 -0500408 uint32_t resp_info = fcprsp->rspStatus2;
409 uint32_t scsi_status = fcprsp->rspStatus3;
James Smartc7743952006-12-02 13:34:42 -0500410 uint32_t *lp;
dea31012005-04-17 16:05:31 -0500411 uint32_t host_status = DID_OK;
412 uint32_t rsplen = 0;
James Smartc7743952006-12-02 13:34:42 -0500413 uint32_t logit = LOG_FCP | LOG_FCP_ERROR;
dea31012005-04-17 16:05:31 -0500414
415 /*
416 * If this is a task management command, there is no
417 * scsi packet associated with this lpfc_cmd. The driver
418 * consumes it.
419 */
420 if (fcpcmd->fcpCntl2) {
421 scsi_status = 0;
422 goto out;
423 }
424
James Smartc7743952006-12-02 13:34:42 -0500425 if ((resp_info & SNS_LEN_VALID) && fcprsp->rspSnsLen) {
426 uint32_t snslen = be32_to_cpu(fcprsp->rspSnsLen);
427 if (snslen > SCSI_SENSE_BUFFERSIZE)
428 snslen = SCSI_SENSE_BUFFERSIZE;
429
430 if (resp_info & RSP_LEN_VALID)
431 rsplen = be32_to_cpu(fcprsp->rspRspLen);
432 memcpy(cmnd->sense_buffer, &fcprsp->rspInfo0 + rsplen, snslen);
433 }
434 lp = (uint32_t *)cmnd->sense_buffer;
435
436 if (!scsi_status && (resp_info & RESID_UNDER))
437 logit = LOG_FCP;
438
James Smarte8b62012007-08-02 11:10:09 -0400439 lpfc_printf_vlog(vport, KERN_WARNING, logit,
440 "0730 FCP command x%x failed: x%x SNS x%x x%x "
441 "Data: x%x x%x x%x x%x x%x\n",
442 cmnd->cmnd[0], scsi_status,
443 be32_to_cpu(*lp), be32_to_cpu(*(lp + 3)), resp_info,
444 be32_to_cpu(fcprsp->rspResId),
445 be32_to_cpu(fcprsp->rspSnsLen),
446 be32_to_cpu(fcprsp->rspRspLen),
447 fcprsp->rspInfo3);
dea31012005-04-17 16:05:31 -0500448
449 if (resp_info & RSP_LEN_VALID) {
450 rsplen = be32_to_cpu(fcprsp->rspRspLen);
451 if ((rsplen != 0 && rsplen != 4 && rsplen != 8) ||
452 (fcprsp->rspInfo3 != RSP_NO_FAILURE)) {
453 host_status = DID_ERROR;
454 goto out;
455 }
456 }
457
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -0500458 scsi_set_resid(cmnd, 0);
dea31012005-04-17 16:05:31 -0500459 if (resp_info & RESID_UNDER) {
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -0500460 scsi_set_resid(cmnd, be32_to_cpu(fcprsp->rspResId));
dea31012005-04-17 16:05:31 -0500461
James Smarte8b62012007-08-02 11:10:09 -0400462 lpfc_printf_vlog(vport, KERN_INFO, LOG_FCP,
463 "0716 FCP Read Underrun, expected %d, "
464 "residual %d Data: x%x x%x x%x\n",
465 be32_to_cpu(fcpcmd->fcpDl),
466 scsi_get_resid(cmnd), fcpi_parm, cmnd->cmnd[0],
467 cmnd->underflow);
dea31012005-04-17 16:05:31 -0500468
469 /*
James Smart7054a602007-04-25 09:52:34 -0400470 * If there is an under run check if under run reported by
471 * storage array is same as the under run reported by HBA.
472 * If this is not same, there is a dropped frame.
473 */
474 if ((cmnd->sc_data_direction == DMA_FROM_DEVICE) &&
475 fcpi_parm &&
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -0500476 (scsi_get_resid(cmnd) != fcpi_parm)) {
James Smarte8b62012007-08-02 11:10:09 -0400477 lpfc_printf_vlog(vport, KERN_WARNING,
478 LOG_FCP | LOG_FCP_ERROR,
479 "0735 FCP Read Check Error "
480 "and Underrun Data: x%x x%x x%x x%x\n",
481 be32_to_cpu(fcpcmd->fcpDl),
482 scsi_get_resid(cmnd), fcpi_parm,
483 cmnd->cmnd[0]);
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -0500484 scsi_set_resid(cmnd, scsi_bufflen(cmnd));
James Smart7054a602007-04-25 09:52:34 -0400485 host_status = DID_ERROR;
486 }
487 /*
dea31012005-04-17 16:05:31 -0500488 * The cmnd->underflow is the minimum number of bytes that must
489 * be transfered for this command. Provided a sense condition
490 * is not present, make sure the actual amount transferred is at
491 * least the underflow value or fail.
492 */
493 if (!(resp_info & SNS_LEN_VALID) &&
494 (scsi_status == SAM_STAT_GOOD) &&
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -0500495 (scsi_bufflen(cmnd) - scsi_get_resid(cmnd)
496 < cmnd->underflow)) {
James Smarte8b62012007-08-02 11:10:09 -0400497 lpfc_printf_vlog(vport, KERN_INFO, LOG_FCP,
498 "0717 FCP command x%x residual "
499 "underrun converted to error "
500 "Data: x%x x%x x%x\n",
James Smart66dbfbe2007-08-05 06:08:38 -0400501 cmnd->cmnd[0], scsi_bufflen(cmnd),
James Smarte8b62012007-08-02 11:10:09 -0400502 scsi_get_resid(cmnd), cmnd->underflow);
dea31012005-04-17 16:05:31 -0500503 host_status = DID_ERROR;
504 }
505 } else if (resp_info & RESID_OVER) {
James Smarte8b62012007-08-02 11:10:09 -0400506 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP,
507 "0720 FCP command x%x residual overrun error. "
508 "Data: x%x x%x \n", cmnd->cmnd[0],
509 scsi_bufflen(cmnd), scsi_get_resid(cmnd));
dea31012005-04-17 16:05:31 -0500510 host_status = DID_ERROR;
511
512 /*
513 * Check SLI validation that all the transfer was actually done
514 * (fcpi_parm should be zero). Apply check only to reads.
515 */
516 } else if ((scsi_status == SAM_STAT_GOOD) && fcpi_parm &&
517 (cmnd->sc_data_direction == DMA_FROM_DEVICE)) {
James Smarte8b62012007-08-02 11:10:09 -0400518 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP | LOG_FCP_ERROR,
519 "0734 FCP Read Check Error Data: "
520 "x%x x%x x%x x%x\n",
521 be32_to_cpu(fcpcmd->fcpDl),
522 be32_to_cpu(fcprsp->rspResId),
523 fcpi_parm, cmnd->cmnd[0]);
dea31012005-04-17 16:05:31 -0500524 host_status = DID_ERROR;
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -0500525 scsi_set_resid(cmnd, scsi_bufflen(cmnd));
dea31012005-04-17 16:05:31 -0500526 }
527
528 out:
529 cmnd->result = ScsiResult(host_status, scsi_status);
530}
531
532static void
533lpfc_scsi_cmd_iocb_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *pIocbIn,
534 struct lpfc_iocbq *pIocbOut)
535{
536 struct lpfc_scsi_buf *lpfc_cmd =
537 (struct lpfc_scsi_buf *) pIocbIn->context1;
James Smart2e0fef82007-06-17 19:56:36 -0500538 struct lpfc_vport *vport = pIocbIn->vport;
dea31012005-04-17 16:05:31 -0500539 struct lpfc_rport_data *rdata = lpfc_cmd->rdata;
540 struct lpfc_nodelist *pnode = rdata->pnode;
541 struct scsi_cmnd *cmd = lpfc_cmd->pCmd;
James.Smart@Emulex.Com445cf4f2005-11-28 11:42:38 -0500542 int result;
543 struct scsi_device *sdev, *tmp_sdev;
544 int depth = 0;
James Smartfa61a542008-01-11 01:52:42 -0500545 unsigned long flags;
dea31012005-04-17 16:05:31 -0500546
547 lpfc_cmd->result = pIocbOut->iocb.un.ulpWord[4];
548 lpfc_cmd->status = pIocbOut->iocb.ulpStatus;
549
550 if (lpfc_cmd->status) {
551 if (lpfc_cmd->status == IOSTAT_LOCAL_REJECT &&
552 (lpfc_cmd->result & IOERR_DRVR_MASK))
553 lpfc_cmd->status = IOSTAT_DRIVER_REJECT;
554 else if (lpfc_cmd->status >= IOSTAT_CNT)
555 lpfc_cmd->status = IOSTAT_DEFAULT;
556
James Smarte8b62012007-08-02 11:10:09 -0400557 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP,
558 "0729 FCP cmd x%x failed <%d/%d> "
559 "status: x%x result: x%x Data: x%x x%x\n",
560 cmd->cmnd[0],
561 cmd->device ? cmd->device->id : 0xffff,
562 cmd->device ? cmd->device->lun : 0xffff,
563 lpfc_cmd->status, lpfc_cmd->result,
564 pIocbOut->iocb.ulpContext,
565 lpfc_cmd->cur_iocbq.iocb.ulpIoTag);
dea31012005-04-17 16:05:31 -0500566
567 switch (lpfc_cmd->status) {
568 case IOSTAT_FCP_RSP_ERROR:
569 /* Call FCP RSP handler to determine result */
James Smart2e0fef82007-06-17 19:56:36 -0500570 lpfc_handle_fcp_err(vport, lpfc_cmd, pIocbOut);
dea31012005-04-17 16:05:31 -0500571 break;
572 case IOSTAT_NPORT_BSY:
573 case IOSTAT_FABRIC_BSY:
574 cmd->result = ScsiResult(DID_BUS_BUSY, 0);
575 break;
James Smart92d7f7b2007-06-17 19:56:38 -0500576 case IOSTAT_LOCAL_REJECT:
577 if (lpfc_cmd->result == RJT_UNAVAIL_PERM ||
578 lpfc_cmd->result == IOERR_NO_RESOURCES ||
579 lpfc_cmd->result == RJT_LOGIN_REQUIRED) {
580 cmd->result = ScsiResult(DID_REQUEUE, 0);
581 break;
582 } /* else: fall through */
dea31012005-04-17 16:05:31 -0500583 default:
584 cmd->result = ScsiResult(DID_ERROR, 0);
585 break;
586 }
587
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -0400588 if ((pnode == NULL )
589 || (pnode->nlp_state != NLP_STE_MAPPED_NODE))
590 cmd->result = ScsiResult(DID_BUS_BUSY, SAM_STAT_BUSY);
dea31012005-04-17 16:05:31 -0500591 } else {
592 cmd->result = ScsiResult(DID_OK, 0);
593 }
594
595 if (cmd->result || lpfc_cmd->fcp_rsp->rspSnsLen) {
596 uint32_t *lp = (uint32_t *)cmd->sense_buffer;
597
James Smarte8b62012007-08-02 11:10:09 -0400598 lpfc_printf_vlog(vport, KERN_INFO, LOG_FCP,
599 "0710 Iodone <%d/%d> cmd %p, error "
600 "x%x SNS x%x x%x Data: x%x x%x\n",
601 cmd->device->id, cmd->device->lun, cmd,
602 cmd->result, *lp, *(lp + 3), cmd->retries,
603 scsi_get_resid(cmd));
dea31012005-04-17 16:05:31 -0500604 }
605
James.Smart@Emulex.Com445cf4f2005-11-28 11:42:38 -0500606 result = cmd->result;
607 sdev = cmd->device;
James Smart1dcb58e2007-04-25 09:51:30 -0400608 lpfc_scsi_unprep_dma_buf(phba, lpfc_cmd);
dea31012005-04-17 16:05:31 -0500609 cmd->scsi_done(cmd);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -0400610
Jamie Wellnitzb8086082006-02-28 22:33:12 -0500611 if (phba->cfg_poll & ENABLE_FCP_RING_POLLING) {
James Smartfa61a542008-01-11 01:52:42 -0500612 /*
613 * If there is a thread waiting for command completion
614 * wake up the thread.
615 */
616 spin_lock_irqsave(sdev->host->host_lock, flags);
617 lpfc_cmd->pCmd = NULL;
618 if (lpfc_cmd->waitq)
619 wake_up(lpfc_cmd->waitq);
620 spin_unlock_irqrestore(sdev->host->host_lock, flags);
Jamie Wellnitzb8086082006-02-28 22:33:12 -0500621 lpfc_release_scsi_buf(phba, lpfc_cmd);
622 return;
623 }
624
James Smart92d7f7b2007-06-17 19:56:38 -0500625
626 if (!result)
James Smart3de2a652007-08-02 11:09:59 -0400627 lpfc_rampup_queue_depth(vport, sdev);
James Smart92d7f7b2007-06-17 19:56:38 -0500628
Jamie Wellnitz0c6ac8e2006-02-28 19:25:36 -0500629 if (!result && pnode != NULL &&
James.Smart@Emulex.Com445cf4f2005-11-28 11:42:38 -0500630 ((jiffies - pnode->last_ramp_up_time) >
631 LPFC_Q_RAMP_UP_INTERVAL * HZ) &&
632 ((jiffies - pnode->last_q_full_time) >
633 LPFC_Q_RAMP_UP_INTERVAL * HZ) &&
James Smart3de2a652007-08-02 11:09:59 -0400634 (vport->cfg_lun_queue_depth > sdev->queue_depth)) {
James.Smart@Emulex.Com445cf4f2005-11-28 11:42:38 -0500635 shost_for_each_device(tmp_sdev, sdev->host) {
James Smart3de2a652007-08-02 11:09:59 -0400636 if (vport->cfg_lun_queue_depth > tmp_sdev->queue_depth){
James.Smart@Emulex.Com445cf4f2005-11-28 11:42:38 -0500637 if (tmp_sdev->id != sdev->id)
638 continue;
639 if (tmp_sdev->ordered_tags)
640 scsi_adjust_queue_depth(tmp_sdev,
641 MSG_ORDERED_TAG,
642 tmp_sdev->queue_depth+1);
643 else
644 scsi_adjust_queue_depth(tmp_sdev,
645 MSG_SIMPLE_TAG,
646 tmp_sdev->queue_depth+1);
647
648 pnode->last_ramp_up_time = jiffies;
649 }
650 }
651 }
652
653 /*
654 * Check for queue full. If the lun is reporting queue full, then
655 * back off the lun queue depth to prevent target overloads.
656 */
Jamie Wellnitz0c6ac8e2006-02-28 19:25:36 -0500657 if (result == SAM_STAT_TASK_SET_FULL && pnode != NULL) {
James.Smart@Emulex.Com445cf4f2005-11-28 11:42:38 -0500658 pnode->last_q_full_time = jiffies;
659
660 shost_for_each_device(tmp_sdev, sdev->host) {
661 if (tmp_sdev->id != sdev->id)
662 continue;
663 depth = scsi_track_queue_full(tmp_sdev,
664 tmp_sdev->queue_depth - 1);
665 }
666 /*
James Smart2e0fef82007-06-17 19:56:36 -0500667 * The queue depth cannot be lowered any more.
James.Smart@Emulex.Com445cf4f2005-11-28 11:42:38 -0500668 * Modify the returned error code to store
669 * the final depth value set by
670 * scsi_track_queue_full.
671 */
672 if (depth == -1)
673 depth = sdev->host->cmd_per_lun;
674
675 if (depth) {
James Smarte8b62012007-08-02 11:10:09 -0400676 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP,
677 "0711 detected queue full - lun queue "
678 "depth adjusted to %d.\n", depth);
James.Smart@Emulex.Com445cf4f2005-11-28 11:42:38 -0500679 }
680 }
681
James Smartfa61a542008-01-11 01:52:42 -0500682 /*
683 * If there is a thread waiting for command completion
684 * wake up the thread.
685 */
686 spin_lock_irqsave(sdev->host->host_lock, flags);
687 lpfc_cmd->pCmd = NULL;
688 if (lpfc_cmd->waitq)
689 wake_up(lpfc_cmd->waitq);
690 spin_unlock_irqrestore(sdev->host->host_lock, flags);
691
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -0400692 lpfc_release_scsi_buf(phba, lpfc_cmd);
dea31012005-04-17 16:05:31 -0500693}
694
695static void
James Smart2e0fef82007-06-17 19:56:36 -0500696lpfc_scsi_prep_cmnd(struct lpfc_vport *vport, struct lpfc_scsi_buf *lpfc_cmd,
697 struct lpfc_nodelist *pnode)
dea31012005-04-17 16:05:31 -0500698{
James Smart2e0fef82007-06-17 19:56:36 -0500699 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -0500700 struct scsi_cmnd *scsi_cmnd = lpfc_cmd->pCmd;
701 struct fcp_cmnd *fcp_cmnd = lpfc_cmd->fcp_cmnd;
702 IOCB_t *iocb_cmd = &lpfc_cmd->cur_iocbq.iocb;
703 struct lpfc_iocbq *piocbq = &(lpfc_cmd->cur_iocbq);
704 int datadir = scsi_cmnd->sc_data_direction;
James Smart7e2b19f2007-10-29 11:00:39 -0400705 char tag[2];
dea31012005-04-17 16:05:31 -0500706
707 lpfc_cmd->fcp_rsp->rspSnsLen = 0;
James.Smart@Emulex.Com69859dc2005-08-10 15:02:37 -0400708 /* clear task management bits */
709 lpfc_cmd->fcp_cmnd->fcpCntl2 = 0;
dea31012005-04-17 16:05:31 -0500710
James.Smart@Emulex.Com91886522005-08-10 15:03:09 -0400711 int_to_scsilun(lpfc_cmd->pCmd->device->lun,
712 &lpfc_cmd->fcp_cmnd->fcp_lun);
dea31012005-04-17 16:05:31 -0500713
714 memcpy(&fcp_cmnd->fcpCdb[0], scsi_cmnd->cmnd, 16);
715
James Smart7e2b19f2007-10-29 11:00:39 -0400716 if (scsi_populate_tag_msg(scsi_cmnd, tag)) {
717 switch (tag[0]) {
dea31012005-04-17 16:05:31 -0500718 case HEAD_OF_QUEUE_TAG:
719 fcp_cmnd->fcpCntl1 = HEAD_OF_Q;
720 break;
721 case ORDERED_QUEUE_TAG:
722 fcp_cmnd->fcpCntl1 = ORDERED_Q;
723 break;
724 default:
725 fcp_cmnd->fcpCntl1 = SIMPLE_Q;
726 break;
727 }
728 } else
729 fcp_cmnd->fcpCntl1 = 0;
730
731 /*
732 * There are three possibilities here - use scatter-gather segment, use
733 * the single mapping, or neither. Start the lpfc command prep by
734 * bumping the bpl beyond the fcp_cmnd and fcp_rsp regions to the first
735 * data bde entry.
736 */
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -0500737 if (scsi_sg_count(scsi_cmnd)) {
dea31012005-04-17 16:05:31 -0500738 if (datadir == DMA_TO_DEVICE) {
739 iocb_cmd->ulpCommand = CMD_FCP_IWRITE64_CR;
740 iocb_cmd->un.fcpi.fcpi_parm = 0;
741 iocb_cmd->ulpPU = 0;
742 fcp_cmnd->fcpCntl3 = WRITE_DATA;
743 phba->fc4OutputRequests++;
744 } else {
745 iocb_cmd->ulpCommand = CMD_FCP_IREAD64_CR;
746 iocb_cmd->ulpPU = PARM_READ_CHECK;
FUJITA Tomonoria0b4f782007-06-17 19:56:39 -0500747 iocb_cmd->un.fcpi.fcpi_parm = scsi_bufflen(scsi_cmnd);
dea31012005-04-17 16:05:31 -0500748 fcp_cmnd->fcpCntl3 = READ_DATA;
749 phba->fc4InputRequests++;
750 }
751 } else {
752 iocb_cmd->ulpCommand = CMD_FCP_ICMND64_CR;
753 iocb_cmd->un.fcpi.fcpi_parm = 0;
754 iocb_cmd->ulpPU = 0;
755 fcp_cmnd->fcpCntl3 = 0;
756 phba->fc4ControlRequests++;
757 }
758
759 /*
760 * Finish initializing those IOCB fields that are independent
761 * of the scsi_cmnd request_buffer
762 */
763 piocbq->iocb.ulpContext = pnode->nlp_rpi;
764 if (pnode->nlp_fcp_info & NLP_FCP_2_DEVICE)
765 piocbq->iocb.ulpFCP2Rcvy = 1;
766
767 piocbq->iocb.ulpClass = (pnode->nlp_fcp_info & 0x0f);
768 piocbq->context1 = lpfc_cmd;
769 piocbq->iocb_cmpl = lpfc_scsi_cmd_iocb_cmpl;
770 piocbq->iocb.ulpTimeout = lpfc_cmd->timeout;
James Smart2e0fef82007-06-17 19:56:36 -0500771 piocbq->vport = vport;
dea31012005-04-17 16:05:31 -0500772}
773
774static int
James Smart2e0fef82007-06-17 19:56:36 -0500775lpfc_scsi_prep_task_mgmt_cmd(struct lpfc_vport *vport,
dea31012005-04-17 16:05:31 -0500776 struct lpfc_scsi_buf *lpfc_cmd,
James Smart420b630d2006-07-06 15:50:16 -0400777 unsigned int lun,
dea31012005-04-17 16:05:31 -0500778 uint8_t task_mgmt_cmd)
779{
dea31012005-04-17 16:05:31 -0500780 struct lpfc_iocbq *piocbq;
781 IOCB_t *piocb;
782 struct fcp_cmnd *fcp_cmnd;
James Smart0b18ac42006-05-01 21:50:40 -0400783 struct lpfc_rport_data *rdata = lpfc_cmd->rdata;
dea31012005-04-17 16:05:31 -0500784 struct lpfc_nodelist *ndlp = rdata->pnode;
785
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -0400786 if ((ndlp == NULL) || (ndlp->nlp_state != NLP_STE_MAPPED_NODE)) {
dea31012005-04-17 16:05:31 -0500787 return 0;
788 }
789
dea31012005-04-17 16:05:31 -0500790 piocbq = &(lpfc_cmd->cur_iocbq);
James Smart2e0fef82007-06-17 19:56:36 -0500791 piocbq->vport = vport;
792
dea31012005-04-17 16:05:31 -0500793 piocb = &piocbq->iocb;
794
795 fcp_cmnd = lpfc_cmd->fcp_cmnd;
James Smart420b630d2006-07-06 15:50:16 -0400796 int_to_scsilun(lun, &lpfc_cmd->fcp_cmnd->fcp_lun);
dea31012005-04-17 16:05:31 -0500797 fcp_cmnd->fcpCntl2 = task_mgmt_cmd;
798
799 piocb->ulpCommand = CMD_FCP_ICMND64_CR;
800
801 piocb->ulpContext = ndlp->nlp_rpi;
802 if (ndlp->nlp_fcp_info & NLP_FCP_2_DEVICE) {
803 piocb->ulpFCP2Rcvy = 1;
804 }
805 piocb->ulpClass = (ndlp->nlp_fcp_info & 0x0f);
806
807 /* ulpTimeout is only one byte */
808 if (lpfc_cmd->timeout > 0xff) {
809 /*
810 * Do not timeout the command at the firmware level.
811 * The driver will provide the timeout mechanism.
812 */
813 piocb->ulpTimeout = 0;
814 } else {
815 piocb->ulpTimeout = lpfc_cmd->timeout;
816 }
817
James Smart2e0fef82007-06-17 19:56:36 -0500818 return 1;
dea31012005-04-17 16:05:31 -0500819}
820
James Smart7054a602007-04-25 09:52:34 -0400821static void
822lpfc_tskmgmt_def_cmpl(struct lpfc_hba *phba,
823 struct lpfc_iocbq *cmdiocbq,
824 struct lpfc_iocbq *rspiocbq)
825{
826 struct lpfc_scsi_buf *lpfc_cmd =
827 (struct lpfc_scsi_buf *) cmdiocbq->context1;
828 if (lpfc_cmd)
829 lpfc_release_scsi_buf(phba, lpfc_cmd);
830 return;
831}
832
dea31012005-04-17 16:05:31 -0500833static int
James Smart2e0fef82007-06-17 19:56:36 -0500834lpfc_scsi_tgt_reset(struct lpfc_scsi_buf *lpfc_cmd, struct lpfc_vport *vport,
James Smart420b630d2006-07-06 15:50:16 -0400835 unsigned tgt_id, unsigned int lun,
836 struct lpfc_rport_data *rdata)
dea31012005-04-17 16:05:31 -0500837{
James Smart2e0fef82007-06-17 19:56:36 -0500838 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -0500839 struct lpfc_iocbq *iocbq;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -0400840 struct lpfc_iocbq *iocbqrsp;
dea31012005-04-17 16:05:31 -0500841 int ret;
842
James Smartf5603512006-12-02 13:35:43 -0500843 if (!rdata->pnode)
844 return FAILED;
845
James Smart0b18ac42006-05-01 21:50:40 -0400846 lpfc_cmd->rdata = rdata;
James Smart2e0fef82007-06-17 19:56:36 -0500847 ret = lpfc_scsi_prep_task_mgmt_cmd(vport, lpfc_cmd, lun,
James Smart420b630d2006-07-06 15:50:16 -0400848 FCP_TARGET_RESET);
dea31012005-04-17 16:05:31 -0500849 if (!ret)
850 return FAILED;
851
dea31012005-04-17 16:05:31 -0500852 iocbq = &lpfc_cmd->cur_iocbq;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -0400853 iocbqrsp = lpfc_sli_get_iocbq(phba);
854
dea31012005-04-17 16:05:31 -0500855 if (!iocbqrsp)
856 return FAILED;
dea31012005-04-17 16:05:31 -0500857
James Smart0b18ac42006-05-01 21:50:40 -0400858 /* Issue Target Reset to TGT <num> */
James Smarte8b62012007-08-02 11:10:09 -0400859 lpfc_printf_vlog(vport, KERN_INFO, LOG_FCP,
860 "0702 Issue Target Reset to TGT %d Data: x%x x%x\n",
861 tgt_id, rdata->pnode->nlp_rpi, rdata->pnode->nlp_flag);
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -0400862 ret = lpfc_sli_issue_iocb_wait(phba,
863 &phba->sli.ring[phba->sli.fcp_ring],
864 iocbq, iocbqrsp, lpfc_cmd->timeout);
dea31012005-04-17 16:05:31 -0500865 if (ret != IOCB_SUCCESS) {
James Smart7054a602007-04-25 09:52:34 -0400866 if (ret == IOCB_TIMEDOUT)
867 iocbq->iocb_cmpl = lpfc_tskmgmt_def_cmpl;
dea31012005-04-17 16:05:31 -0500868 lpfc_cmd->status = IOSTAT_DRIVER_REJECT;
dea31012005-04-17 16:05:31 -0500869 } else {
870 ret = SUCCESS;
871 lpfc_cmd->result = iocbqrsp->iocb.un.ulpWord[4];
872 lpfc_cmd->status = iocbqrsp->iocb.ulpStatus;
873 if (lpfc_cmd->status == IOSTAT_LOCAL_REJECT &&
874 (lpfc_cmd->result & IOERR_DRVR_MASK))
875 lpfc_cmd->status = IOSTAT_DRIVER_REJECT;
876 }
877
James Bottomley604a3e32005-10-29 10:28:33 -0500878 lpfc_sli_release_iocbq(phba, iocbqrsp);
dea31012005-04-17 16:05:31 -0500879 return ret;
880}
881
dea31012005-04-17 16:05:31 -0500882const char *
883lpfc_info(struct Scsi_Host *host)
884{
James Smart2e0fef82007-06-17 19:56:36 -0500885 struct lpfc_vport *vport = (struct lpfc_vport *) host->hostdata;
886 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -0500887 int len;
888 static char lpfcinfobuf[384];
889
890 memset(lpfcinfobuf,0,384);
891 if (phba && phba->pcidev){
892 strncpy(lpfcinfobuf, phba->ModelDesc, 256);
893 len = strlen(lpfcinfobuf);
894 snprintf(lpfcinfobuf + len,
895 384-len,
896 " on PCI bus %02x device %02x irq %d",
897 phba->pcidev->bus->number,
898 phba->pcidev->devfn,
899 phba->pcidev->irq);
900 len = strlen(lpfcinfobuf);
901 if (phba->Port[0]) {
902 snprintf(lpfcinfobuf + len,
903 384-len,
904 " port %s",
905 phba->Port);
906 }
907 }
908 return lpfcinfobuf;
909}
910
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -0500911static __inline__ void lpfc_poll_rearm_timer(struct lpfc_hba * phba)
912{
913 unsigned long poll_tmo_expires =
914 (jiffies + msecs_to_jiffies(phba->cfg_poll_tmo));
915
916 if (phba->sli.ring[LPFC_FCP_RING].txcmplq_cnt)
917 mod_timer(&phba->fcp_poll_timer,
918 poll_tmo_expires);
919}
920
921void lpfc_poll_start_timer(struct lpfc_hba * phba)
922{
923 lpfc_poll_rearm_timer(phba);
924}
925
926void lpfc_poll_timeout(unsigned long ptr)
927{
James Smart2e0fef82007-06-17 19:56:36 -0500928 struct lpfc_hba *phba = (struct lpfc_hba *) ptr;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -0500929
930 if (phba->cfg_poll & ENABLE_FCP_RING_POLLING) {
931 lpfc_sli_poll_fcp_ring (phba);
932 if (phba->cfg_poll & DISABLE_FCP_RING_INT)
933 lpfc_poll_rearm_timer(phba);
934 }
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -0500935}
936
dea31012005-04-17 16:05:31 -0500937static int
938lpfc_queuecommand(struct scsi_cmnd *cmnd, void (*done) (struct scsi_cmnd *))
939{
James Smart2e0fef82007-06-17 19:56:36 -0500940 struct Scsi_Host *shost = cmnd->device->host;
941 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
942 struct lpfc_hba *phba = vport->phba;
943 struct lpfc_sli *psli = &phba->sli;
dea31012005-04-17 16:05:31 -0500944 struct lpfc_rport_data *rdata = cmnd->device->hostdata;
945 struct lpfc_nodelist *ndlp = rdata->pnode;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -0400946 struct lpfc_scsi_buf *lpfc_cmd;
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -0400947 struct fc_rport *rport = starget_to_rport(scsi_target(cmnd->device));
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -0400948 int err;
dea31012005-04-17 16:05:31 -0500949
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -0400950 err = fc_remote_port_chkready(rport);
951 if (err) {
952 cmnd->result = err;
dea31012005-04-17 16:05:31 -0500953 goto out_fail_command;
954 }
955
956 /*
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -0400957 * Catch race where our node has transitioned, but the
958 * transport is still transitioning.
dea31012005-04-17 16:05:31 -0500959 */
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -0400960 if (!ndlp) {
961 cmnd->result = ScsiResult(DID_BUS_BUSY, 0);
962 goto out_fail_command;
dea31012005-04-17 16:05:31 -0500963 }
James Smarted957682007-06-17 19:56:37 -0500964 lpfc_cmd = lpfc_get_scsi_buf(phba);
dea31012005-04-17 16:05:31 -0500965 if (lpfc_cmd == NULL) {
James Smart92d7f7b2007-06-17 19:56:38 -0500966 lpfc_adjust_queue_depth(phba);
967
James Smarte8b62012007-08-02 11:10:09 -0400968 lpfc_printf_vlog(vport, KERN_INFO, LOG_FCP,
969 "0707 driver's buffer pool is empty, "
970 "IO busied\n");
dea31012005-04-17 16:05:31 -0500971 goto out_host_busy;
972 }
973
974 /*
975 * Store the midlayer's command structure for the completion phase
976 * and complete the command initialization.
977 */
978 lpfc_cmd->pCmd = cmnd;
979 lpfc_cmd->rdata = rdata;
980 lpfc_cmd->timeout = 0;
981 cmnd->host_scribble = (unsigned char *)lpfc_cmd;
982 cmnd->scsi_done = done;
983
984 err = lpfc_scsi_prep_dma_buf(phba, lpfc_cmd);
985 if (err)
986 goto out_host_busy_free_buf;
987
James Smart2e0fef82007-06-17 19:56:36 -0500988 lpfc_scsi_prep_cmnd(vport, lpfc_cmd, ndlp);
dea31012005-04-17 16:05:31 -0500989
990 err = lpfc_sli_issue_iocb(phba, &phba->sli.ring[psli->fcp_ring],
James Smart92d7f7b2007-06-17 19:56:38 -0500991 &lpfc_cmd->cur_iocbq, SLI_IOCB_RET_IOCB);
dea31012005-04-17 16:05:31 -0500992 if (err)
993 goto out_host_busy_free_buf;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -0500994
995 if (phba->cfg_poll & ENABLE_FCP_RING_POLLING) {
996 lpfc_sli_poll_fcp_ring(phba);
997 if (phba->cfg_poll & DISABLE_FCP_RING_INT)
998 lpfc_poll_rearm_timer(phba);
999 }
1000
dea31012005-04-17 16:05:31 -05001001 return 0;
1002
1003 out_host_busy_free_buf:
James Smartbcf4dbf2006-07-06 15:50:08 -04001004 lpfc_scsi_unprep_dma_buf(phba, lpfc_cmd);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04001005 lpfc_release_scsi_buf(phba, lpfc_cmd);
dea31012005-04-17 16:05:31 -05001006 out_host_busy:
1007 return SCSI_MLQUEUE_HOST_BUSY;
1008
1009 out_fail_command:
1010 done(cmnd);
1011 return 0;
1012}
1013
James Smarta90f5682006-08-17 11:58:04 -04001014static void
1015lpfc_block_error_handler(struct scsi_cmnd *cmnd)
1016{
1017 struct Scsi_Host *shost = cmnd->device->host;
1018 struct fc_rport *rport = starget_to_rport(scsi_target(cmnd->device));
1019
1020 spin_lock_irq(shost->host_lock);
1021 while (rport->port_state == FC_PORTSTATE_BLOCKED) {
1022 spin_unlock_irq(shost->host_lock);
1023 msleep(1000);
1024 spin_lock_irq(shost->host_lock);
1025 }
1026 spin_unlock_irq(shost->host_lock);
1027 return;
1028}
James.Smart@Emulex.Com63c59c32005-11-28 11:41:53 -05001029
dea31012005-04-17 16:05:31 -05001030static int
James.Smart@Emulex.Com63c59c32005-11-28 11:41:53 -05001031lpfc_abort_handler(struct scsi_cmnd *cmnd)
dea31012005-04-17 16:05:31 -05001032{
James Smart2e0fef82007-06-17 19:56:36 -05001033 struct Scsi_Host *shost = cmnd->device->host;
1034 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1035 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001036 struct lpfc_sli_ring *pring = &phba->sli.ring[phba->sli.fcp_ring];
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04001037 struct lpfc_iocbq *iocb;
1038 struct lpfc_iocbq *abtsiocb;
dea31012005-04-17 16:05:31 -05001039 struct lpfc_scsi_buf *lpfc_cmd;
dea31012005-04-17 16:05:31 -05001040 IOCB_t *cmd, *icmd;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04001041 int ret = SUCCESS;
James Smartfa61a542008-01-11 01:52:42 -05001042 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(waitq);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04001043
James Smarta90f5682006-08-17 11:58:04 -04001044 lpfc_block_error_handler(cmnd);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04001045 lpfc_cmd = (struct lpfc_scsi_buf *)cmnd->host_scribble;
1046 BUG_ON(!lpfc_cmd);
dea31012005-04-17 16:05:31 -05001047
1048 /*
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04001049 * If pCmd field of the corresponding lpfc_scsi_buf structure
1050 * points to a different SCSI command, then the driver has
1051 * already completed this command, but the midlayer did not
1052 * see the completion before the eh fired. Just return
1053 * SUCCESS.
dea31012005-04-17 16:05:31 -05001054 */
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04001055 iocb = &lpfc_cmd->cur_iocbq;
1056 if (lpfc_cmd->pCmd != cmnd)
1057 goto out;
dea31012005-04-17 16:05:31 -05001058
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04001059 BUG_ON(iocb->context1 != lpfc_cmd);
dea31012005-04-17 16:05:31 -05001060
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04001061 abtsiocb = lpfc_sli_get_iocbq(phba);
1062 if (abtsiocb == NULL) {
1063 ret = FAILED;
dea31012005-04-17 16:05:31 -05001064 goto out;
1065 }
1066
dea31012005-04-17 16:05:31 -05001067 /*
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04001068 * The scsi command can not be in txq and it is in flight because the
1069 * pCmd is still pointig at the SCSI command we have to abort. There
1070 * is no need to search the txcmplq. Just send an abort to the FW.
dea31012005-04-17 16:05:31 -05001071 */
dea31012005-04-17 16:05:31 -05001072
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04001073 cmd = &iocb->iocb;
1074 icmd = &abtsiocb->iocb;
1075 icmd->un.acxri.abortType = ABORT_TYPE_ABTS;
1076 icmd->un.acxri.abortContextTag = cmd->ulpContext;
1077 icmd->un.acxri.abortIoTag = cmd->ulpIoTag;
dea31012005-04-17 16:05:31 -05001078
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04001079 icmd->ulpLe = 1;
1080 icmd->ulpClass = cmd->ulpClass;
James Smart2e0fef82007-06-17 19:56:36 -05001081 if (lpfc_is_link_up(phba))
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04001082 icmd->ulpCommand = CMD_ABORT_XRI_CN;
1083 else
1084 icmd->ulpCommand = CMD_CLOSE_XRI_CN;
dea31012005-04-17 16:05:31 -05001085
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04001086 abtsiocb->iocb_cmpl = lpfc_sli_abort_fcp_cmpl;
James Smart2e0fef82007-06-17 19:56:36 -05001087 abtsiocb->vport = vport;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04001088 if (lpfc_sli_issue_iocb(phba, pring, abtsiocb, 0) == IOCB_ERROR) {
1089 lpfc_sli_release_iocbq(phba, abtsiocb);
1090 ret = FAILED;
1091 goto out;
1092 }
1093
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001094 if (phba->cfg_poll & DISABLE_FCP_RING_INT)
1095 lpfc_sli_poll_fcp_ring (phba);
1096
James Smartfa61a542008-01-11 01:52:42 -05001097 lpfc_cmd->waitq = &waitq;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04001098 /* Wait for abort to complete */
James Smartfa61a542008-01-11 01:52:42 -05001099 wait_event_timeout(waitq,
1100 (lpfc_cmd->pCmd != cmnd),
1101 (2*vport->cfg_devloss_tmo*HZ));
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001102
James Smartfa61a542008-01-11 01:52:42 -05001103 spin_lock_irq(shost->host_lock);
1104 lpfc_cmd->waitq = NULL;
1105 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001106
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04001107 if (lpfc_cmd->pCmd == cmnd) {
1108 ret = FAILED;
James Smarte8b62012007-08-02 11:10:09 -04001109 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
1110 "0748 abort handler timed out waiting "
1111 "for abort to complete: ret %#x, ID %d, "
1112 "LUN %d, snum %#lx\n",
1113 ret, cmnd->device->id, cmnd->device->lun,
1114 cmnd->serial_number);
dea31012005-04-17 16:05:31 -05001115 }
1116
1117 out:
James Smarte8b62012007-08-02 11:10:09 -04001118 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP,
1119 "0749 SCSI Layer I/O Abort Request Status x%x ID %d "
1120 "LUN %d snum %#lx\n", ret, cmnd->device->id,
1121 cmnd->device->lun, cmnd->serial_number);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04001122 return ret;
dea31012005-04-17 16:05:31 -05001123}
1124
1125static int
James Smart7054a602007-04-25 09:52:34 -04001126lpfc_device_reset_handler(struct scsi_cmnd *cmnd)
dea31012005-04-17 16:05:31 -05001127{
James Smart2e0fef82007-06-17 19:56:36 -05001128 struct Scsi_Host *shost = cmnd->device->host;
1129 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1130 struct lpfc_hba *phba = vport->phba;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04001131 struct lpfc_scsi_buf *lpfc_cmd;
1132 struct lpfc_iocbq *iocbq, *iocbqrsp;
dea31012005-04-17 16:05:31 -05001133 struct lpfc_rport_data *rdata = cmnd->device->hostdata;
1134 struct lpfc_nodelist *pnode = rdata->pnode;
James.Smart@Emulex.Com6175c022005-11-28 11:42:05 -05001135 uint32_t cmd_result = 0, cmd_status = 0;
dea31012005-04-17 16:05:31 -05001136 int ret = FAILED;
James Smart7054a602007-04-25 09:52:34 -04001137 int iocb_status = IOCB_SUCCESS;
dea31012005-04-17 16:05:31 -05001138 int cnt, loopcnt;
1139
James Smarta90f5682006-08-17 11:58:04 -04001140 lpfc_block_error_handler(cmnd);
James Smartf5603512006-12-02 13:35:43 -05001141 loopcnt = 0;
dea31012005-04-17 16:05:31 -05001142 /*
1143 * If target is not in a MAPPED state, delay the reset until
James Smartc01f3202006-08-18 17:47:08 -04001144 * target is rediscovered or devloss timeout expires.
dea31012005-04-17 16:05:31 -05001145 */
James Smart92d7f7b2007-06-17 19:56:38 -05001146 while (1) {
dea31012005-04-17 16:05:31 -05001147 if (!pnode)
James Smart7054a602007-04-25 09:52:34 -04001148 goto out;
dea31012005-04-17 16:05:31 -05001149
1150 if (pnode->nlp_state != NLP_STE_MAPPED_NODE) {
Nishanth Aravamudana9a30472005-11-07 01:01:20 -08001151 schedule_timeout_uninterruptible(msecs_to_jiffies(500));
James Smartf5603512006-12-02 13:35:43 -05001152 loopcnt++;
1153 rdata = cmnd->device->hostdata;
1154 if (!rdata ||
James Smart3de2a652007-08-02 11:09:59 -04001155 (loopcnt > ((vport->cfg_devloss_tmo * 2) + 1))){
James Smarte8b62012007-08-02 11:10:09 -04001156 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
1157 "0721 LUN Reset rport "
1158 "failure: cnt x%x rdata x%p\n",
1159 loopcnt, rdata);
James Smartf5603512006-12-02 13:35:43 -05001160 goto out;
1161 }
1162 pnode = rdata->pnode;
1163 if (!pnode)
James Smart7054a602007-04-25 09:52:34 -04001164 goto out;
dea31012005-04-17 16:05:31 -05001165 }
James Smartf5603512006-12-02 13:35:43 -05001166 if (pnode->nlp_state == NLP_STE_MAPPED_NODE)
dea31012005-04-17 16:05:31 -05001167 break;
1168 }
1169
James Smart2e0fef82007-06-17 19:56:36 -05001170 lpfc_cmd = lpfc_get_scsi_buf(phba);
dea31012005-04-17 16:05:31 -05001171 if (lpfc_cmd == NULL)
1172 goto out;
1173
dea31012005-04-17 16:05:31 -05001174 lpfc_cmd->timeout = 60;
James Smart0b18ac42006-05-01 21:50:40 -04001175 lpfc_cmd->rdata = rdata;
dea31012005-04-17 16:05:31 -05001176
James Smart2e0fef82007-06-17 19:56:36 -05001177 ret = lpfc_scsi_prep_task_mgmt_cmd(vport, lpfc_cmd, cmnd->device->lun,
James Smart7054a602007-04-25 09:52:34 -04001178 FCP_TARGET_RESET);
dea31012005-04-17 16:05:31 -05001179 if (!ret)
1180 goto out_free_scsi_buf;
1181
1182 iocbq = &lpfc_cmd->cur_iocbq;
1183
1184 /* get a buffer for this IOCB command response */
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04001185 iocbqrsp = lpfc_sli_get_iocbq(phba);
dea31012005-04-17 16:05:31 -05001186 if (iocbqrsp == NULL)
1187 goto out_free_scsi_buf;
1188
James Smarte8b62012007-08-02 11:10:09 -04001189 lpfc_printf_vlog(vport, KERN_INFO, LOG_FCP,
1190 "0703 Issue target reset to TGT %d LUN %d "
1191 "rpi x%x nlp_flag x%x\n", cmnd->device->id,
1192 cmnd->device->lun, pnode->nlp_rpi, pnode->nlp_flag);
James Smart7054a602007-04-25 09:52:34 -04001193 iocb_status = lpfc_sli_issue_iocb_wait(phba,
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04001194 &phba->sli.ring[phba->sli.fcp_ring],
1195 iocbq, iocbqrsp, lpfc_cmd->timeout);
dea31012005-04-17 16:05:31 -05001196
James Smart7054a602007-04-25 09:52:34 -04001197 if (iocb_status == IOCB_TIMEDOUT)
1198 iocbq->iocb_cmpl = lpfc_tskmgmt_def_cmpl;
1199
1200 if (iocb_status == IOCB_SUCCESS)
1201 ret = SUCCESS;
1202 else
1203 ret = iocb_status;
James.Smart@Emulex.Com6175c022005-11-28 11:42:05 -05001204
1205 cmd_result = iocbqrsp->iocb.un.ulpWord[4];
1206 cmd_status = iocbqrsp->iocb.ulpStatus;
1207
1208 lpfc_sli_release_iocbq(phba, iocbqrsp);
dea31012005-04-17 16:05:31 -05001209
1210 /*
James.Smart@Emulex.Com6175c022005-11-28 11:42:05 -05001211 * All outstanding txcmplq I/Os should have been aborted by the device.
dea31012005-04-17 16:05:31 -05001212 * Unfortunately, some targets do not abide by this forcing the driver
1213 * to double check.
1214 */
James Smart51ef4c22007-08-02 11:10:31 -04001215 cnt = lpfc_sli_sum_iocb(vport, cmnd->device->id, cmnd->device->lun,
James.Smart@Emulex.Com6175c022005-11-28 11:42:05 -05001216 LPFC_CTX_LUN);
1217 if (cnt)
James Smart51ef4c22007-08-02 11:10:31 -04001218 lpfc_sli_abort_iocb(vport, &phba->sli.ring[phba->sli.fcp_ring],
James.Smart@Emulex.Com6175c022005-11-28 11:42:05 -05001219 cmnd->device->id, cmnd->device->lun,
James Smart51ef4c22007-08-02 11:10:31 -04001220 LPFC_CTX_LUN);
dea31012005-04-17 16:05:31 -05001221 loopcnt = 0;
James Smart92d7f7b2007-06-17 19:56:38 -05001222 while(cnt) {
Nishanth Aravamudana9a30472005-11-07 01:01:20 -08001223 schedule_timeout_uninterruptible(LPFC_RESET_WAIT*HZ);
dea31012005-04-17 16:05:31 -05001224
1225 if (++loopcnt
James Smart3de2a652007-08-02 11:09:59 -04001226 > (2 * vport->cfg_devloss_tmo)/LPFC_RESET_WAIT)
dea31012005-04-17 16:05:31 -05001227 break;
James.Smart@Emulex.Com6175c022005-11-28 11:42:05 -05001228
James Smart51ef4c22007-08-02 11:10:31 -04001229 cnt = lpfc_sli_sum_iocb(vport, cmnd->device->id,
1230 cmnd->device->lun, LPFC_CTX_LUN);
dea31012005-04-17 16:05:31 -05001231 }
1232
1233 if (cnt) {
James Smarte8b62012007-08-02 11:10:09 -04001234 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
1235 "0719 device reset I/O flush failure: "
1236 "cnt x%x\n", cnt);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04001237 ret = FAILED;
dea31012005-04-17 16:05:31 -05001238 }
1239
dea31012005-04-17 16:05:31 -05001240out_free_scsi_buf:
James Smart7054a602007-04-25 09:52:34 -04001241 if (iocb_status != IOCB_TIMEDOUT) {
1242 lpfc_release_scsi_buf(phba, lpfc_cmd);
1243 }
James Smarte8b62012007-08-02 11:10:09 -04001244 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
1245 "0713 SCSI layer issued device reset (%d, %d) "
1246 "return x%x status x%x result x%x\n",
1247 cmnd->device->id, cmnd->device->lun, ret,
1248 cmd_status, cmd_result);
dea31012005-04-17 16:05:31 -05001249out:
1250 return ret;
1251}
1252
Jeff Garzik 94d0e7b82005-05-28 07:55:48 -04001253static int
James Smart7054a602007-04-25 09:52:34 -04001254lpfc_bus_reset_handler(struct scsi_cmnd *cmnd)
dea31012005-04-17 16:05:31 -05001255{
James Smart2e0fef82007-06-17 19:56:36 -05001256 struct Scsi_Host *shost = cmnd->device->host;
1257 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1258 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001259 struct lpfc_nodelist *ndlp = NULL;
1260 int match;
1261 int ret = FAILED, i, err_count = 0;
1262 int cnt, loopcnt;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04001263 struct lpfc_scsi_buf * lpfc_cmd;
dea31012005-04-17 16:05:31 -05001264
James Smarta90f5682006-08-17 11:58:04 -04001265 lpfc_block_error_handler(cmnd);
James.Smart@Emulex.Com63c59c32005-11-28 11:41:53 -05001266
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001267 lpfc_cmd = lpfc_get_scsi_buf(phba);
dea31012005-04-17 16:05:31 -05001268 if (lpfc_cmd == NULL)
1269 goto out;
1270
1271 /* The lpfc_cmd storage is reused. Set all loop invariants. */
1272 lpfc_cmd->timeout = 60;
dea31012005-04-17 16:05:31 -05001273
1274 /*
1275 * Since the driver manages a single bus device, reset all
1276 * targets known to the driver. Should any target reset
1277 * fail, this routine returns failure to the midlayer.
1278 */
James Smarte17da182006-07-06 15:49:25 -04001279 for (i = 0; i < LPFC_MAX_TARGET; i++) {
James Smart685f0bf2007-04-25 09:53:08 -04001280 /* Search for mapped node by target ID */
dea31012005-04-17 16:05:31 -05001281 match = 0;
James Smart2e0fef82007-06-17 19:56:36 -05001282 spin_lock_irq(shost->host_lock);
1283 list_for_each_entry(ndlp, &vport->fc_nodes, nlp_listp) {
James Smart685f0bf2007-04-25 09:53:08 -04001284 if (ndlp->nlp_state == NLP_STE_MAPPED_NODE &&
1285 i == ndlp->nlp_sid &&
1286 ndlp->rport) {
dea31012005-04-17 16:05:31 -05001287 match = 1;
1288 break;
1289 }
1290 }
James Smart2e0fef82007-06-17 19:56:36 -05001291 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001292 if (!match)
1293 continue;
1294
James Smart2e0fef82007-06-17 19:56:36 -05001295 ret = lpfc_scsi_tgt_reset(lpfc_cmd, vport, i,
1296 cmnd->device->lun,
James Smart420b630d2006-07-06 15:50:16 -04001297 ndlp->rport->dd_data);
dea31012005-04-17 16:05:31 -05001298 if (ret != SUCCESS) {
James Smarte8b62012007-08-02 11:10:09 -04001299 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
1300 "0700 Bus Reset on target %d failed\n",
1301 i);
dea31012005-04-17 16:05:31 -05001302 err_count++;
James Smart7054a602007-04-25 09:52:34 -04001303 break;
dea31012005-04-17 16:05:31 -05001304 }
1305 }
1306
James Smart7054a602007-04-25 09:52:34 -04001307 if (ret != IOCB_TIMEDOUT)
1308 lpfc_release_scsi_buf(phba, lpfc_cmd);
1309
James.Smart@Emulex.Com6175c022005-11-28 11:42:05 -05001310 if (err_count == 0)
1311 ret = SUCCESS;
James Smart7054a602007-04-25 09:52:34 -04001312 else
1313 ret = FAILED;
James.Smart@Emulex.Com6175c022005-11-28 11:42:05 -05001314
1315 /*
1316 * All outstanding txcmplq I/Os should have been aborted by
1317 * the targets. Unfortunately, some targets do not abide by
1318 * this forcing the driver to double check.
1319 */
James Smart51ef4c22007-08-02 11:10:31 -04001320 cnt = lpfc_sli_sum_iocb(vport, 0, 0, LPFC_CTX_HOST);
James.Smart@Emulex.Com6175c022005-11-28 11:42:05 -05001321 if (cnt)
James Smart51ef4c22007-08-02 11:10:31 -04001322 lpfc_sli_abort_iocb(vport, &phba->sli.ring[phba->sli.fcp_ring],
1323 0, 0, LPFC_CTX_HOST);
dea31012005-04-17 16:05:31 -05001324 loopcnt = 0;
James Smart92d7f7b2007-06-17 19:56:38 -05001325 while(cnt) {
Nishanth Aravamudana9a30472005-11-07 01:01:20 -08001326 schedule_timeout_uninterruptible(LPFC_RESET_WAIT*HZ);
dea31012005-04-17 16:05:31 -05001327
1328 if (++loopcnt
James Smart3de2a652007-08-02 11:09:59 -04001329 > (2 * vport->cfg_devloss_tmo)/LPFC_RESET_WAIT)
dea31012005-04-17 16:05:31 -05001330 break;
James.Smart@Emulex.Com6175c022005-11-28 11:42:05 -05001331
James Smart51ef4c22007-08-02 11:10:31 -04001332 cnt = lpfc_sli_sum_iocb(vport, 0, 0, LPFC_CTX_HOST);
dea31012005-04-17 16:05:31 -05001333 }
1334
1335 if (cnt) {
James Smarte8b62012007-08-02 11:10:09 -04001336 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
1337 "0715 Bus Reset I/O flush failure: "
1338 "cnt x%x left x%x\n", cnt, i);
James.Smart@Emulex.Com6175c022005-11-28 11:42:05 -05001339 ret = FAILED;
dea31012005-04-17 16:05:31 -05001340 }
1341
James Smarte8b62012007-08-02 11:10:09 -04001342 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
1343 "0714 SCSI layer issued Bus Reset Data: x%x\n", ret);
dea31012005-04-17 16:05:31 -05001344out:
1345 return ret;
1346}
1347
1348static int
dea31012005-04-17 16:05:31 -05001349lpfc_slave_alloc(struct scsi_device *sdev)
1350{
James Smart2e0fef82007-06-17 19:56:36 -05001351 struct lpfc_vport *vport = (struct lpfc_vport *) sdev->host->hostdata;
1352 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001353 struct lpfc_scsi_buf *scsi_buf = NULL;
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04001354 struct fc_rport *rport = starget_to_rport(scsi_target(sdev));
dea31012005-04-17 16:05:31 -05001355 uint32_t total = 0, i;
1356 uint32_t num_to_alloc = 0;
1357 unsigned long flags;
dea31012005-04-17 16:05:31 -05001358
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04001359 if (!rport || fc_remote_port_chkready(rport))
dea31012005-04-17 16:05:31 -05001360 return -ENXIO;
1361
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04001362 sdev->hostdata = rport->dd_data;
dea31012005-04-17 16:05:31 -05001363
1364 /*
1365 * Populate the cmds_per_lun count scsi_bufs into this host's globally
1366 * available list of scsi buffers. Don't allocate more than the
James.Smart@Emulex.Coma784efb2005-10-28 20:29:51 -04001367 * HBA limit conveyed to the midlayer via the host structure. The
1368 * formula accounts for the lun_queue_depth + error handlers + 1
1369 * extra. This list of scsi bufs exists for the lifetime of the driver.
dea31012005-04-17 16:05:31 -05001370 */
1371 total = phba->total_scsi_bufs;
James Smart3de2a652007-08-02 11:09:59 -04001372 num_to_alloc = vport->cfg_lun_queue_depth + 2;
James Smart92d7f7b2007-06-17 19:56:38 -05001373
1374 /* Allow some exchanges to be available always to complete discovery */
1375 if (total >= phba->cfg_hba_queue_depth - LPFC_DISC_IOCB_BUFF_COUNT ) {
James Smarte8b62012007-08-02 11:10:09 -04001376 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP,
1377 "0704 At limitation of %d preallocated "
1378 "command buffers\n", total);
dea31012005-04-17 16:05:31 -05001379 return 0;
James Smart92d7f7b2007-06-17 19:56:38 -05001380 /* Allow some exchanges to be available always to complete discovery */
1381 } else if (total + num_to_alloc >
1382 phba->cfg_hba_queue_depth - LPFC_DISC_IOCB_BUFF_COUNT ) {
James Smarte8b62012007-08-02 11:10:09 -04001383 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP,
1384 "0705 Allocation request of %d "
1385 "command buffers will exceed max of %d. "
1386 "Reducing allocation request to %d.\n",
1387 num_to_alloc, phba->cfg_hba_queue_depth,
1388 (phba->cfg_hba_queue_depth - total));
dea31012005-04-17 16:05:31 -05001389 num_to_alloc = phba->cfg_hba_queue_depth - total;
1390 }
1391
1392 for (i = 0; i < num_to_alloc; i++) {
James Smart2e0fef82007-06-17 19:56:36 -05001393 scsi_buf = lpfc_new_scsi_buf(vport);
dea31012005-04-17 16:05:31 -05001394 if (!scsi_buf) {
James Smarte8b62012007-08-02 11:10:09 -04001395 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
1396 "0706 Failed to allocate "
1397 "command buffer\n");
dea31012005-04-17 16:05:31 -05001398 break;
1399 }
1400
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001401 spin_lock_irqsave(&phba->scsi_buf_list_lock, flags);
dea31012005-04-17 16:05:31 -05001402 phba->total_scsi_bufs++;
1403 list_add_tail(&scsi_buf->list, &phba->lpfc_scsi_buf_list);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001404 spin_unlock_irqrestore(&phba->scsi_buf_list_lock, flags);
dea31012005-04-17 16:05:31 -05001405 }
1406 return 0;
1407}
1408
1409static int
1410lpfc_slave_configure(struct scsi_device *sdev)
1411{
James Smart2e0fef82007-06-17 19:56:36 -05001412 struct lpfc_vport *vport = (struct lpfc_vport *) sdev->host->hostdata;
1413 struct lpfc_hba *phba = vport->phba;
1414 struct fc_rport *rport = starget_to_rport(sdev->sdev_target);
dea31012005-04-17 16:05:31 -05001415
1416 if (sdev->tagged_supported)
James Smart3de2a652007-08-02 11:09:59 -04001417 scsi_activate_tcq(sdev, vport->cfg_lun_queue_depth);
dea31012005-04-17 16:05:31 -05001418 else
James Smart3de2a652007-08-02 11:09:59 -04001419 scsi_deactivate_tcq(sdev, vport->cfg_lun_queue_depth);
dea31012005-04-17 16:05:31 -05001420
1421 /*
1422 * Initialize the fc transport attributes for the target
1423 * containing this scsi device. Also note that the driver's
1424 * target pointer is stored in the starget_data for the
1425 * driver's sysfs entry point functions.
1426 */
James Smart3de2a652007-08-02 11:09:59 -04001427 rport->dev_loss_tmo = vport->cfg_devloss_tmo;
dea31012005-04-17 16:05:31 -05001428
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001429 if (phba->cfg_poll & ENABLE_FCP_RING_POLLING) {
1430 lpfc_sli_poll_fcp_ring(phba);
1431 if (phba->cfg_poll & DISABLE_FCP_RING_INT)
1432 lpfc_poll_rearm_timer(phba);
1433 }
1434
dea31012005-04-17 16:05:31 -05001435 return 0;
1436}
1437
1438static void
1439lpfc_slave_destroy(struct scsi_device *sdev)
1440{
1441 sdev->hostdata = NULL;
1442 return;
1443}
1444
James Smart92d7f7b2007-06-17 19:56:38 -05001445
dea31012005-04-17 16:05:31 -05001446struct scsi_host_template lpfc_template = {
1447 .module = THIS_MODULE,
1448 .name = LPFC_DRIVER_NAME,
1449 .info = lpfc_info,
1450 .queuecommand = lpfc_queuecommand,
1451 .eh_abort_handler = lpfc_abort_handler,
James Smart7054a602007-04-25 09:52:34 -04001452 .eh_device_reset_handler= lpfc_device_reset_handler,
1453 .eh_bus_reset_handler = lpfc_bus_reset_handler,
dea31012005-04-17 16:05:31 -05001454 .slave_alloc = lpfc_slave_alloc,
1455 .slave_configure = lpfc_slave_configure,
1456 .slave_destroy = lpfc_slave_destroy,
James Smart47a86172007-04-25 09:53:22 -04001457 .scan_finished = lpfc_scan_finished,
dea31012005-04-17 16:05:31 -05001458 .this_id = -1,
1459 .sg_tablesize = LPFC_SG_SEG_CNT,
FUJITA Tomonori9cb83c72007-10-16 11:24:32 +02001460 .use_sg_chaining = ENABLE_SG_CHAINING,
dea31012005-04-17 16:05:31 -05001461 .cmd_per_lun = LPFC_CMD_PER_LUN,
1462 .use_clustering = ENABLE_CLUSTERING,
James Smart2e0fef82007-06-17 19:56:36 -05001463 .shost_attrs = lpfc_hba_attrs,
James.Smart@Emulex.Com564b2962005-06-25 10:34:17 -04001464 .max_sectors = 0xFFFF,
dea31012005-04-17 16:05:31 -05001465};
James Smart3de2a652007-08-02 11:09:59 -04001466
1467struct scsi_host_template lpfc_vport_template = {
1468 .module = THIS_MODULE,
1469 .name = LPFC_DRIVER_NAME,
1470 .info = lpfc_info,
1471 .queuecommand = lpfc_queuecommand,
1472 .eh_abort_handler = lpfc_abort_handler,
1473 .eh_device_reset_handler= lpfc_device_reset_handler,
1474 .eh_bus_reset_handler = lpfc_bus_reset_handler,
1475 .slave_alloc = lpfc_slave_alloc,
1476 .slave_configure = lpfc_slave_configure,
1477 .slave_destroy = lpfc_slave_destroy,
1478 .scan_finished = lpfc_scan_finished,
1479 .this_id = -1,
1480 .sg_tablesize = LPFC_SG_SEG_CNT,
1481 .cmd_per_lun = LPFC_CMD_PER_LUN,
1482 .use_clustering = ENABLE_CLUSTERING,
FUJITA Tomonori9cb83c72007-10-16 11:24:32 +02001483 .use_sg_chaining = ENABLE_SG_CHAINING,
James Smart3de2a652007-08-02 11:09:59 -04001484 .shost_attrs = lpfc_vport_attrs,
1485 .max_sectors = 0xFFFF,
1486};