1 /*******************************************************************
2 * This file is part of the Emulex Linux Device Driver for *
3 * Fibre Channel Host Bus Adapters. *
4 * Copyright (C) 2004-2009 Emulex. All rights reserved. *
5 * EMULEX and SLI are trademarks of Emulex. *
7 * Portions Copyright (C) 2004-2005 Christoph Hellwig *
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/interrupt.h>
23 #include <linux/delay.h>
24 #include <asm/unaligned.h>
26 #include <scsi/scsi.h>
27 #include <scsi/scsi_device.h>
28 #include <scsi/scsi_eh.h>
29 #include <scsi/scsi_host.h>
30 #include <scsi/scsi_tcq.h>
31 #include <scsi/scsi_transport_fc.h>
33 #include "lpfc_version.h"
37 #include "lpfc_sli4.h"
39 #include "lpfc_disc.h"
40 #include "lpfc_scsi.h"
42 #include "lpfc_logmsg.h"
43 #include "lpfc_crtn.h"
44 #include "lpfc_vport.h"
46 #define LPFC_RESET_WAIT 2
47 #define LPFC_ABORT_WAIT 2
51 static char *dif_op_str
[] = {
53 "SCSI_PROT_READ_INSERT",
54 "SCSI_PROT_WRITE_STRIP",
55 "SCSI_PROT_READ_STRIP",
56 "SCSI_PROT_WRITE_INSERT",
57 "SCSI_PROT_READ_PASS",
58 "SCSI_PROT_WRITE_PASS",
59 "SCSI_PROT_READ_CONVERT",
60 "SCSI_PROT_WRITE_CONVERT"
63 lpfc_release_scsi_buf_s4(struct lpfc_hba
*phba
, struct lpfc_scsi_buf
*psb
);
66 lpfc_debug_save_data(struct scsi_cmnd
*cmnd
)
69 struct scatterlist
*sgde
= scsi_sglist(cmnd
);
71 if (!_dump_buf_data
) {
72 printk(KERN_ERR
"BLKGRD ERROR %s _dump_buf_data is NULL\n",
79 printk(KERN_ERR
"BLKGRD ERROR: data scatterlist is null\n");
83 dst
= (void *) _dump_buf_data
;
86 memcpy(dst
, src
, sgde
->length
);
93 lpfc_debug_save_dif(struct scsi_cmnd
*cmnd
)
96 struct scatterlist
*sgde
= scsi_prot_sglist(cmnd
);
99 printk(KERN_ERR
"BLKGRD ERROR %s _dump_buf_data is NULL\n",
105 printk(KERN_ERR
"BLKGRD ERROR: prot scatterlist is null\n");
112 memcpy(dst
, src
, sgde
->length
);
114 sgde
= sg_next(sgde
);
119 * lpfc_sli4_set_rsp_sgl_last - Set the last bit in the response sge.
120 * @phba: Pointer to HBA object.
121 * @lpfc_cmd: lpfc scsi command object pointer.
123 * This function is called from the lpfc_prep_task_mgmt_cmd function to
124 * set the last bit in the response sge entry.
127 lpfc_sli4_set_rsp_sgl_last(struct lpfc_hba
*phba
,
128 struct lpfc_scsi_buf
*lpfc_cmd
)
130 struct sli4_sge
*sgl
= (struct sli4_sge
*)lpfc_cmd
->fcp_bpl
;
133 sgl
->word2
= le32_to_cpu(sgl
->word2
);
134 bf_set(lpfc_sli4_sge_last
, sgl
, 1);
135 sgl
->word2
= cpu_to_le32(sgl
->word2
);
140 * lpfc_update_stats - Update statistical data for the command completion
141 * @phba: Pointer to HBA object.
142 * @lpfc_cmd: lpfc scsi command object pointer.
144 * This function is called when there is a command completion and this
145 * function updates the statistical data for the command completion.
148 lpfc_update_stats(struct lpfc_hba
*phba
, struct lpfc_scsi_buf
*lpfc_cmd
)
150 struct lpfc_rport_data
*rdata
= lpfc_cmd
->rdata
;
151 struct lpfc_nodelist
*pnode
= rdata
->pnode
;
152 struct scsi_cmnd
*cmd
= lpfc_cmd
->pCmd
;
154 struct Scsi_Host
*shost
= cmd
->device
->host
;
155 struct lpfc_vport
*vport
= (struct lpfc_vport
*) shost
->hostdata
;
156 unsigned long latency
;
162 latency
= jiffies_to_msecs((long)jiffies
- (long)lpfc_cmd
->start_time
);
164 spin_lock_irqsave(shost
->host_lock
, flags
);
165 if (!vport
->stat_data_enabled
||
166 vport
->stat_data_blocked
||
168 (phba
->bucket_type
== LPFC_NO_BUCKET
)) {
169 spin_unlock_irqrestore(shost
->host_lock
, flags
);
173 if (phba
->bucket_type
== LPFC_LINEAR_BUCKET
) {
174 i
= (latency
+ phba
->bucket_step
- 1 - phba
->bucket_base
)/
176 /* check array subscript bounds */
179 else if (i
>= LPFC_MAX_BUCKET_COUNT
)
180 i
= LPFC_MAX_BUCKET_COUNT
- 1;
182 for (i
= 0; i
< LPFC_MAX_BUCKET_COUNT
-1; i
++)
183 if (latency
<= (phba
->bucket_base
+
184 ((1<<i
)*phba
->bucket_step
)))
188 pnode
->lat_data
[i
].cmd_count
++;
189 spin_unlock_irqrestore(shost
->host_lock
, flags
);
193 * lpfc_send_sdev_queuedepth_change_event - Posts a queuedepth change event
194 * @phba: Pointer to HBA context object.
195 * @vport: Pointer to vport object.
196 * @ndlp: Pointer to FC node associated with the target.
197 * @lun: Lun number of the scsi device.
198 * @old_val: Old value of the queue depth.
199 * @new_val: New value of the queue depth.
201 * This function sends an event to the mgmt application indicating
202 * there is a change in the scsi device queue depth.
205 lpfc_send_sdev_queuedepth_change_event(struct lpfc_hba
*phba
,
206 struct lpfc_vport
*vport
,
207 struct lpfc_nodelist
*ndlp
,
212 struct lpfc_fast_path_event
*fast_path_evt
;
215 fast_path_evt
= lpfc_alloc_fast_evt(phba
);
219 fast_path_evt
->un
.queue_depth_evt
.scsi_event
.event_type
=
221 fast_path_evt
->un
.queue_depth_evt
.scsi_event
.subcategory
=
222 LPFC_EVENT_VARQUEDEPTH
;
224 /* Report all luns with change in queue depth */
225 fast_path_evt
->un
.queue_depth_evt
.scsi_event
.lun
= lun
;
226 if (ndlp
&& NLP_CHK_NODE_ACT(ndlp
)) {
227 memcpy(&fast_path_evt
->un
.queue_depth_evt
.scsi_event
.wwpn
,
228 &ndlp
->nlp_portname
, sizeof(struct lpfc_name
));
229 memcpy(&fast_path_evt
->un
.queue_depth_evt
.scsi_event
.wwnn
,
230 &ndlp
->nlp_nodename
, sizeof(struct lpfc_name
));
233 fast_path_evt
->un
.queue_depth_evt
.oldval
= old_val
;
234 fast_path_evt
->un
.queue_depth_evt
.newval
= new_val
;
235 fast_path_evt
->vport
= vport
;
237 fast_path_evt
->work_evt
.evt
= LPFC_EVT_FASTPATH_MGMT_EVT
;
238 spin_lock_irqsave(&phba
->hbalock
, flags
);
239 list_add_tail(&fast_path_evt
->work_evt
.evt_listp
, &phba
->work_list
);
240 spin_unlock_irqrestore(&phba
->hbalock
, flags
);
241 lpfc_worker_wake_up(phba
);
247 * lpfc_rampdown_queue_depth - Post RAMP_DOWN_QUEUE event to worker thread
248 * @phba: The Hba for which this call is being executed.
250 * This routine is called when there is resource error in driver or firmware.
251 * This routine posts WORKER_RAMP_DOWN_QUEUE event for @phba. This routine
252 * posts at most 1 event each second. This routine wakes up worker thread of
253 * @phba to process WORKER_RAM_DOWN_EVENT event.
255 * This routine should be called with no lock held.
258 lpfc_rampdown_queue_depth(struct lpfc_hba
*phba
)
263 spin_lock_irqsave(&phba
->hbalock
, flags
);
264 atomic_inc(&phba
->num_rsrc_err
);
265 phba
->last_rsrc_error_time
= jiffies
;
267 if ((phba
->last_ramp_down_time
+ QUEUE_RAMP_DOWN_INTERVAL
) > jiffies
) {
268 spin_unlock_irqrestore(&phba
->hbalock
, flags
);
272 phba
->last_ramp_down_time
= jiffies
;
274 spin_unlock_irqrestore(&phba
->hbalock
, flags
);
276 spin_lock_irqsave(&phba
->pport
->work_port_lock
, flags
);
277 evt_posted
= phba
->pport
->work_port_events
& WORKER_RAMP_DOWN_QUEUE
;
279 phba
->pport
->work_port_events
|= WORKER_RAMP_DOWN_QUEUE
;
280 spin_unlock_irqrestore(&phba
->pport
->work_port_lock
, flags
);
283 lpfc_worker_wake_up(phba
);
288 * lpfc_rampup_queue_depth - Post RAMP_UP_QUEUE event for worker thread
289 * @phba: The Hba for which this call is being executed.
291 * This routine post WORKER_RAMP_UP_QUEUE event for @phba vport. This routine
292 * post at most 1 event every 5 minute after last_ramp_up_time or
293 * last_rsrc_error_time. This routine wakes up worker thread of @phba
294 * to process WORKER_RAM_DOWN_EVENT event.
296 * This routine should be called with no lock held.
299 lpfc_rampup_queue_depth(struct lpfc_vport
*vport
,
300 uint32_t queue_depth
)
303 struct lpfc_hba
*phba
= vport
->phba
;
305 atomic_inc(&phba
->num_cmd_success
);
307 if (vport
->cfg_lun_queue_depth
<= queue_depth
)
309 spin_lock_irqsave(&phba
->hbalock
, flags
);
310 if (((phba
->last_ramp_up_time
+ QUEUE_RAMP_UP_INTERVAL
) > jiffies
) ||
311 ((phba
->last_rsrc_error_time
+ QUEUE_RAMP_UP_INTERVAL
) > jiffies
)) {
312 spin_unlock_irqrestore(&phba
->hbalock
, flags
);
315 phba
->last_ramp_up_time
= jiffies
;
316 spin_unlock_irqrestore(&phba
->hbalock
, flags
);
318 spin_lock_irqsave(&phba
->pport
->work_port_lock
, flags
);
319 evt_posted
= phba
->pport
->work_port_events
& WORKER_RAMP_UP_QUEUE
;
321 phba
->pport
->work_port_events
|= WORKER_RAMP_UP_QUEUE
;
322 spin_unlock_irqrestore(&phba
->pport
->work_port_lock
, flags
);
325 lpfc_worker_wake_up(phba
);
330 * lpfc_ramp_down_queue_handler - WORKER_RAMP_DOWN_QUEUE event handler
331 * @phba: The Hba for which this call is being executed.
333 * This routine is called to process WORKER_RAMP_DOWN_QUEUE event for worker
334 * thread.This routine reduces queue depth for all scsi device on each vport
335 * associated with @phba.
338 lpfc_ramp_down_queue_handler(struct lpfc_hba
*phba
)
340 struct lpfc_vport
**vports
;
341 struct Scsi_Host
*shost
;
342 struct scsi_device
*sdev
;
343 unsigned long new_queue_depth
, old_queue_depth
;
344 unsigned long num_rsrc_err
, num_cmd_success
;
346 struct lpfc_rport_data
*rdata
;
348 num_rsrc_err
= atomic_read(&phba
->num_rsrc_err
);
349 num_cmd_success
= atomic_read(&phba
->num_cmd_success
);
351 vports
= lpfc_create_vport_work_array(phba
);
353 for (i
= 0; i
<= phba
->max_vports
&& vports
[i
] != NULL
; i
++) {
354 shost
= lpfc_shost_from_vport(vports
[i
]);
355 shost_for_each_device(sdev
, shost
) {
357 sdev
->queue_depth
* num_rsrc_err
/
358 (num_rsrc_err
+ num_cmd_success
);
359 if (!new_queue_depth
)
360 new_queue_depth
= sdev
->queue_depth
- 1;
362 new_queue_depth
= sdev
->queue_depth
-
364 old_queue_depth
= sdev
->queue_depth
;
365 if (sdev
->ordered_tags
)
366 scsi_adjust_queue_depth(sdev
,
370 scsi_adjust_queue_depth(sdev
,
373 rdata
= sdev
->hostdata
;
375 lpfc_send_sdev_queuedepth_change_event(
378 sdev
->lun
, old_queue_depth
,
382 lpfc_destroy_vport_work_array(phba
, vports
);
383 atomic_set(&phba
->num_rsrc_err
, 0);
384 atomic_set(&phba
->num_cmd_success
, 0);
388 * lpfc_ramp_up_queue_handler - WORKER_RAMP_UP_QUEUE event handler
389 * @phba: The Hba for which this call is being executed.
391 * This routine is called to process WORKER_RAMP_UP_QUEUE event for worker
392 * thread.This routine increases queue depth for all scsi device on each vport
393 * associated with @phba by 1. This routine also sets @phba num_rsrc_err and
394 * num_cmd_success to zero.
397 lpfc_ramp_up_queue_handler(struct lpfc_hba
*phba
)
399 struct lpfc_vport
**vports
;
400 struct Scsi_Host
*shost
;
401 struct scsi_device
*sdev
;
403 struct lpfc_rport_data
*rdata
;
405 vports
= lpfc_create_vport_work_array(phba
);
407 for (i
= 0; i
<= phba
->max_vports
&& vports
[i
] != NULL
; i
++) {
408 shost
= lpfc_shost_from_vport(vports
[i
]);
409 shost_for_each_device(sdev
, shost
) {
410 if (vports
[i
]->cfg_lun_queue_depth
<=
413 if (sdev
->ordered_tags
)
414 scsi_adjust_queue_depth(sdev
,
416 sdev
->queue_depth
+1);
418 scsi_adjust_queue_depth(sdev
,
420 sdev
->queue_depth
+1);
421 rdata
= sdev
->hostdata
;
423 lpfc_send_sdev_queuedepth_change_event(
427 sdev
->queue_depth
- 1,
431 lpfc_destroy_vport_work_array(phba
, vports
);
432 atomic_set(&phba
->num_rsrc_err
, 0);
433 atomic_set(&phba
->num_cmd_success
, 0);
437 * lpfc_scsi_dev_block - set all scsi hosts to block state
438 * @phba: Pointer to HBA context object.
440 * This function walks vport list and set each SCSI host to block state
441 * by invoking fc_remote_port_delete() routine. This function is invoked
442 * with EEH when device's PCI slot has been permanently disabled.
445 lpfc_scsi_dev_block(struct lpfc_hba
*phba
)
447 struct lpfc_vport
**vports
;
448 struct Scsi_Host
*shost
;
449 struct scsi_device
*sdev
;
450 struct fc_rport
*rport
;
453 vports
= lpfc_create_vport_work_array(phba
);
455 for (i
= 0; i
<= phba
->max_vports
&& vports
[i
] != NULL
; i
++) {
456 shost
= lpfc_shost_from_vport(vports
[i
]);
457 shost_for_each_device(sdev
, shost
) {
458 rport
= starget_to_rport(scsi_target(sdev
));
459 fc_remote_port_delete(rport
);
462 lpfc_destroy_vport_work_array(phba
, vports
);
466 * lpfc_new_scsi_buf_s3 - Scsi buffer allocator for HBA with SLI3 IF spec
467 * @vport: The virtual port for which this call being executed.
468 * @num_to_allocate: The requested number of buffers to allocate.
470 * This routine allocates a scsi buffer for device with SLI-3 interface spec,
471 * the scsi buffer contains all the necessary information needed to initiate
472 * a SCSI I/O. The non-DMAable buffer region contains information to build
473 * the IOCB. The DMAable region contains memory for the FCP CMND, FCP RSP,
474 * and the initial BPL. In addition to allocating memory, the FCP CMND and
475 * FCP RSP BDEs are setup in the BPL and the BPL BDE is setup in the IOCB.
478 * int - number of scsi buffers that were allocated.
479 * 0 = failure, less than num_to_alloc is a partial failure.
482 lpfc_new_scsi_buf_s3(struct lpfc_vport
*vport
, int num_to_alloc
)
484 struct lpfc_hba
*phba
= vport
->phba
;
485 struct lpfc_scsi_buf
*psb
;
486 struct ulp_bde64
*bpl
;
488 dma_addr_t pdma_phys_fcp_cmd
;
489 dma_addr_t pdma_phys_fcp_rsp
;
490 dma_addr_t pdma_phys_bpl
;
494 for (bcnt
= 0; bcnt
< num_to_alloc
; bcnt
++) {
495 psb
= kzalloc(sizeof(struct lpfc_scsi_buf
), GFP_KERNEL
);
500 * Get memory from the pci pool to map the virt space to pci
501 * bus space for an I/O. The DMA buffer includes space for the
502 * struct fcp_cmnd, struct fcp_rsp and the number of bde's
503 * necessary to support the sg_tablesize.
505 psb
->data
= pci_pool_alloc(phba
->lpfc_scsi_dma_buf_pool
,
506 GFP_KERNEL
, &psb
->dma_handle
);
512 /* Initialize virtual ptrs to dma_buf region. */
513 memset(psb
->data
, 0, phba
->cfg_sg_dma_buf_size
);
515 /* Allocate iotag for psb->cur_iocbq. */
516 iotag
= lpfc_sli_next_iotag(phba
, &psb
->cur_iocbq
);
518 pci_pool_free(phba
->lpfc_scsi_dma_buf_pool
,
519 psb
->data
, psb
->dma_handle
);
523 psb
->cur_iocbq
.iocb_flag
|= LPFC_IO_FCP
;
525 psb
->fcp_cmnd
= psb
->data
;
526 psb
->fcp_rsp
= psb
->data
+ sizeof(struct fcp_cmnd
);
527 psb
->fcp_bpl
= psb
->data
+ sizeof(struct fcp_cmnd
) +
528 sizeof(struct fcp_rsp
);
530 /* Initialize local short-hand pointers. */
532 pdma_phys_fcp_cmd
= psb
->dma_handle
;
533 pdma_phys_fcp_rsp
= psb
->dma_handle
+ sizeof(struct fcp_cmnd
);
534 pdma_phys_bpl
= psb
->dma_handle
+ sizeof(struct fcp_cmnd
) +
535 sizeof(struct fcp_rsp
);
538 * The first two bdes are the FCP_CMD and FCP_RSP. The balance
539 * are sg list bdes. Initialize the first two and leave the
540 * rest for queuecommand.
542 bpl
[0].addrHigh
= le32_to_cpu(putPaddrHigh(pdma_phys_fcp_cmd
));
543 bpl
[0].addrLow
= le32_to_cpu(putPaddrLow(pdma_phys_fcp_cmd
));
544 bpl
[0].tus
.f
.bdeSize
= sizeof(struct fcp_cmnd
);
545 bpl
[0].tus
.f
.bdeFlags
= BUFF_TYPE_BDE_64
;
546 bpl
[0].tus
.w
= le32_to_cpu(bpl
[0].tus
.w
);
548 /* Setup the physical region for the FCP RSP */
549 bpl
[1].addrHigh
= le32_to_cpu(putPaddrHigh(pdma_phys_fcp_rsp
));
550 bpl
[1].addrLow
= le32_to_cpu(putPaddrLow(pdma_phys_fcp_rsp
));
551 bpl
[1].tus
.f
.bdeSize
= sizeof(struct fcp_rsp
);
552 bpl
[1].tus
.f
.bdeFlags
= BUFF_TYPE_BDE_64
;
553 bpl
[1].tus
.w
= le32_to_cpu(bpl
[1].tus
.w
);
556 * Since the IOCB for the FCP I/O is built into this
557 * lpfc_scsi_buf, initialize it with all known data now.
559 iocb
= &psb
->cur_iocbq
.iocb
;
560 iocb
->un
.fcpi64
.bdl
.ulpIoTag32
= 0;
561 if ((phba
->sli_rev
== 3) &&
562 !(phba
->sli3_options
& LPFC_SLI3_BG_ENABLED
)) {
563 /* fill in immediate fcp command BDE */
564 iocb
->un
.fcpi64
.bdl
.bdeFlags
= BUFF_TYPE_BDE_IMMED
;
565 iocb
->un
.fcpi64
.bdl
.bdeSize
= sizeof(struct fcp_cmnd
);
566 iocb
->un
.fcpi64
.bdl
.addrLow
= offsetof(IOCB_t
,
568 iocb
->un
.fcpi64
.bdl
.addrHigh
= 0;
569 iocb
->ulpBdeCount
= 0;
571 /* fill in responce BDE */
572 iocb
->unsli3
.fcp_ext
.rbde
.tus
.f
.bdeFlags
=
574 iocb
->unsli3
.fcp_ext
.rbde
.tus
.f
.bdeSize
=
575 sizeof(struct fcp_rsp
);
576 iocb
->unsli3
.fcp_ext
.rbde
.addrLow
=
577 putPaddrLow(pdma_phys_fcp_rsp
);
578 iocb
->unsli3
.fcp_ext
.rbde
.addrHigh
=
579 putPaddrHigh(pdma_phys_fcp_rsp
);
581 iocb
->un
.fcpi64
.bdl
.bdeFlags
= BUFF_TYPE_BLP_64
;
582 iocb
->un
.fcpi64
.bdl
.bdeSize
=
583 (2 * sizeof(struct ulp_bde64
));
584 iocb
->un
.fcpi64
.bdl
.addrLow
=
585 putPaddrLow(pdma_phys_bpl
);
586 iocb
->un
.fcpi64
.bdl
.addrHigh
=
587 putPaddrHigh(pdma_phys_bpl
);
588 iocb
->ulpBdeCount
= 1;
591 iocb
->ulpClass
= CLASS3
;
592 psb
->status
= IOSTAT_SUCCESS
;
593 /* Put it back into the SCSI buffer list */
594 lpfc_release_scsi_buf_s4(phba
, psb
);
602 * lpfc_sli4_fcp_xri_aborted - Fast-path process of fcp xri abort
603 * @phba: pointer to lpfc hba data structure.
604 * @axri: pointer to the fcp xri abort wcqe structure.
606 * This routine is invoked by the worker thread to process a SLI4 fast-path
610 lpfc_sli4_fcp_xri_aborted(struct lpfc_hba
*phba
,
611 struct sli4_wcqe_xri_aborted
*axri
)
613 uint16_t xri
= bf_get(lpfc_wcqe_xa_xri
, axri
);
614 struct lpfc_scsi_buf
*psb
, *next_psb
;
615 unsigned long iflag
= 0;
617 spin_lock_irqsave(&phba
->sli4_hba
.abts_scsi_buf_list_lock
, iflag
);
618 list_for_each_entry_safe(psb
, next_psb
,
619 &phba
->sli4_hba
.lpfc_abts_scsi_buf_list
, list
) {
620 if (psb
->cur_iocbq
.sli4_xritag
== xri
) {
621 list_del(&psb
->list
);
622 psb
->status
= IOSTAT_SUCCESS
;
623 spin_unlock_irqrestore(
624 &phba
->sli4_hba
.abts_scsi_buf_list_lock
,
626 lpfc_release_scsi_buf_s4(phba
, psb
);
630 spin_unlock_irqrestore(&phba
->sli4_hba
.abts_scsi_buf_list_lock
,
635 * lpfc_sli4_repost_scsi_sgl_list - Repsot the Scsi buffers sgl pages as block
636 * @phba: pointer to lpfc hba data structure.
638 * This routine walks the list of scsi buffers that have been allocated and
639 * repost them to the HBA by using SGL block post. This is needed after a
640 * pci_function_reset/warm_start or start. The lpfc_hba_down_post_s4 routine
641 * is responsible for moving all scsi buffers on the lpfc_abts_scsi_sgl_list
642 * to the lpfc_scsi_buf_list. If the repost fails, reject all scsi buffers.
644 * Returns: 0 = success, non-zero failure.
647 lpfc_sli4_repost_scsi_sgl_list(struct lpfc_hba
*phba
)
649 struct lpfc_scsi_buf
*psb
;
650 int index
, status
, bcnt
= 0, rcnt
= 0, rc
= 0;
653 for (index
= 0; index
< phba
->sli4_hba
.scsi_xri_cnt
; index
++) {
654 psb
= phba
->sli4_hba
.lpfc_scsi_psb_array
[index
];
656 /* Remove from SCSI buffer list */
657 list_del(&psb
->list
);
658 /* Add it to a local SCSI buffer list */
659 list_add_tail(&psb
->list
, &sblist
);
660 if (++rcnt
== LPFC_NEMBED_MBOX_SGL_CNT
) {
665 /* A hole present in the XRI array, need to skip */
668 if (index
== phba
->sli4_hba
.scsi_xri_cnt
- 1)
669 /* End of XRI array for SCSI buffer, complete */
672 /* Continue until collect up to a nembed page worth of sgls */
675 /* Now, post the SCSI buffer list sgls as a block */
676 status
= lpfc_sli4_post_scsi_sgl_block(phba
, &sblist
, bcnt
);
677 /* Reset SCSI buffer count for next round of posting */
679 while (!list_empty(&sblist
)) {
680 list_remove_head(&sblist
, psb
, struct lpfc_scsi_buf
,
683 /* Put this back on the abort scsi list */
684 psb
->status
= IOSTAT_LOCAL_REJECT
;
685 psb
->result
= IOERR_ABORT_REQUESTED
;
688 psb
->status
= IOSTAT_SUCCESS
;
689 /* Put it back into the SCSI buffer list */
690 lpfc_release_scsi_buf_s4(phba
, psb
);
697 * lpfc_new_scsi_buf_s4 - Scsi buffer allocator for HBA with SLI4 IF spec
698 * @vport: The virtual port for which this call being executed.
699 * @num_to_allocate: The requested number of buffers to allocate.
701 * This routine allocates a scsi buffer for device with SLI-4 interface spec,
702 * the scsi buffer contains all the necessary information needed to initiate
706 * int - number of scsi buffers that were allocated.
707 * 0 = failure, less than num_to_alloc is a partial failure.
710 lpfc_new_scsi_buf_s4(struct lpfc_vport
*vport
, int num_to_alloc
)
712 struct lpfc_hba
*phba
= vport
->phba
;
713 struct lpfc_scsi_buf
*psb
;
714 struct sli4_sge
*sgl
;
716 dma_addr_t pdma_phys_fcp_cmd
;
717 dma_addr_t pdma_phys_fcp_rsp
;
718 dma_addr_t pdma_phys_bpl
, pdma_phys_bpl1
;
719 uint16_t iotag
, last_xritag
= NO_XRI
;
720 int status
= 0, index
;
722 int non_sequential_xri
= 0;
726 for (bcnt
= 0; bcnt
< num_to_alloc
; bcnt
++) {
727 psb
= kzalloc(sizeof(struct lpfc_scsi_buf
), GFP_KERNEL
);
732 * Get memory from the pci pool to map the virt space to pci bus
733 * space for an I/O. The DMA buffer includes space for the
734 * struct fcp_cmnd, struct fcp_rsp and the number of bde's
735 * necessary to support the sg_tablesize.
737 psb
->data
= pci_pool_alloc(phba
->lpfc_scsi_dma_buf_pool
,
738 GFP_KERNEL
, &psb
->dma_handle
);
744 /* Initialize virtual ptrs to dma_buf region. */
745 memset(psb
->data
, 0, phba
->cfg_sg_dma_buf_size
);
747 /* Allocate iotag for psb->cur_iocbq. */
748 iotag
= lpfc_sli_next_iotag(phba
, &psb
->cur_iocbq
);
754 psb
->cur_iocbq
.sli4_xritag
= lpfc_sli4_next_xritag(phba
);
755 if (psb
->cur_iocbq
.sli4_xritag
== NO_XRI
) {
756 pci_pool_free(phba
->lpfc_scsi_dma_buf_pool
,
757 psb
->data
, psb
->dma_handle
);
761 if (last_xritag
!= NO_XRI
762 && psb
->cur_iocbq
.sli4_xritag
!= (last_xritag
+1)) {
763 non_sequential_xri
= 1;
765 list_add_tail(&psb
->list
, &sblist
);
766 last_xritag
= psb
->cur_iocbq
.sli4_xritag
;
768 index
= phba
->sli4_hba
.scsi_xri_cnt
++;
769 psb
->cur_iocbq
.iocb_flag
|= LPFC_IO_FCP
;
771 psb
->fcp_bpl
= psb
->data
;
772 psb
->fcp_cmnd
= (psb
->data
+ phba
->cfg_sg_dma_buf_size
)
773 - (sizeof(struct fcp_cmnd
) + sizeof(struct fcp_rsp
));
774 psb
->fcp_rsp
= (struct fcp_rsp
*)((uint8_t *)psb
->fcp_cmnd
+
775 sizeof(struct fcp_cmnd
));
777 /* Initialize local short-hand pointers. */
778 sgl
= (struct sli4_sge
*)psb
->fcp_bpl
;
779 pdma_phys_bpl
= psb
->dma_handle
;
781 (psb
->dma_handle
+ phba
->cfg_sg_dma_buf_size
)
782 - (sizeof(struct fcp_cmnd
) + sizeof(struct fcp_rsp
));
783 pdma_phys_fcp_rsp
= pdma_phys_fcp_cmd
+ sizeof(struct fcp_cmnd
);
786 * The first two bdes are the FCP_CMD and FCP_RSP. The balance
787 * are sg list bdes. Initialize the first two and leave the
788 * rest for queuecommand.
790 sgl
->addr_hi
= cpu_to_le32(putPaddrHigh(pdma_phys_fcp_cmd
));
791 sgl
->addr_lo
= cpu_to_le32(putPaddrLow(pdma_phys_fcp_cmd
));
792 bf_set(lpfc_sli4_sge_len
, sgl
, sizeof(struct fcp_cmnd
));
793 bf_set(lpfc_sli4_sge_last
, sgl
, 0);
794 sgl
->word2
= cpu_to_le32(sgl
->word2
);
795 sgl
->word3
= cpu_to_le32(sgl
->word3
);
798 /* Setup the physical region for the FCP RSP */
799 sgl
->addr_hi
= cpu_to_le32(putPaddrHigh(pdma_phys_fcp_rsp
));
800 sgl
->addr_lo
= cpu_to_le32(putPaddrLow(pdma_phys_fcp_rsp
));
801 bf_set(lpfc_sli4_sge_len
, sgl
, sizeof(struct fcp_rsp
));
802 bf_set(lpfc_sli4_sge_last
, sgl
, 1);
803 sgl
->word2
= cpu_to_le32(sgl
->word2
);
804 sgl
->word3
= cpu_to_le32(sgl
->word3
);
807 * Since the IOCB for the FCP I/O is built into this
808 * lpfc_scsi_buf, initialize it with all known data now.
810 iocb
= &psb
->cur_iocbq
.iocb
;
811 iocb
->un
.fcpi64
.bdl
.ulpIoTag32
= 0;
812 iocb
->un
.fcpi64
.bdl
.bdeFlags
= BUFF_TYPE_BDE_64
;
813 /* setting the BLP size to 2 * sizeof BDE may not be correct.
814 * We are setting the bpl to point to out sgl. An sgl's
815 * entries are 16 bytes, a bpl entries are 12 bytes.
817 iocb
->un
.fcpi64
.bdl
.bdeSize
= sizeof(struct fcp_cmnd
);
818 iocb
->un
.fcpi64
.bdl
.addrLow
= putPaddrLow(pdma_phys_fcp_cmd
);
819 iocb
->un
.fcpi64
.bdl
.addrHigh
= putPaddrHigh(pdma_phys_fcp_cmd
);
820 iocb
->ulpBdeCount
= 1;
822 iocb
->ulpClass
= CLASS3
;
823 if (phba
->cfg_sg_dma_buf_size
> SGL_PAGE_SIZE
)
824 pdma_phys_bpl1
= pdma_phys_bpl
+ SGL_PAGE_SIZE
;
827 psb
->dma_phys_bpl
= pdma_phys_bpl
;
828 phba
->sli4_hba
.lpfc_scsi_psb_array
[index
] = psb
;
829 if (non_sequential_xri
) {
830 status
= lpfc_sli4_post_sgl(phba
, pdma_phys_bpl
,
832 psb
->cur_iocbq
.sli4_xritag
);
834 /* Put this back on the abort scsi list */
835 psb
->status
= IOSTAT_LOCAL_REJECT
;
836 psb
->result
= IOERR_ABORT_REQUESTED
;
839 psb
->status
= IOSTAT_SUCCESS
;
840 /* Put it back into the SCSI buffer list */
841 lpfc_release_scsi_buf_s4(phba
, psb
);
846 status
= lpfc_sli4_post_scsi_sgl_block(phba
, &sblist
, bcnt
);
847 /* Reset SCSI buffer count for next round of posting */
848 while (!list_empty(&sblist
)) {
849 list_remove_head(&sblist
, psb
, struct lpfc_scsi_buf
,
852 /* Put this back on the abort scsi list */
853 psb
->status
= IOSTAT_LOCAL_REJECT
;
854 psb
->result
= IOERR_ABORT_REQUESTED
;
857 psb
->status
= IOSTAT_SUCCESS
;
858 /* Put it back into the SCSI buffer list */
859 lpfc_release_scsi_buf_s4(phba
, psb
);
863 return bcnt
+ non_sequential_xri
- rc
;
867 * lpfc_new_scsi_buf - Wrapper funciton for scsi buffer allocator
868 * @vport: The virtual port for which this call being executed.
869 * @num_to_allocate: The requested number of buffers to allocate.
871 * This routine wraps the actual SCSI buffer allocator function pointer from
872 * the lpfc_hba struct.
875 * int - number of scsi buffers that were allocated.
876 * 0 = failure, less than num_to_alloc is a partial failure.
879 lpfc_new_scsi_buf(struct lpfc_vport
*vport
, int num_to_alloc
)
881 return vport
->phba
->lpfc_new_scsi_buf(vport
, num_to_alloc
);
885 * lpfc_get_scsi_buf - Get a scsi buffer from lpfc_scsi_buf_list of the HBA
886 * @phba: The HBA for which this call is being executed.
888 * This routine removes a scsi buffer from head of @phba lpfc_scsi_buf_list list
889 * and returns to caller.
893 * Pointer to lpfc_scsi_buf - Success
895 static struct lpfc_scsi_buf
*
896 lpfc_get_scsi_buf(struct lpfc_hba
* phba
)
898 struct lpfc_scsi_buf
* lpfc_cmd
= NULL
;
899 struct list_head
*scsi_buf_list
= &phba
->lpfc_scsi_buf_list
;
900 unsigned long iflag
= 0;
902 spin_lock_irqsave(&phba
->scsi_buf_list_lock
, iflag
);
903 list_remove_head(scsi_buf_list
, lpfc_cmd
, struct lpfc_scsi_buf
, list
);
905 lpfc_cmd
->seg_cnt
= 0;
906 lpfc_cmd
->nonsg_phys
= 0;
907 lpfc_cmd
->prot_seg_cnt
= 0;
909 spin_unlock_irqrestore(&phba
->scsi_buf_list_lock
, iflag
);
914 * lpfc_release_scsi_buf - Return a scsi buffer back to hba scsi buf list
915 * @phba: The Hba for which this call is being executed.
916 * @psb: The scsi buffer which is being released.
918 * This routine releases @psb scsi buffer by adding it to tail of @phba
919 * lpfc_scsi_buf_list list.
922 lpfc_release_scsi_buf_s3(struct lpfc_hba
*phba
, struct lpfc_scsi_buf
*psb
)
924 unsigned long iflag
= 0;
926 spin_lock_irqsave(&phba
->scsi_buf_list_lock
, iflag
);
928 list_add_tail(&psb
->list
, &phba
->lpfc_scsi_buf_list
);
929 spin_unlock_irqrestore(&phba
->scsi_buf_list_lock
, iflag
);
933 * lpfc_release_scsi_buf_s4: Return a scsi buffer back to hba scsi buf list.
934 * @phba: The Hba for which this call is being executed.
935 * @psb: The scsi buffer which is being released.
937 * This routine releases @psb scsi buffer by adding it to tail of @phba
938 * lpfc_scsi_buf_list list. For SLI4 XRI's are tied to the scsi buffer
939 * and cannot be reused for at least RA_TOV amount of time if it was
943 lpfc_release_scsi_buf_s4(struct lpfc_hba
*phba
, struct lpfc_scsi_buf
*psb
)
945 unsigned long iflag
= 0;
947 if (psb
->status
== IOSTAT_LOCAL_REJECT
948 && psb
->result
== IOERR_ABORT_REQUESTED
) {
949 spin_lock_irqsave(&phba
->sli4_hba
.abts_scsi_buf_list_lock
,
952 list_add_tail(&psb
->list
,
953 &phba
->sli4_hba
.lpfc_abts_scsi_buf_list
);
954 spin_unlock_irqrestore(&phba
->sli4_hba
.abts_scsi_buf_list_lock
,
958 spin_lock_irqsave(&phba
->scsi_buf_list_lock
, iflag
);
960 list_add_tail(&psb
->list
, &phba
->lpfc_scsi_buf_list
);
961 spin_unlock_irqrestore(&phba
->scsi_buf_list_lock
, iflag
);
966 * lpfc_release_scsi_buf: Return a scsi buffer back to hba scsi buf list.
967 * @phba: The Hba for which this call is being executed.
968 * @psb: The scsi buffer which is being released.
970 * This routine releases @psb scsi buffer by adding it to tail of @phba
971 * lpfc_scsi_buf_list list.
974 lpfc_release_scsi_buf(struct lpfc_hba
*phba
, struct lpfc_scsi_buf
*psb
)
977 phba
->lpfc_release_scsi_buf(phba
, psb
);
981 * lpfc_scsi_prep_dma_buf_s3 - DMA mapping for scsi buffer to SLI3 IF spec
982 * @phba: The Hba for which this call is being executed.
983 * @lpfc_cmd: The scsi buffer which is going to be mapped.
985 * This routine does the pci dma mapping for scatter-gather list of scsi cmnd
986 * field of @lpfc_cmd for device with SLI-3 interface spec. This routine scans
987 * through sg elements and format the bdea. This routine also initializes all
988 * IOCB fields which are dependent on scsi command request buffer.
995 lpfc_scsi_prep_dma_buf_s3(struct lpfc_hba
*phba
, struct lpfc_scsi_buf
*lpfc_cmd
)
997 struct scsi_cmnd
*scsi_cmnd
= lpfc_cmd
->pCmd
;
998 struct scatterlist
*sgel
= NULL
;
999 struct fcp_cmnd
*fcp_cmnd
= lpfc_cmd
->fcp_cmnd
;
1000 struct ulp_bde64
*bpl
= lpfc_cmd
->fcp_bpl
;
1001 IOCB_t
*iocb_cmd
= &lpfc_cmd
->cur_iocbq
.iocb
;
1002 struct ulp_bde64
*data_bde
= iocb_cmd
->unsli3
.fcp_ext
.dbde
;
1003 dma_addr_t physaddr
;
1004 uint32_t num_bde
= 0;
1005 int nseg
, datadir
= scsi_cmnd
->sc_data_direction
;
1008 * There are three possibilities here - use scatter-gather segment, use
1009 * the single mapping, or neither. Start the lpfc command prep by
1010 * bumping the bpl beyond the fcp_cmnd and fcp_rsp regions to the first
1014 if (scsi_sg_count(scsi_cmnd
)) {
1016 * The driver stores the segment count returned from pci_map_sg
1017 * because this a count of dma-mappings used to map the use_sg
1018 * pages. They are not guaranteed to be the same for those
1019 * architectures that implement an IOMMU.
1022 nseg
= dma_map_sg(&phba
->pcidev
->dev
, scsi_sglist(scsi_cmnd
),
1023 scsi_sg_count(scsi_cmnd
), datadir
);
1024 if (unlikely(!nseg
))
1027 lpfc_cmd
->seg_cnt
= nseg
;
1028 if (lpfc_cmd
->seg_cnt
> phba
->cfg_sg_seg_cnt
) {
1029 printk(KERN_ERR
"%s: Too many sg segments from "
1030 "dma_map_sg. Config %d, seg_cnt %d\n",
1031 __func__
, phba
->cfg_sg_seg_cnt
,
1033 scsi_dma_unmap(scsi_cmnd
);
1038 * The driver established a maximum scatter-gather segment count
1039 * during probe that limits the number of sg elements in any
1040 * single scsi command. Just run through the seg_cnt and format
1042 * When using SLI-3 the driver will try to fit all the BDEs into
1043 * the IOCB. If it can't then the BDEs get added to a BPL as it
1044 * does for SLI-2 mode.
1046 scsi_for_each_sg(scsi_cmnd
, sgel
, nseg
, num_bde
) {
1047 physaddr
= sg_dma_address(sgel
);
1048 if (phba
->sli_rev
== 3 &&
1049 !(phba
->sli3_options
& LPFC_SLI3_BG_ENABLED
) &&
1050 nseg
<= LPFC_EXT_DATA_BDE_COUNT
) {
1051 data_bde
->tus
.f
.bdeFlags
= BUFF_TYPE_BDE_64
;
1052 data_bde
->tus
.f
.bdeSize
= sg_dma_len(sgel
);
1053 data_bde
->addrLow
= putPaddrLow(physaddr
);
1054 data_bde
->addrHigh
= putPaddrHigh(physaddr
);
1057 bpl
->tus
.f
.bdeFlags
= BUFF_TYPE_BDE_64
;
1058 bpl
->tus
.f
.bdeSize
= sg_dma_len(sgel
);
1059 bpl
->tus
.w
= le32_to_cpu(bpl
->tus
.w
);
1061 le32_to_cpu(putPaddrLow(physaddr
));
1063 le32_to_cpu(putPaddrHigh(physaddr
));
1070 * Finish initializing those IOCB fields that are dependent on the
1071 * scsi_cmnd request_buffer. Note that for SLI-2 the bdeSize is
1072 * explicitly reinitialized and for SLI-3 the extended bde count is
1073 * explicitly reinitialized since all iocb memory resources are reused.
1075 if (phba
->sli_rev
== 3 &&
1076 !(phba
->sli3_options
& LPFC_SLI3_BG_ENABLED
)) {
1077 if (num_bde
> LPFC_EXT_DATA_BDE_COUNT
) {
1079 * The extended IOCB format can only fit 3 BDE or a BPL.
1080 * This I/O has more than 3 BDE so the 1st data bde will
1081 * be a BPL that is filled in here.
1083 physaddr
= lpfc_cmd
->dma_handle
;
1084 data_bde
->tus
.f
.bdeFlags
= BUFF_TYPE_BLP_64
;
1085 data_bde
->tus
.f
.bdeSize
= (num_bde
*
1086 sizeof(struct ulp_bde64
));
1087 physaddr
+= (sizeof(struct fcp_cmnd
) +
1088 sizeof(struct fcp_rsp
) +
1089 (2 * sizeof(struct ulp_bde64
)));
1090 data_bde
->addrHigh
= putPaddrHigh(physaddr
);
1091 data_bde
->addrLow
= putPaddrLow(physaddr
);
1092 /* ebde count includes the responce bde and data bpl */
1093 iocb_cmd
->unsli3
.fcp_ext
.ebde_count
= 2;
1095 /* ebde count includes the responce bde and data bdes */
1096 iocb_cmd
->unsli3
.fcp_ext
.ebde_count
= (num_bde
+ 1);
1099 iocb_cmd
->un
.fcpi64
.bdl
.bdeSize
=
1100 ((num_bde
+ 2) * sizeof(struct ulp_bde64
));
1102 fcp_cmnd
->fcpDl
= cpu_to_be32(scsi_bufflen(scsi_cmnd
));
1105 * Due to difference in data length between DIF/non-DIF paths,
1106 * we need to set word 4 of IOCB here
1108 iocb_cmd
->un
.fcpi
.fcpi_parm
= scsi_bufflen(scsi_cmnd
);
1113 * Given a scsi cmnd, determine the BlockGuard profile to be used
1117 lpfc_sc_to_sli_prof(struct scsi_cmnd
*sc
)
1119 uint8_t guard_type
= scsi_host_get_guard(sc
->device
->host
);
1120 uint8_t ret_prof
= LPFC_PROF_INVALID
;
1122 if (guard_type
== SHOST_DIX_GUARD_IP
) {
1123 switch (scsi_get_prot_op(sc
)) {
1124 case SCSI_PROT_READ_INSERT
:
1125 case SCSI_PROT_WRITE_STRIP
:
1126 ret_prof
= LPFC_PROF_AST2
;
1129 case SCSI_PROT_READ_STRIP
:
1130 case SCSI_PROT_WRITE_INSERT
:
1131 ret_prof
= LPFC_PROF_A1
;
1134 case SCSI_PROT_READ_CONVERT
:
1135 case SCSI_PROT_WRITE_CONVERT
:
1136 ret_prof
= LPFC_PROF_AST1
;
1139 case SCSI_PROT_READ_PASS
:
1140 case SCSI_PROT_WRITE_PASS
:
1141 case SCSI_PROT_NORMAL
:
1143 printk(KERN_ERR
"Bad op/guard:%d/%d combination\n",
1144 scsi_get_prot_op(sc
), guard_type
);
1148 } else if (guard_type
== SHOST_DIX_GUARD_CRC
) {
1149 switch (scsi_get_prot_op(sc
)) {
1150 case SCSI_PROT_READ_STRIP
:
1151 case SCSI_PROT_WRITE_INSERT
:
1152 ret_prof
= LPFC_PROF_A1
;
1155 case SCSI_PROT_READ_PASS
:
1156 case SCSI_PROT_WRITE_PASS
:
1157 ret_prof
= LPFC_PROF_C1
;
1160 case SCSI_PROT_READ_CONVERT
:
1161 case SCSI_PROT_WRITE_CONVERT
:
1162 case SCSI_PROT_READ_INSERT
:
1163 case SCSI_PROT_WRITE_STRIP
:
1164 case SCSI_PROT_NORMAL
:
1166 printk(KERN_ERR
"Bad op/guard:%d/%d combination\n",
1167 scsi_get_prot_op(sc
), guard_type
);
1171 /* unsupported format */
1178 struct scsi_dif_tuple
{
1179 __be16 guard_tag
; /* Checksum */
1180 __be16 app_tag
; /* Opaque storage */
1181 __be32 ref_tag
; /* Target LBA or indirect LBA */
1184 static inline unsigned
1185 lpfc_cmd_blksize(struct scsi_cmnd
*sc
)
1187 return sc
->device
->sector_size
;
1191 * lpfc_get_cmd_dif_parms - Extract DIF parameters from SCSI command
1192 * @sc: in: SCSI command
1193 * @apptagmask: out: app tag mask
1194 * @apptagval: out: app tag value
1195 * @reftag: out: ref tag (reference tag)
1198 * Extract DIF parameters from the command if possible. Otherwise,
1199 * use default parameters.
1203 lpfc_get_cmd_dif_parms(struct scsi_cmnd
*sc
, uint16_t *apptagmask
,
1204 uint16_t *apptagval
, uint32_t *reftag
)
1206 struct scsi_dif_tuple
*spt
;
1207 unsigned char op
= scsi_get_prot_op(sc
);
1208 unsigned int protcnt
= scsi_prot_sg_count(sc
);
1211 if (protcnt
&& (op
== SCSI_PROT_WRITE_STRIP
||
1212 op
== SCSI_PROT_WRITE_PASS
||
1213 op
== SCSI_PROT_WRITE_CONVERT
)) {
1216 spt
= page_address(sg_page(scsi_prot_sglist(sc
))) +
1217 scsi_prot_sglist(sc
)[0].offset
;
1220 *reftag
= cpu_to_be32(spt
->ref_tag
);
1223 /* SBC defines ref tag to be lower 32bits of LBA */
1224 *reftag
= (uint32_t) (0xffffffff & scsi_get_lba(sc
));
1231 * This function sets up buffer list for protection groups of
1232 * type LPFC_PG_TYPE_NO_DIF
1234 * This is usually used when the HBA is instructed to generate
1235 * DIFs and insert them into data stream (or strip DIF from
1236 * incoming data stream)
1238 * The buffer list consists of just one protection group described
1240 * +-------------------------+
1241 * start of prot group --> | PDE_1 |
1242 * +-------------------------+
1244 * +-------------------------+
1245 * |more Data BDE's ... (opt)|
1246 * +-------------------------+
1248 * @sc: pointer to scsi command we're working on
1249 * @bpl: pointer to buffer list for protection groups
1250 * @datacnt: number of segments of data that have been dma mapped
1252 * Note: Data s/g buffers have been dma mapped
1255 lpfc_bg_setup_bpl(struct lpfc_hba
*phba
, struct scsi_cmnd
*sc
,
1256 struct ulp_bde64
*bpl
, int datasegcnt
)
1258 struct scatterlist
*sgde
= NULL
; /* s/g data entry */
1259 struct lpfc_pde
*pde1
= NULL
;
1260 dma_addr_t physaddr
;
1261 int i
= 0, num_bde
= 0;
1262 int datadir
= sc
->sc_data_direction
;
1263 int prof
= LPFC_PROF_INVALID
;
1266 uint16_t apptagmask
, apptagval
;
1268 pde1
= (struct lpfc_pde
*) bpl
;
1269 prof
= lpfc_sc_to_sli_prof(sc
);
1271 if (prof
== LPFC_PROF_INVALID
)
1274 /* extract some info from the scsi command for PDE1*/
1275 blksize
= lpfc_cmd_blksize(sc
);
1276 lpfc_get_cmd_dif_parms(sc
, &apptagmask
, &apptagval
, &reftag
);
1278 /* setup PDE1 with what we have */
1279 lpfc_pde_set_bg_parms(pde1
, LPFC_PDE1_DESCRIPTOR
, prof
, blksize
,
1281 lpfc_pde_set_dif_parms(pde1
, apptagmask
, apptagval
, reftag
);
1286 /* assumption: caller has already run dma_map_sg on command data */
1287 scsi_for_each_sg(sc
, sgde
, datasegcnt
, i
) {
1288 physaddr
= sg_dma_address(sgde
);
1289 bpl
->addrLow
= le32_to_cpu(putPaddrLow(physaddr
));
1290 bpl
->addrHigh
= le32_to_cpu(putPaddrHigh(physaddr
));
1291 bpl
->tus
.f
.bdeSize
= sg_dma_len(sgde
);
1292 if (datadir
== DMA_TO_DEVICE
)
1293 bpl
->tus
.f
.bdeFlags
= BUFF_TYPE_BDE_64
;
1295 bpl
->tus
.f
.bdeFlags
= BUFF_TYPE_BDE_64I
;
1296 bpl
->tus
.w
= le32_to_cpu(bpl
->tus
.w
);
1306 * This function sets up buffer list for protection groups of
1307 * type LPFC_PG_TYPE_DIF_BUF
1309 * This is usually used when DIFs are in their own buffers,
1310 * separate from the data. The HBA can then by instructed
1311 * to place the DIFs in the outgoing stream. For read operations,
1312 * The HBA could extract the DIFs and place it in DIF buffers.
1314 * The buffer list for this type consists of one or more of the
1315 * protection groups described below:
1316 * +-------------------------+
1317 * start of first prot group --> | PDE_1 |
1318 * +-------------------------+
1319 * | PDE_3 (Prot BDE) |
1320 * +-------------------------+
1322 * +-------------------------+
1323 * |more Data BDE's ... (opt)|
1324 * +-------------------------+
1325 * start of new prot group --> | PDE_1 |
1326 * +-------------------------+
1328 * +-------------------------+
1330 * @sc: pointer to scsi command we're working on
1331 * @bpl: pointer to buffer list for protection groups
1332 * @datacnt: number of segments of data that have been dma mapped
1333 * @protcnt: number of segment of protection data that have been dma mapped
1335 * Note: It is assumed that both data and protection s/g buffers have been
1339 lpfc_bg_setup_bpl_prot(struct lpfc_hba
*phba
, struct scsi_cmnd
*sc
,
1340 struct ulp_bde64
*bpl
, int datacnt
, int protcnt
)
1342 struct scatterlist
*sgde
= NULL
; /* s/g data entry */
1343 struct scatterlist
*sgpe
= NULL
; /* s/g prot entry */
1344 struct lpfc_pde
*pde1
= NULL
;
1345 struct ulp_bde64
*prot_bde
= NULL
;
1346 dma_addr_t dataphysaddr
, protphysaddr
;
1347 unsigned short curr_data
= 0, curr_prot
= 0;
1348 unsigned int split_offset
, protgroup_len
;
1349 unsigned int protgrp_blks
, protgrp_bytes
;
1350 unsigned int remainder
, subtotal
;
1351 int prof
= LPFC_PROF_INVALID
;
1352 int datadir
= sc
->sc_data_direction
;
1353 unsigned char pgdone
= 0, alldone
= 0;
1356 uint16_t apptagmask
, apptagval
;
1359 sgpe
= scsi_prot_sglist(sc
);
1360 sgde
= scsi_sglist(sc
);
1362 if (!sgpe
|| !sgde
) {
1363 lpfc_printf_log(phba
, KERN_ERR
, LOG_FCP
,
1364 "9020 Invalid s/g entry: data=0x%p prot=0x%p\n",
1369 prof
= lpfc_sc_to_sli_prof(sc
);
1370 if (prof
== LPFC_PROF_INVALID
)
1373 /* extract some info from the scsi command for PDE1*/
1374 blksize
= lpfc_cmd_blksize(sc
);
1375 lpfc_get_cmd_dif_parms(sc
, &apptagmask
, &apptagval
, &reftag
);
1379 /* setup the first PDE_1 */
1380 pde1
= (struct lpfc_pde
*) bpl
;
1382 lpfc_pde_set_bg_parms(pde1
, LPFC_PDE1_DESCRIPTOR
, prof
, blksize
,
1384 lpfc_pde_set_dif_parms(pde1
, apptagmask
, apptagval
, reftag
);
1389 /* setup the first BDE that points to protection buffer */
1390 prot_bde
= (struct ulp_bde64
*) bpl
;
1391 protphysaddr
= sg_dma_address(sgpe
);
1392 prot_bde
->addrLow
= le32_to_cpu(putPaddrLow(protphysaddr
));
1393 prot_bde
->addrHigh
= le32_to_cpu(putPaddrHigh(protphysaddr
));
1394 protgroup_len
= sg_dma_len(sgpe
);
1397 /* must be integer multiple of the DIF block length */
1398 BUG_ON(protgroup_len
% 8);
1400 protgrp_blks
= protgroup_len
/ 8;
1401 protgrp_bytes
= protgrp_blks
* blksize
;
1403 prot_bde
->tus
.f
.bdeSize
= protgroup_len
;
1404 if (datadir
== DMA_TO_DEVICE
)
1405 prot_bde
->tus
.f
.bdeFlags
= BUFF_TYPE_BDE_64
;
1407 prot_bde
->tus
.f
.bdeFlags
= BUFF_TYPE_BDE_64I
;
1408 prot_bde
->tus
.w
= le32_to_cpu(bpl
->tus
.w
);
1413 /* setup BDE's for data blocks associated with DIF data */
1415 subtotal
= 0; /* total bytes processed for current prot grp */
1418 printk(KERN_ERR
"%s Invalid data segment\n",
1423 dataphysaddr
= sg_dma_address(sgde
) + split_offset
;
1424 bpl
->addrLow
= le32_to_cpu(putPaddrLow(dataphysaddr
));
1425 bpl
->addrHigh
= le32_to_cpu(putPaddrHigh(dataphysaddr
));
1427 remainder
= sg_dma_len(sgde
) - split_offset
;
1429 if ((subtotal
+ remainder
) <= protgrp_bytes
) {
1430 /* we can use this whole buffer */
1431 bpl
->tus
.f
.bdeSize
= remainder
;
1434 if ((subtotal
+ remainder
) == protgrp_bytes
)
1437 /* must split this buffer with next prot grp */
1438 bpl
->tus
.f
.bdeSize
= protgrp_bytes
- subtotal
;
1439 split_offset
+= bpl
->tus
.f
.bdeSize
;
1442 subtotal
+= bpl
->tus
.f
.bdeSize
;
1444 if (datadir
== DMA_TO_DEVICE
)
1445 bpl
->tus
.f
.bdeFlags
= BUFF_TYPE_BDE_64
;
1447 bpl
->tus
.f
.bdeFlags
= BUFF_TYPE_BDE_64I
;
1448 bpl
->tus
.w
= le32_to_cpu(bpl
->tus
.w
);
1456 /* Move to the next s/g segment if possible */
1457 sgde
= sg_next(sgde
);
1461 if (curr_prot
== protcnt
) {
1463 } else if (curr_prot
< protcnt
) {
1464 /* advance to next prot buffer */
1465 sgpe
= sg_next(sgpe
);
1468 /* update the reference tag */
1469 reftag
+= protgrp_blks
;
1471 /* if we're here, we have a bug */
1472 printk(KERN_ERR
"BLKGRD: bug in %s\n", __func__
);
1483 * Given a SCSI command that supports DIF, determine composition of protection
1484 * groups involved in setting up buffer lists
1487 * for DIF (for both read and write)
1490 lpfc_prot_group_type(struct lpfc_hba
*phba
, struct scsi_cmnd
*sc
)
1492 int ret
= LPFC_PG_TYPE_INVALID
;
1493 unsigned char op
= scsi_get_prot_op(sc
);
1496 case SCSI_PROT_READ_STRIP
:
1497 case SCSI_PROT_WRITE_INSERT
:
1498 ret
= LPFC_PG_TYPE_NO_DIF
;
1500 case SCSI_PROT_READ_INSERT
:
1501 case SCSI_PROT_WRITE_STRIP
:
1502 case SCSI_PROT_READ_PASS
:
1503 case SCSI_PROT_WRITE_PASS
:
1504 case SCSI_PROT_WRITE_CONVERT
:
1505 case SCSI_PROT_READ_CONVERT
:
1506 ret
= LPFC_PG_TYPE_DIF_BUF
;
1509 lpfc_printf_log(phba
, KERN_ERR
, LOG_FCP
,
1510 "9021 Unsupported protection op:%d\n", op
);
1518 * This is the protection/DIF aware version of
1519 * lpfc_scsi_prep_dma_buf(). It may be a good idea to combine the
1520 * two functions eventually, but for now, it's here
1523 lpfc_bg_scsi_prep_dma_buf(struct lpfc_hba
*phba
,
1524 struct lpfc_scsi_buf
*lpfc_cmd
)
1526 struct scsi_cmnd
*scsi_cmnd
= lpfc_cmd
->pCmd
;
1527 struct fcp_cmnd
*fcp_cmnd
= lpfc_cmd
->fcp_cmnd
;
1528 struct ulp_bde64
*bpl
= lpfc_cmd
->fcp_bpl
;
1529 IOCB_t
*iocb_cmd
= &lpfc_cmd
->cur_iocbq
.iocb
;
1530 uint32_t num_bde
= 0;
1531 int datasegcnt
, protsegcnt
, datadir
= scsi_cmnd
->sc_data_direction
;
1532 int prot_group_type
= 0;
1537 * Start the lpfc command prep by bumping the bpl beyond fcp_cmnd
1538 * fcp_rsp regions to the first data bde entry
1541 if (scsi_sg_count(scsi_cmnd
)) {
1543 * The driver stores the segment count returned from pci_map_sg
1544 * because this a count of dma-mappings used to map the use_sg
1545 * pages. They are not guaranteed to be the same for those
1546 * architectures that implement an IOMMU.
1548 datasegcnt
= dma_map_sg(&phba
->pcidev
->dev
,
1549 scsi_sglist(scsi_cmnd
),
1550 scsi_sg_count(scsi_cmnd
), datadir
);
1551 if (unlikely(!datasegcnt
))
1554 lpfc_cmd
->seg_cnt
= datasegcnt
;
1555 if (lpfc_cmd
->seg_cnt
> phba
->cfg_sg_seg_cnt
) {
1556 printk(KERN_ERR
"%s: Too many sg segments from "
1557 "dma_map_sg. Config %d, seg_cnt %d\n",
1558 __func__
, phba
->cfg_sg_seg_cnt
,
1560 scsi_dma_unmap(scsi_cmnd
);
1564 prot_group_type
= lpfc_prot_group_type(phba
, scsi_cmnd
);
1566 switch (prot_group_type
) {
1567 case LPFC_PG_TYPE_NO_DIF
:
1568 num_bde
= lpfc_bg_setup_bpl(phba
, scsi_cmnd
, bpl
,
1570 /* we shoud have 2 or more entries in buffer list */
1574 case LPFC_PG_TYPE_DIF_BUF
:{
1576 * This type indicates that protection buffers are
1577 * passed to the driver, so that needs to be prepared
1580 protsegcnt
= dma_map_sg(&phba
->pcidev
->dev
,
1581 scsi_prot_sglist(scsi_cmnd
),
1582 scsi_prot_sg_count(scsi_cmnd
), datadir
);
1583 if (unlikely(!protsegcnt
)) {
1584 scsi_dma_unmap(scsi_cmnd
);
1588 lpfc_cmd
->prot_seg_cnt
= protsegcnt
;
1589 if (lpfc_cmd
->prot_seg_cnt
1590 > phba
->cfg_prot_sg_seg_cnt
) {
1591 printk(KERN_ERR
"%s: Too many prot sg segments "
1592 "from dma_map_sg. Config %d,"
1593 "prot_seg_cnt %d\n", __func__
,
1594 phba
->cfg_prot_sg_seg_cnt
,
1595 lpfc_cmd
->prot_seg_cnt
);
1596 dma_unmap_sg(&phba
->pcidev
->dev
,
1597 scsi_prot_sglist(scsi_cmnd
),
1598 scsi_prot_sg_count(scsi_cmnd
),
1600 scsi_dma_unmap(scsi_cmnd
);
1604 num_bde
= lpfc_bg_setup_bpl_prot(phba
, scsi_cmnd
, bpl
,
1605 datasegcnt
, protsegcnt
);
1606 /* we shoud have 3 or more entries in buffer list */
1611 case LPFC_PG_TYPE_INVALID
:
1613 lpfc_printf_log(phba
, KERN_ERR
, LOG_FCP
,
1614 "9022 Unexpected protection group %i\n",
1621 * Finish initializing those IOCB fields that are dependent on the
1622 * scsi_cmnd request_buffer. Note that the bdeSize is explicitly
1623 * reinitialized since all iocb memory resources are used many times
1624 * for transmit, receive, and continuation bpl's.
1626 iocb_cmd
->un
.fcpi64
.bdl
.bdeSize
= (2 * sizeof(struct ulp_bde64
));
1627 iocb_cmd
->un
.fcpi64
.bdl
.bdeSize
+= (num_bde
* sizeof(struct ulp_bde64
));
1628 iocb_cmd
->ulpBdeCount
= 1;
1629 iocb_cmd
->ulpLe
= 1;
1631 fcpdl
= scsi_bufflen(scsi_cmnd
);
1633 if (scsi_get_prot_type(scsi_cmnd
) == SCSI_PROT_DIF_TYPE1
) {
1635 * We are in DIF Type 1 mode
1636 * Every data block has a 8 byte DIF (trailer)
1637 * attached to it. Must ajust FCP data length
1639 blksize
= lpfc_cmd_blksize(scsi_cmnd
);
1640 diflen
= (fcpdl
/ blksize
) * 8;
1643 fcp_cmnd
->fcpDl
= be32_to_cpu(fcpdl
);
1646 * Due to difference in data length between DIF/non-DIF paths,
1647 * we need to set word 4 of IOCB here
1649 iocb_cmd
->un
.fcpi
.fcpi_parm
= fcpdl
;
1653 lpfc_printf_log(phba
, KERN_ERR
, LOG_FCP
,
1654 "9023 Could not setup all needed BDE's"
1655 "prot_group_type=%d, num_bde=%d\n",
1656 prot_group_type
, num_bde
);
1661 * This function checks for BlockGuard errors detected by
1662 * the HBA. In case of errors, the ASC/ASCQ fields in the
1663 * sense buffer will be set accordingly, paired with
1664 * ILLEGAL_REQUEST to signal to the kernel that the HBA
1665 * detected corruption.
1668 * 0 - No error found
1669 * 1 - BlockGuard error found
1670 * -1 - Internal error (bad profile, ...etc)
1673 lpfc_parse_bg_err(struct lpfc_hba
*phba
, struct lpfc_scsi_buf
*lpfc_cmd
,
1674 struct lpfc_iocbq
*pIocbOut
)
1676 struct scsi_cmnd
*cmd
= lpfc_cmd
->pCmd
;
1677 struct sli3_bg_fields
*bgf
= &pIocbOut
->iocb
.unsli3
.sli3_bg
;
1679 uint32_t bghm
= bgf
->bghm
;
1680 uint32_t bgstat
= bgf
->bgstat
;
1681 uint64_t failing_sector
= 0;
1683 printk(KERN_ERR
"BG ERROR in cmd 0x%x lba 0x%llx blk cnt 0x%x "
1684 "bgstat=0x%x bghm=0x%x\n",
1685 cmd
->cmnd
[0], (unsigned long long)scsi_get_lba(cmd
),
1686 blk_rq_sectors(cmd
->request
), bgstat
, bghm
);
1688 spin_lock(&_dump_buf_lock
);
1689 if (!_dump_buf_done
) {
1690 printk(KERN_ERR
"Saving Data for %u blocks to debugfs\n",
1691 (cmd
->cmnd
[7] << 8 | cmd
->cmnd
[8]));
1692 lpfc_debug_save_data(cmd
);
1694 /* If we have a prot sgl, save the DIF buffer */
1695 if (lpfc_prot_group_type(phba
, cmd
) ==
1696 LPFC_PG_TYPE_DIF_BUF
) {
1697 printk(KERN_ERR
"Saving DIF for %u blocks to debugfs\n",
1698 (cmd
->cmnd
[7] << 8 | cmd
->cmnd
[8]));
1699 lpfc_debug_save_dif(cmd
);
1704 spin_unlock(&_dump_buf_lock
);
1706 if (lpfc_bgs_get_invalid_prof(bgstat
)) {
1707 cmd
->result
= ScsiResult(DID_ERROR
, 0);
1708 printk(KERN_ERR
"Invalid BlockGuard profile. bgstat:0x%x\n",
1714 if (lpfc_bgs_get_uninit_dif_block(bgstat
)) {
1715 cmd
->result
= ScsiResult(DID_ERROR
, 0);
1716 printk(KERN_ERR
"Invalid BlockGuard DIF Block. bgstat:0x%x\n",
1722 if (lpfc_bgs_get_guard_err(bgstat
)) {
1725 scsi_build_sense_buffer(1, cmd
->sense_buffer
, ILLEGAL_REQUEST
,
1727 cmd
->result
= DRIVER_SENSE
<< 24
1728 | ScsiResult(DID_ABORT
, SAM_STAT_CHECK_CONDITION
);
1729 phba
->bg_guard_err_cnt
++;
1730 printk(KERN_ERR
"BLKGRD: guard_tag error\n");
1733 if (lpfc_bgs_get_reftag_err(bgstat
)) {
1736 scsi_build_sense_buffer(1, cmd
->sense_buffer
, ILLEGAL_REQUEST
,
1738 cmd
->result
= DRIVER_SENSE
<< 24
1739 | ScsiResult(DID_ABORT
, SAM_STAT_CHECK_CONDITION
);
1741 phba
->bg_reftag_err_cnt
++;
1742 printk(KERN_ERR
"BLKGRD: ref_tag error\n");
1745 if (lpfc_bgs_get_apptag_err(bgstat
)) {
1748 scsi_build_sense_buffer(1, cmd
->sense_buffer
, ILLEGAL_REQUEST
,
1750 cmd
->result
= DRIVER_SENSE
<< 24
1751 | ScsiResult(DID_ABORT
, SAM_STAT_CHECK_CONDITION
);
1753 phba
->bg_apptag_err_cnt
++;
1754 printk(KERN_ERR
"BLKGRD: app_tag error\n");
1757 if (lpfc_bgs_get_hi_water_mark_present(bgstat
)) {
1759 * setup sense data descriptor 0 per SPC-4 as an information
1760 * field, and put the failing LBA in it
1762 cmd
->sense_buffer
[8] = 0; /* Information */
1763 cmd
->sense_buffer
[9] = 0xa; /* Add. length */
1764 bghm
/= cmd
->device
->sector_size
;
1766 failing_sector
= scsi_get_lba(cmd
);
1767 failing_sector
+= bghm
;
1769 put_unaligned_be64(failing_sector
, &cmd
->sense_buffer
[10]);
1773 /* No error was reported - problem in FW? */
1774 cmd
->result
= ScsiResult(DID_ERROR
, 0);
1775 printk(KERN_ERR
"BLKGRD: no errors reported!\n");
1783 * lpfc_scsi_prep_dma_buf_s4 - DMA mapping for scsi buffer to SLI4 IF spec
1784 * @phba: The Hba for which this call is being executed.
1785 * @lpfc_cmd: The scsi buffer which is going to be mapped.
1787 * This routine does the pci dma mapping for scatter-gather list of scsi cmnd
1788 * field of @lpfc_cmd for device with SLI-4 interface spec.
1795 lpfc_scsi_prep_dma_buf_s4(struct lpfc_hba
*phba
, struct lpfc_scsi_buf
*lpfc_cmd
)
1797 struct scsi_cmnd
*scsi_cmnd
= lpfc_cmd
->pCmd
;
1798 struct scatterlist
*sgel
= NULL
;
1799 struct fcp_cmnd
*fcp_cmnd
= lpfc_cmd
->fcp_cmnd
;
1800 struct sli4_sge
*sgl
= (struct sli4_sge
*)lpfc_cmd
->fcp_bpl
;
1801 IOCB_t
*iocb_cmd
= &lpfc_cmd
->cur_iocbq
.iocb
;
1802 dma_addr_t physaddr
;
1803 uint32_t num_bde
= 0;
1805 uint32_t dma_offset
= 0;
1809 * There are three possibilities here - use scatter-gather segment, use
1810 * the single mapping, or neither. Start the lpfc command prep by
1811 * bumping the bpl beyond the fcp_cmnd and fcp_rsp regions to the first
1814 if (scsi_sg_count(scsi_cmnd
)) {
1816 * The driver stores the segment count returned from pci_map_sg
1817 * because this a count of dma-mappings used to map the use_sg
1818 * pages. They are not guaranteed to be the same for those
1819 * architectures that implement an IOMMU.
1822 nseg
= scsi_dma_map(scsi_cmnd
);
1823 if (unlikely(!nseg
))
1826 /* clear the last flag in the fcp_rsp map entry */
1827 sgl
->word2
= le32_to_cpu(sgl
->word2
);
1828 bf_set(lpfc_sli4_sge_last
, sgl
, 0);
1829 sgl
->word2
= cpu_to_le32(sgl
->word2
);
1832 lpfc_cmd
->seg_cnt
= nseg
;
1833 if (lpfc_cmd
->seg_cnt
> phba
->cfg_sg_seg_cnt
) {
1834 printk(KERN_ERR
"%s: Too many sg segments from "
1835 "dma_map_sg. Config %d, seg_cnt %d\n",
1836 __func__
, phba
->cfg_sg_seg_cnt
,
1838 scsi_dma_unmap(scsi_cmnd
);
1843 * The driver established a maximum scatter-gather segment count
1844 * during probe that limits the number of sg elements in any
1845 * single scsi command. Just run through the seg_cnt and format
1847 * When using SLI-3 the driver will try to fit all the BDEs into
1848 * the IOCB. If it can't then the BDEs get added to a BPL as it
1849 * does for SLI-2 mode.
1851 scsi_for_each_sg(scsi_cmnd
, sgel
, nseg
, num_bde
) {
1852 physaddr
= sg_dma_address(sgel
);
1853 dma_len
= sg_dma_len(sgel
);
1854 bf_set(lpfc_sli4_sge_len
, sgl
, sg_dma_len(sgel
));
1855 sgl
->addr_lo
= cpu_to_le32(putPaddrLow(physaddr
));
1856 sgl
->addr_hi
= cpu_to_le32(putPaddrHigh(physaddr
));
1857 if ((num_bde
+ 1) == nseg
)
1858 bf_set(lpfc_sli4_sge_last
, sgl
, 1);
1860 bf_set(lpfc_sli4_sge_last
, sgl
, 0);
1861 bf_set(lpfc_sli4_sge_offset
, sgl
, dma_offset
);
1862 sgl
->word2
= cpu_to_le32(sgl
->word2
);
1863 sgl
->word3
= cpu_to_le32(sgl
->word3
);
1864 dma_offset
+= dma_len
;
1869 /* clear the last flag in the fcp_rsp map entry */
1870 sgl
->word2
= le32_to_cpu(sgl
->word2
);
1871 bf_set(lpfc_sli4_sge_last
, sgl
, 1);
1872 sgl
->word2
= cpu_to_le32(sgl
->word2
);
1876 * Finish initializing those IOCB fields that are dependent on the
1877 * scsi_cmnd request_buffer. Note that for SLI-2 the bdeSize is
1878 * explicitly reinitialized.
1879 * all iocb memory resources are reused.
1881 fcp_cmnd
->fcpDl
= cpu_to_be32(scsi_bufflen(scsi_cmnd
));
1884 * Due to difference in data length between DIF/non-DIF paths,
1885 * we need to set word 4 of IOCB here
1887 iocb_cmd
->un
.fcpi
.fcpi_parm
= scsi_bufflen(scsi_cmnd
);
1892 * lpfc_scsi_prep_dma_buf - Wrapper function for DMA mapping of scsi buffer
1893 * @phba: The Hba for which this call is being executed.
1894 * @lpfc_cmd: The scsi buffer which is going to be mapped.
1896 * This routine wraps the actual DMA mapping function pointer from the
1904 lpfc_scsi_prep_dma_buf(struct lpfc_hba
*phba
, struct lpfc_scsi_buf
*lpfc_cmd
)
1906 return phba
->lpfc_scsi_prep_dma_buf(phba
, lpfc_cmd
);
1910 * lpfc_send_scsi_error_event - Posts an event when there is SCSI error
1911 * @phba: Pointer to hba context object.
1912 * @vport: Pointer to vport object.
1913 * @lpfc_cmd: Pointer to lpfc scsi command which reported the error.
1914 * @rsp_iocb: Pointer to response iocb object which reported error.
1916 * This function posts an event when there is a SCSI command reporting
1917 * error from the scsi device.
1920 lpfc_send_scsi_error_event(struct lpfc_hba
*phba
, struct lpfc_vport
*vport
,
1921 struct lpfc_scsi_buf
*lpfc_cmd
, struct lpfc_iocbq
*rsp_iocb
) {
1922 struct scsi_cmnd
*cmnd
= lpfc_cmd
->pCmd
;
1923 struct fcp_rsp
*fcprsp
= lpfc_cmd
->fcp_rsp
;
1924 uint32_t resp_info
= fcprsp
->rspStatus2
;
1925 uint32_t scsi_status
= fcprsp
->rspStatus3
;
1926 uint32_t fcpi_parm
= rsp_iocb
->iocb
.un
.fcpi
.fcpi_parm
;
1927 struct lpfc_fast_path_event
*fast_path_evt
= NULL
;
1928 struct lpfc_nodelist
*pnode
= lpfc_cmd
->rdata
->pnode
;
1929 unsigned long flags
;
1931 /* If there is queuefull or busy condition send a scsi event */
1932 if ((cmnd
->result
== SAM_STAT_TASK_SET_FULL
) ||
1933 (cmnd
->result
== SAM_STAT_BUSY
)) {
1934 fast_path_evt
= lpfc_alloc_fast_evt(phba
);
1937 fast_path_evt
->un
.scsi_evt
.event_type
=
1939 fast_path_evt
->un
.scsi_evt
.subcategory
=
1940 (cmnd
->result
== SAM_STAT_TASK_SET_FULL
) ?
1941 LPFC_EVENT_QFULL
: LPFC_EVENT_DEVBSY
;
1942 fast_path_evt
->un
.scsi_evt
.lun
= cmnd
->device
->lun
;
1943 memcpy(&fast_path_evt
->un
.scsi_evt
.wwpn
,
1944 &pnode
->nlp_portname
, sizeof(struct lpfc_name
));
1945 memcpy(&fast_path_evt
->un
.scsi_evt
.wwnn
,
1946 &pnode
->nlp_nodename
, sizeof(struct lpfc_name
));
1947 } else if ((resp_info
& SNS_LEN_VALID
) && fcprsp
->rspSnsLen
&&
1948 ((cmnd
->cmnd
[0] == READ_10
) || (cmnd
->cmnd
[0] == WRITE_10
))) {
1949 fast_path_evt
= lpfc_alloc_fast_evt(phba
);
1952 fast_path_evt
->un
.check_cond_evt
.scsi_event
.event_type
=
1954 fast_path_evt
->un
.check_cond_evt
.scsi_event
.subcategory
=
1955 LPFC_EVENT_CHECK_COND
;
1956 fast_path_evt
->un
.check_cond_evt
.scsi_event
.lun
=
1958 memcpy(&fast_path_evt
->un
.check_cond_evt
.scsi_event
.wwpn
,
1959 &pnode
->nlp_portname
, sizeof(struct lpfc_name
));
1960 memcpy(&fast_path_evt
->un
.check_cond_evt
.scsi_event
.wwnn
,
1961 &pnode
->nlp_nodename
, sizeof(struct lpfc_name
));
1962 fast_path_evt
->un
.check_cond_evt
.sense_key
=
1963 cmnd
->sense_buffer
[2] & 0xf;
1964 fast_path_evt
->un
.check_cond_evt
.asc
= cmnd
->sense_buffer
[12];
1965 fast_path_evt
->un
.check_cond_evt
.ascq
= cmnd
->sense_buffer
[13];
1966 } else if ((cmnd
->sc_data_direction
== DMA_FROM_DEVICE
) &&
1968 ((be32_to_cpu(fcprsp
->rspResId
) != fcpi_parm
) ||
1969 ((scsi_status
== SAM_STAT_GOOD
) &&
1970 !(resp_info
& (RESID_UNDER
| RESID_OVER
))))) {
1972 * If status is good or resid does not match with fcp_param and
1973 * there is valid fcpi_parm, then there is a read_check error
1975 fast_path_evt
= lpfc_alloc_fast_evt(phba
);
1978 fast_path_evt
->un
.read_check_error
.header
.event_type
=
1979 FC_REG_FABRIC_EVENT
;
1980 fast_path_evt
->un
.read_check_error
.header
.subcategory
=
1981 LPFC_EVENT_FCPRDCHKERR
;
1982 memcpy(&fast_path_evt
->un
.read_check_error
.header
.wwpn
,
1983 &pnode
->nlp_portname
, sizeof(struct lpfc_name
));
1984 memcpy(&fast_path_evt
->un
.read_check_error
.header
.wwnn
,
1985 &pnode
->nlp_nodename
, sizeof(struct lpfc_name
));
1986 fast_path_evt
->un
.read_check_error
.lun
= cmnd
->device
->lun
;
1987 fast_path_evt
->un
.read_check_error
.opcode
= cmnd
->cmnd
[0];
1988 fast_path_evt
->un
.read_check_error
.fcpiparam
=
1993 fast_path_evt
->vport
= vport
;
1994 spin_lock_irqsave(&phba
->hbalock
, flags
);
1995 list_add_tail(&fast_path_evt
->work_evt
.evt_listp
, &phba
->work_list
);
1996 spin_unlock_irqrestore(&phba
->hbalock
, flags
);
1997 lpfc_worker_wake_up(phba
);
2002 * lpfc_scsi_unprep_dma_buf - Un-map DMA mapping of SG-list for dev
2003 * @phba: The HBA for which this call is being executed.
2004 * @psb: The scsi buffer which is going to be un-mapped.
2006 * This routine does DMA un-mapping of scatter gather list of scsi command
2007 * field of @lpfc_cmd for device with SLI-3 interface spec.
2010 lpfc_scsi_unprep_dma_buf(struct lpfc_hba
*phba
, struct lpfc_scsi_buf
*psb
)
2013 * There are only two special cases to consider. (1) the scsi command
2014 * requested scatter-gather usage or (2) the scsi command allocated
2015 * a request buffer, but did not request use_sg. There is a third
2016 * case, but it does not require resource deallocation.
2018 if (psb
->seg_cnt
> 0)
2019 scsi_dma_unmap(psb
->pCmd
);
2020 if (psb
->prot_seg_cnt
> 0)
2021 dma_unmap_sg(&phba
->pcidev
->dev
, scsi_prot_sglist(psb
->pCmd
),
2022 scsi_prot_sg_count(psb
->pCmd
),
2023 psb
->pCmd
->sc_data_direction
);
2027 * lpfc_handler_fcp_err - FCP response handler
2028 * @vport: The virtual port for which this call is being executed.
2029 * @lpfc_cmd: Pointer to lpfc_scsi_buf data structure.
2030 * @rsp_iocb: The response IOCB which contains FCP error.
2032 * This routine is called to process response IOCB with status field
2033 * IOSTAT_FCP_RSP_ERROR. This routine sets result field of scsi command
2034 * based upon SCSI and FCP error.
2037 lpfc_handle_fcp_err(struct lpfc_vport
*vport
, struct lpfc_scsi_buf
*lpfc_cmd
,
2038 struct lpfc_iocbq
*rsp_iocb
)
2040 struct scsi_cmnd
*cmnd
= lpfc_cmd
->pCmd
;
2041 struct fcp_cmnd
*fcpcmd
= lpfc_cmd
->fcp_cmnd
;
2042 struct fcp_rsp
*fcprsp
= lpfc_cmd
->fcp_rsp
;
2043 uint32_t fcpi_parm
= rsp_iocb
->iocb
.un
.fcpi
.fcpi_parm
;
2044 uint32_t resp_info
= fcprsp
->rspStatus2
;
2045 uint32_t scsi_status
= fcprsp
->rspStatus3
;
2047 uint32_t host_status
= DID_OK
;
2048 uint32_t rsplen
= 0;
2049 uint32_t logit
= LOG_FCP
| LOG_FCP_ERROR
;
2053 * If this is a task management command, there is no
2054 * scsi packet associated with this lpfc_cmd. The driver
2057 if (fcpcmd
->fcpCntl2
) {
2062 if ((resp_info
& SNS_LEN_VALID
) && fcprsp
->rspSnsLen
) {
2063 uint32_t snslen
= be32_to_cpu(fcprsp
->rspSnsLen
);
2064 if (snslen
> SCSI_SENSE_BUFFERSIZE
)
2065 snslen
= SCSI_SENSE_BUFFERSIZE
;
2067 if (resp_info
& RSP_LEN_VALID
)
2068 rsplen
= be32_to_cpu(fcprsp
->rspRspLen
);
2069 memcpy(cmnd
->sense_buffer
, &fcprsp
->rspInfo0
+ rsplen
, snslen
);
2071 lp
= (uint32_t *)cmnd
->sense_buffer
;
2073 if (!scsi_status
&& (resp_info
& RESID_UNDER
))
2076 lpfc_printf_vlog(vport
, KERN_WARNING
, logit
,
2077 "9024 FCP command x%x failed: x%x SNS x%x x%x "
2078 "Data: x%x x%x x%x x%x x%x\n",
2079 cmnd
->cmnd
[0], scsi_status
,
2080 be32_to_cpu(*lp
), be32_to_cpu(*(lp
+ 3)), resp_info
,
2081 be32_to_cpu(fcprsp
->rspResId
),
2082 be32_to_cpu(fcprsp
->rspSnsLen
),
2083 be32_to_cpu(fcprsp
->rspRspLen
),
2086 if (resp_info
& RSP_LEN_VALID
) {
2087 rsplen
= be32_to_cpu(fcprsp
->rspRspLen
);
2088 if ((rsplen
!= 0 && rsplen
!= 4 && rsplen
!= 8) ||
2089 (fcprsp
->rspInfo3
!= RSP_NO_FAILURE
)) {
2090 host_status
= DID_ERROR
;
2095 scsi_set_resid(cmnd
, 0);
2096 if (resp_info
& RESID_UNDER
) {
2097 scsi_set_resid(cmnd
, be32_to_cpu(fcprsp
->rspResId
));
2099 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_FCP
,
2100 "9025 FCP Read Underrun, expected %d, "
2101 "residual %d Data: x%x x%x x%x\n",
2102 be32_to_cpu(fcpcmd
->fcpDl
),
2103 scsi_get_resid(cmnd
), fcpi_parm
, cmnd
->cmnd
[0],
2107 * If there is an under run check if under run reported by
2108 * storage array is same as the under run reported by HBA.
2109 * If this is not same, there is a dropped frame.
2111 if ((cmnd
->sc_data_direction
== DMA_FROM_DEVICE
) &&
2113 (scsi_get_resid(cmnd
) != fcpi_parm
)) {
2114 lpfc_printf_vlog(vport
, KERN_WARNING
,
2115 LOG_FCP
| LOG_FCP_ERROR
,
2116 "9026 FCP Read Check Error "
2117 "and Underrun Data: x%x x%x x%x x%x\n",
2118 be32_to_cpu(fcpcmd
->fcpDl
),
2119 scsi_get_resid(cmnd
), fcpi_parm
,
2121 scsi_set_resid(cmnd
, scsi_bufflen(cmnd
));
2122 host_status
= DID_ERROR
;
2125 * The cmnd->underflow is the minimum number of bytes that must
2126 * be transfered for this command. Provided a sense condition
2127 * is not present, make sure the actual amount transferred is at
2128 * least the underflow value or fail.
2130 if (!(resp_info
& SNS_LEN_VALID
) &&
2131 (scsi_status
== SAM_STAT_GOOD
) &&
2132 (scsi_bufflen(cmnd
) - scsi_get_resid(cmnd
)
2133 < cmnd
->underflow
)) {
2134 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_FCP
,
2135 "9027 FCP command x%x residual "
2136 "underrun converted to error "
2137 "Data: x%x x%x x%x\n",
2138 cmnd
->cmnd
[0], scsi_bufflen(cmnd
),
2139 scsi_get_resid(cmnd
), cmnd
->underflow
);
2140 host_status
= DID_ERROR
;
2142 } else if (resp_info
& RESID_OVER
) {
2143 lpfc_printf_vlog(vport
, KERN_WARNING
, LOG_FCP
,
2144 "9028 FCP command x%x residual overrun error. "
2145 "Data: x%x x%x \n", cmnd
->cmnd
[0],
2146 scsi_bufflen(cmnd
), scsi_get_resid(cmnd
));
2147 host_status
= DID_ERROR
;
2150 * Check SLI validation that all the transfer was actually done
2151 * (fcpi_parm should be zero). Apply check only to reads.
2153 } else if ((scsi_status
== SAM_STAT_GOOD
) && fcpi_parm
&&
2154 (cmnd
->sc_data_direction
== DMA_FROM_DEVICE
)) {
2155 lpfc_printf_vlog(vport
, KERN_WARNING
, LOG_FCP
| LOG_FCP_ERROR
,
2156 "9029 FCP Read Check Error Data: "
2157 "x%x x%x x%x x%x\n",
2158 be32_to_cpu(fcpcmd
->fcpDl
),
2159 be32_to_cpu(fcprsp
->rspResId
),
2160 fcpi_parm
, cmnd
->cmnd
[0]);
2161 host_status
= DID_ERROR
;
2162 scsi_set_resid(cmnd
, scsi_bufflen(cmnd
));
2166 cmnd
->result
= ScsiResult(host_status
, scsi_status
);
2167 lpfc_send_scsi_error_event(vport
->phba
, vport
, lpfc_cmd
, rsp_iocb
);
2171 * lpfc_scsi_cmd_iocb_cmpl - Scsi cmnd IOCB completion routine
2172 * @phba: The Hba for which this call is being executed.
2173 * @pIocbIn: The command IOCBQ for the scsi cmnd.
2174 * @pIocbOut: The response IOCBQ for the scsi cmnd.
2176 * This routine assigns scsi command result by looking into response IOCB
2177 * status field appropriately. This routine handles QUEUE FULL condition as
2178 * well by ramping down device queue depth.
2181 lpfc_scsi_cmd_iocb_cmpl(struct lpfc_hba
*phba
, struct lpfc_iocbq
*pIocbIn
,
2182 struct lpfc_iocbq
*pIocbOut
)
2184 struct lpfc_scsi_buf
*lpfc_cmd
=
2185 (struct lpfc_scsi_buf
*) pIocbIn
->context1
;
2186 struct lpfc_vport
*vport
= pIocbIn
->vport
;
2187 struct lpfc_rport_data
*rdata
= lpfc_cmd
->rdata
;
2188 struct lpfc_nodelist
*pnode
= rdata
->pnode
;
2189 struct scsi_cmnd
*cmd
= lpfc_cmd
->pCmd
;
2191 struct scsi_device
*tmp_sdev
;
2193 unsigned long flags
;
2194 struct lpfc_fast_path_event
*fast_path_evt
;
2195 struct Scsi_Host
*shost
= cmd
->device
->host
;
2196 uint32_t queue_depth
, scsi_id
;
2198 lpfc_cmd
->result
= pIocbOut
->iocb
.un
.ulpWord
[4];
2199 lpfc_cmd
->status
= pIocbOut
->iocb
.ulpStatus
;
2200 if (pnode
&& NLP_CHK_NODE_ACT(pnode
))
2201 atomic_dec(&pnode
->cmd_pending
);
2203 if (lpfc_cmd
->status
) {
2204 if (lpfc_cmd
->status
== IOSTAT_LOCAL_REJECT
&&
2205 (lpfc_cmd
->result
& IOERR_DRVR_MASK
))
2206 lpfc_cmd
->status
= IOSTAT_DRIVER_REJECT
;
2207 else if (lpfc_cmd
->status
>= IOSTAT_CNT
)
2208 lpfc_cmd
->status
= IOSTAT_DEFAULT
;
2210 lpfc_printf_vlog(vport
, KERN_WARNING
, LOG_FCP
,
2211 "9030 FCP cmd x%x failed <%d/%d> "
2212 "status: x%x result: x%x Data: x%x x%x\n",
2214 cmd
->device
? cmd
->device
->id
: 0xffff,
2215 cmd
->device
? cmd
->device
->lun
: 0xffff,
2216 lpfc_cmd
->status
, lpfc_cmd
->result
,
2217 pIocbOut
->iocb
.ulpContext
,
2218 lpfc_cmd
->cur_iocbq
.iocb
.ulpIoTag
);
2220 switch (lpfc_cmd
->status
) {
2221 case IOSTAT_FCP_RSP_ERROR
:
2222 /* Call FCP RSP handler to determine result */
2223 lpfc_handle_fcp_err(vport
, lpfc_cmd
, pIocbOut
);
2225 case IOSTAT_NPORT_BSY
:
2226 case IOSTAT_FABRIC_BSY
:
2227 cmd
->result
= ScsiResult(DID_TRANSPORT_DISRUPTED
, 0);
2228 fast_path_evt
= lpfc_alloc_fast_evt(phba
);
2231 fast_path_evt
->un
.fabric_evt
.event_type
=
2232 FC_REG_FABRIC_EVENT
;
2233 fast_path_evt
->un
.fabric_evt
.subcategory
=
2234 (lpfc_cmd
->status
== IOSTAT_NPORT_BSY
) ?
2235 LPFC_EVENT_PORT_BUSY
: LPFC_EVENT_FABRIC_BUSY
;
2236 if (pnode
&& NLP_CHK_NODE_ACT(pnode
)) {
2237 memcpy(&fast_path_evt
->un
.fabric_evt
.wwpn
,
2238 &pnode
->nlp_portname
,
2239 sizeof(struct lpfc_name
));
2240 memcpy(&fast_path_evt
->un
.fabric_evt
.wwnn
,
2241 &pnode
->nlp_nodename
,
2242 sizeof(struct lpfc_name
));
2244 fast_path_evt
->vport
= vport
;
2245 fast_path_evt
->work_evt
.evt
=
2246 LPFC_EVT_FASTPATH_MGMT_EVT
;
2247 spin_lock_irqsave(&phba
->hbalock
, flags
);
2248 list_add_tail(&fast_path_evt
->work_evt
.evt_listp
,
2250 spin_unlock_irqrestore(&phba
->hbalock
, flags
);
2251 lpfc_worker_wake_up(phba
);
2253 case IOSTAT_LOCAL_REJECT
:
2254 if (lpfc_cmd
->result
== IOERR_INVALID_RPI
||
2255 lpfc_cmd
->result
== IOERR_NO_RESOURCES
||
2256 lpfc_cmd
->result
== IOERR_ABORT_REQUESTED
) {
2257 cmd
->result
= ScsiResult(DID_REQUEUE
, 0);
2261 if ((lpfc_cmd
->result
== IOERR_RX_DMA_FAILED
||
2262 lpfc_cmd
->result
== IOERR_TX_DMA_FAILED
) &&
2263 pIocbOut
->iocb
.unsli3
.sli3_bg
.bgstat
) {
2264 if (scsi_get_prot_op(cmd
) != SCSI_PROT_NORMAL
) {
2266 * This is a response for a BG enabled
2267 * cmd. Parse BG error
2269 lpfc_parse_bg_err(phba
, lpfc_cmd
,
2273 lpfc_printf_vlog(vport
, KERN_WARNING
,
2275 "9031 non-zero BGSTAT "
2276 "on unprotected cmd");
2280 /* else: fall through */
2282 cmd
->result
= ScsiResult(DID_ERROR
, 0);
2286 if (!pnode
|| !NLP_CHK_NODE_ACT(pnode
)
2287 || (pnode
->nlp_state
!= NLP_STE_MAPPED_NODE
))
2288 cmd
->result
= ScsiResult(DID_TRANSPORT_DISRUPTED
,
2291 cmd
->result
= ScsiResult(DID_OK
, 0);
2294 if (cmd
->result
|| lpfc_cmd
->fcp_rsp
->rspSnsLen
) {
2295 uint32_t *lp
= (uint32_t *)cmd
->sense_buffer
;
2297 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_FCP
,
2298 "0710 Iodone <%d/%d> cmd %p, error "
2299 "x%x SNS x%x x%x Data: x%x x%x\n",
2300 cmd
->device
->id
, cmd
->device
->lun
, cmd
,
2301 cmd
->result
, *lp
, *(lp
+ 3), cmd
->retries
,
2302 scsi_get_resid(cmd
));
2305 lpfc_update_stats(phba
, lpfc_cmd
);
2306 result
= cmd
->result
;
2307 if (vport
->cfg_max_scsicmpl_time
&&
2308 time_after(jiffies
, lpfc_cmd
->start_time
+
2309 msecs_to_jiffies(vport
->cfg_max_scsicmpl_time
))) {
2310 spin_lock_irqsave(shost
->host_lock
, flags
);
2311 if (pnode
&& NLP_CHK_NODE_ACT(pnode
)) {
2312 if (pnode
->cmd_qdepth
>
2313 atomic_read(&pnode
->cmd_pending
) &&
2314 (atomic_read(&pnode
->cmd_pending
) >
2315 LPFC_MIN_TGT_QDEPTH
) &&
2316 ((cmd
->cmnd
[0] == READ_10
) ||
2317 (cmd
->cmnd
[0] == WRITE_10
)))
2319 atomic_read(&pnode
->cmd_pending
);
2321 pnode
->last_change_time
= jiffies
;
2323 spin_unlock_irqrestore(shost
->host_lock
, flags
);
2324 } else if (pnode
&& NLP_CHK_NODE_ACT(pnode
)) {
2325 if ((pnode
->cmd_qdepth
< LPFC_MAX_TGT_QDEPTH
) &&
2326 time_after(jiffies
, pnode
->last_change_time
+
2327 msecs_to_jiffies(LPFC_TGTQ_INTERVAL
))) {
2328 spin_lock_irqsave(shost
->host_lock
, flags
);
2329 pnode
->cmd_qdepth
+= pnode
->cmd_qdepth
*
2330 LPFC_TGTQ_RAMPUP_PCENT
/ 100;
2331 if (pnode
->cmd_qdepth
> LPFC_MAX_TGT_QDEPTH
)
2332 pnode
->cmd_qdepth
= LPFC_MAX_TGT_QDEPTH
;
2333 pnode
->last_change_time
= jiffies
;
2334 spin_unlock_irqrestore(shost
->host_lock
, flags
);
2338 lpfc_scsi_unprep_dma_buf(phba
, lpfc_cmd
);
2340 /* The sdev is not guaranteed to be valid post scsi_done upcall. */
2341 queue_depth
= cmd
->device
->queue_depth
;
2342 scsi_id
= cmd
->device
->id
;
2343 cmd
->scsi_done(cmd
);
2345 if (phba
->cfg_poll
& ENABLE_FCP_RING_POLLING
) {
2347 * If there is a thread waiting for command completion
2348 * wake up the thread.
2350 spin_lock_irqsave(shost
->host_lock
, flags
);
2351 lpfc_cmd
->pCmd
= NULL
;
2352 if (lpfc_cmd
->waitq
)
2353 wake_up(lpfc_cmd
->waitq
);
2354 spin_unlock_irqrestore(shost
->host_lock
, flags
);
2355 lpfc_release_scsi_buf(phba
, lpfc_cmd
);
2361 lpfc_rampup_queue_depth(vport
, queue_depth
);
2363 if (!result
&& pnode
&& NLP_CHK_NODE_ACT(pnode
) &&
2364 ((jiffies
- pnode
->last_ramp_up_time
) >
2365 LPFC_Q_RAMP_UP_INTERVAL
* HZ
) &&
2366 ((jiffies
- pnode
->last_q_full_time
) >
2367 LPFC_Q_RAMP_UP_INTERVAL
* HZ
) &&
2368 (vport
->cfg_lun_queue_depth
> queue_depth
)) {
2369 shost_for_each_device(tmp_sdev
, shost
) {
2370 if (vport
->cfg_lun_queue_depth
> tmp_sdev
->queue_depth
){
2371 if (tmp_sdev
->id
!= scsi_id
)
2373 if (tmp_sdev
->ordered_tags
)
2374 scsi_adjust_queue_depth(tmp_sdev
,
2376 tmp_sdev
->queue_depth
+1);
2378 scsi_adjust_queue_depth(tmp_sdev
,
2380 tmp_sdev
->queue_depth
+1);
2382 pnode
->last_ramp_up_time
= jiffies
;
2385 lpfc_send_sdev_queuedepth_change_event(phba
, vport
, pnode
,
2387 queue_depth
, queue_depth
+ 1);
2391 * Check for queue full. If the lun is reporting queue full, then
2392 * back off the lun queue depth to prevent target overloads.
2394 if (result
== SAM_STAT_TASK_SET_FULL
&& pnode
&&
2395 NLP_CHK_NODE_ACT(pnode
)) {
2396 pnode
->last_q_full_time
= jiffies
;
2398 shost_for_each_device(tmp_sdev
, shost
) {
2399 if (tmp_sdev
->id
!= scsi_id
)
2401 depth
= scsi_track_queue_full(tmp_sdev
,
2402 tmp_sdev
->queue_depth
- 1);
2405 * The queue depth cannot be lowered any more.
2406 * Modify the returned error code to store
2407 * the final depth value set by
2408 * scsi_track_queue_full.
2411 depth
= shost
->cmd_per_lun
;
2414 lpfc_printf_vlog(vport
, KERN_WARNING
, LOG_FCP
,
2415 "0711 detected queue full - lun queue "
2416 "depth adjusted to %d.\n", depth
);
2417 lpfc_send_sdev_queuedepth_change_event(phba
, vport
,
2424 * If there is a thread waiting for command completion
2425 * wake up the thread.
2427 spin_lock_irqsave(shost
->host_lock
, flags
);
2428 lpfc_cmd
->pCmd
= NULL
;
2429 if (lpfc_cmd
->waitq
)
2430 wake_up(lpfc_cmd
->waitq
);
2431 spin_unlock_irqrestore(shost
->host_lock
, flags
);
2433 lpfc_release_scsi_buf(phba
, lpfc_cmd
);
2437 * lpfc_fcpcmd_to_iocb - copy the fcp_cmd data into the IOCB
2438 * @data: A pointer to the immediate command data portion of the IOCB.
2439 * @fcp_cmnd: The FCP Command that is provided by the SCSI layer.
2441 * The routine copies the entire FCP command from @fcp_cmnd to @data while
2442 * byte swapping the data to big endian format for transmission on the wire.
2445 lpfc_fcpcmd_to_iocb(uint8_t *data
, struct fcp_cmnd
*fcp_cmnd
)
2448 for (i
= 0, j
= 0; i
< sizeof(struct fcp_cmnd
);
2449 i
+= sizeof(uint32_t), j
++) {
2450 ((uint32_t *)data
)[j
] = cpu_to_be32(((uint32_t *)fcp_cmnd
)[j
]);
2455 * lpfc_scsi_prep_cmnd - Wrapper func for convert scsi cmnd to FCP info unit
2456 * @vport: The virtual port for which this call is being executed.
2457 * @lpfc_cmd: The scsi command which needs to send.
2458 * @pnode: Pointer to lpfc_nodelist.
2460 * This routine initializes fcp_cmnd and iocb data structure from scsi command
2461 * to transfer for device with SLI3 interface spec.
2464 lpfc_scsi_prep_cmnd(struct lpfc_vport
*vport
, struct lpfc_scsi_buf
*lpfc_cmd
,
2465 struct lpfc_nodelist
*pnode
)
2467 struct lpfc_hba
*phba
= vport
->phba
;
2468 struct scsi_cmnd
*scsi_cmnd
= lpfc_cmd
->pCmd
;
2469 struct fcp_cmnd
*fcp_cmnd
= lpfc_cmd
->fcp_cmnd
;
2470 IOCB_t
*iocb_cmd
= &lpfc_cmd
->cur_iocbq
.iocb
;
2471 struct lpfc_iocbq
*piocbq
= &(lpfc_cmd
->cur_iocbq
);
2472 int datadir
= scsi_cmnd
->sc_data_direction
;
2475 if (!pnode
|| !NLP_CHK_NODE_ACT(pnode
))
2478 lpfc_cmd
->fcp_rsp
->rspSnsLen
= 0;
2479 /* clear task management bits */
2480 lpfc_cmd
->fcp_cmnd
->fcpCntl2
= 0;
2482 int_to_scsilun(lpfc_cmd
->pCmd
->device
->lun
,
2483 &lpfc_cmd
->fcp_cmnd
->fcp_lun
);
2485 memcpy(&fcp_cmnd
->fcpCdb
[0], scsi_cmnd
->cmnd
, 16);
2487 if (scsi_populate_tag_msg(scsi_cmnd
, tag
)) {
2489 case HEAD_OF_QUEUE_TAG
:
2490 fcp_cmnd
->fcpCntl1
= HEAD_OF_Q
;
2492 case ORDERED_QUEUE_TAG
:
2493 fcp_cmnd
->fcpCntl1
= ORDERED_Q
;
2496 fcp_cmnd
->fcpCntl1
= SIMPLE_Q
;
2500 fcp_cmnd
->fcpCntl1
= 0;
2503 * There are three possibilities here - use scatter-gather segment, use
2504 * the single mapping, or neither. Start the lpfc command prep by
2505 * bumping the bpl beyond the fcp_cmnd and fcp_rsp regions to the first
2508 if (scsi_sg_count(scsi_cmnd
)) {
2509 if (datadir
== DMA_TO_DEVICE
) {
2510 iocb_cmd
->ulpCommand
= CMD_FCP_IWRITE64_CR
;
2511 if (phba
->sli_rev
< LPFC_SLI_REV4
) {
2512 iocb_cmd
->un
.fcpi
.fcpi_parm
= 0;
2513 iocb_cmd
->ulpPU
= 0;
2515 iocb_cmd
->ulpPU
= PARM_READ_CHECK
;
2516 fcp_cmnd
->fcpCntl3
= WRITE_DATA
;
2517 phba
->fc4OutputRequests
++;
2519 iocb_cmd
->ulpCommand
= CMD_FCP_IREAD64_CR
;
2520 iocb_cmd
->ulpPU
= PARM_READ_CHECK
;
2521 fcp_cmnd
->fcpCntl3
= READ_DATA
;
2522 phba
->fc4InputRequests
++;
2525 iocb_cmd
->ulpCommand
= CMD_FCP_ICMND64_CR
;
2526 iocb_cmd
->un
.fcpi
.fcpi_parm
= 0;
2527 iocb_cmd
->ulpPU
= 0;
2528 fcp_cmnd
->fcpCntl3
= 0;
2529 phba
->fc4ControlRequests
++;
2531 if (phba
->sli_rev
== 3 &&
2532 !(phba
->sli3_options
& LPFC_SLI3_BG_ENABLED
))
2533 lpfc_fcpcmd_to_iocb(iocb_cmd
->unsli3
.fcp_ext
.icd
, fcp_cmnd
);
2535 * Finish initializing those IOCB fields that are independent
2536 * of the scsi_cmnd request_buffer
2538 piocbq
->iocb
.ulpContext
= pnode
->nlp_rpi
;
2539 if (pnode
->nlp_fcp_info
& NLP_FCP_2_DEVICE
)
2540 piocbq
->iocb
.ulpFCP2Rcvy
= 1;
2542 piocbq
->iocb
.ulpFCP2Rcvy
= 0;
2544 piocbq
->iocb
.ulpClass
= (pnode
->nlp_fcp_info
& 0x0f);
2545 piocbq
->context1
= lpfc_cmd
;
2546 piocbq
->iocb_cmpl
= lpfc_scsi_cmd_iocb_cmpl
;
2547 piocbq
->iocb
.ulpTimeout
= lpfc_cmd
->timeout
;
2548 piocbq
->vport
= vport
;
2552 * lpfc_scsi_prep_task_mgmt_cmnd - Convert SLI3 scsi TM cmd to FCP info unit
2553 * @vport: The virtual port for which this call is being executed.
2554 * @lpfc_cmd: Pointer to lpfc_scsi_buf data structure.
2555 * @lun: Logical unit number.
2556 * @task_mgmt_cmd: SCSI task management command.
2558 * This routine creates FCP information unit corresponding to @task_mgmt_cmd
2559 * for device with SLI-3 interface spec.
2566 lpfc_scsi_prep_task_mgmt_cmd(struct lpfc_vport
*vport
,
2567 struct lpfc_scsi_buf
*lpfc_cmd
,
2569 uint8_t task_mgmt_cmd
)
2571 struct lpfc_iocbq
*piocbq
;
2573 struct fcp_cmnd
*fcp_cmnd
;
2574 struct lpfc_rport_data
*rdata
= lpfc_cmd
->rdata
;
2575 struct lpfc_nodelist
*ndlp
= rdata
->pnode
;
2577 if (!ndlp
|| !NLP_CHK_NODE_ACT(ndlp
) ||
2578 ndlp
->nlp_state
!= NLP_STE_MAPPED_NODE
)
2581 piocbq
= &(lpfc_cmd
->cur_iocbq
);
2582 piocbq
->vport
= vport
;
2584 piocb
= &piocbq
->iocb
;
2586 fcp_cmnd
= lpfc_cmd
->fcp_cmnd
;
2587 /* Clear out any old data in the FCP command area */
2588 memset(fcp_cmnd
, 0, sizeof(struct fcp_cmnd
));
2589 int_to_scsilun(lun
, &fcp_cmnd
->fcp_lun
);
2590 fcp_cmnd
->fcpCntl2
= task_mgmt_cmd
;
2591 if (vport
->phba
->sli_rev
== 3 &&
2592 !(vport
->phba
->sli3_options
& LPFC_SLI3_BG_ENABLED
))
2593 lpfc_fcpcmd_to_iocb(piocb
->unsli3
.fcp_ext
.icd
, fcp_cmnd
);
2594 piocb
->ulpCommand
= CMD_FCP_ICMND64_CR
;
2595 piocb
->ulpContext
= ndlp
->nlp_rpi
;
2596 if (ndlp
->nlp_fcp_info
& NLP_FCP_2_DEVICE
) {
2597 piocb
->ulpFCP2Rcvy
= 1;
2599 piocb
->ulpClass
= (ndlp
->nlp_fcp_info
& 0x0f);
2601 /* ulpTimeout is only one byte */
2602 if (lpfc_cmd
->timeout
> 0xff) {
2604 * Do not timeout the command at the firmware level.
2605 * The driver will provide the timeout mechanism.
2607 piocb
->ulpTimeout
= 0;
2609 piocb
->ulpTimeout
= lpfc_cmd
->timeout
;
2611 if (vport
->phba
->sli_rev
== LPFC_SLI_REV4
)
2612 lpfc_sli4_set_rsp_sgl_last(vport
->phba
, lpfc_cmd
);
2618 * lpfc_scsi_api_table_setup - Set up scsi api fucntion jump table
2619 * @phba: The hba struct for which this call is being executed.
2620 * @dev_grp: The HBA PCI-Device group number.
2622 * This routine sets up the SCSI interface API function jump table in @phba
2624 * Returns: 0 - success, -ENODEV - failure.
2627 lpfc_scsi_api_table_setup(struct lpfc_hba
*phba
, uint8_t dev_grp
)
2630 phba
->lpfc_scsi_unprep_dma_buf
= lpfc_scsi_unprep_dma_buf
;
2631 phba
->lpfc_scsi_prep_cmnd
= lpfc_scsi_prep_cmnd
;
2632 phba
->lpfc_get_scsi_buf
= lpfc_get_scsi_buf
;
2635 case LPFC_PCI_DEV_LP
:
2636 phba
->lpfc_new_scsi_buf
= lpfc_new_scsi_buf_s3
;
2637 phba
->lpfc_scsi_prep_dma_buf
= lpfc_scsi_prep_dma_buf_s3
;
2638 phba
->lpfc_release_scsi_buf
= lpfc_release_scsi_buf_s3
;
2640 case LPFC_PCI_DEV_OC
:
2641 phba
->lpfc_new_scsi_buf
= lpfc_new_scsi_buf_s4
;
2642 phba
->lpfc_scsi_prep_dma_buf
= lpfc_scsi_prep_dma_buf_s4
;
2643 phba
->lpfc_release_scsi_buf
= lpfc_release_scsi_buf_s4
;
2646 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
2647 "1418 Invalid HBA PCI-device group: 0x%x\n",
2652 phba
->lpfc_get_scsi_buf
= lpfc_get_scsi_buf
;
2653 phba
->lpfc_rampdown_queue_depth
= lpfc_rampdown_queue_depth
;
2658 * lpfc_taskmgmt_def_cmpl - IOCB completion routine for task management command
2659 * @phba: The Hba for which this call is being executed.
2660 * @cmdiocbq: Pointer to lpfc_iocbq data structure.
2661 * @rspiocbq: Pointer to lpfc_iocbq data structure.
2663 * This routine is IOCB completion routine for device reset and target reset
2664 * routine. This routine release scsi buffer associated with lpfc_cmd.
2667 lpfc_tskmgmt_def_cmpl(struct lpfc_hba
*phba
,
2668 struct lpfc_iocbq
*cmdiocbq
,
2669 struct lpfc_iocbq
*rspiocbq
)
2671 struct lpfc_scsi_buf
*lpfc_cmd
=
2672 (struct lpfc_scsi_buf
*) cmdiocbq
->context1
;
2674 lpfc_release_scsi_buf(phba
, lpfc_cmd
);
2679 * lpfc_info - Info entry point of scsi_host_template data structure
2680 * @host: The scsi host for which this call is being executed.
2682 * This routine provides module information about hba.
2685 * Pointer to char - Success.
2688 lpfc_info(struct Scsi_Host
*host
)
2690 struct lpfc_vport
*vport
= (struct lpfc_vport
*) host
->hostdata
;
2691 struct lpfc_hba
*phba
= vport
->phba
;
2693 static char lpfcinfobuf
[384];
2695 memset(lpfcinfobuf
,0,384);
2696 if (phba
&& phba
->pcidev
){
2697 strncpy(lpfcinfobuf
, phba
->ModelDesc
, 256);
2698 len
= strlen(lpfcinfobuf
);
2699 snprintf(lpfcinfobuf
+ len
,
2701 " on PCI bus %02x device %02x irq %d",
2702 phba
->pcidev
->bus
->number
,
2703 phba
->pcidev
->devfn
,
2705 len
= strlen(lpfcinfobuf
);
2706 if (phba
->Port
[0]) {
2707 snprintf(lpfcinfobuf
+ len
,
2717 * lpfc_poll_rearm_time - Routine to modify fcp_poll timer of hba
2718 * @phba: The Hba for which this call is being executed.
2720 * This routine modifies fcp_poll_timer field of @phba by cfg_poll_tmo.
2721 * The default value of cfg_poll_tmo is 10 milliseconds.
2723 static __inline__
void lpfc_poll_rearm_timer(struct lpfc_hba
* phba
)
2725 unsigned long poll_tmo_expires
=
2726 (jiffies
+ msecs_to_jiffies(phba
->cfg_poll_tmo
));
2728 if (phba
->sli
.ring
[LPFC_FCP_RING
].txcmplq_cnt
)
2729 mod_timer(&phba
->fcp_poll_timer
,
2734 * lpfc_poll_start_timer - Routine to start fcp_poll_timer of HBA
2735 * @phba: The Hba for which this call is being executed.
2737 * This routine starts the fcp_poll_timer of @phba.
2739 void lpfc_poll_start_timer(struct lpfc_hba
* phba
)
2741 lpfc_poll_rearm_timer(phba
);
2745 * lpfc_poll_timeout - Restart polling timer
2746 * @ptr: Map to lpfc_hba data structure pointer.
2748 * This routine restarts fcp_poll timer, when FCP ring polling is enable
2749 * and FCP Ring interrupt is disable.
2752 void lpfc_poll_timeout(unsigned long ptr
)
2754 struct lpfc_hba
*phba
= (struct lpfc_hba
*) ptr
;
2756 if (phba
->cfg_poll
& ENABLE_FCP_RING_POLLING
) {
2757 lpfc_sli_poll_fcp_ring (phba
);
2758 if (phba
->cfg_poll
& DISABLE_FCP_RING_INT
)
2759 lpfc_poll_rearm_timer(phba
);
2764 * lpfc_queuecommand - scsi_host_template queuecommand entry point
2765 * @cmnd: Pointer to scsi_cmnd data structure.
2766 * @done: Pointer to done routine.
2768 * Driver registers this routine to scsi midlayer to submit a @cmd to process.
2769 * This routine prepares an IOCB from scsi command and provides to firmware.
2770 * The @done callback is invoked after driver finished processing the command.
2774 * SCSI_MLQUEUE_HOST_BUSY - Block all devices served by this host temporarily.
2777 lpfc_queuecommand(struct scsi_cmnd
*cmnd
, void (*done
) (struct scsi_cmnd
*))
2779 struct Scsi_Host
*shost
= cmnd
->device
->host
;
2780 struct lpfc_vport
*vport
= (struct lpfc_vport
*) shost
->hostdata
;
2781 struct lpfc_hba
*phba
= vport
->phba
;
2782 struct lpfc_rport_data
*rdata
= cmnd
->device
->hostdata
;
2783 struct lpfc_nodelist
*ndlp
= rdata
->pnode
;
2784 struct lpfc_scsi_buf
*lpfc_cmd
;
2785 struct fc_rport
*rport
= starget_to_rport(scsi_target(cmnd
->device
));
2788 err
= fc_remote_port_chkready(rport
);
2791 goto out_fail_command
;
2794 if (!(phba
->sli3_options
& LPFC_SLI3_BG_ENABLED
) &&
2795 scsi_get_prot_op(cmnd
) != SCSI_PROT_NORMAL
) {
2797 printk(KERN_ERR
"BLKGRD ERROR: rcvd protected cmd:%02x op:%02x "
2798 "str=%s without registering for BlockGuard - "
2799 "Rejecting command\n",
2800 cmnd
->cmnd
[0], scsi_get_prot_op(cmnd
),
2801 dif_op_str
[scsi_get_prot_op(cmnd
)]);
2802 goto out_fail_command
;
2806 * Catch race where our node has transitioned, but the
2807 * transport is still transitioning.
2809 if (!ndlp
|| !NLP_CHK_NODE_ACT(ndlp
)) {
2810 cmnd
->result
= ScsiResult(DID_TRANSPORT_DISRUPTED
, 0);
2811 goto out_fail_command
;
2813 if (vport
->cfg_max_scsicmpl_time
&&
2814 (atomic_read(&ndlp
->cmd_pending
) >= ndlp
->cmd_qdepth
))
2817 lpfc_cmd
= lpfc_get_scsi_buf(phba
);
2818 if (lpfc_cmd
== NULL
) {
2819 lpfc_rampdown_queue_depth(phba
);
2821 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_FCP
,
2822 "0707 driver's buffer pool is empty, "
2828 * Store the midlayer's command structure for the completion phase
2829 * and complete the command initialization.
2831 lpfc_cmd
->pCmd
= cmnd
;
2832 lpfc_cmd
->rdata
= rdata
;
2833 lpfc_cmd
->timeout
= 0;
2834 lpfc_cmd
->start_time
= jiffies
;
2835 cmnd
->host_scribble
= (unsigned char *)lpfc_cmd
;
2836 cmnd
->scsi_done
= done
;
2838 if (scsi_get_prot_op(cmnd
) != SCSI_PROT_NORMAL
) {
2839 lpfc_printf_vlog(vport
, KERN_WARNING
, LOG_BG
,
2840 "9033 BLKGRD: rcvd protected cmd:%02x op:%02x "
2842 cmnd
->cmnd
[0], scsi_get_prot_op(cmnd
),
2843 dif_op_str
[scsi_get_prot_op(cmnd
)]);
2844 lpfc_printf_vlog(vport
, KERN_WARNING
, LOG_BG
,
2845 "9034 BLKGRD: CDB: %02x %02x %02x %02x %02x "
2846 "%02x %02x %02x %02x %02x \n",
2847 cmnd
->cmnd
[0], cmnd
->cmnd
[1], cmnd
->cmnd
[2],
2848 cmnd
->cmnd
[3], cmnd
->cmnd
[4], cmnd
->cmnd
[5],
2849 cmnd
->cmnd
[6], cmnd
->cmnd
[7], cmnd
->cmnd
[8],
2851 if (cmnd
->cmnd
[0] == READ_10
)
2852 lpfc_printf_vlog(vport
, KERN_WARNING
, LOG_BG
,
2853 "9035 BLKGRD: READ @ sector %llu, "
2855 (unsigned long long)scsi_get_lba(cmnd
),
2856 blk_rq_sectors(cmnd
->request
));
2857 else if (cmnd
->cmnd
[0] == WRITE_10
)
2858 lpfc_printf_vlog(vport
, KERN_WARNING
, LOG_BG
,
2859 "9036 BLKGRD: WRITE @ sector %llu, "
2860 "count %u cmd=%p\n",
2861 (unsigned long long)scsi_get_lba(cmnd
),
2862 blk_rq_sectors(cmnd
->request
),
2865 err
= lpfc_bg_scsi_prep_dma_buf(phba
, lpfc_cmd
);
2867 lpfc_printf_vlog(vport
, KERN_WARNING
, LOG_BG
,
2868 "9038 BLKGRD: rcvd unprotected cmd:%02x op:%02x"
2870 cmnd
->cmnd
[0], scsi_get_prot_op(cmnd
),
2871 dif_op_str
[scsi_get_prot_op(cmnd
)]);
2872 lpfc_printf_vlog(vport
, KERN_WARNING
, LOG_BG
,
2873 "9039 BLKGRD: CDB: %02x %02x %02x %02x %02x "
2874 "%02x %02x %02x %02x %02x \n",
2875 cmnd
->cmnd
[0], cmnd
->cmnd
[1], cmnd
->cmnd
[2],
2876 cmnd
->cmnd
[3], cmnd
->cmnd
[4], cmnd
->cmnd
[5],
2877 cmnd
->cmnd
[6], cmnd
->cmnd
[7], cmnd
->cmnd
[8],
2879 if (cmnd
->cmnd
[0] == READ_10
)
2880 lpfc_printf_vlog(vport
, KERN_WARNING
, LOG_BG
,
2881 "9040 dbg: READ @ sector %llu, "
2883 (unsigned long long)scsi_get_lba(cmnd
),
2884 blk_rq_sectors(cmnd
->request
));
2885 else if (cmnd
->cmnd
[0] == WRITE_10
)
2886 lpfc_printf_vlog(vport
, KERN_WARNING
, LOG_BG
,
2887 "9041 dbg: WRITE @ sector %llu, "
2888 "count %u cmd=%p\n",
2889 (unsigned long long)scsi_get_lba(cmnd
),
2890 blk_rq_sectors(cmnd
->request
), cmnd
);
2892 lpfc_printf_vlog(vport
, KERN_WARNING
, LOG_BG
,
2893 "9042 dbg: parser not implemented\n");
2894 err
= lpfc_scsi_prep_dma_buf(phba
, lpfc_cmd
);
2898 goto out_host_busy_free_buf
;
2900 lpfc_scsi_prep_cmnd(vport
, lpfc_cmd
, ndlp
);
2902 atomic_inc(&ndlp
->cmd_pending
);
2903 err
= lpfc_sli_issue_iocb(phba
, LPFC_FCP_RING
,
2904 &lpfc_cmd
->cur_iocbq
, SLI_IOCB_RET_IOCB
);
2906 atomic_dec(&ndlp
->cmd_pending
);
2907 goto out_host_busy_free_buf
;
2909 if (phba
->cfg_poll
& ENABLE_FCP_RING_POLLING
) {
2910 lpfc_sli_poll_fcp_ring(phba
);
2911 if (phba
->cfg_poll
& DISABLE_FCP_RING_INT
)
2912 lpfc_poll_rearm_timer(phba
);
2917 out_host_busy_free_buf
:
2918 lpfc_scsi_unprep_dma_buf(phba
, lpfc_cmd
);
2919 lpfc_release_scsi_buf(phba
, lpfc_cmd
);
2921 return SCSI_MLQUEUE_HOST_BUSY
;
2929 * lpfc_block_error_handler - Routine to block error handler
2930 * @cmnd: Pointer to scsi_cmnd data structure.
2932 * This routine blocks execution till fc_rport state is not FC_PORSTAT_BLCOEKD.
2935 lpfc_block_error_handler(struct scsi_cmnd
*cmnd
)
2937 struct Scsi_Host
*shost
= cmnd
->device
->host
;
2938 struct fc_rport
*rport
= starget_to_rport(scsi_target(cmnd
->device
));
2940 spin_lock_irq(shost
->host_lock
);
2941 while (rport
->port_state
== FC_PORTSTATE_BLOCKED
) {
2942 spin_unlock_irq(shost
->host_lock
);
2944 spin_lock_irq(shost
->host_lock
);
2946 spin_unlock_irq(shost
->host_lock
);
2951 * lpfc_abort_handler - scsi_host_template eh_abort_handler entry point
2952 * @cmnd: Pointer to scsi_cmnd data structure.
2954 * This routine aborts @cmnd pending in base driver.
2961 lpfc_abort_handler(struct scsi_cmnd
*cmnd
)
2963 struct Scsi_Host
*shost
= cmnd
->device
->host
;
2964 struct lpfc_vport
*vport
= (struct lpfc_vport
*) shost
->hostdata
;
2965 struct lpfc_hba
*phba
= vport
->phba
;
2966 struct lpfc_iocbq
*iocb
;
2967 struct lpfc_iocbq
*abtsiocb
;
2968 struct lpfc_scsi_buf
*lpfc_cmd
;
2971 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(waitq
);
2973 lpfc_block_error_handler(cmnd
);
2974 lpfc_cmd
= (struct lpfc_scsi_buf
*)cmnd
->host_scribble
;
2978 * If pCmd field of the corresponding lpfc_scsi_buf structure
2979 * points to a different SCSI command, then the driver has
2980 * already completed this command, but the midlayer did not
2981 * see the completion before the eh fired. Just return
2984 iocb
= &lpfc_cmd
->cur_iocbq
;
2985 if (lpfc_cmd
->pCmd
!= cmnd
)
2988 BUG_ON(iocb
->context1
!= lpfc_cmd
);
2990 abtsiocb
= lpfc_sli_get_iocbq(phba
);
2991 if (abtsiocb
== NULL
) {
2997 * The scsi command can not be in txq and it is in flight because the
2998 * pCmd is still pointig at the SCSI command we have to abort. There
2999 * is no need to search the txcmplq. Just send an abort to the FW.
3003 icmd
= &abtsiocb
->iocb
;
3004 icmd
->un
.acxri
.abortType
= ABORT_TYPE_ABTS
;
3005 icmd
->un
.acxri
.abortContextTag
= cmd
->ulpContext
;
3006 if (phba
->sli_rev
== LPFC_SLI_REV4
)
3007 icmd
->un
.acxri
.abortIoTag
= iocb
->sli4_xritag
;
3009 icmd
->un
.acxri
.abortIoTag
= cmd
->ulpIoTag
;
3012 icmd
->ulpClass
= cmd
->ulpClass
;
3013 if (lpfc_is_link_up(phba
))
3014 icmd
->ulpCommand
= CMD_ABORT_XRI_CN
;
3016 icmd
->ulpCommand
= CMD_CLOSE_XRI_CN
;
3018 abtsiocb
->iocb_cmpl
= lpfc_sli_abort_fcp_cmpl
;
3019 abtsiocb
->vport
= vport
;
3020 if (lpfc_sli_issue_iocb(phba
, LPFC_FCP_RING
, abtsiocb
, 0) ==
3022 lpfc_sli_release_iocbq(phba
, abtsiocb
);
3027 if (phba
->cfg_poll
& DISABLE_FCP_RING_INT
)
3028 lpfc_sli_poll_fcp_ring (phba
);
3030 lpfc_cmd
->waitq
= &waitq
;
3031 /* Wait for abort to complete */
3032 wait_event_timeout(waitq
,
3033 (lpfc_cmd
->pCmd
!= cmnd
),
3034 (2*vport
->cfg_devloss_tmo
*HZ
));
3036 spin_lock_irq(shost
->host_lock
);
3037 lpfc_cmd
->waitq
= NULL
;
3038 spin_unlock_irq(shost
->host_lock
);
3040 if (lpfc_cmd
->pCmd
== cmnd
) {
3042 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_FCP
,
3043 "0748 abort handler timed out waiting "
3044 "for abort to complete: ret %#x, ID %d, "
3045 "LUN %d, snum %#lx\n",
3046 ret
, cmnd
->device
->id
, cmnd
->device
->lun
,
3047 cmnd
->serial_number
);
3051 lpfc_printf_vlog(vport
, KERN_WARNING
, LOG_FCP
,
3052 "0749 SCSI Layer I/O Abort Request Status x%x ID %d "
3053 "LUN %d snum %#lx\n", ret
, cmnd
->device
->id
,
3054 cmnd
->device
->lun
, cmnd
->serial_number
);
3059 lpfc_taskmgmt_name(uint8_t task_mgmt_cmd
)
3061 switch (task_mgmt_cmd
) {
3062 case FCP_ABORT_TASK_SET
:
3063 return "ABORT_TASK_SET";
3064 case FCP_CLEAR_TASK_SET
:
3065 return "FCP_CLEAR_TASK_SET";
3067 return "FCP_BUS_RESET";
3069 return "FCP_LUN_RESET";
3070 case FCP_TARGET_RESET
:
3071 return "FCP_TARGET_RESET";
3073 return "FCP_CLEAR_ACA";
3074 case FCP_TERMINATE_TASK
:
3075 return "FCP_TERMINATE_TASK";
3082 * lpfc_send_taskmgmt - Generic SCSI Task Mgmt Handler
3083 * @vport: The virtual port for which this call is being executed.
3084 * @rdata: Pointer to remote port local data
3085 * @tgt_id: Target ID of remote device.
3086 * @lun_id: Lun number for the TMF
3087 * @task_mgmt_cmd: type of TMF to send
3089 * This routine builds and sends a TMF (SCSI Task Mgmt Function) to
3097 lpfc_send_taskmgmt(struct lpfc_vport
*vport
, struct lpfc_rport_data
*rdata
,
3098 unsigned tgt_id
, unsigned int lun_id
,
3099 uint8_t task_mgmt_cmd
)
3101 struct lpfc_hba
*phba
= vport
->phba
;
3102 struct lpfc_scsi_buf
*lpfc_cmd
;
3103 struct lpfc_iocbq
*iocbq
;
3104 struct lpfc_iocbq
*iocbqrsp
;
3108 if (!rdata
->pnode
|| !NLP_CHK_NODE_ACT(rdata
->pnode
))
3111 lpfc_cmd
= lpfc_get_scsi_buf(phba
);
3112 if (lpfc_cmd
== NULL
)
3114 lpfc_cmd
->timeout
= 60;
3115 lpfc_cmd
->rdata
= rdata
;
3117 status
= lpfc_scsi_prep_task_mgmt_cmd(vport
, lpfc_cmd
, lun_id
,
3120 lpfc_release_scsi_buf(phba
, lpfc_cmd
);
3124 iocbq
= &lpfc_cmd
->cur_iocbq
;
3125 iocbqrsp
= lpfc_sli_get_iocbq(phba
);
3126 if (iocbqrsp
== NULL
) {
3127 lpfc_release_scsi_buf(phba
, lpfc_cmd
);
3131 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_FCP
,
3132 "0702 Issue %s to TGT %d LUN %d "
3133 "rpi x%x nlp_flag x%x\n",
3134 lpfc_taskmgmt_name(task_mgmt_cmd
), tgt_id
, lun_id
,
3135 rdata
->pnode
->nlp_rpi
, rdata
->pnode
->nlp_flag
);
3137 status
= lpfc_sli_issue_iocb_wait(phba
, LPFC_FCP_RING
,
3138 iocbq
, iocbqrsp
, lpfc_cmd
->timeout
);
3139 if (status
!= IOCB_SUCCESS
) {
3140 if (status
== IOCB_TIMEDOUT
) {
3141 iocbq
->iocb_cmpl
= lpfc_tskmgmt_def_cmpl
;
3142 ret
= TIMEOUT_ERROR
;
3145 lpfc_cmd
->status
= IOSTAT_DRIVER_REJECT
;
3146 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_FCP
,
3147 "0727 TMF %s to TGT %d LUN %d failed (%d, %d)\n",
3148 lpfc_taskmgmt_name(task_mgmt_cmd
),
3149 tgt_id
, lun_id
, iocbqrsp
->iocb
.ulpStatus
,
3150 iocbqrsp
->iocb
.un
.ulpWord
[4]);
3154 lpfc_sli_release_iocbq(phba
, iocbqrsp
);
3156 if (ret
!= TIMEOUT_ERROR
)
3157 lpfc_release_scsi_buf(phba
, lpfc_cmd
);
3163 * lpfc_chk_tgt_mapped -
3164 * @vport: The virtual port to check on
3165 * @cmnd: Pointer to scsi_cmnd data structure.
3167 * This routine delays until the scsi target (aka rport) for the
3168 * command exists (is present and logged in) or we declare it non-existent.
3175 lpfc_chk_tgt_mapped(struct lpfc_vport
*vport
, struct scsi_cmnd
*cmnd
)
3177 struct lpfc_rport_data
*rdata
= cmnd
->device
->hostdata
;
3178 struct lpfc_nodelist
*pnode
= rdata
->pnode
;
3179 unsigned long later
;
3182 * If target is not in a MAPPED state, delay until
3183 * target is rediscovered or devloss timeout expires.
3185 later
= msecs_to_jiffies(2 * vport
->cfg_devloss_tmo
* 1000) + jiffies
;
3186 while (time_after(later
, jiffies
)) {
3187 if (!pnode
|| !NLP_CHK_NODE_ACT(pnode
))
3189 if (pnode
->nlp_state
== NLP_STE_MAPPED_NODE
)
3191 schedule_timeout_uninterruptible(msecs_to_jiffies(500));
3192 rdata
= cmnd
->device
->hostdata
;
3195 pnode
= rdata
->pnode
;
3197 if (!pnode
|| !NLP_CHK_NODE_ACT(pnode
) ||
3198 (pnode
->nlp_state
!= NLP_STE_MAPPED_NODE
))
3204 * lpfc_reset_flush_io_context -
3205 * @vport: The virtual port (scsi_host) for the flush context
3206 * @tgt_id: If aborting by Target contect - specifies the target id
3207 * @lun_id: If aborting by Lun context - specifies the lun id
3208 * @context: specifies the context level to flush at.
3210 * After a reset condition via TMF, we need to flush orphaned i/o
3211 * contexts from the adapter. This routine aborts any contexts
3212 * outstanding, then waits for their completions. The wait is
3213 * bounded by devloss_tmo though.
3220 lpfc_reset_flush_io_context(struct lpfc_vport
*vport
, uint16_t tgt_id
,
3221 uint64_t lun_id
, lpfc_ctx_cmd context
)
3223 struct lpfc_hba
*phba
= vport
->phba
;
3224 unsigned long later
;
3227 cnt
= lpfc_sli_sum_iocb(vport
, tgt_id
, lun_id
, context
);
3229 lpfc_sli_abort_iocb(vport
, &phba
->sli
.ring
[phba
->sli
.fcp_ring
],
3230 tgt_id
, lun_id
, context
);
3231 later
= msecs_to_jiffies(2 * vport
->cfg_devloss_tmo
* 1000) + jiffies
;
3232 while (time_after(later
, jiffies
) && cnt
) {
3233 schedule_timeout_uninterruptible(msecs_to_jiffies(20));
3234 cnt
= lpfc_sli_sum_iocb(vport
, tgt_id
, lun_id
, context
);
3237 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_FCP
,
3238 "0724 I/O flush failure for context %s : cnt x%x\n",
3239 ((context
== LPFC_CTX_LUN
) ? "LUN" :
3240 ((context
== LPFC_CTX_TGT
) ? "TGT" :
3241 ((context
== LPFC_CTX_HOST
) ? "HOST" : "Unknown"))),
3249 * lpfc_device_reset_handler - scsi_host_template eh_device_reset entry point
3250 * @cmnd: Pointer to scsi_cmnd data structure.
3252 * This routine does a device reset by sending a LUN_RESET task management
3260 lpfc_device_reset_handler(struct scsi_cmnd
*cmnd
)
3262 struct Scsi_Host
*shost
= cmnd
->device
->host
;
3263 struct lpfc_vport
*vport
= (struct lpfc_vport
*) shost
->hostdata
;
3264 struct lpfc_rport_data
*rdata
= cmnd
->device
->hostdata
;
3265 struct lpfc_nodelist
*pnode
= rdata
->pnode
;
3266 unsigned tgt_id
= cmnd
->device
->id
;
3267 unsigned int lun_id
= cmnd
->device
->lun
;
3268 struct lpfc_scsi_event_header scsi_event
;
3271 lpfc_block_error_handler(cmnd
);
3273 status
= lpfc_chk_tgt_mapped(vport
, cmnd
);
3274 if (status
== FAILED
) {
3275 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_FCP
,
3276 "0721 Device Reset rport failure: rdata x%p\n", rdata
);
3280 scsi_event
.event_type
= FC_REG_SCSI_EVENT
;
3281 scsi_event
.subcategory
= LPFC_EVENT_LUNRESET
;
3282 scsi_event
.lun
= lun_id
;
3283 memcpy(scsi_event
.wwpn
, &pnode
->nlp_portname
, sizeof(struct lpfc_name
));
3284 memcpy(scsi_event
.wwnn
, &pnode
->nlp_nodename
, sizeof(struct lpfc_name
));
3286 fc_host_post_vendor_event(shost
, fc_get_event_number(),
3287 sizeof(scsi_event
), (char *)&scsi_event
, LPFC_NL_VENDOR_ID
);
3289 status
= lpfc_send_taskmgmt(vport
, rdata
, tgt_id
, lun_id
,
3292 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_FCP
,
3293 "0713 SCSI layer issued Device Reset (%d, %d) "
3294 "return x%x\n", tgt_id
, lun_id
, status
);
3297 * We have to clean up i/o as : they may be orphaned by the TMF;
3298 * or if the TMF failed, they may be in an indeterminate state.
3300 * We will report success if all the i/o aborts successfully.
3302 status
= lpfc_reset_flush_io_context(vport
, tgt_id
, lun_id
,
3308 * lpfc_target_reset_handler - scsi_host_template eh_target_reset entry point
3309 * @cmnd: Pointer to scsi_cmnd data structure.
3311 * This routine does a target reset by sending a TARGET_RESET task management
3319 lpfc_target_reset_handler(struct scsi_cmnd
*cmnd
)
3321 struct Scsi_Host
*shost
= cmnd
->device
->host
;
3322 struct lpfc_vport
*vport
= (struct lpfc_vport
*) shost
->hostdata
;
3323 struct lpfc_rport_data
*rdata
= cmnd
->device
->hostdata
;
3324 struct lpfc_nodelist
*pnode
= rdata
->pnode
;
3325 unsigned tgt_id
= cmnd
->device
->id
;
3326 unsigned int lun_id
= cmnd
->device
->lun
;
3327 struct lpfc_scsi_event_header scsi_event
;
3330 lpfc_block_error_handler(cmnd
);
3332 status
= lpfc_chk_tgt_mapped(vport
, cmnd
);
3333 if (status
== FAILED
) {
3334 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_FCP
,
3335 "0722 Target Reset rport failure: rdata x%p\n", rdata
);
3339 scsi_event
.event_type
= FC_REG_SCSI_EVENT
;
3340 scsi_event
.subcategory
= LPFC_EVENT_TGTRESET
;
3342 memcpy(scsi_event
.wwpn
, &pnode
->nlp_portname
, sizeof(struct lpfc_name
));
3343 memcpy(scsi_event
.wwnn
, &pnode
->nlp_nodename
, sizeof(struct lpfc_name
));
3345 fc_host_post_vendor_event(shost
, fc_get_event_number(),
3346 sizeof(scsi_event
), (char *)&scsi_event
, LPFC_NL_VENDOR_ID
);
3348 status
= lpfc_send_taskmgmt(vport
, rdata
, tgt_id
, lun_id
,
3351 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_FCP
,
3352 "0723 SCSI layer issued Target Reset (%d, %d) "
3353 "return x%x\n", tgt_id
, lun_id
, status
);
3356 * We have to clean up i/o as : they may be orphaned by the TMF;
3357 * or if the TMF failed, they may be in an indeterminate state.
3359 * We will report success if all the i/o aborts successfully.
3361 status
= lpfc_reset_flush_io_context(vport
, tgt_id
, lun_id
,
3367 * lpfc_bus_reset_handler - scsi_host_template eh_bus_reset_handler entry point
3368 * @cmnd: Pointer to scsi_cmnd data structure.
3370 * This routine does target reset to all targets on @cmnd->device->host.
3371 * This emulates Parallel SCSI Bus Reset Semantics.
3378 lpfc_bus_reset_handler(struct scsi_cmnd
*cmnd
)
3380 struct Scsi_Host
*shost
= cmnd
->device
->host
;
3381 struct lpfc_vport
*vport
= (struct lpfc_vport
*) shost
->hostdata
;
3382 struct lpfc_nodelist
*ndlp
= NULL
;
3383 struct lpfc_scsi_event_header scsi_event
;
3385 int ret
= SUCCESS
, status
, i
;
3387 scsi_event
.event_type
= FC_REG_SCSI_EVENT
;
3388 scsi_event
.subcategory
= LPFC_EVENT_BUSRESET
;
3390 memcpy(scsi_event
.wwpn
, &vport
->fc_portname
, sizeof(struct lpfc_name
));
3391 memcpy(scsi_event
.wwnn
, &vport
->fc_nodename
, sizeof(struct lpfc_name
));
3393 fc_host_post_vendor_event(shost
, fc_get_event_number(),
3394 sizeof(scsi_event
), (char *)&scsi_event
, LPFC_NL_VENDOR_ID
);
3396 lpfc_block_error_handler(cmnd
);
3399 * Since the driver manages a single bus device, reset all
3400 * targets known to the driver. Should any target reset
3401 * fail, this routine returns failure to the midlayer.
3403 for (i
= 0; i
< LPFC_MAX_TARGET
; i
++) {
3404 /* Search for mapped node by target ID */
3406 spin_lock_irq(shost
->host_lock
);
3407 list_for_each_entry(ndlp
, &vport
->fc_nodes
, nlp_listp
) {
3408 if (!NLP_CHK_NODE_ACT(ndlp
))
3410 if (ndlp
->nlp_state
== NLP_STE_MAPPED_NODE
&&
3411 ndlp
->nlp_sid
== i
&&
3417 spin_unlock_irq(shost
->host_lock
);
3421 status
= lpfc_send_taskmgmt(vport
, ndlp
->rport
->dd_data
,
3422 i
, 0, FCP_TARGET_RESET
);
3424 if (status
!= SUCCESS
) {
3425 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_FCP
,
3426 "0700 Bus Reset on target %d failed\n",
3432 * We have to clean up i/o as : they may be orphaned by the TMFs
3433 * above; or if any of the TMFs failed, they may be in an
3434 * indeterminate state.
3435 * We will report success if all the i/o aborts successfully.
3438 status
= lpfc_reset_flush_io_context(vport
, 0, 0, LPFC_CTX_HOST
);
3439 if (status
!= SUCCESS
)
3442 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_FCP
,
3443 "0714 SCSI layer issued Bus Reset Data: x%x\n", ret
);
3448 * lpfc_slave_alloc - scsi_host_template slave_alloc entry point
3449 * @sdev: Pointer to scsi_device.
3451 * This routine populates the cmds_per_lun count + 2 scsi_bufs into this host's
3452 * globally available list of scsi buffers. This routine also makes sure scsi
3453 * buffer is not allocated more than HBA limit conveyed to midlayer. This list
3454 * of scsi buffer exists for the lifetime of the driver.
3461 lpfc_slave_alloc(struct scsi_device
*sdev
)
3463 struct lpfc_vport
*vport
= (struct lpfc_vport
*) sdev
->host
->hostdata
;
3464 struct lpfc_hba
*phba
= vport
->phba
;
3465 struct fc_rport
*rport
= starget_to_rport(scsi_target(sdev
));
3467 uint32_t num_to_alloc
= 0;
3468 int num_allocated
= 0;
3470 if (!rport
|| fc_remote_port_chkready(rport
))
3473 sdev
->hostdata
= rport
->dd_data
;
3476 * Populate the cmds_per_lun count scsi_bufs into this host's globally
3477 * available list of scsi buffers. Don't allocate more than the
3478 * HBA limit conveyed to the midlayer via the host structure. The
3479 * formula accounts for the lun_queue_depth + error handlers + 1
3480 * extra. This list of scsi bufs exists for the lifetime of the driver.
3482 total
= phba
->total_scsi_bufs
;
3483 num_to_alloc
= vport
->cfg_lun_queue_depth
+ 2;
3485 /* Allow some exchanges to be available always to complete discovery */
3486 if (total
>= phba
->cfg_hba_queue_depth
- LPFC_DISC_IOCB_BUFF_COUNT
) {
3487 lpfc_printf_vlog(vport
, KERN_WARNING
, LOG_FCP
,
3488 "0704 At limitation of %d preallocated "
3489 "command buffers\n", total
);
3491 /* Allow some exchanges to be available always to complete discovery */
3492 } else if (total
+ num_to_alloc
>
3493 phba
->cfg_hba_queue_depth
- LPFC_DISC_IOCB_BUFF_COUNT
) {
3494 lpfc_printf_vlog(vport
, KERN_WARNING
, LOG_FCP
,
3495 "0705 Allocation request of %d "
3496 "command buffers will exceed max of %d. "
3497 "Reducing allocation request to %d.\n",
3498 num_to_alloc
, phba
->cfg_hba_queue_depth
,
3499 (phba
->cfg_hba_queue_depth
- total
));
3500 num_to_alloc
= phba
->cfg_hba_queue_depth
- total
;
3502 num_allocated
= lpfc_new_scsi_buf(vport
, num_to_alloc
);
3503 if (num_to_alloc
!= num_allocated
) {
3504 lpfc_printf_vlog(vport
, KERN_WARNING
, LOG_FCP
,
3505 "0708 Allocation request of %d "
3506 "command buffers did not succeed. "
3507 "Allocated %d buffers.\n",
3508 num_to_alloc
, num_allocated
);
3514 * lpfc_slave_configure - scsi_host_template slave_configure entry point
3515 * @sdev: Pointer to scsi_device.
3517 * This routine configures following items
3518 * - Tag command queuing support for @sdev if supported.
3519 * - Dev loss time out value of fc_rport.
3520 * - Enable SLI polling for fcp ring if ENABLE_FCP_RING_POLLING flag is set.
3526 lpfc_slave_configure(struct scsi_device
*sdev
)
3528 struct lpfc_vport
*vport
= (struct lpfc_vport
*) sdev
->host
->hostdata
;
3529 struct lpfc_hba
*phba
= vport
->phba
;
3530 struct fc_rport
*rport
= starget_to_rport(sdev
->sdev_target
);
3532 if (sdev
->tagged_supported
)
3533 scsi_activate_tcq(sdev
, vport
->cfg_lun_queue_depth
);
3535 scsi_deactivate_tcq(sdev
, vport
->cfg_lun_queue_depth
);
3538 * Initialize the fc transport attributes for the target
3539 * containing this scsi device. Also note that the driver's
3540 * target pointer is stored in the starget_data for the
3541 * driver's sysfs entry point functions.
3543 rport
->dev_loss_tmo
= vport
->cfg_devloss_tmo
;
3545 if (phba
->cfg_poll
& ENABLE_FCP_RING_POLLING
) {
3546 lpfc_sli_poll_fcp_ring(phba
);
3547 if (phba
->cfg_poll
& DISABLE_FCP_RING_INT
)
3548 lpfc_poll_rearm_timer(phba
);
3555 * lpfc_slave_destroy - slave_destroy entry point of SHT data structure
3556 * @sdev: Pointer to scsi_device.
3558 * This routine sets @sdev hostatdata filed to null.
3561 lpfc_slave_destroy(struct scsi_device
*sdev
)
3563 sdev
->hostdata
= NULL
;
3568 struct scsi_host_template lpfc_template
= {
3569 .module
= THIS_MODULE
,
3570 .name
= LPFC_DRIVER_NAME
,
3572 .queuecommand
= lpfc_queuecommand
,
3573 .eh_abort_handler
= lpfc_abort_handler
,
3574 .eh_device_reset_handler
= lpfc_device_reset_handler
,
3575 .eh_target_reset_handler
= lpfc_target_reset_handler
,
3576 .eh_bus_reset_handler
= lpfc_bus_reset_handler
,
3577 .slave_alloc
= lpfc_slave_alloc
,
3578 .slave_configure
= lpfc_slave_configure
,
3579 .slave_destroy
= lpfc_slave_destroy
,
3580 .scan_finished
= lpfc_scan_finished
,
3582 .sg_tablesize
= LPFC_DEFAULT_SG_SEG_CNT
,
3583 .cmd_per_lun
= LPFC_CMD_PER_LUN
,
3584 .use_clustering
= ENABLE_CLUSTERING
,
3585 .shost_attrs
= lpfc_hba_attrs
,
3586 .max_sectors
= 0xFFFF,
3589 struct scsi_host_template lpfc_vport_template
= {
3590 .module
= THIS_MODULE
,
3591 .name
= LPFC_DRIVER_NAME
,
3593 .queuecommand
= lpfc_queuecommand
,
3594 .eh_abort_handler
= lpfc_abort_handler
,
3595 .eh_device_reset_handler
= lpfc_device_reset_handler
,
3596 .eh_target_reset_handler
= lpfc_target_reset_handler
,
3597 .eh_bus_reset_handler
= lpfc_bus_reset_handler
,
3598 .slave_alloc
= lpfc_slave_alloc
,
3599 .slave_configure
= lpfc_slave_configure
,
3600 .slave_destroy
= lpfc_slave_destroy
,
3601 .scan_finished
= lpfc_scan_finished
,
3603 .sg_tablesize
= LPFC_DEFAULT_SG_SEG_CNT
,
3604 .cmd_per_lun
= LPFC_CMD_PER_LUN
,
3605 .use_clustering
= ENABLE_CLUSTERING
,
3606 .shost_attrs
= lpfc_vport_attrs
,
3607 .max_sectors
= 0xFFFF,