GNU Linux-libre 4.9.311-gnu1
[releases.git] / drivers / scsi / lpfc / lpfc_scsi.c
1 /*******************************************************************
2  * This file is part of the Emulex Linux Device Driver for         *
3  * Fibre Channel Host Bus Adapters.                                *
4  * Copyright (C) 2004-2016 Emulex.  All rights reserved.           *
5  * EMULEX and SLI are trademarks of Emulex.                        *
6  * www.emulex.com                                                  *
7  * Portions Copyright (C) 2004-2005 Christoph Hellwig              *
8  *                                                                 *
9  * This program is free software; you can redistribute it and/or   *
10  * 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.                                     *
20  *******************************************************************/
21 #include <linux/pci.h>
22 #include <linux/slab.h>
23 #include <linux/interrupt.h>
24 #include <linux/export.h>
25 #include <linux/delay.h>
26 #include <asm/unaligned.h>
27 #include <linux/crc-t10dif.h>
28 #include <net/checksum.h>
29
30 #include <scsi/scsi.h>
31 #include <scsi/scsi_device.h>
32 #include <scsi/scsi_eh.h>
33 #include <scsi/scsi_host.h>
34 #include <scsi/scsi_tcq.h>
35 #include <scsi/scsi_transport_fc.h>
36
37 #include "lpfc_version.h"
38 #include "lpfc_hw4.h"
39 #include "lpfc_hw.h"
40 #include "lpfc_sli.h"
41 #include "lpfc_sli4.h"
42 #include "lpfc_nl.h"
43 #include "lpfc_disc.h"
44 #include "lpfc.h"
45 #include "lpfc_scsi.h"
46 #include "lpfc_logmsg.h"
47 #include "lpfc_crtn.h"
48 #include "lpfc_vport.h"
49
50 #define LPFC_RESET_WAIT  2
51 #define LPFC_ABORT_WAIT  2
52
53 int _dump_buf_done = 1;
54
55 static char *dif_op_str[] = {
56         "PROT_NORMAL",
57         "PROT_READ_INSERT",
58         "PROT_WRITE_STRIP",
59         "PROT_READ_STRIP",
60         "PROT_WRITE_INSERT",
61         "PROT_READ_PASS",
62         "PROT_WRITE_PASS",
63 };
64
65 struct scsi_dif_tuple {
66         __be16 guard_tag;       /* Checksum */
67         __be16 app_tag;         /* Opaque storage */
68         __be32 ref_tag;         /* Target LBA or indirect LBA */
69 };
70
71 static struct lpfc_rport_data *
72 lpfc_rport_data_from_scsi_device(struct scsi_device *sdev)
73 {
74         struct lpfc_vport *vport = (struct lpfc_vport *)sdev->host->hostdata;
75
76         if (vport->phba->cfg_fof)
77                 return ((struct lpfc_device_data *)sdev->hostdata)->rport_data;
78         else
79                 return (struct lpfc_rport_data *)sdev->hostdata;
80 }
81
82 static void
83 lpfc_release_scsi_buf_s4(struct lpfc_hba *phba, struct lpfc_scsi_buf *psb);
84 static void
85 lpfc_release_scsi_buf_s3(struct lpfc_hba *phba, struct lpfc_scsi_buf *psb);
86 static int
87 lpfc_prot_group_type(struct lpfc_hba *phba, struct scsi_cmnd *sc);
88
89 static void
90 lpfc_debug_save_data(struct lpfc_hba *phba, struct scsi_cmnd *cmnd)
91 {
92         void *src, *dst;
93         struct scatterlist *sgde = scsi_sglist(cmnd);
94
95         if (!_dump_buf_data) {
96                 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
97                         "9050 BLKGRD: ERROR %s _dump_buf_data is NULL\n",
98                                 __func__);
99                 return;
100         }
101
102
103         if (!sgde) {
104                 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
105                         "9051 BLKGRD: ERROR: data scatterlist is null\n");
106                 return;
107         }
108
109         dst = (void *) _dump_buf_data;
110         while (sgde) {
111                 src = sg_virt(sgde);
112                 memcpy(dst, src, sgde->length);
113                 dst += sgde->length;
114                 sgde = sg_next(sgde);
115         }
116 }
117
118 static void
119 lpfc_debug_save_dif(struct lpfc_hba *phba, struct scsi_cmnd *cmnd)
120 {
121         void *src, *dst;
122         struct scatterlist *sgde = scsi_prot_sglist(cmnd);
123
124         if (!_dump_buf_dif) {
125                 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
126                         "9052 BLKGRD: ERROR %s _dump_buf_data is NULL\n",
127                                 __func__);
128                 return;
129         }
130
131         if (!sgde) {
132                 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
133                         "9053 BLKGRD: ERROR: prot scatterlist is null\n");
134                 return;
135         }
136
137         dst = _dump_buf_dif;
138         while (sgde) {
139                 src = sg_virt(sgde);
140                 memcpy(dst, src, sgde->length);
141                 dst += sgde->length;
142                 sgde = sg_next(sgde);
143         }
144 }
145
146 static inline unsigned
147 lpfc_cmd_blksize(struct scsi_cmnd *sc)
148 {
149         return sc->device->sector_size;
150 }
151
152 #define LPFC_CHECK_PROTECT_GUARD        1
153 #define LPFC_CHECK_PROTECT_REF          2
154 static inline unsigned
155 lpfc_cmd_protect(struct scsi_cmnd *sc, int flag)
156 {
157         return 1;
158 }
159
160 static inline unsigned
161 lpfc_cmd_guard_csum(struct scsi_cmnd *sc)
162 {
163         if (lpfc_prot_group_type(NULL, sc) == LPFC_PG_TYPE_NO_DIF)
164                 return 0;
165         if (scsi_host_get_guard(sc->device->host) == SHOST_DIX_GUARD_IP)
166                 return 1;
167         return 0;
168 }
169
170 /**
171  * lpfc_sli4_set_rsp_sgl_last - Set the last bit in the response sge.
172  * @phba: Pointer to HBA object.
173  * @lpfc_cmd: lpfc scsi command object pointer.
174  *
175  * This function is called from the lpfc_prep_task_mgmt_cmd function to
176  * set the last bit in the response sge entry.
177  **/
178 static void
179 lpfc_sli4_set_rsp_sgl_last(struct lpfc_hba *phba,
180                                 struct lpfc_scsi_buf *lpfc_cmd)
181 {
182         struct sli4_sge *sgl = (struct sli4_sge *)lpfc_cmd->fcp_bpl;
183         if (sgl) {
184                 sgl += 1;
185                 sgl->word2 = le32_to_cpu(sgl->word2);
186                 bf_set(lpfc_sli4_sge_last, sgl, 1);
187                 sgl->word2 = cpu_to_le32(sgl->word2);
188         }
189 }
190
191 /**
192  * lpfc_update_stats - Update statistical data for the command completion
193  * @phba: Pointer to HBA object.
194  * @lpfc_cmd: lpfc scsi command object pointer.
195  *
196  * This function is called when there is a command completion and this
197  * function updates the statistical data for the command completion.
198  **/
199 static void
200 lpfc_update_stats(struct lpfc_hba *phba, struct  lpfc_scsi_buf *lpfc_cmd)
201 {
202         struct lpfc_rport_data *rdata = lpfc_cmd->rdata;
203         struct lpfc_nodelist *pnode = rdata->pnode;
204         struct scsi_cmnd *cmd = lpfc_cmd->pCmd;
205         unsigned long flags;
206         struct Scsi_Host  *shost = cmd->device->host;
207         struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
208         unsigned long latency;
209         int i;
210
211         if (cmd->result)
212                 return;
213
214         latency = jiffies_to_msecs((long)jiffies - (long)lpfc_cmd->start_time);
215
216         spin_lock_irqsave(shost->host_lock, flags);
217         if (!vport->stat_data_enabled ||
218                 vport->stat_data_blocked ||
219                 !pnode ||
220                 !pnode->lat_data ||
221                 (phba->bucket_type == LPFC_NO_BUCKET)) {
222                 spin_unlock_irqrestore(shost->host_lock, flags);
223                 return;
224         }
225
226         if (phba->bucket_type == LPFC_LINEAR_BUCKET) {
227                 i = (latency + phba->bucket_step - 1 - phba->bucket_base)/
228                         phba->bucket_step;
229                 /* check array subscript bounds */
230                 if (i < 0)
231                         i = 0;
232                 else if (i >= LPFC_MAX_BUCKET_COUNT)
233                         i = LPFC_MAX_BUCKET_COUNT - 1;
234         } else {
235                 for (i = 0; i < LPFC_MAX_BUCKET_COUNT-1; i++)
236                         if (latency <= (phba->bucket_base +
237                                 ((1<<i)*phba->bucket_step)))
238                                 break;
239         }
240
241         pnode->lat_data[i].cmd_count++;
242         spin_unlock_irqrestore(shost->host_lock, flags);
243 }
244
245 /**
246  * lpfc_rampdown_queue_depth - Post RAMP_DOWN_QUEUE event to worker thread
247  * @phba: The Hba for which this call is being executed.
248  *
249  * This routine is called when there is resource error in driver or firmware.
250  * This routine posts WORKER_RAMP_DOWN_QUEUE event for @phba. This routine
251  * posts at most 1 event each second. This routine wakes up worker thread of
252  * @phba to process WORKER_RAM_DOWN_EVENT event.
253  *
254  * This routine should be called with no lock held.
255  **/
256 void
257 lpfc_rampdown_queue_depth(struct lpfc_hba *phba)
258 {
259         unsigned long flags;
260         uint32_t evt_posted;
261         unsigned long expires;
262
263         spin_lock_irqsave(&phba->hbalock, flags);
264         atomic_inc(&phba->num_rsrc_err);
265         phba->last_rsrc_error_time = jiffies;
266
267         expires = phba->last_ramp_down_time + QUEUE_RAMP_DOWN_INTERVAL;
268         if (time_after(expires, jiffies)) {
269                 spin_unlock_irqrestore(&phba->hbalock, flags);
270                 return;
271         }
272
273         phba->last_ramp_down_time = jiffies;
274
275         spin_unlock_irqrestore(&phba->hbalock, flags);
276
277         spin_lock_irqsave(&phba->pport->work_port_lock, flags);
278         evt_posted = phba->pport->work_port_events & WORKER_RAMP_DOWN_QUEUE;
279         if (!evt_posted)
280                 phba->pport->work_port_events |= WORKER_RAMP_DOWN_QUEUE;
281         spin_unlock_irqrestore(&phba->pport->work_port_lock, flags);
282
283         if (!evt_posted)
284                 lpfc_worker_wake_up(phba);
285         return;
286 }
287
288 /**
289  * lpfc_ramp_down_queue_handler - WORKER_RAMP_DOWN_QUEUE event handler
290  * @phba: The Hba for which this call is being executed.
291  *
292  * This routine is called to  process WORKER_RAMP_DOWN_QUEUE event for worker
293  * thread.This routine reduces queue depth for all scsi device on each vport
294  * associated with @phba.
295  **/
296 void
297 lpfc_ramp_down_queue_handler(struct lpfc_hba *phba)
298 {
299         struct lpfc_vport **vports;
300         struct Scsi_Host  *shost;
301         struct scsi_device *sdev;
302         unsigned long new_queue_depth;
303         unsigned long num_rsrc_err, num_cmd_success;
304         int i;
305
306         num_rsrc_err = atomic_read(&phba->num_rsrc_err);
307         num_cmd_success = atomic_read(&phba->num_cmd_success);
308
309         /*
310          * The error and success command counters are global per
311          * driver instance.  If another handler has already
312          * operated on this error event, just exit.
313          */
314         if (num_rsrc_err == 0)
315                 return;
316
317         vports = lpfc_create_vport_work_array(phba);
318         if (vports != NULL)
319                 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
320                         shost = lpfc_shost_from_vport(vports[i]);
321                         shost_for_each_device(sdev, shost) {
322                                 new_queue_depth =
323                                         sdev->queue_depth * num_rsrc_err /
324                                         (num_rsrc_err + num_cmd_success);
325                                 if (!new_queue_depth)
326                                         new_queue_depth = sdev->queue_depth - 1;
327                                 else
328                                         new_queue_depth = sdev->queue_depth -
329                                                                 new_queue_depth;
330                                 scsi_change_queue_depth(sdev, new_queue_depth);
331                         }
332                 }
333         lpfc_destroy_vport_work_array(phba, vports);
334         atomic_set(&phba->num_rsrc_err, 0);
335         atomic_set(&phba->num_cmd_success, 0);
336 }
337
338 /**
339  * lpfc_scsi_dev_block - set all scsi hosts to block state
340  * @phba: Pointer to HBA context object.
341  *
342  * This function walks vport list and set each SCSI host to block state
343  * by invoking fc_remote_port_delete() routine. This function is invoked
344  * with EEH when device's PCI slot has been permanently disabled.
345  **/
346 void
347 lpfc_scsi_dev_block(struct lpfc_hba *phba)
348 {
349         struct lpfc_vport **vports;
350         struct Scsi_Host  *shost;
351         struct scsi_device *sdev;
352         struct fc_rport *rport;
353         int i;
354
355         vports = lpfc_create_vport_work_array(phba);
356         if (vports != NULL)
357                 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
358                         shost = lpfc_shost_from_vport(vports[i]);
359                         shost_for_each_device(sdev, shost) {
360                                 rport = starget_to_rport(scsi_target(sdev));
361                                 fc_remote_port_delete(rport);
362                         }
363                 }
364         lpfc_destroy_vport_work_array(phba, vports);
365 }
366
367 /**
368  * lpfc_new_scsi_buf_s3 - Scsi buffer allocator for HBA with SLI3 IF spec
369  * @vport: The virtual port for which this call being executed.
370  * @num_to_allocate: The requested number of buffers to allocate.
371  *
372  * This routine allocates a scsi buffer for device with SLI-3 interface spec,
373  * the scsi buffer contains all the necessary information needed to initiate
374  * a SCSI I/O. The non-DMAable buffer region contains information to build
375  * the IOCB. The DMAable region contains memory for the FCP CMND, FCP RSP,
376  * and the initial BPL. In addition to allocating memory, the FCP CMND and
377  * FCP RSP BDEs are setup in the BPL and the BPL BDE is setup in the IOCB.
378  *
379  * Return codes:
380  *   int - number of scsi buffers that were allocated.
381  *   0 = failure, less than num_to_alloc is a partial failure.
382  **/
383 static int
384 lpfc_new_scsi_buf_s3(struct lpfc_vport *vport, int num_to_alloc)
385 {
386         struct lpfc_hba *phba = vport->phba;
387         struct lpfc_scsi_buf *psb;
388         struct ulp_bde64 *bpl;
389         IOCB_t *iocb;
390         dma_addr_t pdma_phys_fcp_cmd;
391         dma_addr_t pdma_phys_fcp_rsp;
392         dma_addr_t pdma_phys_bpl;
393         uint16_t iotag;
394         int bcnt, bpl_size;
395
396         bpl_size = phba->cfg_sg_dma_buf_size -
397                 (sizeof(struct fcp_cmnd) + sizeof(struct fcp_rsp));
398
399         lpfc_printf_vlog(vport, KERN_INFO, LOG_FCP,
400                          "9067 ALLOC %d scsi_bufs: %d (%d + %d + %d)\n",
401                          num_to_alloc, phba->cfg_sg_dma_buf_size,
402                          (int)sizeof(struct fcp_cmnd),
403                          (int)sizeof(struct fcp_rsp), bpl_size);
404
405         for (bcnt = 0; bcnt < num_to_alloc; bcnt++) {
406                 psb = kzalloc(sizeof(struct lpfc_scsi_buf), GFP_KERNEL);
407                 if (!psb)
408                         break;
409
410                 /*
411                  * Get memory from the pci pool to map the virt space to pci
412                  * bus space for an I/O.  The DMA buffer includes space for the
413                  * struct fcp_cmnd, struct fcp_rsp and the number of bde's
414                  * necessary to support the sg_tablesize.
415                  */
416                 psb->data = pci_pool_alloc(phba->lpfc_scsi_dma_buf_pool,
417                                         GFP_KERNEL, &psb->dma_handle);
418                 if (!psb->data) {
419                         kfree(psb);
420                         break;
421                 }
422
423                 /* Initialize virtual ptrs to dma_buf region. */
424                 memset(psb->data, 0, phba->cfg_sg_dma_buf_size);
425
426                 /* Allocate iotag for psb->cur_iocbq. */
427                 iotag = lpfc_sli_next_iotag(phba, &psb->cur_iocbq);
428                 if (iotag == 0) {
429                         pci_pool_free(phba->lpfc_scsi_dma_buf_pool,
430                                         psb->data, psb->dma_handle);
431                         kfree(psb);
432                         break;
433                 }
434                 psb->cur_iocbq.iocb_flag |= LPFC_IO_FCP;
435
436                 psb->fcp_cmnd = psb->data;
437                 psb->fcp_rsp = psb->data + sizeof(struct fcp_cmnd);
438                 psb->fcp_bpl = psb->data + sizeof(struct fcp_cmnd) +
439                         sizeof(struct fcp_rsp);
440
441                 /* Initialize local short-hand pointers. */
442                 bpl = psb->fcp_bpl;
443                 pdma_phys_fcp_cmd = psb->dma_handle;
444                 pdma_phys_fcp_rsp = psb->dma_handle + sizeof(struct fcp_cmnd);
445                 pdma_phys_bpl = psb->dma_handle + sizeof(struct fcp_cmnd) +
446                         sizeof(struct fcp_rsp);
447
448                 /*
449                  * The first two bdes are the FCP_CMD and FCP_RSP. The balance
450                  * are sg list bdes.  Initialize the first two and leave the
451                  * rest for queuecommand.
452                  */
453                 bpl[0].addrHigh = le32_to_cpu(putPaddrHigh(pdma_phys_fcp_cmd));
454                 bpl[0].addrLow = le32_to_cpu(putPaddrLow(pdma_phys_fcp_cmd));
455                 bpl[0].tus.f.bdeSize = sizeof(struct fcp_cmnd);
456                 bpl[0].tus.f.bdeFlags = BUFF_TYPE_BDE_64;
457                 bpl[0].tus.w = le32_to_cpu(bpl[0].tus.w);
458
459                 /* Setup the physical region for the FCP RSP */
460                 bpl[1].addrHigh = le32_to_cpu(putPaddrHigh(pdma_phys_fcp_rsp));
461                 bpl[1].addrLow = le32_to_cpu(putPaddrLow(pdma_phys_fcp_rsp));
462                 bpl[1].tus.f.bdeSize = sizeof(struct fcp_rsp);
463                 bpl[1].tus.f.bdeFlags = BUFF_TYPE_BDE_64;
464                 bpl[1].tus.w = le32_to_cpu(bpl[1].tus.w);
465
466                 /*
467                  * Since the IOCB for the FCP I/O is built into this
468                  * lpfc_scsi_buf, initialize it with all known data now.
469                  */
470                 iocb = &psb->cur_iocbq.iocb;
471                 iocb->un.fcpi64.bdl.ulpIoTag32 = 0;
472                 if ((phba->sli_rev == 3) &&
473                                 !(phba->sli3_options & LPFC_SLI3_BG_ENABLED)) {
474                         /* fill in immediate fcp command BDE */
475                         iocb->un.fcpi64.bdl.bdeFlags = BUFF_TYPE_BDE_IMMED;
476                         iocb->un.fcpi64.bdl.bdeSize = sizeof(struct fcp_cmnd);
477                         iocb->un.fcpi64.bdl.addrLow = offsetof(IOCB_t,
478                                         unsli3.fcp_ext.icd);
479                         iocb->un.fcpi64.bdl.addrHigh = 0;
480                         iocb->ulpBdeCount = 0;
481                         iocb->ulpLe = 0;
482                         /* fill in response BDE */
483                         iocb->unsli3.fcp_ext.rbde.tus.f.bdeFlags =
484                                                         BUFF_TYPE_BDE_64;
485                         iocb->unsli3.fcp_ext.rbde.tus.f.bdeSize =
486                                 sizeof(struct fcp_rsp);
487                         iocb->unsli3.fcp_ext.rbde.addrLow =
488                                 putPaddrLow(pdma_phys_fcp_rsp);
489                         iocb->unsli3.fcp_ext.rbde.addrHigh =
490                                 putPaddrHigh(pdma_phys_fcp_rsp);
491                 } else {
492                         iocb->un.fcpi64.bdl.bdeFlags = BUFF_TYPE_BLP_64;
493                         iocb->un.fcpi64.bdl.bdeSize =
494                                         (2 * sizeof(struct ulp_bde64));
495                         iocb->un.fcpi64.bdl.addrLow =
496                                         putPaddrLow(pdma_phys_bpl);
497                         iocb->un.fcpi64.bdl.addrHigh =
498                                         putPaddrHigh(pdma_phys_bpl);
499                         iocb->ulpBdeCount = 1;
500                         iocb->ulpLe = 1;
501                 }
502                 iocb->ulpClass = CLASS3;
503                 psb->status = IOSTAT_SUCCESS;
504                 /* Put it back into the SCSI buffer list */
505                 psb->cur_iocbq.context1  = psb;
506                 lpfc_release_scsi_buf_s3(phba, psb);
507
508         }
509
510         return bcnt;
511 }
512
513 /**
514  * lpfc_sli4_vport_delete_fcp_xri_aborted -Remove all ndlp references for vport
515  * @vport: pointer to lpfc vport data structure.
516  *
517  * This routine is invoked by the vport cleanup for deletions and the cleanup
518  * for an ndlp on removal.
519  **/
520 void
521 lpfc_sli4_vport_delete_fcp_xri_aborted(struct lpfc_vport *vport)
522 {
523         struct lpfc_hba *phba = vport->phba;
524         struct lpfc_scsi_buf *psb, *next_psb;
525         unsigned long iflag = 0;
526
527         spin_lock_irqsave(&phba->hbalock, iflag);
528         spin_lock(&phba->sli4_hba.abts_scsi_buf_list_lock);
529         list_for_each_entry_safe(psb, next_psb,
530                                 &phba->sli4_hba.lpfc_abts_scsi_buf_list, list) {
531                 if (psb->rdata && psb->rdata->pnode
532                         && psb->rdata->pnode->vport == vport)
533                         psb->rdata = NULL;
534         }
535         spin_unlock(&phba->sli4_hba.abts_scsi_buf_list_lock);
536         spin_unlock_irqrestore(&phba->hbalock, iflag);
537 }
538
539 /**
540  * lpfc_sli4_fcp_xri_aborted - Fast-path process of fcp xri abort
541  * @phba: pointer to lpfc hba data structure.
542  * @axri: pointer to the fcp xri abort wcqe structure.
543  *
544  * This routine is invoked by the worker thread to process a SLI4 fast-path
545  * FCP aborted xri.
546  **/
547 void
548 lpfc_sli4_fcp_xri_aborted(struct lpfc_hba *phba,
549                           struct sli4_wcqe_xri_aborted *axri)
550 {
551         uint16_t xri = bf_get(lpfc_wcqe_xa_xri, axri);
552         uint16_t rxid = bf_get(lpfc_wcqe_xa_remote_xid, axri);
553         struct lpfc_scsi_buf *psb, *next_psb;
554         unsigned long iflag = 0;
555         struct lpfc_iocbq *iocbq;
556         int i;
557         struct lpfc_nodelist *ndlp;
558         int rrq_empty = 0;
559         struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
560
561         spin_lock_irqsave(&phba->hbalock, iflag);
562         spin_lock(&phba->sli4_hba.abts_scsi_buf_list_lock);
563         list_for_each_entry_safe(psb, next_psb,
564                 &phba->sli4_hba.lpfc_abts_scsi_buf_list, list) {
565                 if (psb->cur_iocbq.sli4_xritag == xri) {
566                         list_del(&psb->list);
567                         psb->exch_busy = 0;
568                         psb->status = IOSTAT_SUCCESS;
569                         spin_unlock(
570                                 &phba->sli4_hba.abts_scsi_buf_list_lock);
571                         if (psb->rdata && psb->rdata->pnode)
572                                 ndlp = psb->rdata->pnode;
573                         else
574                                 ndlp = NULL;
575
576                         rrq_empty = list_empty(&phba->active_rrq_list);
577                         spin_unlock_irqrestore(&phba->hbalock, iflag);
578                         if (ndlp) {
579                                 lpfc_set_rrq_active(phba, ndlp,
580                                         psb->cur_iocbq.sli4_lxritag, rxid, 1);
581                                 lpfc_sli4_abts_err_handler(phba, ndlp, axri);
582                         }
583                         lpfc_release_scsi_buf_s4(phba, psb);
584                         if (rrq_empty)
585                                 lpfc_worker_wake_up(phba);
586                         return;
587                 }
588         }
589         spin_unlock(&phba->sli4_hba.abts_scsi_buf_list_lock);
590         for (i = 1; i <= phba->sli.last_iotag; i++) {
591                 iocbq = phba->sli.iocbq_lookup[i];
592
593                 if (!(iocbq->iocb_flag &  LPFC_IO_FCP) ||
594                         (iocbq->iocb_flag & LPFC_IO_LIBDFC))
595                         continue;
596                 if (iocbq->sli4_xritag != xri)
597                         continue;
598                 psb = container_of(iocbq, struct lpfc_scsi_buf, cur_iocbq);
599                 psb->exch_busy = 0;
600                 spin_unlock_irqrestore(&phba->hbalock, iflag);
601                 if (!list_empty(&pring->txq))
602                         lpfc_worker_wake_up(phba);
603                 return;
604
605         }
606         spin_unlock_irqrestore(&phba->hbalock, iflag);
607 }
608
609 /**
610  * lpfc_sli4_post_scsi_sgl_list - Psot blocks of scsi buffer sgls from a list
611  * @phba: pointer to lpfc hba data structure.
612  * @post_sblist: pointer to the scsi buffer list.
613  *
614  * This routine walks a list of scsi buffers that was passed in. It attempts
615  * to construct blocks of scsi buffer sgls which contains contiguous xris and
616  * uses the non-embedded SGL block post mailbox commands to post to the port.
617  * For single SCSI buffer sgl with non-contiguous xri, if any, it shall use
618  * embedded SGL post mailbox command for posting. The @post_sblist passed in
619  * must be local list, thus no lock is needed when manipulate the list.
620  *
621  * Returns: 0 = failure, non-zero number of successfully posted buffers.
622  **/
623 static int
624 lpfc_sli4_post_scsi_sgl_list(struct lpfc_hba *phba,
625                              struct list_head *post_sblist, int sb_count)
626 {
627         struct lpfc_scsi_buf *psb, *psb_next;
628         int status, sgl_size;
629         int post_cnt = 0, block_cnt = 0, num_posting = 0, num_posted = 0;
630         dma_addr_t pdma_phys_bpl1;
631         int last_xritag = NO_XRI;
632         LIST_HEAD(prep_sblist);
633         LIST_HEAD(blck_sblist);
634         LIST_HEAD(scsi_sblist);
635
636         /* sanity check */
637         if (sb_count <= 0)
638                 return -EINVAL;
639
640         sgl_size = phba->cfg_sg_dma_buf_size -
641                 (sizeof(struct fcp_cmnd) + sizeof(struct fcp_rsp));
642
643         list_for_each_entry_safe(psb, psb_next, post_sblist, list) {
644                 list_del_init(&psb->list);
645                 block_cnt++;
646                 if ((last_xritag != NO_XRI) &&
647                     (psb->cur_iocbq.sli4_xritag != last_xritag + 1)) {
648                         /* a hole in xri block, form a sgl posting block */
649                         list_splice_init(&prep_sblist, &blck_sblist);
650                         post_cnt = block_cnt - 1;
651                         /* prepare list for next posting block */
652                         list_add_tail(&psb->list, &prep_sblist);
653                         block_cnt = 1;
654                 } else {
655                         /* prepare list for next posting block */
656                         list_add_tail(&psb->list, &prep_sblist);
657                         /* enough sgls for non-embed sgl mbox command */
658                         if (block_cnt == LPFC_NEMBED_MBOX_SGL_CNT) {
659                                 list_splice_init(&prep_sblist, &blck_sblist);
660                                 post_cnt = block_cnt;
661                                 block_cnt = 0;
662                         }
663                 }
664                 num_posting++;
665                 last_xritag = psb->cur_iocbq.sli4_xritag;
666
667                 /* end of repost sgl list condition for SCSI buffers */
668                 if (num_posting == sb_count) {
669                         if (post_cnt == 0) {
670                                 /* last sgl posting block */
671                                 list_splice_init(&prep_sblist, &blck_sblist);
672                                 post_cnt = block_cnt;
673                         } else if (block_cnt == 1) {
674                                 /* last single sgl with non-contiguous xri */
675                                 if (sgl_size > SGL_PAGE_SIZE)
676                                         pdma_phys_bpl1 = psb->dma_phys_bpl +
677                                                                 SGL_PAGE_SIZE;
678                                 else
679                                         pdma_phys_bpl1 = 0;
680                                 status = lpfc_sli4_post_sgl(phba,
681                                                 psb->dma_phys_bpl,
682                                                 pdma_phys_bpl1,
683                                                 psb->cur_iocbq.sli4_xritag);
684                                 if (status) {
685                                         /* failure, put on abort scsi list */
686                                         psb->exch_busy = 1;
687                                 } else {
688                                         /* success, put on SCSI buffer list */
689                                         psb->exch_busy = 0;
690                                         psb->status = IOSTAT_SUCCESS;
691                                         num_posted++;
692                                 }
693                                 /* success, put on SCSI buffer sgl list */
694                                 list_add_tail(&psb->list, &scsi_sblist);
695                         }
696                 }
697
698                 /* continue until a nembed page worth of sgls */
699                 if (post_cnt == 0)
700                         continue;
701
702                 /* post block of SCSI buffer list sgls */
703                 status = lpfc_sli4_post_scsi_sgl_block(phba, &blck_sblist,
704                                                        post_cnt);
705
706                 /* don't reset xirtag due to hole in xri block */
707                 if (block_cnt == 0)
708                         last_xritag = NO_XRI;
709
710                 /* reset SCSI buffer post count for next round of posting */
711                 post_cnt = 0;
712
713                 /* put posted SCSI buffer-sgl posted on SCSI buffer sgl list */
714                 while (!list_empty(&blck_sblist)) {
715                         list_remove_head(&blck_sblist, psb,
716                                          struct lpfc_scsi_buf, list);
717                         if (status) {
718                                 /* failure, put on abort scsi list */
719                                 psb->exch_busy = 1;
720                         } else {
721                                 /* success, put on SCSI buffer list */
722                                 psb->exch_busy = 0;
723                                 psb->status = IOSTAT_SUCCESS;
724                                 num_posted++;
725                         }
726                         list_add_tail(&psb->list, &scsi_sblist);
727                 }
728         }
729         /* Push SCSI buffers with sgl posted to the availble list */
730         while (!list_empty(&scsi_sblist)) {
731                 list_remove_head(&scsi_sblist, psb,
732                                  struct lpfc_scsi_buf, list);
733                 lpfc_release_scsi_buf_s4(phba, psb);
734         }
735         return num_posted;
736 }
737
738 /**
739  * lpfc_sli4_repost_scsi_sgl_list - Repsot all the allocated scsi buffer sgls
740  * @phba: pointer to lpfc hba data structure.
741  *
742  * This routine walks the list of scsi buffers that have been allocated and
743  * repost them to the port by using SGL block post. This is needed after a
744  * pci_function_reset/warm_start or start. The lpfc_hba_down_post_s4 routine
745  * is responsible for moving all scsi buffers on the lpfc_abts_scsi_sgl_list
746  * to the lpfc_scsi_buf_list. If the repost fails, reject all scsi buffers.
747  *
748  * Returns: 0 = success, non-zero failure.
749  **/
750 int
751 lpfc_sli4_repost_scsi_sgl_list(struct lpfc_hba *phba)
752 {
753         LIST_HEAD(post_sblist);
754         int num_posted, rc = 0;
755
756         /* get all SCSI buffers need to repost to a local list */
757         spin_lock_irq(&phba->scsi_buf_list_get_lock);
758         spin_lock(&phba->scsi_buf_list_put_lock);
759         list_splice_init(&phba->lpfc_scsi_buf_list_get, &post_sblist);
760         list_splice(&phba->lpfc_scsi_buf_list_put, &post_sblist);
761         spin_unlock(&phba->scsi_buf_list_put_lock);
762         spin_unlock_irq(&phba->scsi_buf_list_get_lock);
763
764         /* post the list of scsi buffer sgls to port if available */
765         if (!list_empty(&post_sblist)) {
766                 num_posted = lpfc_sli4_post_scsi_sgl_list(phba, &post_sblist,
767                                                 phba->sli4_hba.scsi_xri_cnt);
768                 /* failed to post any scsi buffer, return error */
769                 if (num_posted == 0)
770                         rc = -EIO;
771         }
772         return rc;
773 }
774
775 /**
776  * lpfc_new_scsi_buf_s4 - Scsi buffer allocator for HBA with SLI4 IF spec
777  * @vport: The virtual port for which this call being executed.
778  * @num_to_allocate: The requested number of buffers to allocate.
779  *
780  * This routine allocates scsi buffers for device with SLI-4 interface spec,
781  * the scsi buffer contains all the necessary information needed to initiate
782  * a SCSI I/O. After allocating up to @num_to_allocate SCSI buffers and put
783  * them on a list, it post them to the port by using SGL block post.
784  *
785  * Return codes:
786  *   int - number of scsi buffers that were allocated and posted.
787  *   0 = failure, less than num_to_alloc is a partial failure.
788  **/
789 static int
790 lpfc_new_scsi_buf_s4(struct lpfc_vport *vport, int num_to_alloc)
791 {
792         struct lpfc_hba *phba = vport->phba;
793         struct lpfc_scsi_buf *psb;
794         struct sli4_sge *sgl;
795         IOCB_t *iocb;
796         dma_addr_t pdma_phys_fcp_cmd;
797         dma_addr_t pdma_phys_fcp_rsp;
798         dma_addr_t pdma_phys_bpl;
799         uint16_t iotag, lxri = 0;
800         int bcnt, num_posted, sgl_size;
801         LIST_HEAD(prep_sblist);
802         LIST_HEAD(post_sblist);
803         LIST_HEAD(scsi_sblist);
804
805         sgl_size = phba->cfg_sg_dma_buf_size -
806                 (sizeof(struct fcp_cmnd) + sizeof(struct fcp_rsp));
807
808         lpfc_printf_vlog(vport, KERN_INFO, LOG_FCP,
809                          "9068 ALLOC %d scsi_bufs: %d (%d + %d + %d)\n",
810                          num_to_alloc, phba->cfg_sg_dma_buf_size, sgl_size,
811                          (int)sizeof(struct fcp_cmnd),
812                          (int)sizeof(struct fcp_rsp));
813
814         for (bcnt = 0; bcnt < num_to_alloc; bcnt++) {
815                 psb = kzalloc(sizeof(struct lpfc_scsi_buf), GFP_KERNEL);
816                 if (!psb)
817                         break;
818                 /*
819                  * Get memory from the pci pool to map the virt space to
820                  * pci bus space for an I/O. The DMA buffer includes space
821                  * for the struct fcp_cmnd, struct fcp_rsp and the number
822                  * of bde's necessary to support the sg_tablesize.
823                  */
824                 psb->data = pci_pool_alloc(phba->lpfc_scsi_dma_buf_pool,
825                                                 GFP_KERNEL, &psb->dma_handle);
826                 if (!psb->data) {
827                         kfree(psb);
828                         break;
829                 }
830                 memset(psb->data, 0, phba->cfg_sg_dma_buf_size);
831
832                 /*
833                  * 4K Page alignment is CRITICAL to BlockGuard, double check
834                  * to be sure.
835                  */
836                 if (phba->cfg_enable_bg  && (((unsigned long)(psb->data) &
837                     (unsigned long)(SLI4_PAGE_SIZE - 1)) != 0)) {
838                         pci_pool_free(phba->lpfc_scsi_dma_buf_pool,
839                                       psb->data, psb->dma_handle);
840                         kfree(psb);
841                         break;
842                 }
843
844
845                 lxri = lpfc_sli4_next_xritag(phba);
846                 if (lxri == NO_XRI) {
847                         pci_pool_free(phba->lpfc_scsi_dma_buf_pool,
848                               psb->data, psb->dma_handle);
849                         kfree(psb);
850                         break;
851                 }
852
853                 /* Allocate iotag for psb->cur_iocbq. */
854                 iotag = lpfc_sli_next_iotag(phba, &psb->cur_iocbq);
855                 if (iotag == 0) {
856                         pci_pool_free(phba->lpfc_scsi_dma_buf_pool,
857                                 psb->data, psb->dma_handle);
858                         kfree(psb);
859                         lpfc_printf_log(phba, KERN_ERR, LOG_FCP,
860                                         "3368 Failed to allocated IOTAG for"
861                                         " XRI:0x%x\n", lxri);
862                         lpfc_sli4_free_xri(phba, lxri);
863                         break;
864                 }
865                 psb->cur_iocbq.sli4_lxritag = lxri;
866                 psb->cur_iocbq.sli4_xritag = phba->sli4_hba.xri_ids[lxri];
867                 psb->cur_iocbq.iocb_flag |= LPFC_IO_FCP;
868                 psb->fcp_bpl = psb->data;
869                 psb->fcp_cmnd = (psb->data + sgl_size);
870                 psb->fcp_rsp = (struct fcp_rsp *)((uint8_t *)psb->fcp_cmnd +
871                                         sizeof(struct fcp_cmnd));
872
873                 /* Initialize local short-hand pointers. */
874                 sgl = (struct sli4_sge *)psb->fcp_bpl;
875                 pdma_phys_bpl = psb->dma_handle;
876                 pdma_phys_fcp_cmd = (psb->dma_handle + sgl_size);
877                 pdma_phys_fcp_rsp = pdma_phys_fcp_cmd + sizeof(struct fcp_cmnd);
878
879                 /*
880                  * The first two bdes are the FCP_CMD and FCP_RSP.
881                  * The balance are sg list bdes. Initialize the
882                  * first two and leave the rest for queuecommand.
883                  */
884                 sgl->addr_hi = cpu_to_le32(putPaddrHigh(pdma_phys_fcp_cmd));
885                 sgl->addr_lo = cpu_to_le32(putPaddrLow(pdma_phys_fcp_cmd));
886                 sgl->word2 = le32_to_cpu(sgl->word2);
887                 bf_set(lpfc_sli4_sge_last, sgl, 0);
888                 sgl->word2 = cpu_to_le32(sgl->word2);
889                 sgl->sge_len = cpu_to_le32(sizeof(struct fcp_cmnd));
890                 sgl++;
891
892                 /* Setup the physical region for the FCP RSP */
893                 sgl->addr_hi = cpu_to_le32(putPaddrHigh(pdma_phys_fcp_rsp));
894                 sgl->addr_lo = cpu_to_le32(putPaddrLow(pdma_phys_fcp_rsp));
895                 sgl->word2 = le32_to_cpu(sgl->word2);
896                 bf_set(lpfc_sli4_sge_last, sgl, 1);
897                 sgl->word2 = cpu_to_le32(sgl->word2);
898                 sgl->sge_len = cpu_to_le32(sizeof(struct fcp_rsp));
899
900                 /*
901                  * Since the IOCB for the FCP I/O is built into this
902                  * lpfc_scsi_buf, initialize it with all known data now.
903                  */
904                 iocb = &psb->cur_iocbq.iocb;
905                 iocb->un.fcpi64.bdl.ulpIoTag32 = 0;
906                 iocb->un.fcpi64.bdl.bdeFlags = BUFF_TYPE_BDE_64;
907                 /* setting the BLP size to 2 * sizeof BDE may not be correct.
908                  * We are setting the bpl to point to out sgl. An sgl's
909                  * entries are 16 bytes, a bpl entries are 12 bytes.
910                  */
911                 iocb->un.fcpi64.bdl.bdeSize = sizeof(struct fcp_cmnd);
912                 iocb->un.fcpi64.bdl.addrLow = putPaddrLow(pdma_phys_fcp_cmd);
913                 iocb->un.fcpi64.bdl.addrHigh = putPaddrHigh(pdma_phys_fcp_cmd);
914                 iocb->ulpBdeCount = 1;
915                 iocb->ulpLe = 1;
916                 iocb->ulpClass = CLASS3;
917                 psb->cur_iocbq.context1 = psb;
918                 psb->dma_phys_bpl = pdma_phys_bpl;
919
920                 /* add the scsi buffer to a post list */
921                 list_add_tail(&psb->list, &post_sblist);
922                 spin_lock_irq(&phba->scsi_buf_list_get_lock);
923                 phba->sli4_hba.scsi_xri_cnt++;
924                 spin_unlock_irq(&phba->scsi_buf_list_get_lock);
925         }
926         lpfc_printf_log(phba, KERN_INFO, LOG_BG,
927                         "3021 Allocate %d out of %d requested new SCSI "
928                         "buffers\n", bcnt, num_to_alloc);
929
930         /* post the list of scsi buffer sgls to port if available */
931         if (!list_empty(&post_sblist))
932                 num_posted = lpfc_sli4_post_scsi_sgl_list(phba,
933                                                           &post_sblist, bcnt);
934         else
935                 num_posted = 0;
936
937         return num_posted;
938 }
939
940 /**
941  * lpfc_new_scsi_buf - Wrapper funciton for scsi buffer allocator
942  * @vport: The virtual port for which this call being executed.
943  * @num_to_allocate: The requested number of buffers to allocate.
944  *
945  * This routine wraps the actual SCSI buffer allocator function pointer from
946  * the lpfc_hba struct.
947  *
948  * Return codes:
949  *   int - number of scsi buffers that were allocated.
950  *   0 = failure, less than num_to_alloc is a partial failure.
951  **/
952 static inline int
953 lpfc_new_scsi_buf(struct lpfc_vport *vport, int num_to_alloc)
954 {
955         return vport->phba->lpfc_new_scsi_buf(vport, num_to_alloc);
956 }
957
958 /**
959  * lpfc_get_scsi_buf_s3 - Get a scsi buffer from lpfc_scsi_buf_list of the HBA
960  * @phba: The HBA for which this call is being executed.
961  *
962  * This routine removes a scsi buffer from head of @phba lpfc_scsi_buf_list list
963  * and returns to caller.
964  *
965  * Return codes:
966  *   NULL - Error
967  *   Pointer to lpfc_scsi_buf - Success
968  **/
969 static struct lpfc_scsi_buf*
970 lpfc_get_scsi_buf_s3(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp)
971 {
972         struct  lpfc_scsi_buf * lpfc_cmd = NULL;
973         struct list_head *scsi_buf_list_get = &phba->lpfc_scsi_buf_list_get;
974         unsigned long iflag = 0;
975
976         spin_lock_irqsave(&phba->scsi_buf_list_get_lock, iflag);
977         list_remove_head(scsi_buf_list_get, lpfc_cmd, struct lpfc_scsi_buf,
978                          list);
979         if (!lpfc_cmd) {
980                 spin_lock(&phba->scsi_buf_list_put_lock);
981                 list_splice(&phba->lpfc_scsi_buf_list_put,
982                             &phba->lpfc_scsi_buf_list_get);
983                 INIT_LIST_HEAD(&phba->lpfc_scsi_buf_list_put);
984                 list_remove_head(scsi_buf_list_get, lpfc_cmd,
985                                  struct lpfc_scsi_buf, list);
986                 spin_unlock(&phba->scsi_buf_list_put_lock);
987         }
988         spin_unlock_irqrestore(&phba->scsi_buf_list_get_lock, iflag);
989         return  lpfc_cmd;
990 }
991 /**
992  * lpfc_get_scsi_buf_s4 - Get a scsi buffer from lpfc_scsi_buf_list of the HBA
993  * @phba: The HBA for which this call is being executed.
994  *
995  * This routine removes a scsi buffer from head of @phba lpfc_scsi_buf_list list
996  * and returns to caller.
997  *
998  * Return codes:
999  *   NULL - Error
1000  *   Pointer to lpfc_scsi_buf - Success
1001  **/
1002 static struct lpfc_scsi_buf*
1003 lpfc_get_scsi_buf_s4(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp)
1004 {
1005         struct lpfc_scsi_buf *lpfc_cmd, *lpfc_cmd_next;
1006         unsigned long iflag = 0;
1007         int found = 0;
1008
1009         spin_lock_irqsave(&phba->scsi_buf_list_get_lock, iflag);
1010         list_for_each_entry_safe(lpfc_cmd, lpfc_cmd_next,
1011                                  &phba->lpfc_scsi_buf_list_get, list) {
1012                 if (lpfc_test_rrq_active(phba, ndlp,
1013                                          lpfc_cmd->cur_iocbq.sli4_lxritag))
1014                         continue;
1015                 list_del(&lpfc_cmd->list);
1016                 found = 1;
1017                 break;
1018         }
1019         if (!found) {
1020                 spin_lock(&phba->scsi_buf_list_put_lock);
1021                 list_splice(&phba->lpfc_scsi_buf_list_put,
1022                             &phba->lpfc_scsi_buf_list_get);
1023                 INIT_LIST_HEAD(&phba->lpfc_scsi_buf_list_put);
1024                 spin_unlock(&phba->scsi_buf_list_put_lock);
1025                 list_for_each_entry_safe(lpfc_cmd, lpfc_cmd_next,
1026                                          &phba->lpfc_scsi_buf_list_get, list) {
1027                         if (lpfc_test_rrq_active(
1028                                 phba, ndlp, lpfc_cmd->cur_iocbq.sli4_lxritag))
1029                                 continue;
1030                         list_del(&lpfc_cmd->list);
1031                         found = 1;
1032                         break;
1033                 }
1034         }
1035         spin_unlock_irqrestore(&phba->scsi_buf_list_get_lock, iflag);
1036         if (!found)
1037                 return NULL;
1038         return  lpfc_cmd;
1039 }
1040 /**
1041  * lpfc_get_scsi_buf - Get a scsi buffer from lpfc_scsi_buf_list of the HBA
1042  * @phba: The HBA for which this call is being executed.
1043  *
1044  * This routine removes a scsi buffer from head of @phba lpfc_scsi_buf_list list
1045  * and returns to caller.
1046  *
1047  * Return codes:
1048  *   NULL - Error
1049  *   Pointer to lpfc_scsi_buf - Success
1050  **/
1051 static struct lpfc_scsi_buf*
1052 lpfc_get_scsi_buf(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp)
1053 {
1054         return  phba->lpfc_get_scsi_buf(phba, ndlp);
1055 }
1056
1057 /**
1058  * lpfc_release_scsi_buf - Return a scsi buffer back to hba scsi buf list
1059  * @phba: The Hba for which this call is being executed.
1060  * @psb: The scsi buffer which is being released.
1061  *
1062  * This routine releases @psb scsi buffer by adding it to tail of @phba
1063  * lpfc_scsi_buf_list list.
1064  **/
1065 static void
1066 lpfc_release_scsi_buf_s3(struct lpfc_hba *phba, struct lpfc_scsi_buf *psb)
1067 {
1068         unsigned long iflag = 0;
1069
1070         psb->seg_cnt = 0;
1071         psb->nonsg_phys = 0;
1072         psb->prot_seg_cnt = 0;
1073
1074         spin_lock_irqsave(&phba->scsi_buf_list_put_lock, iflag);
1075         psb->pCmd = NULL;
1076         psb->cur_iocbq.iocb_flag = LPFC_IO_FCP;
1077         list_add_tail(&psb->list, &phba->lpfc_scsi_buf_list_put);
1078         spin_unlock_irqrestore(&phba->scsi_buf_list_put_lock, iflag);
1079 }
1080
1081 /**
1082  * lpfc_release_scsi_buf_s4: Return a scsi buffer back to hba scsi buf list.
1083  * @phba: The Hba for which this call is being executed.
1084  * @psb: The scsi buffer which is being released.
1085  *
1086  * This routine releases @psb scsi buffer by adding it to tail of @phba
1087  * lpfc_scsi_buf_list list. For SLI4 XRI's are tied to the scsi buffer
1088  * and cannot be reused for at least RA_TOV amount of time if it was
1089  * aborted.
1090  **/
1091 static void
1092 lpfc_release_scsi_buf_s4(struct lpfc_hba *phba, struct lpfc_scsi_buf *psb)
1093 {
1094         unsigned long iflag = 0;
1095
1096         psb->seg_cnt = 0;
1097         psb->nonsg_phys = 0;
1098         psb->prot_seg_cnt = 0;
1099
1100         if (psb->exch_busy) {
1101                 spin_lock_irqsave(&phba->sli4_hba.abts_scsi_buf_list_lock,
1102                                         iflag);
1103                 psb->pCmd = NULL;
1104                 list_add_tail(&psb->list,
1105                         &phba->sli4_hba.lpfc_abts_scsi_buf_list);
1106                 spin_unlock_irqrestore(&phba->sli4_hba.abts_scsi_buf_list_lock,
1107                                         iflag);
1108         } else {
1109                 psb->pCmd = NULL;
1110                 psb->cur_iocbq.iocb_flag = LPFC_IO_FCP;
1111                 spin_lock_irqsave(&phba->scsi_buf_list_put_lock, iflag);
1112                 list_add_tail(&psb->list, &phba->lpfc_scsi_buf_list_put);
1113                 spin_unlock_irqrestore(&phba->scsi_buf_list_put_lock, iflag);
1114         }
1115 }
1116
1117 /**
1118  * lpfc_release_scsi_buf: Return a scsi buffer back to hba scsi buf list.
1119  * @phba: The Hba for which this call is being executed.
1120  * @psb: The scsi buffer which is being released.
1121  *
1122  * This routine releases @psb scsi buffer by adding it to tail of @phba
1123  * lpfc_scsi_buf_list list.
1124  **/
1125 static void
1126 lpfc_release_scsi_buf(struct lpfc_hba *phba, struct lpfc_scsi_buf *psb)
1127 {
1128
1129         phba->lpfc_release_scsi_buf(phba, psb);
1130 }
1131
1132 /**
1133  * lpfc_scsi_prep_dma_buf_s3 - DMA mapping for scsi buffer to SLI3 IF spec
1134  * @phba: The Hba for which this call is being executed.
1135  * @lpfc_cmd: The scsi buffer which is going to be mapped.
1136  *
1137  * This routine does the pci dma mapping for scatter-gather list of scsi cmnd
1138  * field of @lpfc_cmd for device with SLI-3 interface spec. This routine scans
1139  * through sg elements and format the bdea. This routine also initializes all
1140  * IOCB fields which are dependent on scsi command request buffer.
1141  *
1142  * Return codes:
1143  *   1 - Error
1144  *   0 - Success
1145  **/
1146 static int
1147 lpfc_scsi_prep_dma_buf_s3(struct lpfc_hba *phba, struct lpfc_scsi_buf *lpfc_cmd)
1148 {
1149         struct scsi_cmnd *scsi_cmnd = lpfc_cmd->pCmd;
1150         struct scatterlist *sgel = NULL;
1151         struct fcp_cmnd *fcp_cmnd = lpfc_cmd->fcp_cmnd;
1152         struct ulp_bde64 *bpl = lpfc_cmd->fcp_bpl;
1153         struct lpfc_iocbq *iocbq = &lpfc_cmd->cur_iocbq;
1154         IOCB_t *iocb_cmd = &lpfc_cmd->cur_iocbq.iocb;
1155         struct ulp_bde64 *data_bde = iocb_cmd->unsli3.fcp_ext.dbde;
1156         dma_addr_t physaddr;
1157         uint32_t num_bde = 0;
1158         int nseg, datadir = scsi_cmnd->sc_data_direction;
1159
1160         /*
1161          * There are three possibilities here - use scatter-gather segment, use
1162          * the single mapping, or neither.  Start the lpfc command prep by
1163          * bumping the bpl beyond the fcp_cmnd and fcp_rsp regions to the first
1164          * data bde entry.
1165          */
1166         bpl += 2;
1167         if (scsi_sg_count(scsi_cmnd)) {
1168                 /*
1169                  * The driver stores the segment count returned from pci_map_sg
1170                  * because this a count of dma-mappings used to map the use_sg
1171                  * pages.  They are not guaranteed to be the same for those
1172                  * architectures that implement an IOMMU.
1173                  */
1174
1175                 nseg = dma_map_sg(&phba->pcidev->dev, scsi_sglist(scsi_cmnd),
1176                                   scsi_sg_count(scsi_cmnd), datadir);
1177                 if (unlikely(!nseg))
1178                         return 1;
1179
1180                 lpfc_cmd->seg_cnt = nseg;
1181                 if (lpfc_cmd->seg_cnt > phba->cfg_sg_seg_cnt) {
1182                         lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1183                                 "9064 BLKGRD: %s: Too many sg segments from "
1184                                "dma_map_sg.  Config %d, seg_cnt %d\n",
1185                                __func__, phba->cfg_sg_seg_cnt,
1186                                lpfc_cmd->seg_cnt);
1187                         lpfc_cmd->seg_cnt = 0;
1188                         scsi_dma_unmap(scsi_cmnd);
1189                         return 1;
1190                 }
1191
1192                 /*
1193                  * The driver established a maximum scatter-gather segment count
1194                  * during probe that limits the number of sg elements in any
1195                  * single scsi command.  Just run through the seg_cnt and format
1196                  * the bde's.
1197                  * When using SLI-3 the driver will try to fit all the BDEs into
1198                  * the IOCB. If it can't then the BDEs get added to a BPL as it
1199                  * does for SLI-2 mode.
1200                  */
1201                 scsi_for_each_sg(scsi_cmnd, sgel, nseg, num_bde) {
1202                         physaddr = sg_dma_address(sgel);
1203                         if (phba->sli_rev == 3 &&
1204                             !(phba->sli3_options & LPFC_SLI3_BG_ENABLED) &&
1205                             !(iocbq->iocb_flag & DSS_SECURITY_OP) &&
1206                             nseg <= LPFC_EXT_DATA_BDE_COUNT) {
1207                                 data_bde->tus.f.bdeFlags = BUFF_TYPE_BDE_64;
1208                                 data_bde->tus.f.bdeSize = sg_dma_len(sgel);
1209                                 data_bde->addrLow = putPaddrLow(physaddr);
1210                                 data_bde->addrHigh = putPaddrHigh(physaddr);
1211                                 data_bde++;
1212                         } else {
1213                                 bpl->tus.f.bdeFlags = BUFF_TYPE_BDE_64;
1214                                 bpl->tus.f.bdeSize = sg_dma_len(sgel);
1215                                 bpl->tus.w = le32_to_cpu(bpl->tus.w);
1216                                 bpl->addrLow =
1217                                         le32_to_cpu(putPaddrLow(physaddr));
1218                                 bpl->addrHigh =
1219                                         le32_to_cpu(putPaddrHigh(physaddr));
1220                                 bpl++;
1221                         }
1222                 }
1223         }
1224
1225         /*
1226          * Finish initializing those IOCB fields that are dependent on the
1227          * scsi_cmnd request_buffer.  Note that for SLI-2 the bdeSize is
1228          * explicitly reinitialized and for SLI-3 the extended bde count is
1229          * explicitly reinitialized since all iocb memory resources are reused.
1230          */
1231         if (phba->sli_rev == 3 &&
1232             !(phba->sli3_options & LPFC_SLI3_BG_ENABLED) &&
1233             !(iocbq->iocb_flag & DSS_SECURITY_OP)) {
1234                 if (num_bde > LPFC_EXT_DATA_BDE_COUNT) {
1235                         /*
1236                          * The extended IOCB format can only fit 3 BDE or a BPL.
1237                          * This I/O has more than 3 BDE so the 1st data bde will
1238                          * be a BPL that is filled in here.
1239                          */
1240                         physaddr = lpfc_cmd->dma_handle;
1241                         data_bde->tus.f.bdeFlags = BUFF_TYPE_BLP_64;
1242                         data_bde->tus.f.bdeSize = (num_bde *
1243                                                    sizeof(struct ulp_bde64));
1244                         physaddr += (sizeof(struct fcp_cmnd) +
1245                                      sizeof(struct fcp_rsp) +
1246                                      (2 * sizeof(struct ulp_bde64)));
1247                         data_bde->addrHigh = putPaddrHigh(physaddr);
1248                         data_bde->addrLow = putPaddrLow(physaddr);
1249                         /* ebde count includes the response bde and data bpl */
1250                         iocb_cmd->unsli3.fcp_ext.ebde_count = 2;
1251                 } else {
1252                         /* ebde count includes the response bde and data bdes */
1253                         iocb_cmd->unsli3.fcp_ext.ebde_count = (num_bde + 1);
1254                 }
1255         } else {
1256                 iocb_cmd->un.fcpi64.bdl.bdeSize =
1257                         ((num_bde + 2) * sizeof(struct ulp_bde64));
1258                 iocb_cmd->unsli3.fcp_ext.ebde_count = (num_bde + 1);
1259         }
1260         fcp_cmnd->fcpDl = cpu_to_be32(scsi_bufflen(scsi_cmnd));
1261
1262         /*
1263          * Due to difference in data length between DIF/non-DIF paths,
1264          * we need to set word 4 of IOCB here
1265          */
1266         iocb_cmd->un.fcpi.fcpi_parm = scsi_bufflen(scsi_cmnd);
1267         return 0;
1268 }
1269
1270 #ifdef CONFIG_SCSI_LPFC_DEBUG_FS
1271
1272 /* Return if if error injection is detected by Initiator */
1273 #define BG_ERR_INIT     0x1
1274 /* Return if if error injection is detected by Target */
1275 #define BG_ERR_TGT      0x2
1276 /* Return if if swapping CSUM<-->CRC is required for error injection */
1277 #define BG_ERR_SWAP     0x10
1278 /* Return if disabling Guard/Ref/App checking is required for error injection */
1279 #define BG_ERR_CHECK    0x20
1280
1281 /**
1282  * lpfc_bg_err_inject - Determine if we should inject an error
1283  * @phba: The Hba for which this call is being executed.
1284  * @sc: The SCSI command to examine
1285  * @reftag: (out) BlockGuard reference tag for transmitted data
1286  * @apptag: (out) BlockGuard application tag for transmitted data
1287  * @new_guard (in) Value to replace CRC with if needed
1288  *
1289  * Returns BG_ERR_* bit mask or 0 if request ignored
1290  **/
1291 static int
1292 lpfc_bg_err_inject(struct lpfc_hba *phba, struct scsi_cmnd *sc,
1293                 uint32_t *reftag, uint16_t *apptag, uint32_t new_guard)
1294 {
1295         struct scatterlist *sgpe; /* s/g prot entry */
1296         struct lpfc_scsi_buf *lpfc_cmd = NULL;
1297         struct scsi_dif_tuple *src = NULL;
1298         struct lpfc_nodelist *ndlp;
1299         struct lpfc_rport_data *rdata;
1300         uint32_t op = scsi_get_prot_op(sc);
1301         uint32_t blksize;
1302         uint32_t numblks;
1303         sector_t lba;
1304         int rc = 0;
1305         int blockoff = 0;
1306
1307         if (op == SCSI_PROT_NORMAL)
1308                 return 0;
1309
1310         sgpe = scsi_prot_sglist(sc);
1311         lba = scsi_get_lba(sc);
1312
1313         /* First check if we need to match the LBA */
1314         if (phba->lpfc_injerr_lba != LPFC_INJERR_LBA_OFF) {
1315                 blksize = lpfc_cmd_blksize(sc);
1316                 numblks = (scsi_bufflen(sc) + blksize - 1) / blksize;
1317
1318                 /* Make sure we have the right LBA if one is specified */
1319                 if ((phba->lpfc_injerr_lba < lba) ||
1320                         (phba->lpfc_injerr_lba >= (lba + numblks)))
1321                         return 0;
1322                 if (sgpe) {
1323                         blockoff = phba->lpfc_injerr_lba - lba;
1324                         numblks = sg_dma_len(sgpe) /
1325                                 sizeof(struct scsi_dif_tuple);
1326                         if (numblks < blockoff)
1327                                 blockoff = numblks;
1328                 }
1329         }
1330
1331         /* Next check if we need to match the remote NPortID or WWPN */
1332         rdata = lpfc_rport_data_from_scsi_device(sc->device);
1333         if (rdata && rdata->pnode) {
1334                 ndlp = rdata->pnode;
1335
1336                 /* Make sure we have the right NPortID if one is specified */
1337                 if (phba->lpfc_injerr_nportid  &&
1338                         (phba->lpfc_injerr_nportid != ndlp->nlp_DID))
1339                         return 0;
1340
1341                 /*
1342                  * Make sure we have the right WWPN if one is specified.
1343                  * wwn[0] should be a non-zero NAA in a good WWPN.
1344                  */
1345                 if (phba->lpfc_injerr_wwpn.u.wwn[0]  &&
1346                         (memcmp(&ndlp->nlp_portname, &phba->lpfc_injerr_wwpn,
1347                                 sizeof(struct lpfc_name)) != 0))
1348                         return 0;
1349         }
1350
1351         /* Setup a ptr to the protection data if the SCSI host provides it */
1352         if (sgpe) {
1353                 src = (struct scsi_dif_tuple *)sg_virt(sgpe);
1354                 src += blockoff;
1355                 lpfc_cmd = (struct lpfc_scsi_buf *)sc->host_scribble;
1356         }
1357
1358         /* Should we change the Reference Tag */
1359         if (reftag) {
1360                 if (phba->lpfc_injerr_wref_cnt) {
1361                         switch (op) {
1362                         case SCSI_PROT_WRITE_PASS:
1363                                 if (src) {
1364                                         /*
1365                                          * For WRITE_PASS, force the error
1366                                          * to be sent on the wire. It should
1367                                          * be detected by the Target.
1368                                          * If blockoff != 0 error will be
1369                                          * inserted in middle of the IO.
1370                                          */
1371
1372                                         lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1373                                         "9076 BLKGRD: Injecting reftag error: "
1374                                         "write lba x%lx + x%x oldrefTag x%x\n",
1375                                         (unsigned long)lba, blockoff,
1376                                         be32_to_cpu(src->ref_tag));
1377
1378                                         /*
1379                                          * Save the old ref_tag so we can
1380                                          * restore it on completion.
1381                                          */
1382                                         if (lpfc_cmd) {
1383                                                 lpfc_cmd->prot_data_type =
1384                                                         LPFC_INJERR_REFTAG;
1385                                                 lpfc_cmd->prot_data_segment =
1386                                                         src;
1387                                                 lpfc_cmd->prot_data =
1388                                                         src->ref_tag;
1389                                         }
1390                                         src->ref_tag = cpu_to_be32(0xDEADBEEF);
1391                                         phba->lpfc_injerr_wref_cnt--;
1392                                         if (phba->lpfc_injerr_wref_cnt == 0) {
1393                                                 phba->lpfc_injerr_nportid = 0;
1394                                                 phba->lpfc_injerr_lba =
1395                                                         LPFC_INJERR_LBA_OFF;
1396                                                 memset(&phba->lpfc_injerr_wwpn,
1397                                                   0, sizeof(struct lpfc_name));
1398                                         }
1399                                         rc = BG_ERR_TGT | BG_ERR_CHECK;
1400
1401                                         break;
1402                                 }
1403                                 /* Drop thru */
1404                         case SCSI_PROT_WRITE_INSERT:
1405                                 /*
1406                                  * For WRITE_INSERT, force the error
1407                                  * to be sent on the wire. It should be
1408                                  * detected by the Target.
1409                                  */
1410                                 /* DEADBEEF will be the reftag on the wire */
1411                                 *reftag = 0xDEADBEEF;
1412                                 phba->lpfc_injerr_wref_cnt--;
1413                                 if (phba->lpfc_injerr_wref_cnt == 0) {
1414                                         phba->lpfc_injerr_nportid = 0;
1415                                         phba->lpfc_injerr_lba =
1416                                         LPFC_INJERR_LBA_OFF;
1417                                         memset(&phba->lpfc_injerr_wwpn,
1418                                                 0, sizeof(struct lpfc_name));
1419                                 }
1420                                 rc = BG_ERR_TGT | BG_ERR_CHECK;
1421
1422                                 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1423                                         "9078 BLKGRD: Injecting reftag error: "
1424                                         "write lba x%lx\n", (unsigned long)lba);
1425                                 break;
1426                         case SCSI_PROT_WRITE_STRIP:
1427                                 /*
1428                                  * For WRITE_STRIP and WRITE_PASS,
1429                                  * force the error on data
1430                                  * being copied from SLI-Host to SLI-Port.
1431                                  */
1432                                 *reftag = 0xDEADBEEF;
1433                                 phba->lpfc_injerr_wref_cnt--;
1434                                 if (phba->lpfc_injerr_wref_cnt == 0) {
1435                                         phba->lpfc_injerr_nportid = 0;
1436                                         phba->lpfc_injerr_lba =
1437                                                 LPFC_INJERR_LBA_OFF;
1438                                         memset(&phba->lpfc_injerr_wwpn,
1439                                                 0, sizeof(struct lpfc_name));
1440                                 }
1441                                 rc = BG_ERR_INIT;
1442
1443                                 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1444                                         "9077 BLKGRD: Injecting reftag error: "
1445                                         "write lba x%lx\n", (unsigned long)lba);
1446                                 break;
1447                         }
1448                 }
1449                 if (phba->lpfc_injerr_rref_cnt) {
1450                         switch (op) {
1451                         case SCSI_PROT_READ_INSERT:
1452                         case SCSI_PROT_READ_STRIP:
1453                         case SCSI_PROT_READ_PASS:
1454                                 /*
1455                                  * For READ_STRIP and READ_PASS, force the
1456                                  * error on data being read off the wire. It
1457                                  * should force an IO error to the driver.
1458                                  */
1459                                 *reftag = 0xDEADBEEF;
1460                                 phba->lpfc_injerr_rref_cnt--;
1461                                 if (phba->lpfc_injerr_rref_cnt == 0) {
1462                                         phba->lpfc_injerr_nportid = 0;
1463                                         phba->lpfc_injerr_lba =
1464                                                 LPFC_INJERR_LBA_OFF;
1465                                         memset(&phba->lpfc_injerr_wwpn,
1466                                                 0, sizeof(struct lpfc_name));
1467                                 }
1468                                 rc = BG_ERR_INIT;
1469
1470                                 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1471                                         "9079 BLKGRD: Injecting reftag error: "
1472                                         "read lba x%lx\n", (unsigned long)lba);
1473                                 break;
1474                         }
1475                 }
1476         }
1477
1478         /* Should we change the Application Tag */
1479         if (apptag) {
1480                 if (phba->lpfc_injerr_wapp_cnt) {
1481                         switch (op) {
1482                         case SCSI_PROT_WRITE_PASS:
1483                                 if (src) {
1484                                         /*
1485                                          * For WRITE_PASS, force the error
1486                                          * to be sent on the wire. It should
1487                                          * be detected by the Target.
1488                                          * If blockoff != 0 error will be
1489                                          * inserted in middle of the IO.
1490                                          */
1491
1492                                         lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1493                                         "9080 BLKGRD: Injecting apptag error: "
1494                                         "write lba x%lx + x%x oldappTag x%x\n",
1495                                         (unsigned long)lba, blockoff,
1496                                         be16_to_cpu(src->app_tag));
1497
1498                                         /*
1499                                          * Save the old app_tag so we can
1500                                          * restore it on completion.
1501                                          */
1502                                         if (lpfc_cmd) {
1503                                                 lpfc_cmd->prot_data_type =
1504                                                         LPFC_INJERR_APPTAG;
1505                                                 lpfc_cmd->prot_data_segment =
1506                                                         src;
1507                                                 lpfc_cmd->prot_data =
1508                                                         src->app_tag;
1509                                         }
1510                                         src->app_tag = cpu_to_be16(0xDEAD);
1511                                         phba->lpfc_injerr_wapp_cnt--;
1512                                         if (phba->lpfc_injerr_wapp_cnt == 0) {
1513                                                 phba->lpfc_injerr_nportid = 0;
1514                                                 phba->lpfc_injerr_lba =
1515                                                         LPFC_INJERR_LBA_OFF;
1516                                                 memset(&phba->lpfc_injerr_wwpn,
1517                                                   0, sizeof(struct lpfc_name));
1518                                         }
1519                                         rc = BG_ERR_TGT | BG_ERR_CHECK;
1520                                         break;
1521                                 }
1522                                 /* Drop thru */
1523                         case SCSI_PROT_WRITE_INSERT:
1524                                 /*
1525                                  * For WRITE_INSERT, force the
1526                                  * error to be sent on the wire. It should be
1527                                  * detected by the Target.
1528                                  */
1529                                 /* DEAD will be the apptag on the wire */
1530                                 *apptag = 0xDEAD;
1531                                 phba->lpfc_injerr_wapp_cnt--;
1532                                 if (phba->lpfc_injerr_wapp_cnt == 0) {
1533                                         phba->lpfc_injerr_nportid = 0;
1534                                         phba->lpfc_injerr_lba =
1535                                                 LPFC_INJERR_LBA_OFF;
1536                                         memset(&phba->lpfc_injerr_wwpn,
1537                                                 0, sizeof(struct lpfc_name));
1538                                 }
1539                                 rc = BG_ERR_TGT | BG_ERR_CHECK;
1540
1541                                 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1542                                         "0813 BLKGRD: Injecting apptag error: "
1543                                         "write lba x%lx\n", (unsigned long)lba);
1544                                 break;
1545                         case SCSI_PROT_WRITE_STRIP:
1546                                 /*
1547                                  * For WRITE_STRIP and WRITE_PASS,
1548                                  * force the error on data
1549                                  * being copied from SLI-Host to SLI-Port.
1550                                  */
1551                                 *apptag = 0xDEAD;
1552                                 phba->lpfc_injerr_wapp_cnt--;
1553                                 if (phba->lpfc_injerr_wapp_cnt == 0) {
1554                                         phba->lpfc_injerr_nportid = 0;
1555                                         phba->lpfc_injerr_lba =
1556                                                 LPFC_INJERR_LBA_OFF;
1557                                         memset(&phba->lpfc_injerr_wwpn,
1558                                                 0, sizeof(struct lpfc_name));
1559                                 }
1560                                 rc = BG_ERR_INIT;
1561
1562                                 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1563                                         "0812 BLKGRD: Injecting apptag error: "
1564                                         "write lba x%lx\n", (unsigned long)lba);
1565                                 break;
1566                         }
1567                 }
1568                 if (phba->lpfc_injerr_rapp_cnt) {
1569                         switch (op) {
1570                         case SCSI_PROT_READ_INSERT:
1571                         case SCSI_PROT_READ_STRIP:
1572                         case SCSI_PROT_READ_PASS:
1573                                 /*
1574                                  * For READ_STRIP and READ_PASS, force the
1575                                  * error on data being read off the wire. It
1576                                  * should force an IO error to the driver.
1577                                  */
1578                                 *apptag = 0xDEAD;
1579                                 phba->lpfc_injerr_rapp_cnt--;
1580                                 if (phba->lpfc_injerr_rapp_cnt == 0) {
1581                                         phba->lpfc_injerr_nportid = 0;
1582                                         phba->lpfc_injerr_lba =
1583                                                 LPFC_INJERR_LBA_OFF;
1584                                         memset(&phba->lpfc_injerr_wwpn,
1585                                                 0, sizeof(struct lpfc_name));
1586                                 }
1587                                 rc = BG_ERR_INIT;
1588
1589                                 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1590                                         "0814 BLKGRD: Injecting apptag error: "
1591                                         "read lba x%lx\n", (unsigned long)lba);
1592                                 break;
1593                         }
1594                 }
1595         }
1596
1597
1598         /* Should we change the Guard Tag */
1599         if (new_guard) {
1600                 if (phba->lpfc_injerr_wgrd_cnt) {
1601                         switch (op) {
1602                         case SCSI_PROT_WRITE_PASS:
1603                                 rc = BG_ERR_CHECK;
1604                                 /* Drop thru */
1605
1606                         case SCSI_PROT_WRITE_INSERT:
1607                                 /*
1608                                  * For WRITE_INSERT, force the
1609                                  * error to be sent on the wire. It should be
1610                                  * detected by the Target.
1611                                  */
1612                                 phba->lpfc_injerr_wgrd_cnt--;
1613                                 if (phba->lpfc_injerr_wgrd_cnt == 0) {
1614                                         phba->lpfc_injerr_nportid = 0;
1615                                         phba->lpfc_injerr_lba =
1616                                                 LPFC_INJERR_LBA_OFF;
1617                                         memset(&phba->lpfc_injerr_wwpn,
1618                                                 0, sizeof(struct lpfc_name));
1619                                 }
1620
1621                                 rc |= BG_ERR_TGT | BG_ERR_SWAP;
1622                                 /* Signals the caller to swap CRC->CSUM */
1623
1624                                 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1625                                         "0817 BLKGRD: Injecting guard error: "
1626                                         "write lba x%lx\n", (unsigned long)lba);
1627                                 break;
1628                         case SCSI_PROT_WRITE_STRIP:
1629                                 /*
1630                                  * For WRITE_STRIP and WRITE_PASS,
1631                                  * force the error on data
1632                                  * being copied from SLI-Host to SLI-Port.
1633                                  */
1634                                 phba->lpfc_injerr_wgrd_cnt--;
1635                                 if (phba->lpfc_injerr_wgrd_cnt == 0) {
1636                                         phba->lpfc_injerr_nportid = 0;
1637                                         phba->lpfc_injerr_lba =
1638                                                 LPFC_INJERR_LBA_OFF;
1639                                         memset(&phba->lpfc_injerr_wwpn,
1640                                                 0, sizeof(struct lpfc_name));
1641                                 }
1642
1643                                 rc = BG_ERR_INIT | BG_ERR_SWAP;
1644                                 /* Signals the caller to swap CRC->CSUM */
1645
1646                                 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1647                                         "0816 BLKGRD: Injecting guard error: "
1648                                         "write lba x%lx\n", (unsigned long)lba);
1649                                 break;
1650                         }
1651                 }
1652                 if (phba->lpfc_injerr_rgrd_cnt) {
1653                         switch (op) {
1654                         case SCSI_PROT_READ_INSERT:
1655                         case SCSI_PROT_READ_STRIP:
1656                         case SCSI_PROT_READ_PASS:
1657                                 /*
1658                                  * For READ_STRIP and READ_PASS, force the
1659                                  * error on data being read off the wire. It
1660                                  * should force an IO error to the driver.
1661                                  */
1662                                 phba->lpfc_injerr_rgrd_cnt--;
1663                                 if (phba->lpfc_injerr_rgrd_cnt == 0) {
1664                                         phba->lpfc_injerr_nportid = 0;
1665                                         phba->lpfc_injerr_lba =
1666                                                 LPFC_INJERR_LBA_OFF;
1667                                         memset(&phba->lpfc_injerr_wwpn,
1668                                                 0, sizeof(struct lpfc_name));
1669                                 }
1670
1671                                 rc = BG_ERR_INIT | BG_ERR_SWAP;
1672                                 /* Signals the caller to swap CRC->CSUM */
1673
1674                                 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1675                                         "0818 BLKGRD: Injecting guard error: "
1676                                         "read lba x%lx\n", (unsigned long)lba);
1677                         }
1678                 }
1679         }
1680
1681         return rc;
1682 }
1683 #endif
1684
1685 /**
1686  * lpfc_sc_to_bg_opcodes - Determine the BlockGuard opcodes to be used with
1687  * the specified SCSI command.
1688  * @phba: The Hba for which this call is being executed.
1689  * @sc: The SCSI command to examine
1690  * @txopt: (out) BlockGuard operation for transmitted data
1691  * @rxopt: (out) BlockGuard operation for received data
1692  *
1693  * Returns: zero on success; non-zero if tx and/or rx op cannot be determined
1694  *
1695  **/
1696 static int
1697 lpfc_sc_to_bg_opcodes(struct lpfc_hba *phba, struct scsi_cmnd *sc,
1698                 uint8_t *txop, uint8_t *rxop)
1699 {
1700         uint8_t ret = 0;
1701
1702         if (lpfc_cmd_guard_csum(sc)) {
1703                 switch (scsi_get_prot_op(sc)) {
1704                 case SCSI_PROT_READ_INSERT:
1705                 case SCSI_PROT_WRITE_STRIP:
1706                         *rxop = BG_OP_IN_NODIF_OUT_CSUM;
1707                         *txop = BG_OP_IN_CSUM_OUT_NODIF;
1708                         break;
1709
1710                 case SCSI_PROT_READ_STRIP:
1711                 case SCSI_PROT_WRITE_INSERT:
1712                         *rxop = BG_OP_IN_CRC_OUT_NODIF;
1713                         *txop = BG_OP_IN_NODIF_OUT_CRC;
1714                         break;
1715
1716                 case SCSI_PROT_READ_PASS:
1717                 case SCSI_PROT_WRITE_PASS:
1718                         *rxop = BG_OP_IN_CRC_OUT_CSUM;
1719                         *txop = BG_OP_IN_CSUM_OUT_CRC;
1720                         break;
1721
1722                 case SCSI_PROT_NORMAL:
1723                 default:
1724                         lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1725                                 "9063 BLKGRD: Bad op/guard:%d/IP combination\n",
1726                                         scsi_get_prot_op(sc));
1727                         ret = 1;
1728                         break;
1729
1730                 }
1731         } else {
1732                 switch (scsi_get_prot_op(sc)) {
1733                 case SCSI_PROT_READ_STRIP:
1734                 case SCSI_PROT_WRITE_INSERT:
1735                         *rxop = BG_OP_IN_CRC_OUT_NODIF;
1736                         *txop = BG_OP_IN_NODIF_OUT_CRC;
1737                         break;
1738
1739                 case SCSI_PROT_READ_PASS:
1740                 case SCSI_PROT_WRITE_PASS:
1741                         *rxop = BG_OP_IN_CRC_OUT_CRC;
1742                         *txop = BG_OP_IN_CRC_OUT_CRC;
1743                         break;
1744
1745                 case SCSI_PROT_READ_INSERT:
1746                 case SCSI_PROT_WRITE_STRIP:
1747                         *rxop = BG_OP_IN_NODIF_OUT_CRC;
1748                         *txop = BG_OP_IN_CRC_OUT_NODIF;
1749                         break;
1750
1751                 case SCSI_PROT_NORMAL:
1752                 default:
1753                         lpfc_printf_log(phba, KERN_ERR, LOG_BG,
1754                                 "9075 BLKGRD: Bad op/guard:%d/CRC combination\n",
1755                                         scsi_get_prot_op(sc));
1756                         ret = 1;
1757                         break;
1758                 }
1759         }
1760
1761         return ret;
1762 }
1763
1764 #ifdef CONFIG_SCSI_LPFC_DEBUG_FS
1765 /**
1766  * lpfc_bg_err_opcodes - reDetermine the BlockGuard opcodes to be used with
1767  * the specified SCSI command in order to force a guard tag error.
1768  * @phba: The Hba for which this call is being executed.
1769  * @sc: The SCSI command to examine
1770  * @txopt: (out) BlockGuard operation for transmitted data
1771  * @rxopt: (out) BlockGuard operation for received data
1772  *
1773  * Returns: zero on success; non-zero if tx and/or rx op cannot be determined
1774  *
1775  **/
1776 static int
1777 lpfc_bg_err_opcodes(struct lpfc_hba *phba, struct scsi_cmnd *sc,
1778                 uint8_t *txop, uint8_t *rxop)
1779 {
1780         uint8_t ret = 0;
1781
1782         if (lpfc_cmd_guard_csum(sc)) {
1783                 switch (scsi_get_prot_op(sc)) {
1784                 case SCSI_PROT_READ_INSERT:
1785                 case SCSI_PROT_WRITE_STRIP:
1786                         *rxop = BG_OP_IN_NODIF_OUT_CRC;
1787                         *txop = BG_OP_IN_CRC_OUT_NODIF;
1788                         break;
1789
1790                 case SCSI_PROT_READ_STRIP:
1791                 case SCSI_PROT_WRITE_INSERT:
1792                         *rxop = BG_OP_IN_CSUM_OUT_NODIF;
1793                         *txop = BG_OP_IN_NODIF_OUT_CSUM;
1794                         break;
1795
1796                 case SCSI_PROT_READ_PASS:
1797                 case SCSI_PROT_WRITE_PASS:
1798                         *rxop = BG_OP_IN_CSUM_OUT_CRC;
1799                         *txop = BG_OP_IN_CRC_OUT_CSUM;
1800                         break;
1801
1802                 case SCSI_PROT_NORMAL:
1803                 default:
1804                         break;
1805
1806                 }
1807         } else {
1808                 switch (scsi_get_prot_op(sc)) {
1809                 case SCSI_PROT_READ_STRIP:
1810                 case SCSI_PROT_WRITE_INSERT:
1811                         *rxop = BG_OP_IN_CSUM_OUT_NODIF;
1812                         *txop = BG_OP_IN_NODIF_OUT_CSUM;
1813                         break;
1814
1815                 case SCSI_PROT_READ_PASS:
1816                 case SCSI_PROT_WRITE_PASS:
1817                         *rxop = BG_OP_IN_CSUM_OUT_CSUM;
1818                         *txop = BG_OP_IN_CSUM_OUT_CSUM;
1819                         break;
1820
1821                 case SCSI_PROT_READ_INSERT:
1822                 case SCSI_PROT_WRITE_STRIP:
1823                         *rxop = BG_OP_IN_NODIF_OUT_CSUM;
1824                         *txop = BG_OP_IN_CSUM_OUT_NODIF;
1825                         break;
1826
1827                 case SCSI_PROT_NORMAL:
1828                 default:
1829                         break;
1830                 }
1831         }
1832
1833         return ret;
1834 }
1835 #endif
1836
1837 /**
1838  * lpfc_bg_setup_bpl - Setup BlockGuard BPL with no protection data
1839  * @phba: The Hba for which this call is being executed.
1840  * @sc: pointer to scsi command we're working on
1841  * @bpl: pointer to buffer list for protection groups
1842  * @datacnt: number of segments of data that have been dma mapped
1843  *
1844  * This function sets up BPL buffer list for protection groups of
1845  * type LPFC_PG_TYPE_NO_DIF
1846  *
1847  * This is usually used when the HBA is instructed to generate
1848  * DIFs and insert them into data stream (or strip DIF from
1849  * incoming data stream)
1850  *
1851  * The buffer list consists of just one protection group described
1852  * below:
1853  *                                +-------------------------+
1854  *   start of prot group  -->     |          PDE_5          |
1855  *                                +-------------------------+
1856  *                                |          PDE_6          |
1857  *                                +-------------------------+
1858  *                                |         Data BDE        |
1859  *                                +-------------------------+
1860  *                                |more Data BDE's ... (opt)|
1861  *                                +-------------------------+
1862  *
1863  *
1864  * Note: Data s/g buffers have been dma mapped
1865  *
1866  * Returns the number of BDEs added to the BPL.
1867  **/
1868 static int
1869 lpfc_bg_setup_bpl(struct lpfc_hba *phba, struct scsi_cmnd *sc,
1870                 struct ulp_bde64 *bpl, int datasegcnt)
1871 {
1872         struct scatterlist *sgde = NULL; /* s/g data entry */
1873         struct lpfc_pde5 *pde5 = NULL;
1874         struct lpfc_pde6 *pde6 = NULL;
1875         dma_addr_t physaddr;
1876         int i = 0, num_bde = 0, status;
1877         int datadir = sc->sc_data_direction;
1878 #ifdef CONFIG_SCSI_LPFC_DEBUG_FS
1879         uint32_t rc;
1880 #endif
1881         uint32_t checking = 1;
1882         uint32_t reftag;
1883         uint8_t txop, rxop;
1884
1885         status  = lpfc_sc_to_bg_opcodes(phba, sc, &txop, &rxop);
1886         if (status)
1887                 goto out;
1888
1889         /* extract some info from the scsi command for pde*/
1890         reftag = (uint32_t)scsi_get_lba(sc); /* Truncate LBA */
1891
1892 #ifdef CONFIG_SCSI_LPFC_DEBUG_FS
1893         rc = lpfc_bg_err_inject(phba, sc, &reftag, NULL, 1);
1894         if (rc) {
1895                 if (rc & BG_ERR_SWAP)
1896                         lpfc_bg_err_opcodes(phba, sc, &txop, &rxop);
1897                 if (rc & BG_ERR_CHECK)
1898                         checking = 0;
1899         }
1900 #endif
1901
1902         /* setup PDE5 with what we have */
1903         pde5 = (struct lpfc_pde5 *) bpl;
1904         memset(pde5, 0, sizeof(struct lpfc_pde5));
1905         bf_set(pde5_type, pde5, LPFC_PDE5_DESCRIPTOR);
1906
1907         /* Endianness conversion if necessary for PDE5 */
1908         pde5->word0 = cpu_to_le32(pde5->word0);
1909         pde5->reftag = cpu_to_le32(reftag);
1910
1911         /* advance bpl and increment bde count */
1912         num_bde++;
1913         bpl++;
1914         pde6 = (struct lpfc_pde6 *) bpl;
1915
1916         /* setup PDE6 with the rest of the info */
1917         memset(pde6, 0, sizeof(struct lpfc_pde6));
1918         bf_set(pde6_type, pde6, LPFC_PDE6_DESCRIPTOR);
1919         bf_set(pde6_optx, pde6, txop);
1920         bf_set(pde6_oprx, pde6, rxop);
1921
1922         /*
1923          * We only need to check the data on READs, for WRITEs
1924          * protection data is automatically generated, not checked.
1925          */
1926         if (datadir == DMA_FROM_DEVICE) {
1927                 if (lpfc_cmd_protect(sc, LPFC_CHECK_PROTECT_GUARD))
1928                         bf_set(pde6_ce, pde6, checking);
1929                 else
1930                         bf_set(pde6_ce, pde6, 0);
1931
1932                 if (lpfc_cmd_protect(sc, LPFC_CHECK_PROTECT_REF))
1933                         bf_set(pde6_re, pde6, checking);
1934                 else
1935                         bf_set(pde6_re, pde6, 0);
1936         }
1937         bf_set(pde6_ai, pde6, 1);
1938         bf_set(pde6_ae, pde6, 0);
1939         bf_set(pde6_apptagval, pde6, 0);
1940
1941         /* Endianness conversion if necessary for PDE6 */
1942         pde6->word0 = cpu_to_le32(pde6->word0);
1943         pde6->word1 = cpu_to_le32(pde6->word1);
1944         pde6->word2 = cpu_to_le32(pde6->word2);
1945
1946         /* advance bpl and increment bde count */
1947         num_bde++;
1948         bpl++;
1949
1950         /* assumption: caller has already run dma_map_sg on command data */
1951         scsi_for_each_sg(sc, sgde, datasegcnt, i) {
1952                 physaddr = sg_dma_address(sgde);
1953                 bpl->addrLow = le32_to_cpu(putPaddrLow(physaddr));
1954                 bpl->addrHigh = le32_to_cpu(putPaddrHigh(physaddr));
1955                 bpl->tus.f.bdeSize = sg_dma_len(sgde);
1956                 if (datadir == DMA_TO_DEVICE)
1957                         bpl->tus.f.bdeFlags = BUFF_TYPE_BDE_64;
1958                 else
1959                         bpl->tus.f.bdeFlags = BUFF_TYPE_BDE_64I;
1960                 bpl->tus.w = le32_to_cpu(bpl->tus.w);
1961                 bpl++;
1962                 num_bde++;
1963         }
1964
1965 out:
1966         return num_bde;
1967 }
1968
1969 /**
1970  * lpfc_bg_setup_bpl_prot - Setup BlockGuard BPL with protection data
1971  * @phba: The Hba for which this call is being executed.
1972  * @sc: pointer to scsi command we're working on
1973  * @bpl: pointer to buffer list for protection groups
1974  * @datacnt: number of segments of data that have been dma mapped
1975  * @protcnt: number of segment of protection data that have been dma mapped
1976  *
1977  * This function sets up BPL buffer list for protection groups of
1978  * type LPFC_PG_TYPE_DIF
1979  *
1980  * This is usually used when DIFs are in their own buffers,
1981  * separate from the data. The HBA can then by instructed
1982  * to place the DIFs in the outgoing stream.  For read operations,
1983  * The HBA could extract the DIFs and place it in DIF buffers.
1984  *
1985  * The buffer list for this type consists of one or more of the
1986  * protection groups described below:
1987  *                                    +-------------------------+
1988  *   start of first prot group  -->   |          PDE_5          |
1989  *                                    +-------------------------+
1990  *                                    |          PDE_6          |
1991  *                                    +-------------------------+
1992  *                                    |      PDE_7 (Prot BDE)   |
1993  *                                    +-------------------------+
1994  *                                    |        Data BDE         |
1995  *                                    +-------------------------+
1996  *                                    |more Data BDE's ... (opt)|
1997  *                                    +-------------------------+
1998  *   start of new  prot group  -->    |          PDE_5          |
1999  *                                    +-------------------------+
2000  *                                    |          ...            |
2001  *                                    +-------------------------+
2002  *
2003  * Note: It is assumed that both data and protection s/g buffers have been
2004  *       mapped for DMA
2005  *
2006  * Returns the number of BDEs added to the BPL.
2007  **/
2008 static int
2009 lpfc_bg_setup_bpl_prot(struct lpfc_hba *phba, struct scsi_cmnd *sc,
2010                 struct ulp_bde64 *bpl, int datacnt, int protcnt)
2011 {
2012         struct scatterlist *sgde = NULL; /* s/g data entry */
2013         struct scatterlist *sgpe = NULL; /* s/g prot entry */
2014         struct lpfc_pde5 *pde5 = NULL;
2015         struct lpfc_pde6 *pde6 = NULL;
2016         struct lpfc_pde7 *pde7 = NULL;
2017         dma_addr_t dataphysaddr, protphysaddr;
2018         unsigned short curr_data = 0, curr_prot = 0;
2019         unsigned int split_offset;
2020         unsigned int protgroup_len, protgroup_offset = 0, protgroup_remainder;
2021         unsigned int protgrp_blks, protgrp_bytes;
2022         unsigned int remainder, subtotal;
2023         int status;
2024         int datadir = sc->sc_data_direction;
2025         unsigned char pgdone = 0, alldone = 0;
2026         unsigned blksize;
2027 #ifdef CONFIG_SCSI_LPFC_DEBUG_FS
2028         uint32_t rc;
2029 #endif
2030         uint32_t checking = 1;
2031         uint32_t reftag;
2032         uint8_t txop, rxop;
2033         int num_bde = 0;
2034
2035         sgpe = scsi_prot_sglist(sc);
2036         sgde = scsi_sglist(sc);
2037
2038         if (!sgpe || !sgde) {
2039                 lpfc_printf_log(phba, KERN_ERR, LOG_FCP,
2040                                 "9020 Invalid s/g entry: data=0x%p prot=0x%p\n",
2041                                 sgpe, sgde);
2042                 return 0;
2043         }
2044
2045         status = lpfc_sc_to_bg_opcodes(phba, sc, &txop, &rxop);
2046         if (status)
2047                 goto out;
2048
2049         /* extract some info from the scsi command */
2050         blksize = lpfc_cmd_blksize(sc);
2051         reftag = (uint32_t)scsi_get_lba(sc); /* Truncate LBA */
2052
2053 #ifdef CONFIG_SCSI_LPFC_DEBUG_FS
2054         rc = lpfc_bg_err_inject(phba, sc, &reftag, NULL, 1);
2055         if (rc) {
2056                 if (rc & BG_ERR_SWAP)
2057                         lpfc_bg_err_opcodes(phba, sc, &txop, &rxop);
2058                 if (rc & BG_ERR_CHECK)
2059                         checking = 0;
2060         }
2061 #endif
2062
2063         split_offset = 0;
2064         do {
2065                 /* Check to see if we ran out of space */
2066                 if (num_bde >= (phba->cfg_total_seg_cnt - 2))
2067                         return num_bde + 3;
2068
2069                 /* setup PDE5 with what we have */
2070                 pde5 = (struct lpfc_pde5 *) bpl;
2071                 memset(pde5, 0, sizeof(struct lpfc_pde5));
2072                 bf_set(pde5_type, pde5, LPFC_PDE5_DESCRIPTOR);
2073
2074                 /* Endianness conversion if necessary for PDE5 */
2075                 pde5->word0 = cpu_to_le32(pde5->word0);
2076                 pde5->reftag = cpu_to_le32(reftag);
2077
2078                 /* advance bpl and increment bde count */
2079                 num_bde++;
2080                 bpl++;
2081                 pde6 = (struct lpfc_pde6 *) bpl;
2082
2083                 /* setup PDE6 with the rest of the info */
2084                 memset(pde6, 0, sizeof(struct lpfc_pde6));
2085                 bf_set(pde6_type, pde6, LPFC_PDE6_DESCRIPTOR);
2086                 bf_set(pde6_optx, pde6, txop);
2087                 bf_set(pde6_oprx, pde6, rxop);
2088
2089                 if (lpfc_cmd_protect(sc, LPFC_CHECK_PROTECT_GUARD))
2090                         bf_set(pde6_ce, pde6, checking);
2091                 else
2092                         bf_set(pde6_ce, pde6, 0);
2093
2094                 if (lpfc_cmd_protect(sc, LPFC_CHECK_PROTECT_REF))
2095                         bf_set(pde6_re, pde6, checking);
2096                 else
2097                         bf_set(pde6_re, pde6, 0);
2098
2099                 bf_set(pde6_ai, pde6, 1);
2100                 bf_set(pde6_ae, pde6, 0);
2101                 bf_set(pde6_apptagval, pde6, 0);
2102
2103                 /* Endianness conversion if necessary for PDE6 */
2104                 pde6->word0 = cpu_to_le32(pde6->word0);
2105                 pde6->word1 = cpu_to_le32(pde6->word1);
2106                 pde6->word2 = cpu_to_le32(pde6->word2);
2107
2108                 /* advance bpl and increment bde count */
2109                 num_bde++;
2110                 bpl++;
2111
2112                 /* setup the first BDE that points to protection buffer */
2113                 protphysaddr = sg_dma_address(sgpe) + protgroup_offset;
2114                 protgroup_len = sg_dma_len(sgpe) - protgroup_offset;
2115
2116                 /* must be integer multiple of the DIF block length */
2117                 BUG_ON(protgroup_len % 8);
2118
2119                 pde7 = (struct lpfc_pde7 *) bpl;
2120                 memset(pde7, 0, sizeof(struct lpfc_pde7));
2121                 bf_set(pde7_type, pde7, LPFC_PDE7_DESCRIPTOR);
2122
2123                 pde7->addrHigh = le32_to_cpu(putPaddrHigh(protphysaddr));
2124                 pde7->addrLow = le32_to_cpu(putPaddrLow(protphysaddr));
2125
2126                 protgrp_blks = protgroup_len / 8;
2127                 protgrp_bytes = protgrp_blks * blksize;
2128
2129                 /* check if this pde is crossing the 4K boundary; if so split */
2130                 if ((pde7->addrLow & 0xfff) + protgroup_len > 0x1000) {
2131                         protgroup_remainder = 0x1000 - (pde7->addrLow & 0xfff);
2132                         protgroup_offset += protgroup_remainder;
2133                         protgrp_blks = protgroup_remainder / 8;
2134                         protgrp_bytes = protgrp_blks * blksize;
2135                 } else {
2136                         protgroup_offset = 0;
2137                         curr_prot++;
2138                 }
2139
2140                 num_bde++;
2141
2142                 /* setup BDE's for data blocks associated with DIF data */
2143                 pgdone = 0;
2144                 subtotal = 0; /* total bytes processed for current prot grp */
2145                 while (!pgdone) {
2146                         /* Check to see if we ran out of space */
2147                         if (num_bde >= phba->cfg_total_seg_cnt)
2148                                 return num_bde + 1;
2149
2150                         if (!sgde) {
2151                                 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
2152                                         "9065 BLKGRD:%s Invalid data segment\n",
2153                                                 __func__);
2154                                 return 0;
2155                         }
2156                         bpl++;
2157                         dataphysaddr = sg_dma_address(sgde) + split_offset;
2158                         bpl->addrLow = le32_to_cpu(putPaddrLow(dataphysaddr));
2159                         bpl->addrHigh = le32_to_cpu(putPaddrHigh(dataphysaddr));
2160
2161                         remainder = sg_dma_len(sgde) - split_offset;
2162
2163                         if ((subtotal + remainder) <= protgrp_bytes) {
2164                                 /* we can use this whole buffer */
2165                                 bpl->tus.f.bdeSize = remainder;
2166                                 split_offset = 0;
2167
2168                                 if ((subtotal + remainder) == protgrp_bytes)
2169                                         pgdone = 1;
2170                         } else {
2171                                 /* must split this buffer with next prot grp */
2172                                 bpl->tus.f.bdeSize = protgrp_bytes - subtotal;
2173                                 split_offset += bpl->tus.f.bdeSize;
2174                         }
2175
2176                         subtotal += bpl->tus.f.bdeSize;
2177
2178                         if (datadir == DMA_TO_DEVICE)
2179                                 bpl->tus.f.bdeFlags = BUFF_TYPE_BDE_64;
2180                         else
2181                                 bpl->tus.f.bdeFlags = BUFF_TYPE_BDE_64I;
2182                         bpl->tus.w = le32_to_cpu(bpl->tus.w);
2183
2184                         num_bde++;
2185                         curr_data++;
2186
2187                         if (split_offset)
2188                                 break;
2189
2190                         /* Move to the next s/g segment if possible */
2191                         sgde = sg_next(sgde);
2192
2193                 }
2194
2195                 if (protgroup_offset) {
2196                         /* update the reference tag */
2197                         reftag += protgrp_blks;
2198                         bpl++;
2199                         continue;
2200                 }
2201
2202                 /* are we done ? */
2203                 if (curr_prot == protcnt) {
2204                         alldone = 1;
2205                 } else if (curr_prot < protcnt) {
2206                         /* advance to next prot buffer */
2207                         sgpe = sg_next(sgpe);
2208                         bpl++;
2209
2210                         /* update the reference tag */
2211                         reftag += protgrp_blks;
2212                 } else {
2213                         /* if we're here, we have a bug */
2214                         lpfc_printf_log(phba, KERN_ERR, LOG_BG,
2215                                 "9054 BLKGRD: bug in %s\n", __func__);
2216                 }
2217
2218         } while (!alldone);
2219 out:
2220
2221         return num_bde;
2222 }
2223
2224 /**
2225  * lpfc_bg_setup_sgl - Setup BlockGuard SGL with no protection data
2226  * @phba: The Hba for which this call is being executed.
2227  * @sc: pointer to scsi command we're working on
2228  * @sgl: pointer to buffer list for protection groups
2229  * @datacnt: number of segments of data that have been dma mapped
2230  *
2231  * This function sets up SGL buffer list for protection groups of
2232  * type LPFC_PG_TYPE_NO_DIF
2233  *
2234  * This is usually used when the HBA is instructed to generate
2235  * DIFs and insert them into data stream (or strip DIF from
2236  * incoming data stream)
2237  *
2238  * The buffer list consists of just one protection group described
2239  * below:
2240  *                                +-------------------------+
2241  *   start of prot group  -->     |         DI_SEED         |
2242  *                                +-------------------------+
2243  *                                |         Data SGE        |
2244  *                                +-------------------------+
2245  *                                |more Data SGE's ... (opt)|
2246  *                                +-------------------------+
2247  *
2248  *
2249  * Note: Data s/g buffers have been dma mapped
2250  *
2251  * Returns the number of SGEs added to the SGL.
2252  **/
2253 static int
2254 lpfc_bg_setup_sgl(struct lpfc_hba *phba, struct scsi_cmnd *sc,
2255                 struct sli4_sge *sgl, int datasegcnt)
2256 {
2257         struct scatterlist *sgde = NULL; /* s/g data entry */
2258         struct sli4_sge_diseed *diseed = NULL;
2259         dma_addr_t physaddr;
2260         int i = 0, num_sge = 0, status;
2261         uint32_t reftag;
2262         uint8_t txop, rxop;
2263 #ifdef CONFIG_SCSI_LPFC_DEBUG_FS
2264         uint32_t rc;
2265 #endif
2266         uint32_t checking = 1;
2267         uint32_t dma_len;
2268         uint32_t dma_offset = 0;
2269
2270         status  = lpfc_sc_to_bg_opcodes(phba, sc, &txop, &rxop);
2271         if (status)
2272                 goto out;
2273
2274         /* extract some info from the scsi command for pde*/
2275         reftag = (uint32_t)scsi_get_lba(sc); /* Truncate LBA */
2276
2277 #ifdef CONFIG_SCSI_LPFC_DEBUG_FS
2278         rc = lpfc_bg_err_inject(phba, sc, &reftag, NULL, 1);
2279         if (rc) {
2280                 if (rc & BG_ERR_SWAP)
2281                         lpfc_bg_err_opcodes(phba, sc, &txop, &rxop);
2282                 if (rc & BG_ERR_CHECK)
2283                         checking = 0;
2284         }
2285 #endif
2286
2287         /* setup DISEED with what we have */
2288         diseed = (struct sli4_sge_diseed *) sgl;
2289         memset(diseed, 0, sizeof(struct sli4_sge_diseed));
2290         bf_set(lpfc_sli4_sge_type, sgl, LPFC_SGE_TYPE_DISEED);
2291
2292         /* Endianness conversion if necessary */
2293         diseed->ref_tag = cpu_to_le32(reftag);
2294         diseed->ref_tag_tran = diseed->ref_tag;
2295
2296         /*
2297          * We only need to check the data on READs, for WRITEs
2298          * protection data is automatically generated, not checked.
2299          */
2300         if (sc->sc_data_direction == DMA_FROM_DEVICE) {
2301                 if (lpfc_cmd_protect(sc, LPFC_CHECK_PROTECT_GUARD))
2302                         bf_set(lpfc_sli4_sge_dif_ce, diseed, checking);
2303                 else
2304                         bf_set(lpfc_sli4_sge_dif_ce, diseed, 0);
2305
2306                 if (lpfc_cmd_protect(sc, LPFC_CHECK_PROTECT_REF))
2307                         bf_set(lpfc_sli4_sge_dif_re, diseed, checking);
2308                 else
2309                         bf_set(lpfc_sli4_sge_dif_re, diseed, 0);
2310         }
2311
2312         /* setup DISEED with the rest of the info */
2313         bf_set(lpfc_sli4_sge_dif_optx, diseed, txop);
2314         bf_set(lpfc_sli4_sge_dif_oprx, diseed, rxop);
2315
2316         bf_set(lpfc_sli4_sge_dif_ai, diseed, 1);
2317         bf_set(lpfc_sli4_sge_dif_me, diseed, 0);
2318
2319         /* Endianness conversion if necessary for DISEED */
2320         diseed->word2 = cpu_to_le32(diseed->word2);
2321         diseed->word3 = cpu_to_le32(diseed->word3);
2322
2323         /* advance bpl and increment sge count */
2324         num_sge++;
2325         sgl++;
2326
2327         /* assumption: caller has already run dma_map_sg on command data */
2328         scsi_for_each_sg(sc, sgde, datasegcnt, i) {
2329                 physaddr = sg_dma_address(sgde);
2330                 dma_len = sg_dma_len(sgde);
2331                 sgl->addr_lo = cpu_to_le32(putPaddrLow(physaddr));
2332                 sgl->addr_hi = cpu_to_le32(putPaddrHigh(physaddr));
2333                 if ((i + 1) == datasegcnt)
2334                         bf_set(lpfc_sli4_sge_last, sgl, 1);
2335                 else
2336                         bf_set(lpfc_sli4_sge_last, sgl, 0);
2337                 bf_set(lpfc_sli4_sge_offset, sgl, dma_offset);
2338                 bf_set(lpfc_sli4_sge_type, sgl, LPFC_SGE_TYPE_DATA);
2339
2340                 sgl->sge_len = cpu_to_le32(dma_len);
2341                 dma_offset += dma_len;
2342
2343                 sgl++;
2344                 num_sge++;
2345         }
2346
2347 out:
2348         return num_sge;
2349 }
2350
2351 /**
2352  * lpfc_bg_setup_sgl_prot - Setup BlockGuard SGL with protection data
2353  * @phba: The Hba for which this call is being executed.
2354  * @sc: pointer to scsi command we're working on
2355  * @sgl: pointer to buffer list for protection groups
2356  * @datacnt: number of segments of data that have been dma mapped
2357  * @protcnt: number of segment of protection data that have been dma mapped
2358  *
2359  * This function sets up SGL buffer list for protection groups of
2360  * type LPFC_PG_TYPE_DIF
2361  *
2362  * This is usually used when DIFs are in their own buffers,
2363  * separate from the data. The HBA can then by instructed
2364  * to place the DIFs in the outgoing stream.  For read operations,
2365  * The HBA could extract the DIFs and place it in DIF buffers.
2366  *
2367  * The buffer list for this type consists of one or more of the
2368  * protection groups described below:
2369  *                                    +-------------------------+
2370  *   start of first prot group  -->   |         DISEED          |
2371  *                                    +-------------------------+
2372  *                                    |      DIF (Prot SGE)     |
2373  *                                    +-------------------------+
2374  *                                    |        Data SGE         |
2375  *                                    +-------------------------+
2376  *                                    |more Data SGE's ... (opt)|
2377  *                                    +-------------------------+
2378  *   start of new  prot group  -->    |         DISEED          |
2379  *                                    +-------------------------+
2380  *                                    |          ...            |
2381  *                                    +-------------------------+
2382  *
2383  * Note: It is assumed that both data and protection s/g buffers have been
2384  *       mapped for DMA
2385  *
2386  * Returns the number of SGEs added to the SGL.
2387  **/
2388 static int
2389 lpfc_bg_setup_sgl_prot(struct lpfc_hba *phba, struct scsi_cmnd *sc,
2390                 struct sli4_sge *sgl, int datacnt, int protcnt)
2391 {
2392         struct scatterlist *sgde = NULL; /* s/g data entry */
2393         struct scatterlist *sgpe = NULL; /* s/g prot entry */
2394         struct sli4_sge_diseed *diseed = NULL;
2395         dma_addr_t dataphysaddr, protphysaddr;
2396         unsigned short curr_data = 0, curr_prot = 0;
2397         unsigned int split_offset;
2398         unsigned int protgroup_len, protgroup_offset = 0, protgroup_remainder;
2399         unsigned int protgrp_blks, protgrp_bytes;
2400         unsigned int remainder, subtotal;
2401         int status;
2402         unsigned char pgdone = 0, alldone = 0;
2403         unsigned blksize;
2404         uint32_t reftag;
2405         uint8_t txop, rxop;
2406         uint32_t dma_len;
2407 #ifdef CONFIG_SCSI_LPFC_DEBUG_FS
2408         uint32_t rc;
2409 #endif
2410         uint32_t checking = 1;
2411         uint32_t dma_offset = 0;
2412         int num_sge = 0;
2413
2414         sgpe = scsi_prot_sglist(sc);
2415         sgde = scsi_sglist(sc);
2416
2417         if (!sgpe || !sgde) {
2418                 lpfc_printf_log(phba, KERN_ERR, LOG_FCP,
2419                                 "9082 Invalid s/g entry: data=0x%p prot=0x%p\n",
2420                                 sgpe, sgde);
2421                 return 0;
2422         }
2423
2424         status = lpfc_sc_to_bg_opcodes(phba, sc, &txop, &rxop);
2425         if (status)
2426                 goto out;
2427
2428         /* extract some info from the scsi command */
2429         blksize = lpfc_cmd_blksize(sc);
2430         reftag = (uint32_t)scsi_get_lba(sc); /* Truncate LBA */
2431
2432 #ifdef CONFIG_SCSI_LPFC_DEBUG_FS
2433         rc = lpfc_bg_err_inject(phba, sc, &reftag, NULL, 1);
2434         if (rc) {
2435                 if (rc & BG_ERR_SWAP)
2436                         lpfc_bg_err_opcodes(phba, sc, &txop, &rxop);
2437                 if (rc & BG_ERR_CHECK)
2438                         checking = 0;
2439         }
2440 #endif
2441
2442         split_offset = 0;
2443         do {
2444                 /* Check to see if we ran out of space */
2445                 if (num_sge >= (phba->cfg_total_seg_cnt - 2))
2446                         return num_sge + 3;
2447
2448                 /* setup DISEED with what we have */
2449                 diseed = (struct sli4_sge_diseed *) sgl;
2450                 memset(diseed, 0, sizeof(struct sli4_sge_diseed));
2451                 bf_set(lpfc_sli4_sge_type, sgl, LPFC_SGE_TYPE_DISEED);
2452
2453                 /* Endianness conversion if necessary */
2454                 diseed->ref_tag = cpu_to_le32(reftag);
2455                 diseed->ref_tag_tran = diseed->ref_tag;
2456
2457                 if (lpfc_cmd_protect(sc, LPFC_CHECK_PROTECT_GUARD)) {
2458                         bf_set(lpfc_sli4_sge_dif_ce, diseed, checking);
2459
2460                 } else {
2461                         bf_set(lpfc_sli4_sge_dif_ce, diseed, 0);
2462                         /*
2463                          * When in this mode, the hardware will replace
2464                          * the guard tag from the host with a
2465                          * newly generated good CRC for the wire.
2466                          * Switch to raw mode here to avoid this
2467                          * behavior. What the host sends gets put on the wire.
2468                          */
2469                         if (txop == BG_OP_IN_CRC_OUT_CRC) {
2470                                 txop = BG_OP_RAW_MODE;
2471                                 rxop = BG_OP_RAW_MODE;
2472                         }
2473                 }
2474
2475
2476                 if (lpfc_cmd_protect(sc, LPFC_CHECK_PROTECT_REF))
2477                         bf_set(lpfc_sli4_sge_dif_re, diseed, checking);
2478                 else
2479                         bf_set(lpfc_sli4_sge_dif_re, diseed, 0);
2480
2481                 /* setup DISEED with the rest of the info */
2482                 bf_set(lpfc_sli4_sge_dif_optx, diseed, txop);
2483                 bf_set(lpfc_sli4_sge_dif_oprx, diseed, rxop);
2484
2485                 bf_set(lpfc_sli4_sge_dif_ai, diseed, 1);
2486                 bf_set(lpfc_sli4_sge_dif_me, diseed, 0);
2487
2488                 /* Endianness conversion if necessary for DISEED */
2489                 diseed->word2 = cpu_to_le32(diseed->word2);
2490                 diseed->word3 = cpu_to_le32(diseed->word3);
2491
2492                 /* advance sgl and increment bde count */
2493                 num_sge++;
2494                 sgl++;
2495
2496                 /* setup the first BDE that points to protection buffer */
2497                 protphysaddr = sg_dma_address(sgpe) + protgroup_offset;
2498                 protgroup_len = sg_dma_len(sgpe) - protgroup_offset;
2499
2500                 /* must be integer multiple of the DIF block length */
2501                 BUG_ON(protgroup_len % 8);
2502
2503                 /* Now setup DIF SGE */
2504                 sgl->word2 = 0;
2505                 bf_set(lpfc_sli4_sge_type, sgl, LPFC_SGE_TYPE_DIF);
2506                 sgl->addr_hi = le32_to_cpu(putPaddrHigh(protphysaddr));
2507                 sgl->addr_lo = le32_to_cpu(putPaddrLow(protphysaddr));
2508                 sgl->word2 = cpu_to_le32(sgl->word2);
2509
2510                 protgrp_blks = protgroup_len / 8;
2511                 protgrp_bytes = protgrp_blks * blksize;
2512
2513                 /* check if DIF SGE is crossing the 4K boundary; if so split */
2514                 if ((sgl->addr_lo & 0xfff) + protgroup_len > 0x1000) {
2515                         protgroup_remainder = 0x1000 - (sgl->addr_lo & 0xfff);
2516                         protgroup_offset += protgroup_remainder;
2517                         protgrp_blks = protgroup_remainder / 8;
2518                         protgrp_bytes = protgrp_blks * blksize;
2519                 } else {
2520                         protgroup_offset = 0;
2521                         curr_prot++;
2522                 }
2523
2524                 num_sge++;
2525
2526                 /* setup SGE's for data blocks associated with DIF data */
2527                 pgdone = 0;
2528                 subtotal = 0; /* total bytes processed for current prot grp */
2529                 while (!pgdone) {
2530                         /* Check to see if we ran out of space */
2531                         if (num_sge >= phba->cfg_total_seg_cnt)
2532                                 return num_sge + 1;
2533
2534                         if (!sgde) {
2535                                 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
2536                                         "9086 BLKGRD:%s Invalid data segment\n",
2537                                                 __func__);
2538                                 return 0;
2539                         }
2540                         sgl++;
2541                         dataphysaddr = sg_dma_address(sgde) + split_offset;
2542
2543                         remainder = sg_dma_len(sgde) - split_offset;
2544
2545                         if ((subtotal + remainder) <= protgrp_bytes) {
2546                                 /* we can use this whole buffer */
2547                                 dma_len = remainder;
2548                                 split_offset = 0;
2549
2550                                 if ((subtotal + remainder) == protgrp_bytes)
2551                                         pgdone = 1;
2552                         } else {
2553                                 /* must split this buffer with next prot grp */
2554                                 dma_len = protgrp_bytes - subtotal;
2555                                 split_offset += dma_len;
2556                         }
2557
2558                         subtotal += dma_len;
2559
2560                         sgl->addr_lo = cpu_to_le32(putPaddrLow(dataphysaddr));
2561                         sgl->addr_hi = cpu_to_le32(putPaddrHigh(dataphysaddr));
2562                         bf_set(lpfc_sli4_sge_last, sgl, 0);
2563                         bf_set(lpfc_sli4_sge_offset, sgl, dma_offset);
2564                         bf_set(lpfc_sli4_sge_type, sgl, LPFC_SGE_TYPE_DATA);
2565
2566                         sgl->sge_len = cpu_to_le32(dma_len);
2567                         dma_offset += dma_len;
2568
2569                         num_sge++;
2570                         curr_data++;
2571
2572                         if (split_offset)
2573                                 break;
2574
2575                         /* Move to the next s/g segment if possible */
2576                         sgde = sg_next(sgde);
2577                 }
2578
2579                 if (protgroup_offset) {
2580                         /* update the reference tag */
2581                         reftag += protgrp_blks;
2582                         sgl++;
2583                         continue;
2584                 }
2585
2586                 /* are we done ? */
2587                 if (curr_prot == protcnt) {
2588                         bf_set(lpfc_sli4_sge_last, sgl, 1);
2589                         alldone = 1;
2590                 } else if (curr_prot < protcnt) {
2591                         /* advance to next prot buffer */
2592                         sgpe = sg_next(sgpe);
2593                         sgl++;
2594
2595                         /* update the reference tag */
2596                         reftag += protgrp_blks;
2597                 } else {
2598                         /* if we're here, we have a bug */
2599                         lpfc_printf_log(phba, KERN_ERR, LOG_BG,
2600                                 "9085 BLKGRD: bug in %s\n", __func__);
2601                 }
2602
2603         } while (!alldone);
2604
2605 out:
2606
2607         return num_sge;
2608 }
2609
2610 /**
2611  * lpfc_prot_group_type - Get prtotection group type of SCSI command
2612  * @phba: The Hba for which this call is being executed.
2613  * @sc: pointer to scsi command we're working on
2614  *
2615  * Given a SCSI command that supports DIF, determine composition of protection
2616  * groups involved in setting up buffer lists
2617  *
2618  * Returns: Protection group type (with or without DIF)
2619  *
2620  **/
2621 static int
2622 lpfc_prot_group_type(struct lpfc_hba *phba, struct scsi_cmnd *sc)
2623 {
2624         int ret = LPFC_PG_TYPE_INVALID;
2625         unsigned char op = scsi_get_prot_op(sc);
2626
2627         switch (op) {
2628         case SCSI_PROT_READ_STRIP:
2629         case SCSI_PROT_WRITE_INSERT:
2630                 ret = LPFC_PG_TYPE_NO_DIF;
2631                 break;
2632         case SCSI_PROT_READ_INSERT:
2633         case SCSI_PROT_WRITE_STRIP:
2634         case SCSI_PROT_READ_PASS:
2635         case SCSI_PROT_WRITE_PASS:
2636                 ret = LPFC_PG_TYPE_DIF_BUF;
2637                 break;
2638         default:
2639                 if (phba)
2640                         lpfc_printf_log(phba, KERN_ERR, LOG_FCP,
2641                                         "9021 Unsupported protection op:%d\n",
2642                                         op);
2643                 break;
2644         }
2645         return ret;
2646 }
2647
2648 /**
2649  * lpfc_bg_scsi_adjust_dl - Adjust SCSI data length for BlockGuard
2650  * @phba: The Hba for which this call is being executed.
2651  * @lpfc_cmd: The scsi buffer which is going to be adjusted.
2652  *
2653  * Adjust the data length to account for how much data
2654  * is actually on the wire.
2655  *
2656  * returns the adjusted data length
2657  **/
2658 static int
2659 lpfc_bg_scsi_adjust_dl(struct lpfc_hba *phba,
2660                        struct lpfc_scsi_buf *lpfc_cmd)
2661 {
2662         struct scsi_cmnd *sc = lpfc_cmd->pCmd;
2663         int fcpdl;
2664
2665         fcpdl = scsi_bufflen(sc);
2666
2667         /* Check if there is protection data on the wire */
2668         if (sc->sc_data_direction == DMA_FROM_DEVICE) {
2669                 /* Read check for protection data */
2670                 if (scsi_get_prot_op(sc) ==  SCSI_PROT_READ_INSERT)
2671                         return fcpdl;
2672
2673         } else {
2674                 /* Write check for protection data */
2675                 if (scsi_get_prot_op(sc) ==  SCSI_PROT_WRITE_STRIP)
2676                         return fcpdl;
2677         }
2678
2679         /*
2680          * If we are in DIF Type 1 mode every data block has a 8 byte
2681          * DIF (trailer) attached to it. Must ajust FCP data length
2682          * to account for the protection data.
2683          */
2684         fcpdl += (fcpdl / lpfc_cmd_blksize(sc)) * 8;
2685
2686         return fcpdl;
2687 }
2688
2689 /**
2690  * lpfc_bg_scsi_prep_dma_buf_s3 - DMA mapping for scsi buffer to SLI3 IF spec
2691  * @phba: The Hba for which this call is being executed.
2692  * @lpfc_cmd: The scsi buffer which is going to be prep'ed.
2693  *
2694  * This is the protection/DIF aware version of
2695  * lpfc_scsi_prep_dma_buf(). It may be a good idea to combine the
2696  * two functions eventually, but for now, it's here
2697  **/
2698 static int
2699 lpfc_bg_scsi_prep_dma_buf_s3(struct lpfc_hba *phba,
2700                 struct lpfc_scsi_buf *lpfc_cmd)
2701 {
2702         struct scsi_cmnd *scsi_cmnd = lpfc_cmd->pCmd;
2703         struct fcp_cmnd *fcp_cmnd = lpfc_cmd->fcp_cmnd;
2704         struct ulp_bde64 *bpl = lpfc_cmd->fcp_bpl;
2705         IOCB_t *iocb_cmd = &lpfc_cmd->cur_iocbq.iocb;
2706         uint32_t num_bde = 0;
2707         int datasegcnt, protsegcnt, datadir = scsi_cmnd->sc_data_direction;
2708         int prot_group_type = 0;
2709         int fcpdl;
2710         struct lpfc_vport *vport = phba->pport;
2711
2712         /*
2713          * Start the lpfc command prep by bumping the bpl beyond fcp_cmnd
2714          *  fcp_rsp regions to the first data bde entry
2715          */
2716         bpl += 2;
2717         if (scsi_sg_count(scsi_cmnd)) {
2718                 /*
2719                  * The driver stores the segment count returned from pci_map_sg
2720                  * because this a count of dma-mappings used to map the use_sg
2721                  * pages.  They are not guaranteed to be the same for those
2722                  * architectures that implement an IOMMU.
2723                  */
2724                 datasegcnt = dma_map_sg(&phba->pcidev->dev,
2725                                         scsi_sglist(scsi_cmnd),
2726                                         scsi_sg_count(scsi_cmnd), datadir);
2727                 if (unlikely(!datasegcnt))
2728                         return 1;
2729
2730                 lpfc_cmd->seg_cnt = datasegcnt;
2731
2732                 /* First check if data segment count from SCSI Layer is good */
2733                 if (lpfc_cmd->seg_cnt > phba->cfg_sg_seg_cnt)
2734                         goto err;
2735
2736                 prot_group_type = lpfc_prot_group_type(phba, scsi_cmnd);
2737
2738                 switch (prot_group_type) {
2739                 case LPFC_PG_TYPE_NO_DIF:
2740
2741                         /* Here we need to add a PDE5 and PDE6 to the count */
2742                         if ((lpfc_cmd->seg_cnt + 2) > phba->cfg_total_seg_cnt)
2743                                 goto err;
2744
2745                         num_bde = lpfc_bg_setup_bpl(phba, scsi_cmnd, bpl,
2746                                         datasegcnt);
2747                         /* we should have 2 or more entries in buffer list */
2748                         if (num_bde < 2)
2749                                 goto err;
2750                         break;
2751
2752                 case LPFC_PG_TYPE_DIF_BUF:
2753                         /*
2754                          * This type indicates that protection buffers are
2755                          * passed to the driver, so that needs to be prepared
2756                          * for DMA
2757                          */
2758                         protsegcnt = dma_map_sg(&phba->pcidev->dev,
2759                                         scsi_prot_sglist(scsi_cmnd),
2760                                         scsi_prot_sg_count(scsi_cmnd), datadir);
2761                         if (unlikely(!protsegcnt)) {
2762                                 scsi_dma_unmap(scsi_cmnd);
2763                                 return 1;
2764                         }
2765
2766                         lpfc_cmd->prot_seg_cnt = protsegcnt;
2767
2768                         /*
2769                          * There is a minimun of 4 BPLs used for every
2770                          * protection data segment.
2771                          */
2772                         if ((lpfc_cmd->prot_seg_cnt * 4) >
2773                             (phba->cfg_total_seg_cnt - 2))
2774                                 goto err;
2775
2776                         num_bde = lpfc_bg_setup_bpl_prot(phba, scsi_cmnd, bpl,
2777                                         datasegcnt, protsegcnt);
2778                         /* we should have 3 or more entries in buffer list */
2779                         if ((num_bde < 3) ||
2780                             (num_bde > phba->cfg_total_seg_cnt))
2781                                 goto err;
2782                         break;
2783
2784                 case LPFC_PG_TYPE_INVALID:
2785                 default:
2786                         scsi_dma_unmap(scsi_cmnd);
2787                         lpfc_cmd->seg_cnt = 0;
2788
2789                         lpfc_printf_log(phba, KERN_ERR, LOG_FCP,
2790                                         "9022 Unexpected protection group %i\n",
2791                                         prot_group_type);
2792                         return 1;
2793                 }
2794         }
2795
2796         /*
2797          * Finish initializing those IOCB fields that are dependent on the
2798          * scsi_cmnd request_buffer.  Note that the bdeSize is explicitly
2799          * reinitialized since all iocb memory resources are used many times
2800          * for transmit, receive, and continuation bpl's.
2801          */
2802         iocb_cmd->un.fcpi64.bdl.bdeSize = (2 * sizeof(struct ulp_bde64));
2803         iocb_cmd->un.fcpi64.bdl.bdeSize += (num_bde * sizeof(struct ulp_bde64));
2804         iocb_cmd->ulpBdeCount = 1;
2805         iocb_cmd->ulpLe = 1;
2806
2807         fcpdl = lpfc_bg_scsi_adjust_dl(phba, lpfc_cmd);
2808         fcp_cmnd->fcpDl = be32_to_cpu(fcpdl);
2809
2810         /*
2811          * Due to difference in data length between DIF/non-DIF paths,
2812          * we need to set word 4 of IOCB here
2813          */
2814         iocb_cmd->un.fcpi.fcpi_parm = fcpdl;
2815
2816         /*
2817          * For First burst, we may need to adjust the initial transfer
2818          * length for DIF
2819          */
2820         if (iocb_cmd->un.fcpi.fcpi_XRdy &&
2821             (fcpdl < vport->cfg_first_burst_size))
2822                 iocb_cmd->un.fcpi.fcpi_XRdy = fcpdl;
2823
2824         return 0;
2825 err:
2826         if (lpfc_cmd->seg_cnt)
2827                 scsi_dma_unmap(scsi_cmnd);
2828         if (lpfc_cmd->prot_seg_cnt)
2829                 dma_unmap_sg(&phba->pcidev->dev, scsi_prot_sglist(scsi_cmnd),
2830                              scsi_prot_sg_count(scsi_cmnd),
2831                              scsi_cmnd->sc_data_direction);
2832
2833         lpfc_printf_log(phba, KERN_ERR, LOG_FCP,
2834                         "9023 Cannot setup S/G List for HBA"
2835                         "IO segs %d/%d BPL %d SCSI %d: %d %d\n",
2836                         lpfc_cmd->seg_cnt, lpfc_cmd->prot_seg_cnt,
2837                         phba->cfg_total_seg_cnt, phba->cfg_sg_seg_cnt,
2838                         prot_group_type, num_bde);
2839
2840         lpfc_cmd->seg_cnt = 0;
2841         lpfc_cmd->prot_seg_cnt = 0;
2842         return 1;
2843 }
2844
2845 /*
2846  * This function calcuates the T10 DIF guard tag
2847  * on the specified data using a CRC algorithmn
2848  * using crc_t10dif.
2849  */
2850 static uint16_t
2851 lpfc_bg_crc(uint8_t *data, int count)
2852 {
2853         uint16_t crc = 0;
2854         uint16_t x;
2855
2856         crc = crc_t10dif(data, count);
2857         x = cpu_to_be16(crc);
2858         return x;
2859 }
2860
2861 /*
2862  * This function calcuates the T10 DIF guard tag
2863  * on the specified data using a CSUM algorithmn
2864  * using ip_compute_csum.
2865  */
2866 static uint16_t
2867 lpfc_bg_csum(uint8_t *data, int count)
2868 {
2869         uint16_t ret;
2870
2871         ret = ip_compute_csum(data, count);
2872         return ret;
2873 }
2874
2875 /*
2876  * This function examines the protection data to try to determine
2877  * what type of T10-DIF error occurred.
2878  */
2879 static void
2880 lpfc_calc_bg_err(struct lpfc_hba *phba, struct lpfc_scsi_buf *lpfc_cmd)
2881 {
2882         struct scatterlist *sgpe; /* s/g prot entry */
2883         struct scatterlist *sgde; /* s/g data entry */
2884         struct scsi_cmnd *cmd = lpfc_cmd->pCmd;
2885         struct scsi_dif_tuple *src = NULL;
2886         uint8_t *data_src = NULL;
2887         uint16_t guard_tag;
2888         uint16_t start_app_tag, app_tag;
2889         uint32_t start_ref_tag, ref_tag;
2890         int prot, protsegcnt;
2891         int err_type, len, data_len;
2892         int chk_ref, chk_app, chk_guard;
2893         uint16_t sum;
2894         unsigned blksize;
2895
2896         err_type = BGS_GUARD_ERR_MASK;
2897         sum = 0;
2898         guard_tag = 0;
2899
2900         /* First check to see if there is protection data to examine */
2901         prot = scsi_get_prot_op(cmd);
2902         if ((prot == SCSI_PROT_READ_STRIP) ||
2903             (prot == SCSI_PROT_WRITE_INSERT) ||
2904             (prot == SCSI_PROT_NORMAL))
2905                 goto out;
2906
2907         /* Currently the driver just supports ref_tag and guard_tag checking */
2908         chk_ref = 1;
2909         chk_app = 0;
2910         chk_guard = 0;
2911
2912         /* Setup a ptr to the protection data provided by the SCSI host */
2913         sgpe = scsi_prot_sglist(cmd);
2914         protsegcnt = lpfc_cmd->prot_seg_cnt;
2915
2916         if (sgpe && protsegcnt) {
2917
2918                 /*
2919                  * We will only try to verify guard tag if the segment
2920                  * data length is a multiple of the blksize.
2921                  */
2922                 sgde = scsi_sglist(cmd);
2923                 blksize = lpfc_cmd_blksize(cmd);
2924                 data_src = (uint8_t *)sg_virt(sgde);
2925                 data_len = sgde->length;
2926                 if ((data_len & (blksize - 1)) == 0)
2927                         chk_guard = 1;
2928
2929                 src = (struct scsi_dif_tuple *)sg_virt(sgpe);
2930                 start_ref_tag = (uint32_t)scsi_get_lba(cmd); /* Truncate LBA */
2931                 start_app_tag = src->app_tag;
2932                 len = sgpe->length;
2933                 while (src && protsegcnt) {
2934                         while (len) {
2935
2936                                 /*
2937                                  * First check to see if a protection data
2938                                  * check is valid
2939                                  */
2940                                 if ((src->ref_tag == 0xffffffff) ||
2941                                     (src->app_tag == 0xffff)) {
2942                                         start_ref_tag++;
2943                                         goto skipit;
2944                                 }
2945
2946                                 /* First Guard Tag checking */
2947                                 if (chk_guard) {
2948                                         guard_tag = src->guard_tag;
2949                                         if (lpfc_cmd_guard_csum(cmd))
2950                                                 sum = lpfc_bg_csum(data_src,
2951                                                                    blksize);
2952                                         else
2953                                                 sum = lpfc_bg_crc(data_src,
2954                                                                   blksize);
2955                                         if ((guard_tag != sum)) {
2956                                                 err_type = BGS_GUARD_ERR_MASK;
2957                                                 goto out;
2958                                         }
2959                                 }
2960
2961                                 /* Reference Tag checking */
2962                                 ref_tag = be32_to_cpu(src->ref_tag);
2963                                 if (chk_ref && (ref_tag != start_ref_tag)) {
2964                                         err_type = BGS_REFTAG_ERR_MASK;
2965                                         goto out;
2966                                 }
2967                                 start_ref_tag++;
2968
2969                                 /* App Tag checking */
2970                                 app_tag = src->app_tag;
2971                                 if (chk_app && (app_tag != start_app_tag)) {
2972                                         err_type = BGS_APPTAG_ERR_MASK;
2973                                         goto out;
2974                                 }
2975 skipit:
2976                                 len -= sizeof(struct scsi_dif_tuple);
2977                                 if (len < 0)
2978                                         len = 0;
2979                                 src++;
2980
2981                                 data_src += blksize;
2982                                 data_len -= blksize;
2983
2984                                 /*
2985                                  * Are we at the end of the Data segment?
2986                                  * The data segment is only used for Guard
2987                                  * tag checking.
2988                                  */
2989                                 if (chk_guard && (data_len == 0)) {
2990                                         chk_guard = 0;
2991                                         sgde = sg_next(sgde);
2992                                         if (!sgde)
2993                                                 goto out;
2994
2995                                         data_src = (uint8_t *)sg_virt(sgde);
2996                                         data_len = sgde->length;
2997                                         if ((data_len & (blksize - 1)) == 0)
2998                                                 chk_guard = 1;
2999                                 }
3000                         }
3001
3002                         /* Goto the next Protection data segment */
3003                         sgpe = sg_next(sgpe);
3004                         if (sgpe) {
3005                                 src = (struct scsi_dif_tuple *)sg_virt(sgpe);
3006                                 len = sgpe->length;
3007                         } else {
3008                                 src = NULL;
3009                         }
3010                         protsegcnt--;
3011                 }
3012         }
3013 out:
3014         if (err_type == BGS_GUARD_ERR_MASK) {
3015                 scsi_build_sense_buffer(1, cmd->sense_buffer, ILLEGAL_REQUEST,
3016                                         0x10, 0x1);
3017                 cmd->result = DRIVER_SENSE << 24
3018                         | ScsiResult(DID_ABORT, SAM_STAT_CHECK_CONDITION);
3019                 phba->bg_guard_err_cnt++;
3020                 lpfc_printf_log(phba, KERN_WARNING, LOG_FCP | LOG_BG,
3021                                 "9069 BLKGRD: LBA %lx grd_tag error %x != %x\n",
3022                                 (unsigned long)scsi_get_lba(cmd),
3023                                 sum, guard_tag);
3024
3025         } else if (err_type == BGS_REFTAG_ERR_MASK) {
3026                 scsi_build_sense_buffer(1, cmd->sense_buffer, ILLEGAL_REQUEST,
3027                                         0x10, 0x3);
3028                 cmd->result = DRIVER_SENSE << 24
3029                         | ScsiResult(DID_ABORT, SAM_STAT_CHECK_CONDITION);
3030
3031                 phba->bg_reftag_err_cnt++;
3032                 lpfc_printf_log(phba, KERN_WARNING, LOG_FCP | LOG_BG,
3033                                 "9066 BLKGRD: LBA %lx ref_tag error %x != %x\n",
3034                                 (unsigned long)scsi_get_lba(cmd),
3035                                 ref_tag, start_ref_tag);
3036
3037         } else if (err_type == BGS_APPTAG_ERR_MASK) {
3038                 scsi_build_sense_buffer(1, cmd->sense_buffer, ILLEGAL_REQUEST,
3039                                         0x10, 0x2);
3040                 cmd->result = DRIVER_SENSE << 24
3041                         | ScsiResult(DID_ABORT, SAM_STAT_CHECK_CONDITION);
3042
3043                 phba->bg_apptag_err_cnt++;
3044                 lpfc_printf_log(phba, KERN_WARNING, LOG_FCP | LOG_BG,
3045                                 "9041 BLKGRD: LBA %lx app_tag error %x != %x\n",
3046                                 (unsigned long)scsi_get_lba(cmd),
3047                                 app_tag, start_app_tag);
3048         }
3049 }
3050
3051
3052 /*
3053  * This function checks for BlockGuard errors detected by
3054  * the HBA.  In case of errors, the ASC/ASCQ fields in the
3055  * sense buffer will be set accordingly, paired with
3056  * ILLEGAL_REQUEST to signal to the kernel that the HBA
3057  * detected corruption.
3058  *
3059  * Returns:
3060  *  0 - No error found
3061  *  1 - BlockGuard error found
3062  * -1 - Internal error (bad profile, ...etc)
3063  */
3064 static int
3065 lpfc_parse_bg_err(struct lpfc_hba *phba, struct lpfc_scsi_buf *lpfc_cmd,
3066                         struct lpfc_iocbq *pIocbOut)
3067 {
3068         struct scsi_cmnd *cmd = lpfc_cmd->pCmd;
3069         struct sli3_bg_fields *bgf = &pIocbOut->iocb.unsli3.sli3_bg;
3070         int ret = 0;
3071         uint32_t bghm = bgf->bghm;
3072         uint32_t bgstat = bgf->bgstat;
3073         uint64_t failing_sector = 0;
3074
3075         spin_lock(&_dump_buf_lock);
3076         if (!_dump_buf_done) {
3077                 lpfc_printf_log(phba, KERN_ERR, LOG_BG,  "9070 BLKGRD: Saving"
3078                         " Data for %u blocks to debugfs\n",
3079                                 (cmd->cmnd[7] << 8 | cmd->cmnd[8]));
3080                 lpfc_debug_save_data(phba, cmd);
3081
3082                 /* If we have a prot sgl, save the DIF buffer */
3083                 if (lpfc_prot_group_type(phba, cmd) ==
3084                                 LPFC_PG_TYPE_DIF_BUF) {
3085                         lpfc_printf_log(phba, KERN_ERR, LOG_BG, "9071 BLKGRD: "
3086                                 "Saving DIF for %u blocks to debugfs\n",
3087                                 (cmd->cmnd[7] << 8 | cmd->cmnd[8]));
3088                         lpfc_debug_save_dif(phba, cmd);
3089                 }
3090
3091                 _dump_buf_done = 1;
3092         }
3093         spin_unlock(&_dump_buf_lock);
3094
3095         if (lpfc_bgs_get_invalid_prof(bgstat)) {
3096                 cmd->result = ScsiResult(DID_ERROR, 0);
3097                 lpfc_printf_log(phba, KERN_WARNING, LOG_FCP | LOG_BG,
3098                                 "9072 BLKGRD: Invalid BG Profile in cmd"
3099                                 " 0x%x lba 0x%llx blk cnt 0x%x "
3100                                 "bgstat=x%x bghm=x%x\n", cmd->cmnd[0],
3101                                 (unsigned long long)scsi_get_lba(cmd),
3102                                 blk_rq_sectors(cmd->request), bgstat, bghm);
3103                 ret = (-1);
3104                 goto out;
3105         }
3106
3107         if (lpfc_bgs_get_uninit_dif_block(bgstat)) {
3108                 cmd->result = ScsiResult(DID_ERROR, 0);
3109                 lpfc_printf_log(phba, KERN_WARNING, LOG_FCP | LOG_BG,
3110                                 "9073 BLKGRD: Invalid BG PDIF Block in cmd"
3111                                 " 0x%x lba 0x%llx blk cnt 0x%x "
3112                                 "bgstat=x%x bghm=x%x\n", cmd->cmnd[0],
3113                                 (unsigned long long)scsi_get_lba(cmd),
3114                                 blk_rq_sectors(cmd->request), bgstat, bghm);
3115                 ret = (-1);
3116                 goto out;
3117         }
3118
3119         if (lpfc_bgs_get_guard_err(bgstat)) {
3120                 ret = 1;
3121
3122                 scsi_build_sense_buffer(1, cmd->sense_buffer, ILLEGAL_REQUEST,
3123                                 0x10, 0x1);
3124                 cmd->result = DRIVER_SENSE << 24
3125                         | ScsiResult(DID_ABORT, SAM_STAT_CHECK_CONDITION);
3126                 phba->bg_guard_err_cnt++;
3127                 lpfc_printf_log(phba, KERN_WARNING, LOG_FCP | LOG_BG,
3128                                 "9055 BLKGRD: Guard Tag error in cmd"
3129                                 " 0x%x lba 0x%llx blk cnt 0x%x "
3130                                 "bgstat=x%x bghm=x%x\n", cmd->cmnd[0],
3131                                 (unsigned long long)scsi_get_lba(cmd),
3132                                 blk_rq_sectors(cmd->request), bgstat, bghm);
3133         }
3134
3135         if (lpfc_bgs_get_reftag_err(bgstat)) {
3136                 ret = 1;
3137
3138                 scsi_build_sense_buffer(1, cmd->sense_buffer, ILLEGAL_REQUEST,
3139                                 0x10, 0x3);
3140                 cmd->result = DRIVER_SENSE << 24
3141                         | ScsiResult(DID_ABORT, SAM_STAT_CHECK_CONDITION);
3142
3143                 phba->bg_reftag_err_cnt++;
3144                 lpfc_printf_log(phba, KERN_WARNING, LOG_FCP | LOG_BG,
3145                                 "9056 BLKGRD: Ref Tag error in cmd"
3146                                 " 0x%x lba 0x%llx blk cnt 0x%x "
3147                                 "bgstat=x%x bghm=x%x\n", cmd->cmnd[0],
3148                                 (unsigned long long)scsi_get_lba(cmd),
3149                                 blk_rq_sectors(cmd->request), bgstat, bghm);
3150         }
3151
3152         if (lpfc_bgs_get_apptag_err(bgstat)) {
3153                 ret = 1;
3154
3155                 scsi_build_sense_buffer(1, cmd->sense_buffer, ILLEGAL_REQUEST,
3156                                 0x10, 0x2);
3157                 cmd->result = DRIVER_SENSE << 24
3158                         | ScsiResult(DID_ABORT, SAM_STAT_CHECK_CONDITION);
3159
3160                 phba->bg_apptag_err_cnt++;
3161                 lpfc_printf_log(phba, KERN_WARNING, LOG_FCP | LOG_BG,
3162                                 "9061 BLKGRD: App Tag error in cmd"
3163                                 " 0x%x lba 0x%llx blk cnt 0x%x "
3164                                 "bgstat=x%x bghm=x%x\n", cmd->cmnd[0],
3165                                 (unsigned long long)scsi_get_lba(cmd),
3166                                 blk_rq_sectors(cmd->request), bgstat, bghm);
3167         }
3168
3169         if (lpfc_bgs_get_hi_water_mark_present(bgstat)) {
3170                 /*
3171                  * setup sense data descriptor 0 per SPC-4 as an information
3172                  * field, and put the failing LBA in it.
3173                  * This code assumes there was also a guard/app/ref tag error
3174                  * indication.
3175                  */
3176                 cmd->sense_buffer[7] = 0xc;   /* Additional sense length */
3177                 cmd->sense_buffer[8] = 0;     /* Information descriptor type */
3178                 cmd->sense_buffer[9] = 0xa;   /* Additional descriptor length */
3179                 cmd->sense_buffer[10] = 0x80; /* Validity bit */
3180
3181                 /* bghm is a "on the wire" FC frame based count */
3182                 switch (scsi_get_prot_op(cmd)) {
3183                 case SCSI_PROT_READ_INSERT:
3184                 case SCSI_PROT_WRITE_STRIP:
3185                         bghm /= cmd->device->sector_size;
3186                         break;
3187                 case SCSI_PROT_READ_STRIP:
3188                 case SCSI_PROT_WRITE_INSERT:
3189                 case SCSI_PROT_READ_PASS:
3190                 case SCSI_PROT_WRITE_PASS:
3191                         bghm /= (cmd->device->sector_size +
3192                                 sizeof(struct scsi_dif_tuple));
3193                         break;
3194                 }
3195
3196                 failing_sector = scsi_get_lba(cmd);
3197                 failing_sector += bghm;
3198
3199                 /* Descriptor Information */
3200                 put_unaligned_be64(failing_sector, &cmd->sense_buffer[12]);
3201         }
3202
3203         if (!ret) {
3204                 /* No error was reported - problem in FW? */
3205                 lpfc_printf_log(phba, KERN_WARNING, LOG_FCP | LOG_BG,
3206                                 "9057 BLKGRD: Unknown error in cmd"
3207                                 " 0x%x lba 0x%llx blk cnt 0x%x "
3208                                 "bgstat=x%x bghm=x%x\n", cmd->cmnd[0],
3209                                 (unsigned long long)scsi_get_lba(cmd),
3210                                 blk_rq_sectors(cmd->request), bgstat, bghm);
3211
3212                 /* Calcuate what type of error it was */
3213                 lpfc_calc_bg_err(phba, lpfc_cmd);
3214         }
3215 out:
3216         return ret;
3217 }
3218
3219 /**
3220  * lpfc_scsi_prep_dma_buf_s4 - DMA mapping for scsi buffer to SLI4 IF spec
3221  * @phba: The Hba for which this call is being executed.
3222  * @lpfc_cmd: The scsi buffer which is going to be mapped.
3223  *
3224  * This routine does the pci dma mapping for scatter-gather list of scsi cmnd
3225  * field of @lpfc_cmd for device with SLI-4 interface spec.
3226  *
3227  * Return codes:
3228  *      1 - Error
3229  *      0 - Success
3230  **/
3231 static int
3232 lpfc_scsi_prep_dma_buf_s4(struct lpfc_hba *phba, struct lpfc_scsi_buf *lpfc_cmd)
3233 {
3234         struct scsi_cmnd *scsi_cmnd = lpfc_cmd->pCmd;
3235         struct scatterlist *sgel = NULL;
3236         struct fcp_cmnd *fcp_cmnd = lpfc_cmd->fcp_cmnd;
3237         struct sli4_sge *sgl = (struct sli4_sge *)lpfc_cmd->fcp_bpl;
3238         struct sli4_sge *first_data_sgl;
3239         IOCB_t *iocb_cmd = &lpfc_cmd->cur_iocbq.iocb;
3240         dma_addr_t physaddr;
3241         uint32_t num_bde = 0;
3242         uint32_t dma_len;
3243         uint32_t dma_offset = 0;
3244         int nseg;
3245         struct ulp_bde64 *bde;
3246
3247         /*
3248          * There are three possibilities here - use scatter-gather segment, use
3249          * the single mapping, or neither.  Start the lpfc command prep by
3250          * bumping the bpl beyond the fcp_cmnd and fcp_rsp regions to the first
3251          * data bde entry.
3252          */
3253         if (scsi_sg_count(scsi_cmnd)) {
3254                 /*
3255                  * The driver stores the segment count returned from pci_map_sg
3256                  * because this a count of dma-mappings used to map the use_sg
3257                  * pages.  They are not guaranteed to be the same for those
3258                  * architectures that implement an IOMMU.
3259                  */
3260
3261                 nseg = scsi_dma_map(scsi_cmnd);
3262                 if (unlikely(nseg <= 0))
3263                         return 1;
3264                 sgl += 1;
3265                 /* clear the last flag in the fcp_rsp map entry */
3266                 sgl->word2 = le32_to_cpu(sgl->word2);
3267                 bf_set(lpfc_sli4_sge_last, sgl, 0);
3268                 sgl->word2 = cpu_to_le32(sgl->word2);
3269                 sgl += 1;
3270                 first_data_sgl = sgl;
3271                 lpfc_cmd->seg_cnt = nseg;
3272                 if (lpfc_cmd->seg_cnt > phba->cfg_sg_seg_cnt) {
3273                         lpfc_printf_log(phba, KERN_ERR, LOG_BG, "9074 BLKGRD:"
3274                                 " %s: Too many sg segments from "
3275                                 "dma_map_sg.  Config %d, seg_cnt %d\n",
3276                                 __func__, phba->cfg_sg_seg_cnt,
3277                                lpfc_cmd->seg_cnt);
3278                         lpfc_cmd->seg_cnt = 0;
3279                         scsi_dma_unmap(scsi_cmnd);
3280                         return 1;
3281                 }
3282
3283                 /*
3284                  * The driver established a maximum scatter-gather segment count
3285                  * during probe that limits the number of sg elements in any
3286                  * single scsi command.  Just run through the seg_cnt and format
3287                  * the sge's.
3288                  * When using SLI-3 the driver will try to fit all the BDEs into
3289                  * the IOCB. If it can't then the BDEs get added to a BPL as it
3290                  * does for SLI-2 mode.
3291                  */
3292                 scsi_for_each_sg(scsi_cmnd, sgel, nseg, num_bde) {
3293                         physaddr = sg_dma_address(sgel);
3294                         dma_len = sg_dma_len(sgel);
3295                         sgl->addr_lo = cpu_to_le32(putPaddrLow(physaddr));
3296                         sgl->addr_hi = cpu_to_le32(putPaddrHigh(physaddr));
3297                         sgl->word2 = le32_to_cpu(sgl->word2);
3298                         if ((num_bde + 1) == nseg)
3299                                 bf_set(lpfc_sli4_sge_last, sgl, 1);
3300                         else
3301                                 bf_set(lpfc_sli4_sge_last, sgl, 0);
3302                         bf_set(lpfc_sli4_sge_offset, sgl, dma_offset);
3303                         bf_set(lpfc_sli4_sge_type, sgl, LPFC_SGE_TYPE_DATA);
3304                         sgl->word2 = cpu_to_le32(sgl->word2);
3305                         sgl->sge_len = cpu_to_le32(dma_len);
3306                         dma_offset += dma_len;
3307                         sgl++;
3308                 }
3309                 /* setup the performance hint (first data BDE) if enabled */
3310                 if (phba->sli3_options & LPFC_SLI4_PERFH_ENABLED) {
3311                         bde = (struct ulp_bde64 *)
3312                                         &(iocb_cmd->unsli3.sli3Words[5]);
3313                         bde->addrLow = first_data_sgl->addr_lo;
3314                         bde->addrHigh = first_data_sgl->addr_hi;
3315                         bde->tus.f.bdeSize =
3316                                         le32_to_cpu(first_data_sgl->sge_len);
3317                         bde->tus.f.bdeFlags = BUFF_TYPE_BDE_64;
3318                         bde->tus.w = cpu_to_le32(bde->tus.w);
3319                 }
3320         } else {
3321                 sgl += 1;
3322                 /* clear the last flag in the fcp_rsp map entry */
3323                 sgl->word2 = le32_to_cpu(sgl->word2);
3324                 bf_set(lpfc_sli4_sge_last, sgl, 1);
3325                 sgl->word2 = cpu_to_le32(sgl->word2);
3326         }
3327
3328         /*
3329          * Finish initializing those IOCB fields that are dependent on the
3330          * scsi_cmnd request_buffer.  Note that for SLI-2 the bdeSize is
3331          * explicitly reinitialized.
3332          * all iocb memory resources are reused.
3333          */
3334         fcp_cmnd->fcpDl = cpu_to_be32(scsi_bufflen(scsi_cmnd));
3335
3336         /*
3337          * Due to difference in data length between DIF/non-DIF paths,
3338          * we need to set word 4 of IOCB here
3339          */
3340         iocb_cmd->un.fcpi.fcpi_parm = scsi_bufflen(scsi_cmnd);
3341
3342         /*
3343          * If the OAS driver feature is enabled and the lun is enabled for
3344          * OAS, set the oas iocb related flags.
3345          */
3346         if ((phba->cfg_fof) && ((struct lpfc_device_data *)
3347                 scsi_cmnd->device->hostdata)->oas_enabled) {
3348                 lpfc_cmd->cur_iocbq.iocb_flag |= (LPFC_IO_OAS | LPFC_IO_FOF);
3349                 lpfc_cmd->cur_iocbq.priority = ((struct lpfc_device_data *)
3350                         scsi_cmnd->device->hostdata)->priority;
3351         }
3352         return 0;
3353 }
3354
3355 /**
3356  * lpfc_bg_scsi_prep_dma_buf_s4 - DMA mapping for scsi buffer to SLI4 IF spec
3357  * @phba: The Hba for which this call is being executed.
3358  * @lpfc_cmd: The scsi buffer which is going to be mapped.
3359  *
3360  * This is the protection/DIF aware version of
3361  * lpfc_scsi_prep_dma_buf(). It may be a good idea to combine the
3362  * two functions eventually, but for now, it's here
3363  **/
3364 static int
3365 lpfc_bg_scsi_prep_dma_buf_s4(struct lpfc_hba *phba,
3366                 struct lpfc_scsi_buf *lpfc_cmd)
3367 {
3368         struct scsi_cmnd *scsi_cmnd = lpfc_cmd->pCmd;
3369         struct fcp_cmnd *fcp_cmnd = lpfc_cmd->fcp_cmnd;
3370         struct sli4_sge *sgl = (struct sli4_sge *)(lpfc_cmd->fcp_bpl);
3371         IOCB_t *iocb_cmd = &lpfc_cmd->cur_iocbq.iocb;
3372         uint32_t num_sge = 0;
3373         int datasegcnt, protsegcnt, datadir = scsi_cmnd->sc_data_direction;
3374         int prot_group_type = 0;
3375         int fcpdl;
3376         struct lpfc_vport *vport = phba->pport;
3377
3378         /*
3379          * Start the lpfc command prep by bumping the sgl beyond fcp_cmnd
3380          *  fcp_rsp regions to the first data sge entry
3381          */
3382         if (scsi_sg_count(scsi_cmnd)) {
3383                 /*
3384                  * The driver stores the segment count returned from pci_map_sg
3385                  * because this a count of dma-mappings used to map the use_sg
3386                  * pages.  They are not guaranteed to be the same for those
3387                  * architectures that implement an IOMMU.
3388                  */
3389                 datasegcnt = dma_map_sg(&phba->pcidev->dev,
3390                                         scsi_sglist(scsi_cmnd),
3391                                         scsi_sg_count(scsi_cmnd), datadir);
3392                 if (unlikely(!datasegcnt))
3393                         return 1;
3394
3395                 sgl += 1;
3396                 /* clear the last flag in the fcp_rsp map entry */
3397                 sgl->word2 = le32_to_cpu(sgl->word2);
3398                 bf_set(lpfc_sli4_sge_last, sgl, 0);
3399                 sgl->word2 = cpu_to_le32(sgl->word2);
3400
3401                 sgl += 1;
3402                 lpfc_cmd->seg_cnt = datasegcnt;
3403
3404                 /* First check if data segment count from SCSI Layer is good */
3405                 if (lpfc_cmd->seg_cnt > phba->cfg_sg_seg_cnt)
3406                         goto err;
3407
3408                 prot_group_type = lpfc_prot_group_type(phba, scsi_cmnd);
3409
3410                 switch (prot_group_type) {
3411                 case LPFC_PG_TYPE_NO_DIF:
3412                         /* Here we need to add a DISEED to the count */
3413                         if ((lpfc_cmd->seg_cnt + 1) > phba->cfg_total_seg_cnt)
3414                                 goto err;
3415
3416                         num_sge = lpfc_bg_setup_sgl(phba, scsi_cmnd, sgl,
3417                                         datasegcnt);
3418
3419                         /* we should have 2 or more entries in buffer list */
3420                         if (num_sge < 2)
3421                                 goto err;
3422                         break;
3423
3424                 case LPFC_PG_TYPE_DIF_BUF:
3425                         /*
3426                          * This type indicates that protection buffers are
3427                          * passed to the driver, so that needs to be prepared
3428                          * for DMA
3429                          */
3430                         protsegcnt = dma_map_sg(&phba->pcidev->dev,
3431                                         scsi_prot_sglist(scsi_cmnd),
3432                                         scsi_prot_sg_count(scsi_cmnd), datadir);
3433                         if (unlikely(!protsegcnt)) {
3434                                 scsi_dma_unmap(scsi_cmnd);
3435                                 return 1;
3436                         }
3437
3438                         lpfc_cmd->prot_seg_cnt = protsegcnt;
3439                         /*
3440                          * There is a minimun of 3 SGEs used for every
3441                          * protection data segment.
3442                          */
3443                         if ((lpfc_cmd->prot_seg_cnt * 3) >
3444                             (phba->cfg_total_seg_cnt - 2))
3445                                 goto err;
3446
3447                         num_sge = lpfc_bg_setup_sgl_prot(phba, scsi_cmnd, sgl,
3448                                         datasegcnt, protsegcnt);
3449
3450                         /* we should have 3 or more entries in buffer list */
3451                         if ((num_sge < 3) ||
3452                             (num_sge > phba->cfg_total_seg_cnt))
3453                                 goto err;
3454                         break;
3455
3456                 case LPFC_PG_TYPE_INVALID:
3457                 default:
3458                         scsi_dma_unmap(scsi_cmnd);
3459                         lpfc_cmd->seg_cnt = 0;
3460
3461                         lpfc_printf_log(phba, KERN_ERR, LOG_FCP,
3462                                         "9083 Unexpected protection group %i\n",
3463                                         prot_group_type);
3464                         return 1;
3465                 }
3466         }
3467
3468         switch (scsi_get_prot_op(scsi_cmnd)) {
3469         case SCSI_PROT_WRITE_STRIP:
3470         case SCSI_PROT_READ_STRIP:
3471                 lpfc_cmd->cur_iocbq.iocb_flag |= LPFC_IO_DIF_STRIP;
3472                 break;
3473         case SCSI_PROT_WRITE_INSERT:
3474         case SCSI_PROT_READ_INSERT:
3475                 lpfc_cmd->cur_iocbq.iocb_flag |= LPFC_IO_DIF_INSERT;
3476                 break;
3477         case SCSI_PROT_WRITE_PASS:
3478         case SCSI_PROT_READ_PASS:
3479                 lpfc_cmd->cur_iocbq.iocb_flag |= LPFC_IO_DIF_PASS;
3480                 break;
3481         }
3482
3483         fcpdl = lpfc_bg_scsi_adjust_dl(phba, lpfc_cmd);
3484         fcp_cmnd->fcpDl = be32_to_cpu(fcpdl);
3485
3486         /*
3487          * Due to difference in data length between DIF/non-DIF paths,
3488          * we need to set word 4 of IOCB here
3489          */
3490         iocb_cmd->un.fcpi.fcpi_parm = fcpdl;
3491
3492         /*
3493          * For First burst, we may need to adjust the initial transfer
3494          * length for DIF
3495          */
3496         if (iocb_cmd->un.fcpi.fcpi_XRdy &&
3497             (fcpdl < vport->cfg_first_burst_size))
3498                 iocb_cmd->un.fcpi.fcpi_XRdy = fcpdl;
3499
3500         /*
3501          * If the OAS driver feature is enabled and the lun is enabled for
3502          * OAS, set the oas iocb related flags.
3503          */
3504         if ((phba->cfg_fof) && ((struct lpfc_device_data *)
3505                 scsi_cmnd->device->hostdata)->oas_enabled)
3506                 lpfc_cmd->cur_iocbq.iocb_flag |= (LPFC_IO_OAS | LPFC_IO_FOF);
3507
3508         return 0;
3509 err:
3510         if (lpfc_cmd->seg_cnt)
3511                 scsi_dma_unmap(scsi_cmnd);
3512         if (lpfc_cmd->prot_seg_cnt)
3513                 dma_unmap_sg(&phba->pcidev->dev, scsi_prot_sglist(scsi_cmnd),
3514                              scsi_prot_sg_count(scsi_cmnd),
3515                              scsi_cmnd->sc_data_direction);
3516
3517         lpfc_printf_log(phba, KERN_ERR, LOG_FCP,
3518                         "9084 Cannot setup S/G List for HBA"
3519                         "IO segs %d/%d SGL %d SCSI %d: %d %d\n",
3520                         lpfc_cmd->seg_cnt, lpfc_cmd->prot_seg_cnt,
3521                         phba->cfg_total_seg_cnt, phba->cfg_sg_seg_cnt,
3522                         prot_group_type, num_sge);
3523
3524         lpfc_cmd->seg_cnt = 0;
3525         lpfc_cmd->prot_seg_cnt = 0;
3526         return 1;
3527 }
3528
3529 /**
3530  * lpfc_scsi_prep_dma_buf - Wrapper function for DMA mapping of scsi buffer
3531  * @phba: The Hba for which this call is being executed.
3532  * @lpfc_cmd: The scsi buffer which is going to be mapped.
3533  *
3534  * This routine wraps the actual DMA mapping function pointer from the
3535  * lpfc_hba struct.
3536  *
3537  * Return codes:
3538  *      1 - Error
3539  *      0 - Success
3540  **/
3541 static inline int
3542 lpfc_scsi_prep_dma_buf(struct lpfc_hba *phba, struct lpfc_scsi_buf *lpfc_cmd)
3543 {
3544         return phba->lpfc_scsi_prep_dma_buf(phba, lpfc_cmd);
3545 }
3546
3547 /**
3548  * lpfc_bg_scsi_prep_dma_buf - Wrapper function for DMA mapping of scsi buffer
3549  * using BlockGuard.
3550  * @phba: The Hba for which this call is being executed.
3551  * @lpfc_cmd: The scsi buffer which is going to be mapped.
3552  *
3553  * This routine wraps the actual DMA mapping function pointer from the
3554  * lpfc_hba struct.
3555  *
3556  * Return codes:
3557  *      1 - Error
3558  *      0 - Success
3559  **/
3560 static inline int
3561 lpfc_bg_scsi_prep_dma_buf(struct lpfc_hba *phba, struct lpfc_scsi_buf *lpfc_cmd)
3562 {
3563         return phba->lpfc_bg_scsi_prep_dma_buf(phba, lpfc_cmd);
3564 }
3565
3566 /**
3567  * lpfc_send_scsi_error_event - Posts an event when there is SCSI error
3568  * @phba: Pointer to hba context object.
3569  * @vport: Pointer to vport object.
3570  * @lpfc_cmd: Pointer to lpfc scsi command which reported the error.
3571  * @rsp_iocb: Pointer to response iocb object which reported error.
3572  *
3573  * This function posts an event when there is a SCSI command reporting
3574  * error from the scsi device.
3575  **/
3576 static void
3577 lpfc_send_scsi_error_event(struct lpfc_hba *phba, struct lpfc_vport *vport,
3578                 struct lpfc_scsi_buf *lpfc_cmd, struct lpfc_iocbq *rsp_iocb) {
3579         struct scsi_cmnd *cmnd = lpfc_cmd->pCmd;
3580         struct fcp_rsp *fcprsp = lpfc_cmd->fcp_rsp;
3581         uint32_t resp_info = fcprsp->rspStatus2;
3582         uint32_t scsi_status = fcprsp->rspStatus3;
3583         uint32_t fcpi_parm = rsp_iocb->iocb.un.fcpi.fcpi_parm;
3584         struct lpfc_fast_path_event *fast_path_evt = NULL;
3585         struct lpfc_nodelist *pnode = lpfc_cmd->rdata->pnode;
3586         unsigned long flags;
3587
3588         if (!pnode || !NLP_CHK_NODE_ACT(pnode))
3589                 return;
3590
3591         /* If there is queuefull or busy condition send a scsi event */
3592         if ((cmnd->result == SAM_STAT_TASK_SET_FULL) ||
3593                 (cmnd->result == SAM_STAT_BUSY)) {
3594                 fast_path_evt = lpfc_alloc_fast_evt(phba);
3595                 if (!fast_path_evt)
3596                         return;
3597                 fast_path_evt->un.scsi_evt.event_type =
3598                         FC_REG_SCSI_EVENT;
3599                 fast_path_evt->un.scsi_evt.subcategory =
3600                 (cmnd->result == SAM_STAT_TASK_SET_FULL) ?
3601                 LPFC_EVENT_QFULL : LPFC_EVENT_DEVBSY;
3602                 fast_path_evt->un.scsi_evt.lun = cmnd->device->lun;
3603                 memcpy(&fast_path_evt->un.scsi_evt.wwpn,
3604                         &pnode->nlp_portname, sizeof(struct lpfc_name));
3605                 memcpy(&fast_path_evt->un.scsi_evt.wwnn,
3606                         &pnode->nlp_nodename, sizeof(struct lpfc_name));
3607         } else if ((resp_info & SNS_LEN_VALID) && fcprsp->rspSnsLen &&
3608                 ((cmnd->cmnd[0] == READ_10) || (cmnd->cmnd[0] == WRITE_10))) {
3609                 fast_path_evt = lpfc_alloc_fast_evt(phba);
3610                 if (!fast_path_evt)
3611                         return;
3612                 fast_path_evt->un.check_cond_evt.scsi_event.event_type =
3613                         FC_REG_SCSI_EVENT;
3614                 fast_path_evt->un.check_cond_evt.scsi_event.subcategory =
3615                         LPFC_EVENT_CHECK_COND;
3616                 fast_path_evt->un.check_cond_evt.scsi_event.lun =
3617                         cmnd->device->lun;
3618                 memcpy(&fast_path_evt->un.check_cond_evt.scsi_event.wwpn,
3619                         &pnode->nlp_portname, sizeof(struct lpfc_name));
3620                 memcpy(&fast_path_evt->un.check_cond_evt.scsi_event.wwnn,
3621                         &pnode->nlp_nodename, sizeof(struct lpfc_name));
3622                 fast_path_evt->un.check_cond_evt.sense_key =
3623                         cmnd->sense_buffer[2] & 0xf;
3624                 fast_path_evt->un.check_cond_evt.asc = cmnd->sense_buffer[12];
3625                 fast_path_evt->un.check_cond_evt.ascq = cmnd->sense_buffer[13];
3626         } else if ((cmnd->sc_data_direction == DMA_FROM_DEVICE) &&
3627                      fcpi_parm &&
3628                      ((be32_to_cpu(fcprsp->rspResId) != fcpi_parm) ||
3629                         ((scsi_status == SAM_STAT_GOOD) &&
3630                         !(resp_info & (RESID_UNDER | RESID_OVER))))) {
3631                 /*
3632                  * If status is good or resid does not match with fcp_param and
3633                  * there is valid fcpi_parm, then there is a read_check error
3634                  */
3635                 fast_path_evt = lpfc_alloc_fast_evt(phba);
3636                 if (!fast_path_evt)
3637                         return;
3638                 fast_path_evt->un.read_check_error.header.event_type =
3639                         FC_REG_FABRIC_EVENT;
3640                 fast_path_evt->un.read_check_error.header.subcategory =
3641                         LPFC_EVENT_FCPRDCHKERR;
3642                 memcpy(&fast_path_evt->un.read_check_error.header.wwpn,
3643                         &pnode->nlp_portname, sizeof(struct lpfc_name));
3644                 memcpy(&fast_path_evt->un.read_check_error.header.wwnn,
3645                         &pnode->nlp_nodename, sizeof(struct lpfc_name));
3646                 fast_path_evt->un.read_check_error.lun = cmnd->device->lun;
3647                 fast_path_evt->un.read_check_error.opcode = cmnd->cmnd[0];
3648                 fast_path_evt->un.read_check_error.fcpiparam =
3649                         fcpi_parm;
3650         } else
3651                 return;
3652
3653         fast_path_evt->vport = vport;
3654         spin_lock_irqsave(&phba->hbalock, flags);
3655         list_add_tail(&fast_path_evt->work_evt.evt_listp, &phba->work_list);
3656         spin_unlock_irqrestore(&phba->hbalock, flags);
3657         lpfc_worker_wake_up(phba);
3658         return;
3659 }
3660
3661 /**
3662  * lpfc_scsi_unprep_dma_buf - Un-map DMA mapping of SG-list for dev
3663  * @phba: The HBA for which this call is being executed.
3664  * @psb: The scsi buffer which is going to be un-mapped.
3665  *
3666  * This routine does DMA un-mapping of scatter gather list of scsi command
3667  * field of @lpfc_cmd for device with SLI-3 interface spec.
3668  **/
3669 static void
3670 lpfc_scsi_unprep_dma_buf(struct lpfc_hba *phba, struct lpfc_scsi_buf *psb)
3671 {
3672         /*
3673          * There are only two special cases to consider.  (1) the scsi command
3674          * requested scatter-gather usage or (2) the scsi command allocated
3675          * a request buffer, but did not request use_sg.  There is a third
3676          * case, but it does not require resource deallocation.
3677          */
3678         if (psb->seg_cnt > 0)
3679                 scsi_dma_unmap(psb->pCmd);
3680         if (psb->prot_seg_cnt > 0)
3681                 dma_unmap_sg(&phba->pcidev->dev, scsi_prot_sglist(psb->pCmd),
3682                                 scsi_prot_sg_count(psb->pCmd),
3683                                 psb->pCmd->sc_data_direction);
3684 }
3685
3686 /**
3687  * lpfc_handler_fcp_err - FCP response handler
3688  * @vport: The virtual port for which this call is being executed.
3689  * @lpfc_cmd: Pointer to lpfc_scsi_buf data structure.
3690  * @rsp_iocb: The response IOCB which contains FCP error.
3691  *
3692  * This routine is called to process response IOCB with status field
3693  * IOSTAT_FCP_RSP_ERROR. This routine sets result field of scsi command
3694  * based upon SCSI and FCP error.
3695  **/
3696 static void
3697 lpfc_handle_fcp_err(struct lpfc_vport *vport, struct lpfc_scsi_buf *lpfc_cmd,
3698                     struct lpfc_iocbq *rsp_iocb)
3699 {
3700         struct lpfc_hba *phba = vport->phba;
3701         struct scsi_cmnd *cmnd = lpfc_cmd->pCmd;
3702         struct fcp_cmnd *fcpcmd = lpfc_cmd->fcp_cmnd;
3703         struct fcp_rsp *fcprsp = lpfc_cmd->fcp_rsp;
3704         uint32_t fcpi_parm = rsp_iocb->iocb.un.fcpi.fcpi_parm;
3705         uint32_t resp_info = fcprsp->rspStatus2;
3706         uint32_t scsi_status = fcprsp->rspStatus3;
3707         uint32_t *lp;
3708         uint32_t host_status = DID_OK;
3709         uint32_t rsplen = 0;
3710         uint32_t fcpDl;
3711         uint32_t logit = LOG_FCP | LOG_FCP_ERROR;
3712
3713
3714         /*
3715          *  If this is a task management command, there is no
3716          *  scsi packet associated with this lpfc_cmd.  The driver
3717          *  consumes it.
3718          */
3719         if (fcpcmd->fcpCntl2) {
3720                 scsi_status = 0;
3721                 goto out;
3722         }
3723
3724         if (resp_info & RSP_LEN_VALID) {
3725                 rsplen = be32_to_cpu(fcprsp->rspRspLen);
3726                 if (rsplen != 0 && rsplen != 4 && rsplen != 8) {
3727                         lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
3728                                  "2719 Invalid response length: "
3729                                  "tgt x%x lun x%llx cmnd x%x rsplen x%x\n",
3730                                  cmnd->device->id,
3731                                  cmnd->device->lun, cmnd->cmnd[0],
3732                                  rsplen);
3733                         host_status = DID_ERROR;
3734                         goto out;
3735                 }
3736                 if (fcprsp->rspInfo3 != RSP_NO_FAILURE) {
3737                         lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
3738                                  "2757 Protocol failure detected during "
3739                                  "processing of FCP I/O op: "
3740                                  "tgt x%x lun x%llx cmnd x%x rspInfo3 x%x\n",
3741                                  cmnd->device->id,
3742                                  cmnd->device->lun, cmnd->cmnd[0],
3743                                  fcprsp->rspInfo3);
3744                         host_status = DID_ERROR;
3745                         goto out;
3746                 }
3747         }
3748
3749         if ((resp_info & SNS_LEN_VALID) && fcprsp->rspSnsLen) {
3750                 uint32_t snslen = be32_to_cpu(fcprsp->rspSnsLen);
3751                 if (snslen > SCSI_SENSE_BUFFERSIZE)
3752                         snslen = SCSI_SENSE_BUFFERSIZE;
3753
3754                 if (resp_info & RSP_LEN_VALID)
3755                   rsplen = be32_to_cpu(fcprsp->rspRspLen);
3756                 memcpy(cmnd->sense_buffer, &fcprsp->rspInfo0 + rsplen, snslen);
3757         }
3758         lp = (uint32_t *)cmnd->sense_buffer;
3759
3760         /* special handling for under run conditions */
3761         if (!scsi_status && (resp_info & RESID_UNDER)) {
3762                 /* don't log under runs if fcp set... */
3763                 if (vport->cfg_log_verbose & LOG_FCP)
3764                         logit = LOG_FCP_ERROR;
3765                 /* unless operator says so */
3766                 if (vport->cfg_log_verbose & LOG_FCP_UNDER)
3767                         logit = LOG_FCP_UNDER;
3768         }
3769
3770         lpfc_printf_vlog(vport, KERN_WARNING, logit,
3771                          "9024 FCP command x%x failed: x%x SNS x%x x%x "
3772                          "Data: x%x x%x x%x x%x x%x\n",
3773                          cmnd->cmnd[0], scsi_status,
3774                          be32_to_cpu(*lp), be32_to_cpu(*(lp + 3)), resp_info,
3775                          be32_to_cpu(fcprsp->rspResId),
3776                          be32_to_cpu(fcprsp->rspSnsLen),
3777                          be32_to_cpu(fcprsp->rspRspLen),
3778                          fcprsp->rspInfo3);
3779
3780         scsi_set_resid(cmnd, 0);
3781         fcpDl = be32_to_cpu(fcpcmd->fcpDl);
3782         if (resp_info & RESID_UNDER) {
3783                 scsi_set_resid(cmnd, be32_to_cpu(fcprsp->rspResId));
3784
3785                 lpfc_printf_vlog(vport, KERN_INFO, LOG_FCP_UNDER,
3786                                  "9025 FCP Read Underrun, expected %d, "
3787                                  "residual %d Data: x%x x%x x%x\n",
3788                                  fcpDl,
3789                                  scsi_get_resid(cmnd), fcpi_parm, cmnd->cmnd[0],
3790                                  cmnd->underflow);
3791
3792                 /*
3793                  * If there is an under run check if under run reported by
3794                  * storage array is same as the under run reported by HBA.
3795                  * If this is not same, there is a dropped frame.
3796                  */
3797                 if ((cmnd->sc_data_direction == DMA_FROM_DEVICE) &&
3798                         fcpi_parm &&
3799                         (scsi_get_resid(cmnd) != fcpi_parm)) {
3800                         lpfc_printf_vlog(vport, KERN_WARNING,
3801                                          LOG_FCP | LOG_FCP_ERROR,
3802                                          "9026 FCP Read Check Error "
3803                                          "and Underrun Data: x%x x%x x%x x%x\n",
3804                                          fcpDl,
3805                                          scsi_get_resid(cmnd), fcpi_parm,
3806                                          cmnd->cmnd[0]);
3807                         scsi_set_resid(cmnd, scsi_bufflen(cmnd));
3808                         host_status = DID_ERROR;
3809                 }
3810                 /*
3811                  * The cmnd->underflow is the minimum number of bytes that must
3812                  * be transferred for this command.  Provided a sense condition
3813                  * is not present, make sure the actual amount transferred is at
3814                  * least the underflow value or fail.
3815                  */
3816                 if (!(resp_info & SNS_LEN_VALID) &&
3817                     (scsi_status == SAM_STAT_GOOD) &&
3818                     (scsi_bufflen(cmnd) - scsi_get_resid(cmnd)
3819                      < cmnd->underflow)) {
3820                         lpfc_printf_vlog(vport, KERN_INFO, LOG_FCP,
3821                                          "9027 FCP command x%x residual "
3822                                          "underrun converted to error "
3823                                          "Data: x%x x%x x%x\n",
3824                                          cmnd->cmnd[0], scsi_bufflen(cmnd),
3825                                          scsi_get_resid(cmnd), cmnd->underflow);
3826                         host_status = DID_ERROR;
3827                 }
3828         } else if (resp_info & RESID_OVER) {
3829                 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP,
3830                                  "9028 FCP command x%x residual overrun error. "
3831                                  "Data: x%x x%x\n", cmnd->cmnd[0],
3832                                  scsi_bufflen(cmnd), scsi_get_resid(cmnd));
3833                 host_status = DID_ERROR;
3834
3835         /*
3836          * Check SLI validation that all the transfer was actually done
3837          * (fcpi_parm should be zero). Apply check only to reads.
3838          */
3839         } else if (fcpi_parm) {
3840                 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP | LOG_FCP_ERROR,
3841                                  "9029 FCP %s Check Error xri x%x  Data: "
3842                                  "x%x x%x x%x x%x x%x\n",
3843                                  ((cmnd->sc_data_direction == DMA_FROM_DEVICE) ?
3844                                  "Read" : "Write"),
3845                                  ((phba->sli_rev == LPFC_SLI_REV4) ?
3846                                  lpfc_cmd->cur_iocbq.sli4_xritag :
3847                                  rsp_iocb->iocb.ulpContext),
3848                                  fcpDl, be32_to_cpu(fcprsp->rspResId),
3849                                  fcpi_parm, cmnd->cmnd[0], scsi_status);
3850
3851                 /* There is some issue with the LPe12000 that causes it
3852                  * to miscalculate the fcpi_parm and falsely trip this
3853                  * recovery logic.  Detect this case and don't error when true.
3854                  */
3855                 if (fcpi_parm > fcpDl)
3856                         goto out;
3857
3858                 switch (scsi_status) {
3859                 case SAM_STAT_GOOD:
3860                 case SAM_STAT_CHECK_CONDITION:
3861                         /* Fabric dropped a data frame. Fail any successful
3862                          * command in which we detected dropped frames.
3863                          * A status of good or some check conditions could
3864                          * be considered a successful command.
3865                          */
3866                         host_status = DID_ERROR;
3867                         break;
3868                 }
3869                 scsi_set_resid(cmnd, scsi_bufflen(cmnd));
3870         }
3871
3872  out:
3873         cmnd->result = ScsiResult(host_status, scsi_status);
3874         lpfc_send_scsi_error_event(vport->phba, vport, lpfc_cmd, rsp_iocb);
3875 }
3876
3877 /**
3878  * lpfc_sli4_scmd_to_wqidx_distr - scsi command to SLI4 WQ index distribution
3879  * @phba: Pointer to HBA context object.
3880  *
3881  * This routine performs a roundrobin SCSI command to SLI4 FCP WQ index
3882  * distribution.  This is called by __lpfc_sli_issue_iocb_s4() with the hbalock
3883  * held.
3884  * If scsi-mq is enabled, get the default block layer mapping of software queues
3885  * to hardware queues. This information is saved in request tag.
3886  *
3887  * Return: index into SLI4 fast-path FCP queue index.
3888  **/
3889 int lpfc_sli4_scmd_to_wqidx_distr(struct lpfc_hba *phba,
3890                                   struct lpfc_scsi_buf *lpfc_cmd)
3891 {
3892         struct scsi_cmnd *cmnd = lpfc_cmd->pCmd;
3893         struct lpfc_vector_map_info *cpup;
3894         int chann, cpu;
3895         uint32_t tag;
3896         uint16_t hwq;
3897
3898         if (cmnd && shost_use_blk_mq(cmnd->device->host)) {
3899                 tag = blk_mq_unique_tag(cmnd->request);
3900                 hwq = blk_mq_unique_tag_to_hwq(tag);
3901
3902                 return hwq;
3903         }
3904
3905         if (phba->cfg_fcp_io_sched == LPFC_FCP_SCHED_BY_CPU
3906             && phba->cfg_fcp_io_channel > 1) {
3907                 cpu = smp_processor_id();
3908                 if (cpu < phba->sli4_hba.num_present_cpu) {
3909                         cpup = phba->sli4_hba.cpu_map;
3910                         cpup += cpu;
3911                         return cpup->channel_id;
3912                 }
3913         }
3914         chann = atomic_add_return(1, &phba->fcp_qidx);
3915         chann = (chann % phba->cfg_fcp_io_channel);
3916         return chann;
3917 }
3918
3919
3920 /**
3921  * lpfc_scsi_cmd_iocb_cmpl - Scsi cmnd IOCB completion routine
3922  * @phba: The Hba for which this call is being executed.
3923  * @pIocbIn: The command IOCBQ for the scsi cmnd.
3924  * @pIocbOut: The response IOCBQ for the scsi cmnd.
3925  *
3926  * This routine assigns scsi command result by looking into response IOCB
3927  * status field appropriately. This routine handles QUEUE FULL condition as
3928  * well by ramping down device queue depth.
3929  **/
3930 static void
3931 lpfc_scsi_cmd_iocb_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *pIocbIn,
3932                         struct lpfc_iocbq *pIocbOut)
3933 {
3934         struct lpfc_scsi_buf *lpfc_cmd =
3935                 (struct lpfc_scsi_buf *) pIocbIn->context1;
3936         struct lpfc_vport      *vport = pIocbIn->vport;
3937         struct lpfc_rport_data *rdata = lpfc_cmd->rdata;
3938         struct lpfc_nodelist *pnode = rdata->pnode;
3939         struct scsi_cmnd *cmd;
3940         int depth;
3941         unsigned long flags;
3942         struct lpfc_fast_path_event *fast_path_evt;
3943         struct Scsi_Host *shost;
3944         uint32_t logit = LOG_FCP;
3945
3946         /* Sanity check on return of outstanding command */
3947         cmd = lpfc_cmd->pCmd;
3948         if (!cmd)
3949                 return;
3950         shost = cmd->device->host;
3951
3952         lpfc_cmd->result = (pIocbOut->iocb.un.ulpWord[4] & IOERR_PARAM_MASK);
3953         lpfc_cmd->status = pIocbOut->iocb.ulpStatus;
3954         /* pick up SLI4 exhange busy status from HBA */
3955         lpfc_cmd->exch_busy = pIocbOut->iocb_flag & LPFC_EXCHANGE_BUSY;
3956
3957 #ifdef CONFIG_SCSI_LPFC_DEBUG_FS
3958         if (lpfc_cmd->prot_data_type) {
3959                 struct scsi_dif_tuple *src = NULL;
3960
3961                 src =  (struct scsi_dif_tuple *)lpfc_cmd->prot_data_segment;
3962                 /*
3963                  * Used to restore any changes to protection
3964                  * data for error injection.
3965                  */
3966                 switch (lpfc_cmd->prot_data_type) {
3967                 case LPFC_INJERR_REFTAG:
3968                         src->ref_tag =
3969                                 lpfc_cmd->prot_data;
3970                         break;
3971                 case LPFC_INJERR_APPTAG:
3972                         src->app_tag =
3973                                 (uint16_t)lpfc_cmd->prot_data;
3974                         break;
3975                 case LPFC_INJERR_GUARD:
3976                         src->guard_tag =
3977                                 (uint16_t)lpfc_cmd->prot_data;
3978                         break;
3979                 default:
3980                         break;
3981                 }
3982
3983                 lpfc_cmd->prot_data = 0;
3984                 lpfc_cmd->prot_data_type = 0;
3985                 lpfc_cmd->prot_data_segment = NULL;
3986         }
3987 #endif
3988         if (pnode && NLP_CHK_NODE_ACT(pnode))
3989                 atomic_dec(&pnode->cmd_pending);
3990
3991         if (lpfc_cmd->status) {
3992                 if (lpfc_cmd->status == IOSTAT_LOCAL_REJECT &&
3993                     (lpfc_cmd->result & IOERR_DRVR_MASK))
3994                         lpfc_cmd->status = IOSTAT_DRIVER_REJECT;
3995                 else if (lpfc_cmd->status >= IOSTAT_CNT)
3996                         lpfc_cmd->status = IOSTAT_DEFAULT;
3997                 if (lpfc_cmd->status == IOSTAT_FCP_RSP_ERROR &&
3998                     !lpfc_cmd->fcp_rsp->rspStatus3 &&
3999                     (lpfc_cmd->fcp_rsp->rspStatus2 & RESID_UNDER) &&
4000                     !(vport->cfg_log_verbose & LOG_FCP_UNDER))
4001                         logit = 0;
4002                 else
4003                         logit = LOG_FCP | LOG_FCP_UNDER;
4004                 lpfc_printf_vlog(vport, KERN_WARNING, logit,
4005                          "9030 FCP cmd x%x failed <%d/%lld> "
4006                          "status: x%x result: x%x "
4007                          "sid: x%x did: x%x oxid: x%x "
4008                          "Data: x%x x%x\n",
4009                          cmd->cmnd[0],
4010                          cmd->device ? cmd->device->id : 0xffff,
4011                          cmd->device ? cmd->device->lun : 0xffff,
4012                          lpfc_cmd->status, lpfc_cmd->result,
4013                          vport->fc_myDID,
4014                          (pnode) ? pnode->nlp_DID : 0,
4015                          phba->sli_rev == LPFC_SLI_REV4 ?
4016                              lpfc_cmd->cur_iocbq.sli4_xritag : 0xffff,
4017                          pIocbOut->iocb.ulpContext,
4018                          lpfc_cmd->cur_iocbq.iocb.ulpIoTag);
4019
4020                 switch (lpfc_cmd->status) {
4021                 case IOSTAT_FCP_RSP_ERROR:
4022                         /* Call FCP RSP handler to determine result */
4023                         lpfc_handle_fcp_err(vport, lpfc_cmd, pIocbOut);
4024                         break;
4025                 case IOSTAT_NPORT_BSY:
4026                 case IOSTAT_FABRIC_BSY:
4027                         cmd->result = ScsiResult(DID_TRANSPORT_DISRUPTED, 0);
4028                         fast_path_evt = lpfc_alloc_fast_evt(phba);
4029                         if (!fast_path_evt)
4030                                 break;
4031                         fast_path_evt->un.fabric_evt.event_type =
4032                                 FC_REG_FABRIC_EVENT;
4033                         fast_path_evt->un.fabric_evt.subcategory =
4034                                 (lpfc_cmd->status == IOSTAT_NPORT_BSY) ?
4035                                 LPFC_EVENT_PORT_BUSY : LPFC_EVENT_FABRIC_BUSY;
4036                         if (pnode && NLP_CHK_NODE_ACT(pnode)) {
4037                                 memcpy(&fast_path_evt->un.fabric_evt.wwpn,
4038                                         &pnode->nlp_portname,
4039                                         sizeof(struct lpfc_name));
4040                                 memcpy(&fast_path_evt->un.fabric_evt.wwnn,
4041                                         &pnode->nlp_nodename,
4042                                         sizeof(struct lpfc_name));
4043                         }
4044                         fast_path_evt->vport = vport;
4045                         fast_path_evt->work_evt.evt =
4046                                 LPFC_EVT_FASTPATH_MGMT_EVT;
4047                         spin_lock_irqsave(&phba->hbalock, flags);
4048                         list_add_tail(&fast_path_evt->work_evt.evt_listp,
4049                                 &phba->work_list);
4050                         spin_unlock_irqrestore(&phba->hbalock, flags);
4051                         lpfc_worker_wake_up(phba);
4052                         break;
4053                 case IOSTAT_LOCAL_REJECT:
4054                 case IOSTAT_REMOTE_STOP:
4055                         if (lpfc_cmd->result == IOERR_ELXSEC_KEY_UNWRAP_ERROR ||
4056                             lpfc_cmd->result ==
4057                                         IOERR_ELXSEC_KEY_UNWRAP_COMPARE_ERROR ||
4058                             lpfc_cmd->result == IOERR_ELXSEC_CRYPTO_ERROR ||
4059                             lpfc_cmd->result ==
4060                                         IOERR_ELXSEC_CRYPTO_COMPARE_ERROR) {
4061                                 cmd->result = ScsiResult(DID_NO_CONNECT, 0);
4062                                 break;
4063                         }
4064                         if (lpfc_cmd->result == IOERR_INVALID_RPI ||
4065                             lpfc_cmd->result == IOERR_NO_RESOURCES ||
4066                             lpfc_cmd->result == IOERR_ABORT_REQUESTED ||
4067                             lpfc_cmd->result == IOERR_SLER_CMD_RCV_FAILURE) {
4068                                 cmd->result = ScsiResult(DID_REQUEUE, 0);
4069                                 break;
4070                         }
4071                         if ((lpfc_cmd->result == IOERR_RX_DMA_FAILED ||
4072                              lpfc_cmd->result == IOERR_TX_DMA_FAILED) &&
4073                              pIocbOut->iocb.unsli3.sli3_bg.bgstat) {
4074                                 if (scsi_get_prot_op(cmd) != SCSI_PROT_NORMAL) {
4075                                         /*
4076                                          * This is a response for a BG enabled
4077                                          * cmd. Parse BG error
4078                                          */
4079                                         lpfc_parse_bg_err(phba, lpfc_cmd,
4080                                                         pIocbOut);
4081                                         break;
4082                                 } else {
4083                                         lpfc_printf_vlog(vport, KERN_WARNING,
4084                                                         LOG_BG,
4085                                                         "9031 non-zero BGSTAT "
4086                                                         "on unprotected cmd\n");
4087                                 }
4088                         }
4089                         if ((lpfc_cmd->status == IOSTAT_REMOTE_STOP)
4090                                 && (phba->sli_rev == LPFC_SLI_REV4)
4091                                 && (pnode && NLP_CHK_NODE_ACT(pnode))) {
4092                                 /* This IO was aborted by the target, we don't
4093                                  * know the rxid and because we did not send the
4094                                  * ABTS we cannot generate and RRQ.
4095                                  */
4096                                 lpfc_set_rrq_active(phba, pnode,
4097                                         lpfc_cmd->cur_iocbq.sli4_lxritag,
4098                                         0, 0);
4099                         }
4100                 /* else: fall through */
4101                 default:
4102                         cmd->result = ScsiResult(DID_ERROR, 0);
4103                         break;
4104                 }
4105
4106                 if (!pnode || !NLP_CHK_NODE_ACT(pnode)
4107                     || (pnode->nlp_state != NLP_STE_MAPPED_NODE))
4108                         cmd->result = ScsiResult(DID_TRANSPORT_DISRUPTED,
4109                                                  SAM_STAT_BUSY);
4110         } else
4111                 cmd->result = ScsiResult(DID_OK, 0);
4112
4113         if (cmd->result || lpfc_cmd->fcp_rsp->rspSnsLen) {
4114                 uint32_t *lp = (uint32_t *)cmd->sense_buffer;
4115
4116                 lpfc_printf_vlog(vport, KERN_INFO, LOG_FCP,
4117                                  "0710 Iodone <%d/%llu> cmd %p, error "
4118                                  "x%x SNS x%x x%x Data: x%x x%x\n",
4119                                  cmd->device->id, cmd->device->lun, cmd,
4120                                  cmd->result, *lp, *(lp + 3), cmd->retries,
4121                                  scsi_get_resid(cmd));
4122         }
4123
4124         lpfc_update_stats(phba, lpfc_cmd);
4125         if (vport->cfg_max_scsicmpl_time &&
4126            time_after(jiffies, lpfc_cmd->start_time +
4127                 msecs_to_jiffies(vport->cfg_max_scsicmpl_time))) {
4128                 spin_lock_irqsave(shost->host_lock, flags);
4129                 if (pnode && NLP_CHK_NODE_ACT(pnode)) {
4130                         if (pnode->cmd_qdepth >
4131                                 atomic_read(&pnode->cmd_pending) &&
4132                                 (atomic_read(&pnode->cmd_pending) >
4133                                 LPFC_MIN_TGT_QDEPTH) &&
4134                                 ((cmd->cmnd[0] == READ_10) ||
4135                                 (cmd->cmnd[0] == WRITE_10)))
4136                                 pnode->cmd_qdepth =
4137                                         atomic_read(&pnode->cmd_pending);
4138
4139                         pnode->last_change_time = jiffies;
4140                 }
4141                 spin_unlock_irqrestore(shost->host_lock, flags);
4142         } else if (pnode && NLP_CHK_NODE_ACT(pnode)) {
4143                 if ((pnode->cmd_qdepth < vport->cfg_tgt_queue_depth) &&
4144                    time_after(jiffies, pnode->last_change_time +
4145                               msecs_to_jiffies(LPFC_TGTQ_INTERVAL))) {
4146                         spin_lock_irqsave(shost->host_lock, flags);
4147                         depth = pnode->cmd_qdepth * LPFC_TGTQ_RAMPUP_PCENT
4148                                 / 100;
4149                         depth = depth ? depth : 1;
4150                         pnode->cmd_qdepth += depth;
4151                         if (pnode->cmd_qdepth > vport->cfg_tgt_queue_depth)
4152                                 pnode->cmd_qdepth = vport->cfg_tgt_queue_depth;
4153                         pnode->last_change_time = jiffies;
4154                         spin_unlock_irqrestore(shost->host_lock, flags);
4155                 }
4156         }
4157
4158         lpfc_scsi_unprep_dma_buf(phba, lpfc_cmd);
4159
4160         /* The sdev is not guaranteed to be valid post scsi_done upcall. */
4161         cmd->scsi_done(cmd);
4162
4163         spin_lock_irqsave(&phba->hbalock, flags);
4164         lpfc_cmd->pCmd = NULL;
4165         spin_unlock_irqrestore(&phba->hbalock, flags);
4166
4167         /*
4168          * If there is a thread waiting for command completion
4169          * wake up the thread.
4170          */
4171         spin_lock_irqsave(shost->host_lock, flags);
4172         if (lpfc_cmd->waitq)
4173                 wake_up(lpfc_cmd->waitq);
4174         spin_unlock_irqrestore(shost->host_lock, flags);
4175
4176         lpfc_release_scsi_buf(phba, lpfc_cmd);
4177 }
4178
4179 /**
4180  * lpfc_fcpcmd_to_iocb - copy the fcp_cmd data into the IOCB
4181  * @data: A pointer to the immediate command data portion of the IOCB.
4182  * @fcp_cmnd: The FCP Command that is provided by the SCSI layer.
4183  *
4184  * The routine copies the entire FCP command from @fcp_cmnd to @data while
4185  * byte swapping the data to big endian format for transmission on the wire.
4186  **/
4187 static void
4188 lpfc_fcpcmd_to_iocb(uint8_t *data, struct fcp_cmnd *fcp_cmnd)
4189 {
4190         int i, j;
4191         for (i = 0, j = 0; i < sizeof(struct fcp_cmnd);
4192              i += sizeof(uint32_t), j++) {
4193                 ((uint32_t *)data)[j] = cpu_to_be32(((uint32_t *)fcp_cmnd)[j]);
4194         }
4195 }
4196
4197 /**
4198  * lpfc_scsi_prep_cmnd - Wrapper func for convert scsi cmnd to FCP info unit
4199  * @vport: The virtual port for which this call is being executed.
4200  * @lpfc_cmd: The scsi command which needs to send.
4201  * @pnode: Pointer to lpfc_nodelist.
4202  *
4203  * This routine initializes fcp_cmnd and iocb data structure from scsi command
4204  * to transfer for device with SLI3 interface spec.
4205  **/
4206 static void
4207 lpfc_scsi_prep_cmnd(struct lpfc_vport *vport, struct lpfc_scsi_buf *lpfc_cmd,
4208                     struct lpfc_nodelist *pnode)
4209 {
4210         struct lpfc_hba *phba = vport->phba;
4211         struct scsi_cmnd *scsi_cmnd = lpfc_cmd->pCmd;
4212         struct fcp_cmnd *fcp_cmnd = lpfc_cmd->fcp_cmnd;
4213         IOCB_t *iocb_cmd = &lpfc_cmd->cur_iocbq.iocb;
4214         struct lpfc_iocbq *piocbq = &(lpfc_cmd->cur_iocbq);
4215         int datadir = scsi_cmnd->sc_data_direction;
4216         uint8_t *ptr;
4217         bool sli4;
4218         uint32_t fcpdl;
4219
4220         if (!pnode || !NLP_CHK_NODE_ACT(pnode))
4221                 return;
4222
4223         lpfc_cmd->fcp_rsp->rspSnsLen = 0;
4224         /* clear task management bits */
4225         lpfc_cmd->fcp_cmnd->fcpCntl2 = 0;
4226
4227         int_to_scsilun(lpfc_cmd->pCmd->device->lun,
4228                         &lpfc_cmd->fcp_cmnd->fcp_lun);
4229
4230         ptr = &fcp_cmnd->fcpCdb[0];
4231         memcpy(ptr, scsi_cmnd->cmnd, scsi_cmnd->cmd_len);
4232         if (scsi_cmnd->cmd_len < LPFC_FCP_CDB_LEN) {
4233                 ptr += scsi_cmnd->cmd_len;
4234                 memset(ptr, 0, (LPFC_FCP_CDB_LEN - scsi_cmnd->cmd_len));
4235         }
4236
4237         fcp_cmnd->fcpCntl1 = SIMPLE_Q;
4238
4239         sli4 = (phba->sli_rev == LPFC_SLI_REV4);
4240         piocbq->iocb.un.fcpi.fcpi_XRdy = 0;
4241
4242         /*
4243          * There are three possibilities here - use scatter-gather segment, use
4244          * the single mapping, or neither.  Start the lpfc command prep by
4245          * bumping the bpl beyond the fcp_cmnd and fcp_rsp regions to the first
4246          * data bde entry.
4247          */
4248         if (scsi_sg_count(scsi_cmnd)) {
4249                 if (datadir == DMA_TO_DEVICE) {
4250                         iocb_cmd->ulpCommand = CMD_FCP_IWRITE64_CR;
4251                         iocb_cmd->ulpPU = PARM_READ_CHECK;
4252                         if (vport->cfg_first_burst_size &&
4253                             (pnode->nlp_flag & NLP_FIRSTBURST)) {
4254                                 fcpdl = scsi_bufflen(scsi_cmnd);
4255                                 if (fcpdl < vport->cfg_first_burst_size)
4256                                         piocbq->iocb.un.fcpi.fcpi_XRdy = fcpdl;
4257                                 else
4258                                         piocbq->iocb.un.fcpi.fcpi_XRdy =
4259                                                 vport->cfg_first_burst_size;
4260                         }
4261                         fcp_cmnd->fcpCntl3 = WRITE_DATA;
4262                         phba->fc4OutputRequests++;
4263                 } else {
4264                         iocb_cmd->ulpCommand = CMD_FCP_IREAD64_CR;
4265                         iocb_cmd->ulpPU = PARM_READ_CHECK;
4266                         fcp_cmnd->fcpCntl3 = READ_DATA;
4267                         phba->fc4InputRequests++;
4268                 }
4269         } else {
4270                 iocb_cmd->ulpCommand = CMD_FCP_ICMND64_CR;
4271                 iocb_cmd->un.fcpi.fcpi_parm = 0;
4272                 iocb_cmd->ulpPU = 0;
4273                 fcp_cmnd->fcpCntl3 = 0;
4274                 phba->fc4ControlRequests++;
4275         }
4276         if (phba->sli_rev == 3 &&
4277             !(phba->sli3_options & LPFC_SLI3_BG_ENABLED))
4278                 lpfc_fcpcmd_to_iocb(iocb_cmd->unsli3.fcp_ext.icd, fcp_cmnd);
4279         /*
4280          * Finish initializing those IOCB fields that are independent
4281          * of the scsi_cmnd request_buffer
4282          */
4283         piocbq->iocb.ulpContext = pnode->nlp_rpi;
4284         if (sli4)
4285                 piocbq->iocb.ulpContext =
4286                   phba->sli4_hba.rpi_ids[pnode->nlp_rpi];
4287         if (pnode->nlp_fcp_info & NLP_FCP_2_DEVICE)
4288                 piocbq->iocb.ulpFCP2Rcvy = 1;
4289         else
4290                 piocbq->iocb.ulpFCP2Rcvy = 0;
4291
4292         piocbq->iocb.ulpClass = (pnode->nlp_fcp_info & 0x0f);
4293         piocbq->context1  = lpfc_cmd;
4294         piocbq->iocb_cmpl = lpfc_scsi_cmd_iocb_cmpl;
4295         piocbq->iocb.ulpTimeout = lpfc_cmd->timeout;
4296         piocbq->vport = vport;
4297 }
4298
4299 /**
4300  * lpfc_scsi_prep_task_mgmt_cmd - Convert SLI3 scsi TM cmd to FCP info unit
4301  * @vport: The virtual port for which this call is being executed.
4302  * @lpfc_cmd: Pointer to lpfc_scsi_buf data structure.
4303  * @lun: Logical unit number.
4304  * @task_mgmt_cmd: SCSI task management command.
4305  *
4306  * This routine creates FCP information unit corresponding to @task_mgmt_cmd
4307  * for device with SLI-3 interface spec.
4308  *
4309  * Return codes:
4310  *   0 - Error
4311  *   1 - Success
4312  **/
4313 static int
4314 lpfc_scsi_prep_task_mgmt_cmd(struct lpfc_vport *vport,
4315                              struct lpfc_scsi_buf *lpfc_cmd,
4316                              uint64_t lun,
4317                              uint8_t task_mgmt_cmd)
4318 {
4319         struct lpfc_iocbq *piocbq;
4320         IOCB_t *piocb;
4321         struct fcp_cmnd *fcp_cmnd;
4322         struct lpfc_rport_data *rdata = lpfc_cmd->rdata;
4323         struct lpfc_nodelist *ndlp = rdata->pnode;
4324
4325         if (!ndlp || !NLP_CHK_NODE_ACT(ndlp) ||
4326             ndlp->nlp_state != NLP_STE_MAPPED_NODE)
4327                 return 0;
4328
4329         piocbq = &(lpfc_cmd->cur_iocbq);
4330         piocbq->vport = vport;
4331
4332         piocb = &piocbq->iocb;
4333
4334         fcp_cmnd = lpfc_cmd->fcp_cmnd;
4335         /* Clear out any old data in the FCP command area */
4336         memset(fcp_cmnd, 0, sizeof(struct fcp_cmnd));
4337         int_to_scsilun(lun, &fcp_cmnd->fcp_lun);
4338         fcp_cmnd->fcpCntl2 = task_mgmt_cmd;
4339         if (vport->phba->sli_rev == 3 &&
4340             !(vport->phba->sli3_options & LPFC_SLI3_BG_ENABLED))
4341                 lpfc_fcpcmd_to_iocb(piocb->unsli3.fcp_ext.icd, fcp_cmnd);
4342         piocb->ulpCommand = CMD_FCP_ICMND64_CR;
4343         piocb->ulpContext = ndlp->nlp_rpi;
4344         if (vport->phba->sli_rev == LPFC_SLI_REV4) {
4345                 piocb->ulpContext =
4346                   vport->phba->sli4_hba.rpi_ids[ndlp->nlp_rpi];
4347         }
4348         piocb->ulpFCP2Rcvy = (ndlp->nlp_fcp_info & NLP_FCP_2_DEVICE) ? 1 : 0;
4349         piocb->ulpClass = (ndlp->nlp_fcp_info & 0x0f);
4350         piocb->ulpPU = 0;
4351         piocb->un.fcpi.fcpi_parm = 0;
4352
4353         /* ulpTimeout is only one byte */
4354         if (lpfc_cmd->timeout > 0xff) {
4355                 /*
4356                  * Do not timeout the command at the firmware level.
4357                  * The driver will provide the timeout mechanism.
4358                  */
4359                 piocb->ulpTimeout = 0;
4360         } else
4361                 piocb->ulpTimeout = lpfc_cmd->timeout;
4362
4363         if (vport->phba->sli_rev == LPFC_SLI_REV4)
4364                 lpfc_sli4_set_rsp_sgl_last(vport->phba, lpfc_cmd);
4365
4366         return 1;
4367 }
4368
4369 /**
4370  * lpfc_scsi_api_table_setup - Set up scsi api function jump table
4371  * @phba: The hba struct for which this call is being executed.
4372  * @dev_grp: The HBA PCI-Device group number.
4373  *
4374  * This routine sets up the SCSI interface API function jump table in @phba
4375  * struct.
4376  * Returns: 0 - success, -ENODEV - failure.
4377  **/
4378 int
4379 lpfc_scsi_api_table_setup(struct lpfc_hba *phba, uint8_t dev_grp)
4380 {
4381
4382         phba->lpfc_scsi_unprep_dma_buf = lpfc_scsi_unprep_dma_buf;
4383         phba->lpfc_scsi_prep_cmnd = lpfc_scsi_prep_cmnd;
4384
4385         switch (dev_grp) {
4386         case LPFC_PCI_DEV_LP:
4387                 phba->lpfc_new_scsi_buf = lpfc_new_scsi_buf_s3;
4388                 phba->lpfc_scsi_prep_dma_buf = lpfc_scsi_prep_dma_buf_s3;
4389                 phba->lpfc_bg_scsi_prep_dma_buf = lpfc_bg_scsi_prep_dma_buf_s3;
4390                 phba->lpfc_release_scsi_buf = lpfc_release_scsi_buf_s3;
4391                 phba->lpfc_get_scsi_buf = lpfc_get_scsi_buf_s3;
4392                 break;
4393         case LPFC_PCI_DEV_OC:
4394                 phba->lpfc_new_scsi_buf = lpfc_new_scsi_buf_s4;
4395                 phba->lpfc_scsi_prep_dma_buf = lpfc_scsi_prep_dma_buf_s4;
4396                 phba->lpfc_bg_scsi_prep_dma_buf = lpfc_bg_scsi_prep_dma_buf_s4;
4397                 phba->lpfc_release_scsi_buf = lpfc_release_scsi_buf_s4;
4398                 phba->lpfc_get_scsi_buf = lpfc_get_scsi_buf_s4;
4399                 break;
4400         default:
4401                 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
4402                                 "1418 Invalid HBA PCI-device group: 0x%x\n",
4403                                 dev_grp);
4404                 return -ENODEV;
4405                 break;
4406         }
4407         phba->lpfc_rampdown_queue_depth = lpfc_rampdown_queue_depth;
4408         phba->lpfc_scsi_cmd_iocb_cmpl = lpfc_scsi_cmd_iocb_cmpl;
4409         return 0;
4410 }
4411
4412 /**
4413  * lpfc_taskmgmt_def_cmpl - IOCB completion routine for task management command
4414  * @phba: The Hba for which this call is being executed.
4415  * @cmdiocbq: Pointer to lpfc_iocbq data structure.
4416  * @rspiocbq: Pointer to lpfc_iocbq data structure.
4417  *
4418  * This routine is IOCB completion routine for device reset and target reset
4419  * routine. This routine release scsi buffer associated with lpfc_cmd.
4420  **/
4421 static void
4422 lpfc_tskmgmt_def_cmpl(struct lpfc_hba *phba,
4423                         struct lpfc_iocbq *cmdiocbq,
4424                         struct lpfc_iocbq *rspiocbq)
4425 {
4426         struct lpfc_scsi_buf *lpfc_cmd =
4427                 (struct lpfc_scsi_buf *) cmdiocbq->context1;
4428         if (lpfc_cmd)
4429                 lpfc_release_scsi_buf(phba, lpfc_cmd);
4430         return;
4431 }
4432
4433 /**
4434  * lpfc_info - Info entry point of scsi_host_template data structure
4435  * @host: The scsi host for which this call is being executed.
4436  *
4437  * This routine provides module information about hba.
4438  *
4439  * Reutrn code:
4440  *   Pointer to char - Success.
4441  **/
4442 const char *
4443 lpfc_info(struct Scsi_Host *host)
4444 {
4445         struct lpfc_vport *vport = (struct lpfc_vport *) host->hostdata;
4446         struct lpfc_hba   *phba = vport->phba;
4447         int len, link_speed = 0;
4448         static char  lpfcinfobuf[384];
4449
4450         memset(lpfcinfobuf,0,384);
4451         if (phba && phba->pcidev){
4452                 strncpy(lpfcinfobuf, phba->ModelDesc, 256);
4453                 len = strlen(lpfcinfobuf);
4454                 snprintf(lpfcinfobuf + len,
4455                         384-len,
4456                         " on PCI bus %02x device %02x irq %d",
4457                         phba->pcidev->bus->number,
4458                         phba->pcidev->devfn,
4459                         phba->pcidev->irq);
4460                 len = strlen(lpfcinfobuf);
4461                 if (phba->Port[0]) {
4462                         snprintf(lpfcinfobuf + len,
4463                                  384-len,
4464                                  " port %s",
4465                                  phba->Port);
4466                 }
4467                 len = strlen(lpfcinfobuf);
4468                 link_speed = lpfc_sli_port_speed_get(phba);
4469                 if (link_speed != 0)
4470                         snprintf(lpfcinfobuf + len, 384-len,
4471                                  " Logical Link Speed: %d Mbps", link_speed);
4472         }
4473         return lpfcinfobuf;
4474 }
4475
4476 /**
4477  * lpfc_poll_rearm_time - Routine to modify fcp_poll timer of hba
4478  * @phba: The Hba for which this call is being executed.
4479  *
4480  * This routine modifies fcp_poll_timer  field of @phba by cfg_poll_tmo.
4481  * The default value of cfg_poll_tmo is 10 milliseconds.
4482  **/
4483 static __inline__ void lpfc_poll_rearm_timer(struct lpfc_hba * phba)
4484 {
4485         unsigned long  poll_tmo_expires =
4486                 (jiffies + msecs_to_jiffies(phba->cfg_poll_tmo));
4487
4488         if (!list_empty(&phba->sli.ring[LPFC_FCP_RING].txcmplq))
4489                 mod_timer(&phba->fcp_poll_timer,
4490                           poll_tmo_expires);
4491 }
4492
4493 /**
4494  * lpfc_poll_start_timer - Routine to start fcp_poll_timer of HBA
4495  * @phba: The Hba for which this call is being executed.
4496  *
4497  * This routine starts the fcp_poll_timer of @phba.
4498  **/
4499 void lpfc_poll_start_timer(struct lpfc_hba * phba)
4500 {
4501         lpfc_poll_rearm_timer(phba);
4502 }
4503
4504 /**
4505  * lpfc_poll_timeout - Restart polling timer
4506  * @ptr: Map to lpfc_hba data structure pointer.
4507  *
4508  * This routine restarts fcp_poll timer, when FCP ring  polling is enable
4509  * and FCP Ring interrupt is disable.
4510  **/
4511
4512 void lpfc_poll_timeout(unsigned long ptr)
4513 {
4514         struct lpfc_hba *phba = (struct lpfc_hba *) ptr;
4515
4516         if (phba->cfg_poll & ENABLE_FCP_RING_POLLING) {
4517                 lpfc_sli_handle_fast_ring_event(phba,
4518                         &phba->sli.ring[LPFC_FCP_RING], HA_R0RE_REQ);
4519
4520                 if (phba->cfg_poll & DISABLE_FCP_RING_INT)
4521                         lpfc_poll_rearm_timer(phba);
4522         }
4523 }
4524
4525 /**
4526  * lpfc_queuecommand - scsi_host_template queuecommand entry point
4527  * @cmnd: Pointer to scsi_cmnd data structure.
4528  * @done: Pointer to done routine.
4529  *
4530  * Driver registers this routine to scsi midlayer to submit a @cmd to process.
4531  * This routine prepares an IOCB from scsi command and provides to firmware.
4532  * The @done callback is invoked after driver finished processing the command.
4533  *
4534  * Return value :
4535  *   0 - Success
4536  *   SCSI_MLQUEUE_HOST_BUSY - Block all devices served by this host temporarily.
4537  **/
4538 static int
4539 lpfc_queuecommand(struct Scsi_Host *shost, struct scsi_cmnd *cmnd)
4540 {
4541         struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
4542         struct lpfc_hba   *phba = vport->phba;
4543         struct lpfc_rport_data *rdata;
4544         struct lpfc_nodelist *ndlp;
4545         struct lpfc_scsi_buf *lpfc_cmd;
4546         struct fc_rport *rport = starget_to_rport(scsi_target(cmnd->device));
4547         int err;
4548
4549         rdata = lpfc_rport_data_from_scsi_device(cmnd->device);
4550         err = fc_remote_port_chkready(rport);
4551         if (err) {
4552                 cmnd->result = err;
4553                 goto out_fail_command;
4554         }
4555         ndlp = rdata->pnode;
4556
4557         if ((scsi_get_prot_op(cmnd) != SCSI_PROT_NORMAL) &&
4558                 (!(phba->sli3_options & LPFC_SLI3_BG_ENABLED))) {
4559
4560                 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
4561                                 "9058 BLKGRD: ERROR: rcvd protected cmd:%02x"
4562                                 " op:%02x str=%s without registering for"
4563                                 " BlockGuard - Rejecting command\n",
4564                                 cmnd->cmnd[0], scsi_get_prot_op(cmnd),
4565                                 dif_op_str[scsi_get_prot_op(cmnd)]);
4566                 goto out_fail_command;
4567         }
4568
4569         /*
4570          * Catch race where our node has transitioned, but the
4571          * transport is still transitioning.
4572          */
4573         if (!ndlp || !NLP_CHK_NODE_ACT(ndlp))
4574                 goto out_tgt_busy;
4575         if (atomic_read(&ndlp->cmd_pending) >= ndlp->cmd_qdepth)
4576                 goto out_tgt_busy;
4577
4578         lpfc_cmd = lpfc_get_scsi_buf(phba, ndlp);
4579         if (lpfc_cmd == NULL) {
4580                 lpfc_rampdown_queue_depth(phba);
4581
4582                 lpfc_printf_vlog(vport, KERN_INFO, LOG_MISC,
4583                                  "0707 driver's buffer pool is empty, "
4584                                  "IO busied\n");
4585                 goto out_host_busy;
4586         }
4587
4588         /*
4589          * Store the midlayer's command structure for the completion phase
4590          * and complete the command initialization.
4591          */
4592         lpfc_cmd->pCmd  = cmnd;
4593         lpfc_cmd->rdata = rdata;
4594         lpfc_cmd->timeout = 0;
4595         lpfc_cmd->start_time = jiffies;
4596         cmnd->host_scribble = (unsigned char *)lpfc_cmd;
4597
4598         if (scsi_get_prot_op(cmnd) != SCSI_PROT_NORMAL) {
4599                 if (vport->phba->cfg_enable_bg) {
4600                         lpfc_printf_vlog(vport,
4601                                          KERN_INFO, LOG_SCSI_CMD,
4602                                          "9033 BLKGRD: rcvd %s cmd:x%x "
4603                                          "sector x%llx cnt %u pt %x\n",
4604                                          dif_op_str[scsi_get_prot_op(cmnd)],
4605                                          cmnd->cmnd[0],
4606                                          (unsigned long long)scsi_get_lba(cmnd),
4607                                          blk_rq_sectors(cmnd->request),
4608                                          (cmnd->cmnd[1]>>5));
4609                 }
4610                 err = lpfc_bg_scsi_prep_dma_buf(phba, lpfc_cmd);
4611         } else {
4612                 if (vport->phba->cfg_enable_bg) {
4613                         lpfc_printf_vlog(vport,
4614                                          KERN_INFO, LOG_SCSI_CMD,
4615                                          "9038 BLKGRD: rcvd PROT_NORMAL cmd: "
4616                                          "x%x sector x%llx cnt %u pt %x\n",
4617                                          cmnd->cmnd[0],
4618                                          (unsigned long long)scsi_get_lba(cmnd),
4619                                          blk_rq_sectors(cmnd->request),
4620                                          (cmnd->cmnd[1]>>5));
4621                 }
4622                 err = lpfc_scsi_prep_dma_buf(phba, lpfc_cmd);
4623         }
4624
4625         if (err)
4626                 goto out_host_busy_free_buf;
4627
4628         lpfc_scsi_prep_cmnd(vport, lpfc_cmd, ndlp);
4629
4630         atomic_inc(&ndlp->cmd_pending);
4631         err = lpfc_sli_issue_iocb(phba, LPFC_FCP_RING,
4632                                   &lpfc_cmd->cur_iocbq, SLI_IOCB_RET_IOCB);
4633         if (err) {
4634                 atomic_dec(&ndlp->cmd_pending);
4635                 lpfc_printf_vlog(vport, KERN_INFO, LOG_FCP,
4636                                  "3376 FCP could not issue IOCB err %x"
4637                                  "FCP cmd x%x <%d/%llu> "
4638                                  "sid: x%x did: x%x oxid: x%x "
4639                                  "Data: x%x x%x x%x x%x\n",
4640                                  err, cmnd->cmnd[0],
4641                                  cmnd->device ? cmnd->device->id : 0xffff,
4642                                  cmnd->device ? cmnd->device->lun : (u64) -1,
4643                                  vport->fc_myDID, ndlp->nlp_DID,
4644                                  phba->sli_rev == LPFC_SLI_REV4 ?
4645                                  lpfc_cmd->cur_iocbq.sli4_xritag : 0xffff,
4646                                  lpfc_cmd->cur_iocbq.iocb.ulpContext,
4647                                  lpfc_cmd->cur_iocbq.iocb.ulpIoTag,
4648                                  lpfc_cmd->cur_iocbq.iocb.ulpTimeout,
4649                                  (uint32_t)
4650                                  (cmnd->request->timeout / 1000));
4651
4652
4653                 goto out_host_busy_free_buf;
4654         }
4655         if (phba->cfg_poll & ENABLE_FCP_RING_POLLING) {
4656                 lpfc_sli_handle_fast_ring_event(phba,
4657                         &phba->sli.ring[LPFC_FCP_RING], HA_R0RE_REQ);
4658
4659                 if (phba->cfg_poll & DISABLE_FCP_RING_INT)
4660                         lpfc_poll_rearm_timer(phba);
4661         }
4662
4663         return 0;
4664
4665  out_host_busy_free_buf:
4666         lpfc_scsi_unprep_dma_buf(phba, lpfc_cmd);
4667         lpfc_release_scsi_buf(phba, lpfc_cmd);
4668  out_host_busy:
4669         return SCSI_MLQUEUE_HOST_BUSY;
4670
4671  out_tgt_busy:
4672         return SCSI_MLQUEUE_TARGET_BUSY;
4673
4674  out_fail_command:
4675         cmnd->scsi_done(cmnd);
4676         return 0;
4677 }
4678
4679
4680 /**
4681  * lpfc_abort_handler - scsi_host_template eh_abort_handler entry point
4682  * @cmnd: Pointer to scsi_cmnd data structure.
4683  *
4684  * This routine aborts @cmnd pending in base driver.
4685  *
4686  * Return code :
4687  *   0x2003 - Error
4688  *   0x2002 - Success
4689  **/
4690 static int
4691 lpfc_abort_handler(struct scsi_cmnd *cmnd)
4692 {
4693         struct Scsi_Host  *shost = cmnd->device->host;
4694         struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
4695         struct lpfc_hba   *phba = vport->phba;
4696         struct lpfc_iocbq *iocb;
4697         struct lpfc_iocbq *abtsiocb;
4698         struct lpfc_scsi_buf *lpfc_cmd;
4699         IOCB_t *cmd, *icmd;
4700         int ret = SUCCESS, status = 0;
4701         struct lpfc_sli_ring *pring_s4;
4702         int ring_number, ret_val;
4703         unsigned long flags, iflags;
4704         DECLARE_WAIT_QUEUE_HEAD_ONSTACK(waitq);
4705
4706         status = fc_block_scsi_eh(cmnd);
4707         if (status != 0 && status != SUCCESS)
4708                 return status;
4709
4710         spin_lock_irqsave(&phba->hbalock, flags);
4711         /* driver queued commands are in process of being flushed */
4712         if (phba->hba_flag & HBA_FCP_IOQ_FLUSH) {
4713                 spin_unlock_irqrestore(&phba->hbalock, flags);
4714                 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP,
4715                         "3168 SCSI Layer abort requested I/O has been "
4716                         "flushed by LLD.\n");
4717                 return FAILED;
4718         }
4719
4720         lpfc_cmd = (struct lpfc_scsi_buf *)cmnd->host_scribble;
4721         if (!lpfc_cmd || !lpfc_cmd->pCmd) {
4722                 spin_unlock_irqrestore(&phba->hbalock, flags);
4723                 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP,
4724                          "2873 SCSI Layer I/O Abort Request IO CMPL Status "
4725                          "x%x ID %d LUN %llu\n",
4726                          SUCCESS, cmnd->device->id, cmnd->device->lun);
4727                 return SUCCESS;
4728         }
4729
4730         iocb = &lpfc_cmd->cur_iocbq;
4731         /* the command is in process of being cancelled */
4732         if (!(iocb->iocb_flag & LPFC_IO_ON_TXCMPLQ)) {
4733                 spin_unlock_irqrestore(&phba->hbalock, flags);
4734                 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP,
4735                         "3169 SCSI Layer abort requested I/O has been "
4736                         "cancelled by LLD.\n");
4737                 return FAILED;
4738         }
4739         /*
4740          * If pCmd field of the corresponding lpfc_scsi_buf structure
4741          * points to a different SCSI command, then the driver has
4742          * already completed this command, but the midlayer did not
4743          * see the completion before the eh fired. Just return SUCCESS.
4744          */
4745         if (lpfc_cmd->pCmd != cmnd) {
4746                 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP,
4747                         "3170 SCSI Layer abort requested I/O has been "
4748                         "completed by LLD.\n");
4749                 goto out_unlock;
4750         }
4751
4752         BUG_ON(iocb->context1 != lpfc_cmd);
4753
4754         /* abort issued in recovery is still in progress */
4755         if (iocb->iocb_flag & LPFC_DRIVER_ABORTED) {
4756                 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP,
4757                          "3389 SCSI Layer I/O Abort Request is pending\n");
4758                 spin_unlock_irqrestore(&phba->hbalock, flags);
4759                 goto wait_for_cmpl;
4760         }
4761
4762         abtsiocb = __lpfc_sli_get_iocbq(phba);
4763         if (abtsiocb == NULL) {
4764                 ret = FAILED;
4765                 goto out_unlock;
4766         }
4767
4768         /* Indicate the IO is being aborted by the driver. */
4769         iocb->iocb_flag |= LPFC_DRIVER_ABORTED;
4770
4771         /*
4772          * The scsi command can not be in txq and it is in flight because the
4773          * pCmd is still pointig at the SCSI command we have to abort. There
4774          * is no need to search the txcmplq. Just send an abort to the FW.
4775          */
4776
4777         cmd = &iocb->iocb;
4778         icmd = &abtsiocb->iocb;
4779         icmd->un.acxri.abortType = ABORT_TYPE_ABTS;
4780         icmd->un.acxri.abortContextTag = cmd->ulpContext;
4781         if (phba->sli_rev == LPFC_SLI_REV4)
4782                 icmd->un.acxri.abortIoTag = iocb->sli4_xritag;
4783         else
4784                 icmd->un.acxri.abortIoTag = cmd->ulpIoTag;
4785
4786         icmd->ulpLe = 1;
4787         icmd->ulpClass = cmd->ulpClass;
4788
4789         /* ABTS WQE must go to the same WQ as the WQE to be aborted */
4790         abtsiocb->fcp_wqidx = iocb->fcp_wqidx;
4791         abtsiocb->iocb_flag |= LPFC_USE_FCPWQIDX;
4792         if (iocb->iocb_flag & LPFC_IO_FOF)
4793                 abtsiocb->iocb_flag |= LPFC_IO_FOF;
4794
4795         if (lpfc_is_link_up(phba))
4796                 icmd->ulpCommand = CMD_ABORT_XRI_CN;
4797         else
4798                 icmd->ulpCommand = CMD_CLOSE_XRI_CN;
4799
4800         abtsiocb->iocb_cmpl = lpfc_sli_abort_fcp_cmpl;
4801         abtsiocb->vport = vport;
4802         if (phba->sli_rev == LPFC_SLI_REV4) {
4803                 ring_number = MAX_SLI3_CONFIGURED_RINGS + iocb->fcp_wqidx;
4804                 pring_s4 = &phba->sli.ring[ring_number];
4805                 /* Note: both hbalock and ring_lock must be set here */
4806                 spin_lock_irqsave(&pring_s4->ring_lock, iflags);
4807                 ret_val = __lpfc_sli_issue_iocb(phba, pring_s4->ringno,
4808                                                 abtsiocb, 0);
4809                 spin_unlock_irqrestore(&pring_s4->ring_lock, iflags);
4810         } else {
4811                 ret_val = __lpfc_sli_issue_iocb(phba, LPFC_FCP_RING,
4812                                                 abtsiocb, 0);
4813         }
4814         /* no longer need the lock after this point */
4815         spin_unlock_irqrestore(&phba->hbalock, flags);
4816
4817
4818         if (ret_val == IOCB_ERROR) {
4819                 lpfc_sli_release_iocbq(phba, abtsiocb);
4820                 ret = FAILED;
4821                 goto out;
4822         }
4823
4824         if (phba->cfg_poll & DISABLE_FCP_RING_INT)
4825                 lpfc_sli_handle_fast_ring_event(phba,
4826                         &phba->sli.ring[LPFC_FCP_RING], HA_R0RE_REQ);
4827
4828 wait_for_cmpl:
4829         lpfc_cmd->waitq = &waitq;
4830         /* Wait for abort to complete */
4831         wait_event_timeout(waitq,
4832                           (lpfc_cmd->pCmd != cmnd),
4833                            msecs_to_jiffies(2*vport->cfg_devloss_tmo*1000));
4834
4835         spin_lock_irqsave(shost->host_lock, flags);
4836         lpfc_cmd->waitq = NULL;
4837         spin_unlock_irqrestore(shost->host_lock, flags);
4838
4839         if (lpfc_cmd->pCmd == cmnd) {
4840                 ret = FAILED;
4841                 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
4842                                  "0748 abort handler timed out waiting "
4843                                  "for abortng I/O (xri:x%x) to complete: "
4844                                  "ret %#x, ID %d, LUN %llu\n",
4845                                  iocb->sli4_xritag, ret,
4846                                  cmnd->device->id, cmnd->device->lun);
4847         }
4848         goto out;
4849
4850 out_unlock:
4851         spin_unlock_irqrestore(&phba->hbalock, flags);
4852 out:
4853         lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP,
4854                          "0749 SCSI Layer I/O Abort Request Status x%x ID %d "
4855                          "LUN %llu\n", ret, cmnd->device->id,
4856                          cmnd->device->lun);
4857         return ret;
4858 }
4859
4860 static char *
4861 lpfc_taskmgmt_name(uint8_t task_mgmt_cmd)
4862 {
4863         switch (task_mgmt_cmd) {
4864         case FCP_ABORT_TASK_SET:
4865                 return "ABORT_TASK_SET";
4866         case FCP_CLEAR_TASK_SET:
4867                 return "FCP_CLEAR_TASK_SET";
4868         case FCP_BUS_RESET:
4869                 return "FCP_BUS_RESET";
4870         case FCP_LUN_RESET:
4871                 return "FCP_LUN_RESET";
4872         case FCP_TARGET_RESET:
4873                 return "FCP_TARGET_RESET";
4874         case FCP_CLEAR_ACA:
4875                 return "FCP_CLEAR_ACA";
4876         case FCP_TERMINATE_TASK:
4877                 return "FCP_TERMINATE_TASK";
4878         default:
4879                 return "unknown";
4880         }
4881 }
4882
4883
4884 /**
4885  * lpfc_check_fcp_rsp - check the returned fcp_rsp to see if task failed
4886  * @vport: The virtual port for which this call is being executed.
4887  * @lpfc_cmd: Pointer to lpfc_scsi_buf data structure.
4888  *
4889  * This routine checks the FCP RSP INFO to see if the tsk mgmt command succeded
4890  *
4891  * Return code :
4892  *   0x2003 - Error
4893  *   0x2002 - Success
4894  **/
4895 static int
4896 lpfc_check_fcp_rsp(struct lpfc_vport *vport, struct lpfc_scsi_buf *lpfc_cmd)
4897 {
4898         struct fcp_rsp *fcprsp = lpfc_cmd->fcp_rsp;
4899         uint32_t rsp_info;
4900         uint32_t rsp_len;
4901         uint8_t  rsp_info_code;
4902         int ret = FAILED;
4903
4904
4905         if (fcprsp == NULL)
4906                 lpfc_printf_vlog(vport, KERN_INFO, LOG_FCP,
4907                                  "0703 fcp_rsp is missing\n");
4908         else {
4909                 rsp_info = fcprsp->rspStatus2;
4910                 rsp_len = be32_to_cpu(fcprsp->rspRspLen);
4911                 rsp_info_code = fcprsp->rspInfo3;
4912
4913
4914                 lpfc_printf_vlog(vport, KERN_INFO,
4915                                  LOG_FCP,
4916                                  "0706 fcp_rsp valid 0x%x,"
4917                                  " rsp len=%d code 0x%x\n",
4918                                  rsp_info,
4919                                  rsp_len, rsp_info_code);
4920
4921                 if ((fcprsp->rspStatus2&RSP_LEN_VALID) && (rsp_len == 8)) {
4922                         switch (rsp_info_code) {
4923                         case RSP_NO_FAILURE:
4924                                 lpfc_printf_vlog(vport, KERN_INFO, LOG_FCP,
4925                                                  "0715 Task Mgmt No Failure\n");
4926                                 ret = SUCCESS;
4927                                 break;
4928                         case RSP_TM_NOT_SUPPORTED: /* TM rejected */
4929                                 lpfc_printf_vlog(vport, KERN_INFO, LOG_FCP,
4930                                                  "0716 Task Mgmt Target "
4931                                                 "reject\n");
4932                                 break;
4933                         case RSP_TM_NOT_COMPLETED: /* TM failed */
4934                                 lpfc_printf_vlog(vport, KERN_INFO, LOG_FCP,
4935                                                  "0717 Task Mgmt Target "
4936                                                 "failed TM\n");
4937                                 break;
4938                         case RSP_TM_INVALID_LU: /* TM to invalid LU! */
4939                                 lpfc_printf_vlog(vport, KERN_INFO, LOG_FCP,
4940                                                  "0718 Task Mgmt to invalid "
4941                                                 "LUN\n");
4942                                 break;
4943                         }
4944                 }
4945         }
4946         return ret;
4947 }
4948
4949
4950 /**
4951  * lpfc_send_taskmgmt - Generic SCSI Task Mgmt Handler
4952  * @vport: The virtual port for which this call is being executed.
4953  * @rdata: Pointer to remote port local data
4954  * @tgt_id: Target ID of remote device.
4955  * @lun_id: Lun number for the TMF
4956  * @task_mgmt_cmd: type of TMF to send
4957  *
4958  * This routine builds and sends a TMF (SCSI Task Mgmt Function) to
4959  * a remote port.
4960  *
4961  * Return Code:
4962  *   0x2003 - Error
4963  *   0x2002 - Success.
4964  **/
4965 static int
4966 lpfc_send_taskmgmt(struct lpfc_vport *vport, struct lpfc_rport_data *rdata,
4967                     unsigned  tgt_id, uint64_t lun_id,
4968                     uint8_t task_mgmt_cmd)
4969 {
4970         struct lpfc_hba   *phba = vport->phba;
4971         struct lpfc_scsi_buf *lpfc_cmd;
4972         struct lpfc_iocbq *iocbq;
4973         struct lpfc_iocbq *iocbqrsp;
4974         struct lpfc_nodelist *pnode = rdata->pnode;
4975         int ret;
4976         int status;
4977
4978         if (!pnode || !NLP_CHK_NODE_ACT(pnode))
4979                 return FAILED;
4980
4981         lpfc_cmd = lpfc_get_scsi_buf(phba, rdata->pnode);
4982         if (lpfc_cmd == NULL)
4983                 return FAILED;
4984         lpfc_cmd->timeout = phba->cfg_task_mgmt_tmo;
4985         lpfc_cmd->rdata = rdata;
4986
4987         status = lpfc_scsi_prep_task_mgmt_cmd(vport, lpfc_cmd, lun_id,
4988                                            task_mgmt_cmd);
4989         if (!status) {
4990                 lpfc_release_scsi_buf(phba, lpfc_cmd);
4991                 return FAILED;
4992         }
4993
4994         iocbq = &lpfc_cmd->cur_iocbq;
4995         iocbqrsp = lpfc_sli_get_iocbq(phba);
4996         if (iocbqrsp == NULL) {
4997                 lpfc_release_scsi_buf(phba, lpfc_cmd);
4998                 return FAILED;
4999         }
5000         iocbq->iocb_cmpl = lpfc_tskmgmt_def_cmpl;
5001
5002         lpfc_printf_vlog(vport, KERN_INFO, LOG_FCP,
5003                          "0702 Issue %s to TGT %d LUN %llu "
5004                          "rpi x%x nlp_flag x%x Data: x%x x%x\n",
5005                          lpfc_taskmgmt_name(task_mgmt_cmd), tgt_id, lun_id,
5006                          pnode->nlp_rpi, pnode->nlp_flag, iocbq->sli4_xritag,
5007                          iocbq->iocb_flag);
5008
5009         status = lpfc_sli_issue_iocb_wait(phba, LPFC_FCP_RING,
5010                                           iocbq, iocbqrsp, lpfc_cmd->timeout);
5011         if ((status != IOCB_SUCCESS) ||
5012             (iocbqrsp->iocb.ulpStatus != IOSTAT_SUCCESS)) {
5013                 if (status != IOCB_SUCCESS ||
5014                     iocbqrsp->iocb.ulpStatus != IOSTAT_FCP_RSP_ERROR)
5015                         lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
5016                                          "0727 TMF %s to TGT %d LUN %llu "
5017                                          "failed (%d, %d) iocb_flag x%x\n",
5018                                          lpfc_taskmgmt_name(task_mgmt_cmd),
5019                                          tgt_id, lun_id,
5020                                          iocbqrsp->iocb.ulpStatus,
5021                                          iocbqrsp->iocb.un.ulpWord[4],
5022                                          iocbq->iocb_flag);
5023                 /* if ulpStatus != IOCB_SUCCESS, then status == IOCB_SUCCESS */
5024                 if (status == IOCB_SUCCESS) {
5025                         if (iocbqrsp->iocb.ulpStatus == IOSTAT_FCP_RSP_ERROR)
5026                                 /* Something in the FCP_RSP was invalid.
5027                                  * Check conditions */
5028                                 ret = lpfc_check_fcp_rsp(vport, lpfc_cmd);
5029                         else
5030                                 ret = FAILED;
5031                 } else if (status == IOCB_TIMEDOUT) {
5032                         ret = TIMEOUT_ERROR;
5033                 } else {
5034                         ret = FAILED;
5035                 }
5036         } else
5037                 ret = SUCCESS;
5038
5039         lpfc_sli_release_iocbq(phba, iocbqrsp);
5040
5041         if (ret != TIMEOUT_ERROR)
5042                 lpfc_release_scsi_buf(phba, lpfc_cmd);
5043
5044         return ret;
5045 }
5046
5047 /**
5048  * lpfc_chk_tgt_mapped -
5049  * @vport: The virtual port to check on
5050  * @cmnd: Pointer to scsi_cmnd data structure.
5051  *
5052  * This routine delays until the scsi target (aka rport) for the
5053  * command exists (is present and logged in) or we declare it non-existent.
5054  *
5055  * Return code :
5056  *  0x2003 - Error
5057  *  0x2002 - Success
5058  **/
5059 static int
5060 lpfc_chk_tgt_mapped(struct lpfc_vport *vport, struct scsi_cmnd *cmnd)
5061 {
5062         struct lpfc_rport_data *rdata;
5063         struct lpfc_nodelist *pnode;
5064         unsigned long later;
5065
5066         rdata = lpfc_rport_data_from_scsi_device(cmnd->device);
5067         if (!rdata) {
5068                 lpfc_printf_vlog(vport, KERN_INFO, LOG_FCP,
5069                         "0797 Tgt Map rport failure: rdata x%p\n", rdata);
5070                 return FAILED;
5071         }
5072         pnode = rdata->pnode;
5073         /*
5074          * If target is not in a MAPPED state, delay until
5075          * target is rediscovered or devloss timeout expires.
5076          */
5077         later = msecs_to_jiffies(2 * vport->cfg_devloss_tmo * 1000) + jiffies;
5078         while (time_after(later, jiffies)) {
5079                 if (!pnode || !NLP_CHK_NODE_ACT(pnode))
5080                         return FAILED;
5081                 if (pnode->nlp_state == NLP_STE_MAPPED_NODE)
5082                         return SUCCESS;
5083                 schedule_timeout_uninterruptible(msecs_to_jiffies(500));
5084                 rdata = lpfc_rport_data_from_scsi_device(cmnd->device);
5085                 if (!rdata)
5086                         return FAILED;
5087                 pnode = rdata->pnode;
5088         }
5089         if (!pnode || !NLP_CHK_NODE_ACT(pnode) ||
5090             (pnode->nlp_state != NLP_STE_MAPPED_NODE))
5091                 return FAILED;
5092         return SUCCESS;
5093 }
5094
5095 /**
5096  * lpfc_reset_flush_io_context -
5097  * @vport: The virtual port (scsi_host) for the flush context
5098  * @tgt_id: If aborting by Target contect - specifies the target id
5099  * @lun_id: If aborting by Lun context - specifies the lun id
5100  * @context: specifies the context level to flush at.
5101  *
5102  * After a reset condition via TMF, we need to flush orphaned i/o
5103  * contexts from the adapter. This routine aborts any contexts
5104  * outstanding, then waits for their completions. The wait is
5105  * bounded by devloss_tmo though.
5106  *
5107  * Return code :
5108  *  0x2003 - Error
5109  *  0x2002 - Success
5110  **/
5111 static int
5112 lpfc_reset_flush_io_context(struct lpfc_vport *vport, uint16_t tgt_id,
5113                         uint64_t lun_id, lpfc_ctx_cmd context)
5114 {
5115         struct lpfc_hba   *phba = vport->phba;
5116         unsigned long later;
5117         int cnt;
5118
5119         cnt = lpfc_sli_sum_iocb(vport, tgt_id, lun_id, context);
5120         if (cnt)
5121                 lpfc_sli_abort_taskmgmt(vport,
5122                                         &phba->sli.ring[phba->sli.fcp_ring],
5123                                         tgt_id, lun_id, context);
5124         later = msecs_to_jiffies(2 * vport->cfg_devloss_tmo * 1000) + jiffies;
5125         while (time_after(later, jiffies) && cnt) {
5126                 schedule_timeout_uninterruptible(msecs_to_jiffies(20));
5127                 cnt = lpfc_sli_sum_iocb(vport, tgt_id, lun_id, context);
5128         }
5129         if (cnt) {
5130                 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
5131                         "0724 I/O flush failure for context %s : cnt x%x\n",
5132                         ((context == LPFC_CTX_LUN) ? "LUN" :
5133                          ((context == LPFC_CTX_TGT) ? "TGT" :
5134                           ((context == LPFC_CTX_HOST) ? "HOST" : "Unknown"))),
5135                         cnt);
5136                 return FAILED;
5137         }
5138         return SUCCESS;
5139 }
5140
5141 /**
5142  * lpfc_device_reset_handler - scsi_host_template eh_device_reset entry point
5143  * @cmnd: Pointer to scsi_cmnd data structure.
5144  *
5145  * This routine does a device reset by sending a LUN_RESET task management
5146  * command.
5147  *
5148  * Return code :
5149  *  0x2003 - Error
5150  *  0x2002 - Success
5151  **/
5152 static int
5153 lpfc_device_reset_handler(struct scsi_cmnd *cmnd)
5154 {
5155         struct Scsi_Host  *shost = cmnd->device->host;
5156         struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
5157         struct lpfc_rport_data *rdata;
5158         struct lpfc_nodelist *pnode;
5159         unsigned tgt_id = cmnd->device->id;
5160         uint64_t lun_id = cmnd->device->lun;
5161         struct lpfc_scsi_event_header scsi_event;
5162         int status;
5163
5164         rdata = lpfc_rport_data_from_scsi_device(cmnd->device);
5165         if (!rdata || !rdata->pnode) {
5166                 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
5167                                  "0798 Device Reset rport failure: rdata x%p\n",
5168                                  rdata);
5169                 return FAILED;
5170         }
5171         pnode = rdata->pnode;
5172         status = fc_block_scsi_eh(cmnd);
5173         if (status != 0 && status != SUCCESS)
5174                 return status;
5175
5176         status = lpfc_chk_tgt_mapped(vport, cmnd);
5177         if (status == FAILED) {
5178                 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
5179                         "0721 Device Reset rport failure: rdata x%p\n", rdata);
5180                 return FAILED;
5181         }
5182
5183         scsi_event.event_type = FC_REG_SCSI_EVENT;
5184         scsi_event.subcategory = LPFC_EVENT_LUNRESET;
5185         scsi_event.lun = lun_id;
5186         memcpy(scsi_event.wwpn, &pnode->nlp_portname, sizeof(struct lpfc_name));
5187         memcpy(scsi_event.wwnn, &pnode->nlp_nodename, sizeof(struct lpfc_name));
5188
5189         fc_host_post_vendor_event(shost, fc_get_event_number(),
5190                 sizeof(scsi_event), (char *)&scsi_event, LPFC_NL_VENDOR_ID);
5191
5192         status = lpfc_send_taskmgmt(vport, rdata, tgt_id, lun_id,
5193                                                 FCP_LUN_RESET);
5194
5195         lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
5196                          "0713 SCSI layer issued Device Reset (%d, %llu) "
5197                          "return x%x\n", tgt_id, lun_id, status);
5198
5199         /*
5200          * We have to clean up i/o as : they may be orphaned by the TMF;
5201          * or if the TMF failed, they may be in an indeterminate state.
5202          * So, continue on.
5203          * We will report success if all the i/o aborts successfully.
5204          */
5205         if (status == SUCCESS)
5206                 status = lpfc_reset_flush_io_context(vport, tgt_id, lun_id,
5207                                                 LPFC_CTX_LUN);
5208
5209         return status;
5210 }
5211
5212 /**
5213  * lpfc_target_reset_handler - scsi_host_template eh_target_reset entry point
5214  * @cmnd: Pointer to scsi_cmnd data structure.
5215  *
5216  * This routine does a target reset by sending a TARGET_RESET task management
5217  * command.
5218  *
5219  * Return code :
5220  *  0x2003 - Error
5221  *  0x2002 - Success
5222  **/
5223 static int
5224 lpfc_target_reset_handler(struct scsi_cmnd *cmnd)
5225 {
5226         struct Scsi_Host  *shost = cmnd->device->host;
5227         struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
5228         struct lpfc_rport_data *rdata;
5229         struct lpfc_nodelist *pnode;
5230         unsigned tgt_id = cmnd->device->id;
5231         uint64_t lun_id = cmnd->device->lun;
5232         struct lpfc_scsi_event_header scsi_event;
5233         int status;
5234
5235         rdata = lpfc_rport_data_from_scsi_device(cmnd->device);
5236         if (!rdata) {
5237                 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
5238                         "0799 Target Reset rport failure: rdata x%p\n", rdata);
5239                 return FAILED;
5240         }
5241         pnode = rdata->pnode;
5242         status = fc_block_scsi_eh(cmnd);
5243         if (status != 0 && status != SUCCESS)
5244                 return status;
5245
5246         status = lpfc_chk_tgt_mapped(vport, cmnd);
5247         if (status == FAILED) {
5248                 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
5249                         "0722 Target Reset rport failure: rdata x%p\n", rdata);
5250                 if (pnode) {
5251                         spin_lock_irq(shost->host_lock);
5252                         pnode->nlp_flag &= ~NLP_NPR_ADISC;
5253                         pnode->nlp_fcp_info &= ~NLP_FCP_2_DEVICE;
5254                         spin_unlock_irq(shost->host_lock);
5255                 }
5256                 lpfc_reset_flush_io_context(vport, tgt_id, lun_id,
5257                                           LPFC_CTX_TGT);
5258                 return FAST_IO_FAIL;
5259         }
5260
5261         scsi_event.event_type = FC_REG_SCSI_EVENT;
5262         scsi_event.subcategory = LPFC_EVENT_TGTRESET;
5263         scsi_event.lun = 0;
5264         memcpy(scsi_event.wwpn, &pnode->nlp_portname, sizeof(struct lpfc_name));
5265         memcpy(scsi_event.wwnn, &pnode->nlp_nodename, sizeof(struct lpfc_name));
5266
5267         fc_host_post_vendor_event(shost, fc_get_event_number(),
5268                 sizeof(scsi_event), (char *)&scsi_event, LPFC_NL_VENDOR_ID);
5269
5270         status = lpfc_send_taskmgmt(vport, rdata, tgt_id, lun_id,
5271                                         FCP_TARGET_RESET);
5272
5273         lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
5274                          "0723 SCSI layer issued Target Reset (%d, %llu) "
5275                          "return x%x\n", tgt_id, lun_id, status);
5276
5277         /*
5278          * We have to clean up i/o as : they may be orphaned by the TMF;
5279          * or if the TMF failed, they may be in an indeterminate state.
5280          * So, continue on.
5281          * We will report success if all the i/o aborts successfully.
5282          */
5283         if (status == SUCCESS)
5284                 status = lpfc_reset_flush_io_context(vport, tgt_id, lun_id,
5285                                           LPFC_CTX_TGT);
5286         return status;
5287 }
5288
5289 /**
5290  * lpfc_bus_reset_handler - scsi_host_template eh_bus_reset_handler entry point
5291  * @cmnd: Pointer to scsi_cmnd data structure.
5292  *
5293  * This routine does target reset to all targets on @cmnd->device->host.
5294  * This emulates Parallel SCSI Bus Reset Semantics.
5295  *
5296  * Return code :
5297  *  0x2003 - Error
5298  *  0x2002 - Success
5299  **/
5300 static int
5301 lpfc_bus_reset_handler(struct scsi_cmnd *cmnd)
5302 {
5303         struct Scsi_Host  *shost = cmnd->device->host;
5304         struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
5305         struct lpfc_nodelist *ndlp = NULL;
5306         struct lpfc_scsi_event_header scsi_event;
5307         int match;
5308         int ret = SUCCESS, status, i;
5309
5310         scsi_event.event_type = FC_REG_SCSI_EVENT;
5311         scsi_event.subcategory = LPFC_EVENT_BUSRESET;
5312         scsi_event.lun = 0;
5313         memcpy(scsi_event.wwpn, &vport->fc_portname, sizeof(struct lpfc_name));
5314         memcpy(scsi_event.wwnn, &vport->fc_nodename, sizeof(struct lpfc_name));
5315
5316         fc_host_post_vendor_event(shost, fc_get_event_number(),
5317                 sizeof(scsi_event), (char *)&scsi_event, LPFC_NL_VENDOR_ID);
5318
5319         status = fc_block_scsi_eh(cmnd);
5320         if (status != 0 && status != SUCCESS)
5321                 return status;
5322
5323         /*
5324          * Since the driver manages a single bus device, reset all
5325          * targets known to the driver.  Should any target reset
5326          * fail, this routine returns failure to the midlayer.
5327          */
5328         for (i = 0; i < LPFC_MAX_TARGET; i++) {
5329                 /* Search for mapped node by target ID */
5330                 match = 0;
5331                 spin_lock_irq(shost->host_lock);
5332                 list_for_each_entry(ndlp, &vport->fc_nodes, nlp_listp) {
5333                         if (!NLP_CHK_NODE_ACT(ndlp))
5334                                 continue;
5335                         if (vport->phba->cfg_fcp2_no_tgt_reset &&
5336                             (ndlp->nlp_fcp_info & NLP_FCP_2_DEVICE))
5337                                 continue;
5338                         if (ndlp->nlp_state == NLP_STE_MAPPED_NODE &&
5339                             ndlp->nlp_sid == i &&
5340                             ndlp->rport) {
5341                                 match = 1;
5342                                 break;
5343                         }
5344                 }
5345                 spin_unlock_irq(shost->host_lock);
5346                 if (!match)
5347                         continue;
5348
5349                 status = lpfc_send_taskmgmt(vport, ndlp->rport->dd_data,
5350                                         i, 0, FCP_TARGET_RESET);
5351
5352                 if (status != SUCCESS) {
5353                         lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
5354                                          "0700 Bus Reset on target %d failed\n",
5355                                          i);
5356                         ret = FAILED;
5357                 }
5358         }
5359         /*
5360          * We have to clean up i/o as : they may be orphaned by the TMFs
5361          * above; or if any of the TMFs failed, they may be in an
5362          * indeterminate state.
5363          * We will report success if all the i/o aborts successfully.
5364          */
5365
5366         status = lpfc_reset_flush_io_context(vport, 0, 0, LPFC_CTX_HOST);
5367         if (status != SUCCESS)
5368                 ret = FAILED;
5369
5370         lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
5371                          "0714 SCSI layer issued Bus Reset Data: x%x\n", ret);
5372         return ret;
5373 }
5374
5375 /**
5376  * lpfc_host_reset_handler - scsi_host_template eh_host_reset_handler entry pt
5377  * @cmnd: Pointer to scsi_cmnd data structure.
5378  *
5379  * This routine does host reset to the adaptor port. It brings the HBA
5380  * offline, performs a board restart, and then brings the board back online.
5381  * The lpfc_offline calls lpfc_sli_hba_down which will abort and local
5382  * reject all outstanding SCSI commands to the host and error returned
5383  * back to SCSI mid-level. As this will be SCSI mid-level's last resort
5384  * of error handling, it will only return error if resetting of the adapter
5385  * is not successful; in all other cases, will return success.
5386  *
5387  * Return code :
5388  *  0x2003 - Error
5389  *  0x2002 - Success
5390  **/
5391 static int
5392 lpfc_host_reset_handler(struct scsi_cmnd *cmnd)
5393 {
5394         struct Scsi_Host *shost = cmnd->device->host;
5395         struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
5396         struct lpfc_hba *phba = vport->phba;
5397         int rc, ret = SUCCESS;
5398
5399         lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
5400                          "3172 SCSI layer issued Host Reset Data:\n");
5401
5402         lpfc_offline_prep(phba, LPFC_MBX_WAIT);
5403         lpfc_offline(phba);
5404         rc = lpfc_sli_brdrestart(phba);
5405         if (rc)
5406                 ret = FAILED;
5407         rc = lpfc_online(phba);
5408         if (rc)
5409                 ret = FAILED;
5410         lpfc_unblock_mgmt_io(phba);
5411
5412         if (ret == FAILED) {
5413                 lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
5414                                  "3323 Failed host reset, bring it offline\n");
5415                 lpfc_sli4_offline_eratt(phba);
5416         }
5417         return ret;
5418 }
5419
5420 /**
5421  * lpfc_slave_alloc - scsi_host_template slave_alloc entry point
5422  * @sdev: Pointer to scsi_device.
5423  *
5424  * This routine populates the cmds_per_lun count + 2 scsi_bufs into  this host's
5425  * globally available list of scsi buffers. This routine also makes sure scsi
5426  * buffer is not allocated more than HBA limit conveyed to midlayer. This list
5427  * of scsi buffer exists for the lifetime of the driver.
5428  *
5429  * Return codes:
5430  *   non-0 - Error
5431  *   0 - Success
5432  **/
5433 static int
5434 lpfc_slave_alloc(struct scsi_device *sdev)
5435 {
5436         struct lpfc_vport *vport = (struct lpfc_vport *) sdev->host->hostdata;
5437         struct lpfc_hba   *phba = vport->phba;
5438         struct fc_rport *rport = starget_to_rport(scsi_target(sdev));
5439         uint32_t total = 0;
5440         uint32_t num_to_alloc = 0;
5441         int num_allocated = 0;
5442         uint32_t sdev_cnt;
5443         struct lpfc_device_data *device_data;
5444         unsigned long flags;
5445         struct lpfc_name target_wwpn;
5446
5447         if (!rport || fc_remote_port_chkready(rport))
5448                 return -ENXIO;
5449
5450         if (phba->cfg_fof) {
5451
5452                 /*
5453                  * Check to see if the device data structure for the lun
5454                  * exists.  If not, create one.
5455                  */
5456
5457                 u64_to_wwn(rport->port_name, target_wwpn.u.wwn);
5458                 spin_lock_irqsave(&phba->devicelock, flags);
5459                 device_data = __lpfc_get_device_data(phba,
5460                                                      &phba->luns,
5461                                                      &vport->fc_portname,
5462                                                      &target_wwpn,
5463                                                      sdev->lun);
5464                 if (!device_data) {
5465                         spin_unlock_irqrestore(&phba->devicelock, flags);
5466                         device_data = lpfc_create_device_data(phba,
5467                                                         &vport->fc_portname,
5468                                                         &target_wwpn,
5469                                                         sdev->lun, true);
5470                         if (!device_data)
5471                                 return -ENOMEM;
5472                         spin_lock_irqsave(&phba->devicelock, flags);
5473                         list_add_tail(&device_data->listentry, &phba->luns);
5474                 }
5475                 device_data->rport_data = rport->dd_data;
5476                 device_data->available = true;
5477                 spin_unlock_irqrestore(&phba->devicelock, flags);
5478                 sdev->hostdata = device_data;
5479         } else {
5480                 sdev->hostdata = rport->dd_data;
5481         }
5482         sdev_cnt = atomic_inc_return(&phba->sdev_cnt);
5483
5484         /*
5485          * Populate the cmds_per_lun count scsi_bufs into this host's globally
5486          * available list of scsi buffers.  Don't allocate more than the
5487          * HBA limit conveyed to the midlayer via the host structure.  The
5488          * formula accounts for the lun_queue_depth + error handlers + 1
5489          * extra.  This list of scsi bufs exists for the lifetime of the driver.
5490          */
5491         total = phba->total_scsi_bufs;
5492         num_to_alloc = vport->cfg_lun_queue_depth + 2;
5493
5494         /* If allocated buffers are enough do nothing */
5495         if ((sdev_cnt * (vport->cfg_lun_queue_depth + 2)) < total)
5496                 return 0;
5497
5498         /* Allow some exchanges to be available always to complete discovery */
5499         if (total >= phba->cfg_hba_queue_depth - LPFC_DISC_IOCB_BUFF_COUNT ) {
5500                 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP,
5501                                  "0704 At limitation of %d preallocated "
5502                                  "command buffers\n", total);
5503                 return 0;
5504         /* Allow some exchanges to be available always to complete discovery */
5505         } else if (total + num_to_alloc >
5506                 phba->cfg_hba_queue_depth - LPFC_DISC_IOCB_BUFF_COUNT ) {
5507                 lpfc_printf_vlog(vport, KERN_WARNING, LOG_FCP,
5508                                  "0705 Allocation request of %d "
5509                                  "command buffers will exceed max of %d.  "
5510                                  "Reducing allocation request to %d.\n",
5511                                  num_to_alloc, phba->cfg_hba_queue_depth,
5512                                  (phba->cfg_hba_queue_depth - total));
5513                 num_to_alloc = phba->cfg_hba_queue_depth - total;
5514         }
5515         num_allocated = lpfc_new_scsi_buf(vport, num_to_alloc);
5516         if (num_to_alloc != num_allocated) {
5517                         lpfc_printf_vlog(vport, KERN_ERR, LOG_FCP,
5518                                          "0708 Allocation request of %d "
5519                                          "command buffers did not succeed.  "
5520                                          "Allocated %d buffers.\n",
5521                                          num_to_alloc, num_allocated);
5522         }
5523         if (num_allocated > 0)
5524                 phba->total_scsi_bufs += num_allocated;
5525         return 0;
5526 }
5527
5528 /**
5529  * lpfc_slave_configure - scsi_host_template slave_configure entry point
5530  * @sdev: Pointer to scsi_device.
5531  *
5532  * This routine configures following items
5533  *   - Tag command queuing support for @sdev if supported.
5534  *   - Enable SLI polling for fcp ring if ENABLE_FCP_RING_POLLING flag is set.
5535  *
5536  * Return codes:
5537  *   0 - Success
5538  **/
5539 static int
5540 lpfc_slave_configure(struct scsi_device *sdev)
5541 {
5542         struct lpfc_vport *vport = (struct lpfc_vport *) sdev->host->hostdata;
5543         struct lpfc_hba   *phba = vport->phba;
5544
5545         scsi_change_queue_depth(sdev, vport->cfg_lun_queue_depth);
5546
5547         if (phba->cfg_poll & ENABLE_FCP_RING_POLLING) {
5548                 lpfc_sli_handle_fast_ring_event(phba,
5549                         &phba->sli.ring[LPFC_FCP_RING], HA_R0RE_REQ);
5550                 if (phba->cfg_poll & DISABLE_FCP_RING_INT)
5551                         lpfc_poll_rearm_timer(phba);
5552         }
5553
5554         return 0;
5555 }
5556
5557 /**
5558  * lpfc_slave_destroy - slave_destroy entry point of SHT data structure
5559  * @sdev: Pointer to scsi_device.
5560  *
5561  * This routine sets @sdev hostatdata filed to null.
5562  **/
5563 static void
5564 lpfc_slave_destroy(struct scsi_device *sdev)
5565 {
5566         struct lpfc_vport *vport = (struct lpfc_vport *) sdev->host->hostdata;
5567         struct lpfc_hba   *phba = vport->phba;
5568         unsigned long flags;
5569         struct lpfc_device_data *device_data = sdev->hostdata;
5570
5571         atomic_dec(&phba->sdev_cnt);
5572         if ((phba->cfg_fof) && (device_data)) {
5573                 spin_lock_irqsave(&phba->devicelock, flags);
5574                 device_data->available = false;
5575                 if (!device_data->oas_enabled)
5576                         lpfc_delete_device_data(phba, device_data);
5577                 spin_unlock_irqrestore(&phba->devicelock, flags);
5578         }
5579         sdev->hostdata = NULL;
5580         return;
5581 }
5582
5583 /**
5584  * lpfc_create_device_data - creates and initializes device data structure for OAS
5585  * @pha: Pointer to host bus adapter structure.
5586  * @vport_wwpn: Pointer to vport's wwpn information
5587  * @target_wwpn: Pointer to target's wwpn information
5588  * @lun: Lun on target
5589  * @atomic_create: Flag to indicate if memory should be allocated using the
5590  *                GFP_ATOMIC flag or not.
5591  *
5592  * This routine creates a device data structure which will contain identifying
5593  * information for the device (host wwpn, target wwpn, lun), state of OAS,
5594  * whether or not the corresponding lun is available by the system,
5595  * and pointer to the rport data.
5596  *
5597  * Return codes:
5598  *   NULL - Error
5599  *   Pointer to lpfc_device_data - Success
5600  **/
5601 struct lpfc_device_data*
5602 lpfc_create_device_data(struct lpfc_hba *phba, struct lpfc_name *vport_wwpn,
5603                         struct lpfc_name *target_wwpn, uint64_t lun,
5604                         bool atomic_create)
5605 {
5606
5607         struct lpfc_device_data *lun_info;
5608         int memory_flags;
5609
5610         if (unlikely(!phba) || !vport_wwpn || !target_wwpn  ||
5611             !(phba->cfg_fof))
5612                 return NULL;
5613
5614         /* Attempt to create the device data to contain lun info */
5615
5616         if (atomic_create)
5617                 memory_flags = GFP_ATOMIC;
5618         else
5619                 memory_flags = GFP_KERNEL;
5620         lun_info = mempool_alloc(phba->device_data_mem_pool, memory_flags);
5621         if (!lun_info)
5622                 return NULL;
5623         INIT_LIST_HEAD(&lun_info->listentry);
5624         lun_info->rport_data  = NULL;
5625         memcpy(&lun_info->device_id.vport_wwpn, vport_wwpn,
5626                sizeof(struct lpfc_name));
5627         memcpy(&lun_info->device_id.target_wwpn, target_wwpn,
5628                sizeof(struct lpfc_name));
5629         lun_info->device_id.lun = lun;
5630         lun_info->oas_enabled = false;
5631         lun_info->priority = phba->cfg_XLanePriority;
5632         lun_info->available = false;
5633         return lun_info;
5634 }
5635
5636 /**
5637  * lpfc_delete_device_data - frees a device data structure for OAS
5638  * @pha: Pointer to host bus adapter structure.
5639  * @lun_info: Pointer to device data structure to free.
5640  *
5641  * This routine frees the previously allocated device data structure passed.
5642  *
5643  **/
5644 void
5645 lpfc_delete_device_data(struct lpfc_hba *phba,
5646                         struct lpfc_device_data *lun_info)
5647 {
5648
5649         if (unlikely(!phba) || !lun_info  ||
5650             !(phba->cfg_fof))
5651                 return;
5652
5653         if (!list_empty(&lun_info->listentry))
5654                 list_del(&lun_info->listentry);
5655         mempool_free(lun_info, phba->device_data_mem_pool);
5656         return;
5657 }
5658
5659 /**
5660  * __lpfc_get_device_data - returns the device data for the specified lun
5661  * @pha: Pointer to host bus adapter structure.
5662  * @list: Point to list to search.
5663  * @vport_wwpn: Pointer to vport's wwpn information
5664  * @target_wwpn: Pointer to target's wwpn information
5665  * @lun: Lun on target
5666  *
5667  * This routine searches the list passed for the specified lun's device data.
5668  * This function does not hold locks, it is the responsibility of the caller
5669  * to ensure the proper lock is held before calling the function.
5670  *
5671  * Return codes:
5672  *   NULL - Error
5673  *   Pointer to lpfc_device_data - Success
5674  **/
5675 struct lpfc_device_data*
5676 __lpfc_get_device_data(struct lpfc_hba *phba, struct list_head *list,
5677                        struct lpfc_name *vport_wwpn,
5678                        struct lpfc_name *target_wwpn, uint64_t lun)
5679 {
5680
5681         struct lpfc_device_data *lun_info;
5682
5683         if (unlikely(!phba) || !list || !vport_wwpn || !target_wwpn ||
5684             !phba->cfg_fof)
5685                 return NULL;
5686
5687         /* Check to see if the lun is already enabled for OAS. */
5688
5689         list_for_each_entry(lun_info, list, listentry) {
5690                 if ((memcmp(&lun_info->device_id.vport_wwpn, vport_wwpn,
5691                             sizeof(struct lpfc_name)) == 0) &&
5692                     (memcmp(&lun_info->device_id.target_wwpn, target_wwpn,
5693                             sizeof(struct lpfc_name)) == 0) &&
5694                     (lun_info->device_id.lun == lun))
5695                         return lun_info;
5696         }
5697
5698         return NULL;
5699 }
5700
5701 /**
5702  * lpfc_find_next_oas_lun - searches for the next oas lun
5703  * @pha: Pointer to host bus adapter structure.
5704  * @vport_wwpn: Pointer to vport's wwpn information
5705  * @target_wwpn: Pointer to target's wwpn information
5706  * @starting_lun: Pointer to the lun to start searching for
5707  * @found_vport_wwpn: Pointer to the found lun's vport wwpn information
5708  * @found_target_wwpn: Pointer to the found lun's target wwpn information
5709  * @found_lun: Pointer to the found lun.
5710  * @found_lun_status: Pointer to status of the found lun.
5711  *
5712  * This routine searches the luns list for the specified lun
5713  * or the first lun for the vport/target.  If the vport wwpn contains
5714  * a zero value then a specific vport is not specified. In this case
5715  * any vport which contains the lun will be considered a match.  If the
5716  * target wwpn contains a zero value then a specific target is not specified.
5717  * In this case any target which contains the lun will be considered a
5718  * match.  If the lun is found, the lun, vport wwpn, target wwpn and lun status
5719  * are returned.  The function will also return the next lun if available.
5720  * If the next lun is not found, starting_lun parameter will be set to
5721  * NO_MORE_OAS_LUN.
5722  *
5723  * Return codes:
5724  *   non-0 - Error
5725  *   0 - Success
5726  **/
5727 bool
5728 lpfc_find_next_oas_lun(struct lpfc_hba *phba, struct lpfc_name *vport_wwpn,
5729                        struct lpfc_name *target_wwpn, uint64_t *starting_lun,
5730                        struct lpfc_name *found_vport_wwpn,
5731                        struct lpfc_name *found_target_wwpn,
5732                        uint64_t *found_lun,
5733                        uint32_t *found_lun_status)
5734 {
5735
5736         unsigned long flags;
5737         struct lpfc_device_data *lun_info;
5738         struct lpfc_device_id *device_id;
5739         uint64_t lun;
5740         bool found = false;
5741
5742         if (unlikely(!phba) || !vport_wwpn || !target_wwpn ||
5743             !starting_lun || !found_vport_wwpn ||
5744             !found_target_wwpn || !found_lun || !found_lun_status ||
5745             (*starting_lun == NO_MORE_OAS_LUN) ||
5746             !phba->cfg_fof)
5747                 return false;
5748
5749         lun = *starting_lun;
5750         *found_lun = NO_MORE_OAS_LUN;
5751         *starting_lun = NO_MORE_OAS_LUN;
5752
5753         /* Search for lun or the lun closet in value */
5754
5755         spin_lock_irqsave(&phba->devicelock, flags);
5756         list_for_each_entry(lun_info, &phba->luns, listentry) {
5757                 if (((wwn_to_u64(vport_wwpn->u.wwn) == 0) ||
5758                      (memcmp(&lun_info->device_id.vport_wwpn, vport_wwpn,
5759                             sizeof(struct lpfc_name)) == 0)) &&
5760                     ((wwn_to_u64(target_wwpn->u.wwn) == 0) ||
5761                      (memcmp(&lun_info->device_id.target_wwpn, target_wwpn,
5762                             sizeof(struct lpfc_name)) == 0)) &&
5763                     (lun_info->oas_enabled)) {
5764                         device_id = &lun_info->device_id;
5765                         if ((!found) &&
5766                             ((lun == FIND_FIRST_OAS_LUN) ||
5767                              (device_id->lun == lun))) {
5768                                 *found_lun = device_id->lun;
5769                                 memcpy(found_vport_wwpn,
5770                                        &device_id->vport_wwpn,
5771                                        sizeof(struct lpfc_name));
5772                                 memcpy(found_target_wwpn,
5773                                        &device_id->target_wwpn,
5774                                        sizeof(struct lpfc_name));
5775                                 if (lun_info->available)
5776                                         *found_lun_status =
5777                                                 OAS_LUN_STATUS_EXISTS;
5778                                 else
5779                                         *found_lun_status = 0;
5780                                 if (phba->cfg_oas_flags & OAS_FIND_ANY_VPORT)
5781                                         memset(vport_wwpn, 0x0,
5782                                                sizeof(struct lpfc_name));
5783                                 if (phba->cfg_oas_flags & OAS_FIND_ANY_TARGET)
5784                                         memset(target_wwpn, 0x0,
5785                                                sizeof(struct lpfc_name));
5786                                 found = true;
5787                         } else if (found) {
5788                                 *starting_lun = device_id->lun;
5789                                 memcpy(vport_wwpn, &device_id->vport_wwpn,
5790                                        sizeof(struct lpfc_name));
5791                                 memcpy(target_wwpn, &device_id->target_wwpn,
5792                                        sizeof(struct lpfc_name));
5793                                 break;
5794                         }
5795                 }
5796         }
5797         spin_unlock_irqrestore(&phba->devicelock, flags);
5798         return found;
5799 }
5800
5801 /**
5802  * lpfc_enable_oas_lun - enables a lun for OAS operations
5803  * @pha: Pointer to host bus adapter structure.
5804  * @vport_wwpn: Pointer to vport's wwpn information
5805  * @target_wwpn: Pointer to target's wwpn information
5806  * @lun: Lun
5807  *
5808  * This routine enables a lun for oas operations.  The routines does so by
5809  * doing the following :
5810  *
5811  *   1) Checks to see if the device data for the lun has been created.
5812  *   2) If found, sets the OAS enabled flag if not set and returns.
5813  *   3) Otherwise, creates a device data structure.
5814  *   4) If successfully created, indicates the device data is for an OAS lun,
5815  *   indicates the lun is not available and add to the list of luns.
5816  *
5817  * Return codes:
5818  *   false - Error
5819  *   true - Success
5820  **/
5821 bool
5822 lpfc_enable_oas_lun(struct lpfc_hba *phba, struct lpfc_name *vport_wwpn,
5823                     struct lpfc_name *target_wwpn, uint64_t lun, uint8_t pri)
5824 {
5825
5826         struct lpfc_device_data *lun_info;
5827         unsigned long flags;
5828
5829         if (unlikely(!phba) || !vport_wwpn || !target_wwpn ||
5830             !phba->cfg_fof)
5831                 return false;
5832
5833         spin_lock_irqsave(&phba->devicelock, flags);
5834
5835         /* Check to see if the device data for the lun has been created */
5836         lun_info = __lpfc_get_device_data(phba, &phba->luns, vport_wwpn,
5837                                           target_wwpn, lun);
5838         if (lun_info) {
5839                 if (!lun_info->oas_enabled)
5840                         lun_info->oas_enabled = true;
5841                 spin_unlock_irqrestore(&phba->devicelock, flags);
5842                 return true;
5843         }
5844
5845         /* Create an lun info structure and add to list of luns */
5846         lun_info = lpfc_create_device_data(phba, vport_wwpn, target_wwpn, lun,
5847                                            false);
5848         if (lun_info) {
5849                 lun_info->oas_enabled = true;
5850                 lun_info->priority = pri;
5851                 lun_info->available = false;
5852                 list_add_tail(&lun_info->listentry, &phba->luns);
5853                 spin_unlock_irqrestore(&phba->devicelock, flags);
5854                 return true;
5855         }
5856         spin_unlock_irqrestore(&phba->devicelock, flags);
5857         return false;
5858 }
5859
5860 /**
5861  * lpfc_disable_oas_lun - disables a lun for OAS operations
5862  * @pha: Pointer to host bus adapter structure.
5863  * @vport_wwpn: Pointer to vport's wwpn information
5864  * @target_wwpn: Pointer to target's wwpn information
5865  * @lun: Lun
5866  *
5867  * This routine disables a lun for oas operations.  The routines does so by
5868  * doing the following :
5869  *
5870  *   1) Checks to see if the device data for the lun is created.
5871  *   2) If present, clears the flag indicating this lun is for OAS.
5872  *   3) If the lun is not available by the system, the device data is
5873  *   freed.
5874  *
5875  * Return codes:
5876  *   false - Error
5877  *   true - Success
5878  **/
5879 bool
5880 lpfc_disable_oas_lun(struct lpfc_hba *phba, struct lpfc_name *vport_wwpn,
5881                      struct lpfc_name *target_wwpn, uint64_t lun)
5882 {
5883
5884         struct lpfc_device_data *lun_info;
5885         unsigned long flags;
5886
5887         if (unlikely(!phba) || !vport_wwpn || !target_wwpn ||
5888             !phba->cfg_fof)
5889                 return false;
5890
5891         spin_lock_irqsave(&phba->devicelock, flags);
5892
5893         /* Check to see if the lun is available. */
5894         lun_info = __lpfc_get_device_data(phba,
5895                                           &phba->luns, vport_wwpn,
5896                                           target_wwpn, lun);
5897         if (lun_info) {
5898                 lun_info->oas_enabled = false;
5899                 if (!lun_info->available)
5900                         lpfc_delete_device_data(phba, lun_info);
5901                 spin_unlock_irqrestore(&phba->devicelock, flags);
5902                 return true;
5903         }
5904
5905         spin_unlock_irqrestore(&phba->devicelock, flags);
5906         return false;
5907 }
5908
5909 struct scsi_host_template lpfc_template_s3 = {
5910         .module                 = THIS_MODULE,
5911         .name                   = LPFC_DRIVER_NAME,
5912         .proc_name              = LPFC_DRIVER_NAME,
5913         .info                   = lpfc_info,
5914         .queuecommand           = lpfc_queuecommand,
5915         .eh_abort_handler       = lpfc_abort_handler,
5916         .eh_device_reset_handler = lpfc_device_reset_handler,
5917         .eh_target_reset_handler = lpfc_target_reset_handler,
5918         .eh_bus_reset_handler   = lpfc_bus_reset_handler,
5919         .slave_alloc            = lpfc_slave_alloc,
5920         .slave_configure        = lpfc_slave_configure,
5921         .slave_destroy          = lpfc_slave_destroy,
5922         .scan_finished          = lpfc_scan_finished,
5923         .this_id                = -1,
5924         .sg_tablesize           = LPFC_DEFAULT_SG_SEG_CNT,
5925         .cmd_per_lun            = LPFC_CMD_PER_LUN,
5926         .use_clustering         = ENABLE_CLUSTERING,
5927         .shost_attrs            = lpfc_hba_attrs,
5928         .max_sectors            = 0xFFFF,
5929         .vendor_id              = LPFC_NL_VENDOR_ID,
5930         .change_queue_depth     = scsi_change_queue_depth,
5931         .track_queue_depth      = 1,
5932 };
5933
5934 struct scsi_host_template lpfc_template = {
5935         .module                 = THIS_MODULE,
5936         .name                   = LPFC_DRIVER_NAME,
5937         .proc_name              = LPFC_DRIVER_NAME,
5938         .info                   = lpfc_info,
5939         .queuecommand           = lpfc_queuecommand,
5940         .eh_abort_handler       = lpfc_abort_handler,
5941         .eh_device_reset_handler = lpfc_device_reset_handler,
5942         .eh_target_reset_handler = lpfc_target_reset_handler,
5943         .eh_bus_reset_handler   = lpfc_bus_reset_handler,
5944         .eh_host_reset_handler  = lpfc_host_reset_handler,
5945         .slave_alloc            = lpfc_slave_alloc,
5946         .slave_configure        = lpfc_slave_configure,
5947         .slave_destroy          = lpfc_slave_destroy,
5948         .scan_finished          = lpfc_scan_finished,
5949         .this_id                = -1,
5950         .sg_tablesize           = LPFC_DEFAULT_SG_SEG_CNT,
5951         .cmd_per_lun            = LPFC_CMD_PER_LUN,
5952         .use_clustering         = ENABLE_CLUSTERING,
5953         .shost_attrs            = lpfc_hba_attrs,
5954         .max_sectors            = 0xFFFF,
5955         .vendor_id              = LPFC_NL_VENDOR_ID,
5956         .change_queue_depth     = scsi_change_queue_depth,
5957         .track_queue_depth      = 1,
5958 };
5959
5960 struct scsi_host_template lpfc_vport_template = {
5961         .module                 = THIS_MODULE,
5962         .name                   = LPFC_DRIVER_NAME,
5963         .proc_name              = LPFC_DRIVER_NAME,
5964         .info                   = lpfc_info,
5965         .queuecommand           = lpfc_queuecommand,
5966         .eh_abort_handler       = lpfc_abort_handler,
5967         .eh_device_reset_handler = lpfc_device_reset_handler,
5968         .eh_target_reset_handler = lpfc_target_reset_handler,
5969         .eh_bus_reset_handler   = lpfc_bus_reset_handler,
5970         .slave_alloc            = lpfc_slave_alloc,
5971         .slave_configure        = lpfc_slave_configure,
5972         .slave_destroy          = lpfc_slave_destroy,
5973         .scan_finished          = lpfc_scan_finished,
5974         .this_id                = -1,
5975         .sg_tablesize           = LPFC_DEFAULT_SG_SEG_CNT,
5976         .cmd_per_lun            = LPFC_CMD_PER_LUN,
5977         .use_clustering         = ENABLE_CLUSTERING,
5978         .shost_attrs            = lpfc_vport_attrs,
5979         .max_sectors            = 0xFFFF,
5980         .change_queue_depth     = scsi_change_queue_depth,
5981         .track_queue_depth      = 1,
5982 };