1 /*******************************************************************
2 * This file is part of the Emulex Linux Device Driver for *
3 * Fibre Channel Host Bus Adapters. *
4 * Copyright (C) 2004-2008 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_disc.h"
38 #include "lpfc_scsi.h"
40 #include "lpfc_logmsg.h"
41 #include "lpfc_crtn.h"
42 #include "lpfc_vport.h"
44 #define LPFC_RESET_WAIT 2
45 #define LPFC_ABORT_WAIT 2
49 static char *dif_op_str
[] = {
51 "SCSI_PROT_READ_INSERT",
52 "SCSI_PROT_WRITE_STRIP",
53 "SCSI_PROT_READ_STRIP",
54 "SCSI_PROT_WRITE_INSERT",
55 "SCSI_PROT_READ_PASS",
56 "SCSI_PROT_WRITE_PASS",
57 "SCSI_PROT_READ_CONVERT",
58 "SCSI_PROT_WRITE_CONVERT"
62 lpfc_debug_save_data(struct scsi_cmnd
*cmnd
)
65 struct scatterlist
*sgde
= scsi_sglist(cmnd
);
67 if (!_dump_buf_data
) {
68 printk(KERN_ERR
"BLKGRD ERROR %s _dump_buf_data is NULL\n",
75 printk(KERN_ERR
"BLKGRD ERROR: data scatterlist is null\n");
79 dst
= (void *) _dump_buf_data
;
82 memcpy(dst
, src
, sgde
->length
);
89 lpfc_debug_save_dif(struct scsi_cmnd
*cmnd
)
92 struct scatterlist
*sgde
= scsi_prot_sglist(cmnd
);
95 printk(KERN_ERR
"BLKGRD ERROR %s _dump_buf_data is NULL\n",
101 printk(KERN_ERR
"BLKGRD ERROR: prot scatterlist is null\n");
108 memcpy(dst
, src
, sgde
->length
);
110 sgde
= sg_next(sgde
);
115 * lpfc_update_stats: Update statistical data for the command completion.
116 * @phba: Pointer to HBA object.
117 * @lpfc_cmd: lpfc scsi command object pointer.
119 * This function is called when there is a command completion and this
120 * function updates the statistical data for the command completion.
123 lpfc_update_stats(struct lpfc_hba
*phba
, struct lpfc_scsi_buf
*lpfc_cmd
)
125 struct lpfc_rport_data
*rdata
= lpfc_cmd
->rdata
;
126 struct lpfc_nodelist
*pnode
= rdata
->pnode
;
127 struct scsi_cmnd
*cmd
= lpfc_cmd
->pCmd
;
129 struct Scsi_Host
*shost
= cmd
->device
->host
;
130 struct lpfc_vport
*vport
= (struct lpfc_vport
*) shost
->hostdata
;
131 unsigned long latency
;
137 latency
= jiffies_to_msecs((long)jiffies
- (long)lpfc_cmd
->start_time
);
139 spin_lock_irqsave(shost
->host_lock
, flags
);
140 if (!vport
->stat_data_enabled
||
141 vport
->stat_data_blocked
||
143 (phba
->bucket_type
== LPFC_NO_BUCKET
)) {
144 spin_unlock_irqrestore(shost
->host_lock
, flags
);
148 if (phba
->bucket_type
== LPFC_LINEAR_BUCKET
) {
149 i
= (latency
+ phba
->bucket_step
- 1 - phba
->bucket_base
)/
151 /* check array subscript bounds */
154 else if (i
>= LPFC_MAX_BUCKET_COUNT
)
155 i
= LPFC_MAX_BUCKET_COUNT
- 1;
157 for (i
= 0; i
< LPFC_MAX_BUCKET_COUNT
-1; i
++)
158 if (latency
<= (phba
->bucket_base
+
159 ((1<<i
)*phba
->bucket_step
)))
163 pnode
->lat_data
[i
].cmd_count
++;
164 spin_unlock_irqrestore(shost
->host_lock
, flags
);
168 * lpfc_send_sdev_queuedepth_change_event: Posts a queuedepth change
170 * @phba: Pointer to HBA context object.
171 * @vport: Pointer to vport object.
172 * @ndlp: Pointer to FC node associated with the target.
173 * @lun: Lun number of the scsi device.
174 * @old_val: Old value of the queue depth.
175 * @new_val: New value of the queue depth.
177 * This function sends an event to the mgmt application indicating
178 * there is a change in the scsi device queue depth.
181 lpfc_send_sdev_queuedepth_change_event(struct lpfc_hba
*phba
,
182 struct lpfc_vport
*vport
,
183 struct lpfc_nodelist
*ndlp
,
188 struct lpfc_fast_path_event
*fast_path_evt
;
191 fast_path_evt
= lpfc_alloc_fast_evt(phba
);
195 fast_path_evt
->un
.queue_depth_evt
.scsi_event
.event_type
=
197 fast_path_evt
->un
.queue_depth_evt
.scsi_event
.subcategory
=
198 LPFC_EVENT_VARQUEDEPTH
;
200 /* Report all luns with change in queue depth */
201 fast_path_evt
->un
.queue_depth_evt
.scsi_event
.lun
= lun
;
202 if (ndlp
&& NLP_CHK_NODE_ACT(ndlp
)) {
203 memcpy(&fast_path_evt
->un
.queue_depth_evt
.scsi_event
.wwpn
,
204 &ndlp
->nlp_portname
, sizeof(struct lpfc_name
));
205 memcpy(&fast_path_evt
->un
.queue_depth_evt
.scsi_event
.wwnn
,
206 &ndlp
->nlp_nodename
, sizeof(struct lpfc_name
));
209 fast_path_evt
->un
.queue_depth_evt
.oldval
= old_val
;
210 fast_path_evt
->un
.queue_depth_evt
.newval
= new_val
;
211 fast_path_evt
->vport
= vport
;
213 fast_path_evt
->work_evt
.evt
= LPFC_EVT_FASTPATH_MGMT_EVT
;
214 spin_lock_irqsave(&phba
->hbalock
, flags
);
215 list_add_tail(&fast_path_evt
->work_evt
.evt_listp
, &phba
->work_list
);
216 spin_unlock_irqrestore(&phba
->hbalock
, flags
);
217 lpfc_worker_wake_up(phba
);
223 * lpfc_rampdown_queue_depth: Post RAMP_DOWN_QUEUE event to worker thread.
224 * @phba: The Hba for which this call is being executed.
226 * This routine is called when there is resource error in driver or firmware.
227 * This routine posts WORKER_RAMP_DOWN_QUEUE event for @phba. This routine
228 * posts at most 1 event each second. This routine wakes up worker thread of
229 * @phba to process WORKER_RAM_DOWN_EVENT event.
231 * This routine should be called with no lock held.
234 lpfc_rampdown_queue_depth(struct lpfc_hba
*phba
)
239 spin_lock_irqsave(&phba
->hbalock
, flags
);
240 atomic_inc(&phba
->num_rsrc_err
);
241 phba
->last_rsrc_error_time
= jiffies
;
243 if ((phba
->last_ramp_down_time
+ QUEUE_RAMP_DOWN_INTERVAL
) > jiffies
) {
244 spin_unlock_irqrestore(&phba
->hbalock
, flags
);
248 phba
->last_ramp_down_time
= jiffies
;
250 spin_unlock_irqrestore(&phba
->hbalock
, flags
);
252 spin_lock_irqsave(&phba
->pport
->work_port_lock
, flags
);
253 evt_posted
= phba
->pport
->work_port_events
& WORKER_RAMP_DOWN_QUEUE
;
255 phba
->pport
->work_port_events
|= WORKER_RAMP_DOWN_QUEUE
;
256 spin_unlock_irqrestore(&phba
->pport
->work_port_lock
, flags
);
259 lpfc_worker_wake_up(phba
);
264 * lpfc_rampup_queue_depth: Post RAMP_UP_QUEUE event for worker thread.
265 * @phba: The Hba for which this call is being executed.
267 * This routine post WORKER_RAMP_UP_QUEUE event for @phba vport. This routine
268 * post at most 1 event every 5 minute after last_ramp_up_time or
269 * last_rsrc_error_time. This routine wakes up worker thread of @phba
270 * to process WORKER_RAM_DOWN_EVENT event.
272 * This routine should be called with no lock held.
275 lpfc_rampup_queue_depth(struct lpfc_vport
*vport
,
276 struct scsi_device
*sdev
)
279 struct lpfc_hba
*phba
= vport
->phba
;
281 atomic_inc(&phba
->num_cmd_success
);
283 if (vport
->cfg_lun_queue_depth
<= sdev
->queue_depth
)
285 spin_lock_irqsave(&phba
->hbalock
, flags
);
286 if (((phba
->last_ramp_up_time
+ QUEUE_RAMP_UP_INTERVAL
) > jiffies
) ||
287 ((phba
->last_rsrc_error_time
+ QUEUE_RAMP_UP_INTERVAL
) > jiffies
)) {
288 spin_unlock_irqrestore(&phba
->hbalock
, flags
);
291 phba
->last_ramp_up_time
= jiffies
;
292 spin_unlock_irqrestore(&phba
->hbalock
, flags
);
294 spin_lock_irqsave(&phba
->pport
->work_port_lock
, flags
);
295 evt_posted
= phba
->pport
->work_port_events
& WORKER_RAMP_UP_QUEUE
;
297 phba
->pport
->work_port_events
|= WORKER_RAMP_UP_QUEUE
;
298 spin_unlock_irqrestore(&phba
->pport
->work_port_lock
, flags
);
301 lpfc_worker_wake_up(phba
);
306 * lpfc_ramp_down_queue_handler: WORKER_RAMP_DOWN_QUEUE event handler.
307 * @phba: The Hba for which this call is being executed.
309 * This routine is called to process WORKER_RAMP_DOWN_QUEUE event for worker
310 * thread.This routine reduces queue depth for all scsi device on each vport
311 * associated with @phba.
314 lpfc_ramp_down_queue_handler(struct lpfc_hba
*phba
)
316 struct lpfc_vport
**vports
;
317 struct Scsi_Host
*shost
;
318 struct scsi_device
*sdev
;
319 unsigned long new_queue_depth
, old_queue_depth
;
320 unsigned long num_rsrc_err
, num_cmd_success
;
322 struct lpfc_rport_data
*rdata
;
324 num_rsrc_err
= atomic_read(&phba
->num_rsrc_err
);
325 num_cmd_success
= atomic_read(&phba
->num_cmd_success
);
327 vports
= lpfc_create_vport_work_array(phba
);
329 for(i
= 0; i
<= phba
->max_vpi
&& vports
[i
] != NULL
; i
++) {
330 shost
= lpfc_shost_from_vport(vports
[i
]);
331 shost_for_each_device(sdev
, shost
) {
333 sdev
->queue_depth
* num_rsrc_err
/
334 (num_rsrc_err
+ num_cmd_success
);
335 if (!new_queue_depth
)
336 new_queue_depth
= sdev
->queue_depth
- 1;
338 new_queue_depth
= sdev
->queue_depth
-
340 old_queue_depth
= sdev
->queue_depth
;
341 if (sdev
->ordered_tags
)
342 scsi_adjust_queue_depth(sdev
,
346 scsi_adjust_queue_depth(sdev
,
349 rdata
= sdev
->hostdata
;
351 lpfc_send_sdev_queuedepth_change_event(
354 sdev
->lun
, old_queue_depth
,
358 lpfc_destroy_vport_work_array(phba
, vports
);
359 atomic_set(&phba
->num_rsrc_err
, 0);
360 atomic_set(&phba
->num_cmd_success
, 0);
364 * lpfc_ramp_up_queue_handler: WORKER_RAMP_UP_QUEUE event handler.
365 * @phba: The Hba for which this call is being executed.
367 * This routine is called to process WORKER_RAMP_UP_QUEUE event for worker
368 * thread.This routine increases queue depth for all scsi device on each vport
369 * associated with @phba by 1. This routine also sets @phba num_rsrc_err and
370 * num_cmd_success to zero.
373 lpfc_ramp_up_queue_handler(struct lpfc_hba
*phba
)
375 struct lpfc_vport
**vports
;
376 struct Scsi_Host
*shost
;
377 struct scsi_device
*sdev
;
379 struct lpfc_rport_data
*rdata
;
381 vports
= lpfc_create_vport_work_array(phba
);
383 for(i
= 0; i
<= phba
->max_vpi
&& vports
[i
] != NULL
; i
++) {
384 shost
= lpfc_shost_from_vport(vports
[i
]);
385 shost_for_each_device(sdev
, shost
) {
386 if (vports
[i
]->cfg_lun_queue_depth
<=
389 if (sdev
->ordered_tags
)
390 scsi_adjust_queue_depth(sdev
,
392 sdev
->queue_depth
+1);
394 scsi_adjust_queue_depth(sdev
,
396 sdev
->queue_depth
+1);
397 rdata
= sdev
->hostdata
;
399 lpfc_send_sdev_queuedepth_change_event(
403 sdev
->queue_depth
- 1,
407 lpfc_destroy_vport_work_array(phba
, vports
);
408 atomic_set(&phba
->num_rsrc_err
, 0);
409 atomic_set(&phba
->num_cmd_success
, 0);
413 * lpfc_scsi_dev_block: set all scsi hosts to block state.
414 * @phba: Pointer to HBA context object.
416 * This function walks vport list and set each SCSI host to block state
417 * by invoking fc_remote_port_delete() routine. This function is invoked
418 * with EEH when device's PCI slot has been permanently disabled.
421 lpfc_scsi_dev_block(struct lpfc_hba
*phba
)
423 struct lpfc_vport
**vports
;
424 struct Scsi_Host
*shost
;
425 struct scsi_device
*sdev
;
426 struct fc_rport
*rport
;
429 vports
= lpfc_create_vport_work_array(phba
);
431 for (i
= 0; i
<= phba
->max_vpi
&& vports
[i
] != NULL
; i
++) {
432 shost
= lpfc_shost_from_vport(vports
[i
]);
433 shost_for_each_device(sdev
, shost
) {
434 rport
= starget_to_rport(scsi_target(sdev
));
435 fc_remote_port_delete(rport
);
438 lpfc_destroy_vport_work_array(phba
, vports
);
442 * lpfc_new_scsi_buf: Scsi buffer allocator.
443 * @vport: The virtual port for which this call being executed.
445 * This routine allocates a scsi buffer, which contains all the necessary
446 * information needed to initiate a SCSI I/O. The non-DMAable buffer region
447 * contains information to build the IOCB. The DMAable region contains
448 * memory for the FCP CMND, FCP RSP, and the initial BPL. In addition to
449 * allocating memory, the FCP CMND and FCP RSP BDEs are setup in the BPL
450 * and the BPL BDE is setup in the IOCB.
454 * Pointer to lpfc_scsi_buf data structure - Success
456 static struct lpfc_scsi_buf
*
457 lpfc_new_scsi_buf(struct lpfc_vport
*vport
)
459 struct lpfc_hba
*phba
= vport
->phba
;
460 struct lpfc_scsi_buf
*psb
;
461 struct ulp_bde64
*bpl
;
463 dma_addr_t pdma_phys_fcp_cmd
;
464 dma_addr_t pdma_phys_fcp_rsp
;
465 dma_addr_t pdma_phys_bpl
;
468 psb
= kzalloc(sizeof(struct lpfc_scsi_buf
), GFP_KERNEL
);
473 * Get memory from the pci pool to map the virt space to pci bus space
474 * for an I/O. The DMA buffer includes space for the struct fcp_cmnd,
475 * struct fcp_rsp and the number of bde's necessary to support the
478 psb
->data
= pci_pool_alloc(phba
->lpfc_scsi_dma_buf_pool
, GFP_KERNEL
,
485 /* Initialize virtual ptrs to dma_buf region. */
486 memset(psb
->data
, 0, phba
->cfg_sg_dma_buf_size
);
488 /* Allocate iotag for psb->cur_iocbq. */
489 iotag
= lpfc_sli_next_iotag(phba
, &psb
->cur_iocbq
);
491 pci_pool_free(phba
->lpfc_scsi_dma_buf_pool
,
492 psb
->data
, psb
->dma_handle
);
496 psb
->cur_iocbq
.iocb_flag
|= LPFC_IO_FCP
;
498 psb
->fcp_cmnd
= psb
->data
;
499 psb
->fcp_rsp
= psb
->data
+ sizeof(struct fcp_cmnd
);
500 psb
->fcp_bpl
= psb
->data
+ sizeof(struct fcp_cmnd
) +
501 sizeof(struct fcp_rsp
);
503 /* Initialize local short-hand pointers. */
505 pdma_phys_fcp_cmd
= psb
->dma_handle
;
506 pdma_phys_fcp_rsp
= psb
->dma_handle
+ sizeof(struct fcp_cmnd
);
507 pdma_phys_bpl
= psb
->dma_handle
+ sizeof(struct fcp_cmnd
) +
508 sizeof(struct fcp_rsp
);
511 * The first two bdes are the FCP_CMD and FCP_RSP. The balance are sg
512 * list bdes. Initialize the first two and leave the rest for
515 bpl
[0].addrHigh
= le32_to_cpu(putPaddrHigh(pdma_phys_fcp_cmd
));
516 bpl
[0].addrLow
= le32_to_cpu(putPaddrLow(pdma_phys_fcp_cmd
));
517 bpl
[0].tus
.f
.bdeSize
= sizeof(struct fcp_cmnd
);
518 bpl
[0].tus
.f
.bdeFlags
= BUFF_TYPE_BDE_64
;
519 bpl
[0].tus
.w
= le32_to_cpu(bpl
[0].tus
.w
);
521 /* Setup the physical region for the FCP RSP */
522 bpl
[1].addrHigh
= le32_to_cpu(putPaddrHigh(pdma_phys_fcp_rsp
));
523 bpl
[1].addrLow
= le32_to_cpu(putPaddrLow(pdma_phys_fcp_rsp
));
524 bpl
[1].tus
.f
.bdeSize
= sizeof(struct fcp_rsp
);
525 bpl
[1].tus
.f
.bdeFlags
= BUFF_TYPE_BDE_64
;
526 bpl
[1].tus
.w
= le32_to_cpu(bpl
[1].tus
.w
);
529 * Since the IOCB for the FCP I/O is built into this lpfc_scsi_buf,
530 * initialize it with all known data now.
532 iocb
= &psb
->cur_iocbq
.iocb
;
533 iocb
->un
.fcpi64
.bdl
.ulpIoTag32
= 0;
534 if ((phba
->sli_rev
== 3) &&
535 !(phba
->sli3_options
& LPFC_SLI3_BG_ENABLED
)) {
536 /* fill in immediate fcp command BDE */
537 iocb
->un
.fcpi64
.bdl
.bdeFlags
= BUFF_TYPE_BDE_IMMED
;
538 iocb
->un
.fcpi64
.bdl
.bdeSize
= sizeof(struct fcp_cmnd
);
539 iocb
->un
.fcpi64
.bdl
.addrLow
= offsetof(IOCB_t
,
541 iocb
->un
.fcpi64
.bdl
.addrHigh
= 0;
542 iocb
->ulpBdeCount
= 0;
544 /* fill in responce BDE */
545 iocb
->unsli3
.fcp_ext
.rbde
.tus
.f
.bdeFlags
= BUFF_TYPE_BDE_64
;
546 iocb
->unsli3
.fcp_ext
.rbde
.tus
.f
.bdeSize
=
547 sizeof(struct fcp_rsp
);
548 iocb
->unsli3
.fcp_ext
.rbde
.addrLow
=
549 putPaddrLow(pdma_phys_fcp_rsp
);
550 iocb
->unsli3
.fcp_ext
.rbde
.addrHigh
=
551 putPaddrHigh(pdma_phys_fcp_rsp
);
553 iocb
->un
.fcpi64
.bdl
.bdeFlags
= BUFF_TYPE_BLP_64
;
554 iocb
->un
.fcpi64
.bdl
.bdeSize
= (2 * sizeof(struct ulp_bde64
));
555 iocb
->un
.fcpi64
.bdl
.addrLow
= putPaddrLow(pdma_phys_bpl
);
556 iocb
->un
.fcpi64
.bdl
.addrHigh
= putPaddrHigh(pdma_phys_bpl
);
557 iocb
->ulpBdeCount
= 1;
560 iocb
->ulpClass
= CLASS3
;
566 * lpfc_get_scsi_buf: Get a scsi buffer from lpfc_scsi_buf_list list of Hba.
567 * @phba: The Hba for which this call is being executed.
569 * This routine removes a scsi buffer from head of @phba lpfc_scsi_buf_list list
570 * and returns to caller.
574 * Pointer to lpfc_scsi_buf - Success
576 static struct lpfc_scsi_buf
*
577 lpfc_get_scsi_buf(struct lpfc_hba
* phba
)
579 struct lpfc_scsi_buf
* lpfc_cmd
= NULL
;
580 struct list_head
*scsi_buf_list
= &phba
->lpfc_scsi_buf_list
;
581 unsigned long iflag
= 0;
583 spin_lock_irqsave(&phba
->scsi_buf_list_lock
, iflag
);
584 list_remove_head(scsi_buf_list
, lpfc_cmd
, struct lpfc_scsi_buf
, list
);
586 lpfc_cmd
->seg_cnt
= 0;
587 lpfc_cmd
->nonsg_phys
= 0;
588 lpfc_cmd
->prot_seg_cnt
= 0;
590 spin_unlock_irqrestore(&phba
->scsi_buf_list_lock
, iflag
);
595 * lpfc_release_scsi_buf: Return a scsi buffer back to hba lpfc_scsi_buf_list list.
596 * @phba: The Hba for which this call is being executed.
597 * @psb: The scsi buffer which is being released.
599 * This routine releases @psb scsi buffer by adding it to tail of @phba
600 * lpfc_scsi_buf_list list.
603 lpfc_release_scsi_buf(struct lpfc_hba
*phba
, struct lpfc_scsi_buf
*psb
)
605 unsigned long iflag
= 0;
607 spin_lock_irqsave(&phba
->scsi_buf_list_lock
, iflag
);
609 list_add_tail(&psb
->list
, &phba
->lpfc_scsi_buf_list
);
610 spin_unlock_irqrestore(&phba
->scsi_buf_list_lock
, iflag
);
614 * lpfc_scsi_prep_dma_buf: Routine to do DMA mapping for scsi buffer.
615 * @phba: The Hba for which this call is being executed.
616 * @lpfc_cmd: The scsi buffer which is going to be mapped.
618 * This routine does the pci dma mapping for scatter-gather list of scsi cmnd
619 * field of @lpfc_cmd. This routine scans through sg elements and format the
620 * bdea. This routine also initializes all IOCB fields which are dependent on
621 * scsi command request buffer.
628 lpfc_scsi_prep_dma_buf(struct lpfc_hba
*phba
, struct lpfc_scsi_buf
*lpfc_cmd
)
630 struct scsi_cmnd
*scsi_cmnd
= lpfc_cmd
->pCmd
;
631 struct scatterlist
*sgel
= NULL
;
632 struct fcp_cmnd
*fcp_cmnd
= lpfc_cmd
->fcp_cmnd
;
633 struct ulp_bde64
*bpl
= lpfc_cmd
->fcp_bpl
;
634 IOCB_t
*iocb_cmd
= &lpfc_cmd
->cur_iocbq
.iocb
;
635 struct ulp_bde64
*data_bde
= iocb_cmd
->unsli3
.fcp_ext
.dbde
;
637 uint32_t num_bde
= 0;
638 int nseg
, datadir
= scsi_cmnd
->sc_data_direction
;
641 * There are three possibilities here - use scatter-gather segment, use
642 * the single mapping, or neither. Start the lpfc command prep by
643 * bumping the bpl beyond the fcp_cmnd and fcp_rsp regions to the first
647 if (scsi_sg_count(scsi_cmnd
)) {
649 * The driver stores the segment count returned from pci_map_sg
650 * because this a count of dma-mappings used to map the use_sg
651 * pages. They are not guaranteed to be the same for those
652 * architectures that implement an IOMMU.
655 nseg
= dma_map_sg(&phba
->pcidev
->dev
, scsi_sglist(scsi_cmnd
),
656 scsi_sg_count(scsi_cmnd
), datadir
);
660 lpfc_cmd
->seg_cnt
= nseg
;
661 if (lpfc_cmd
->seg_cnt
> phba
->cfg_sg_seg_cnt
) {
662 printk(KERN_ERR
"%s: Too many sg segments from "
663 "dma_map_sg. Config %d, seg_cnt %d\n",
664 __func__
, phba
->cfg_sg_seg_cnt
,
666 scsi_dma_unmap(scsi_cmnd
);
671 * The driver established a maximum scatter-gather segment count
672 * during probe that limits the number of sg elements in any
673 * single scsi command. Just run through the seg_cnt and format
675 * When using SLI-3 the driver will try to fit all the BDEs into
676 * the IOCB. If it can't then the BDEs get added to a BPL as it
677 * does for SLI-2 mode.
679 scsi_for_each_sg(scsi_cmnd
, sgel
, nseg
, num_bde
) {
680 physaddr
= sg_dma_address(sgel
);
681 if (phba
->sli_rev
== 3 &&
682 !(phba
->sli3_options
& LPFC_SLI3_BG_ENABLED
) &&
683 nseg
<= LPFC_EXT_DATA_BDE_COUNT
) {
684 data_bde
->tus
.f
.bdeFlags
= BUFF_TYPE_BDE_64
;
685 data_bde
->tus
.f
.bdeSize
= sg_dma_len(sgel
);
686 data_bde
->addrLow
= putPaddrLow(physaddr
);
687 data_bde
->addrHigh
= putPaddrHigh(physaddr
);
690 bpl
->tus
.f
.bdeFlags
= BUFF_TYPE_BDE_64
;
691 bpl
->tus
.f
.bdeSize
= sg_dma_len(sgel
);
692 bpl
->tus
.w
= le32_to_cpu(bpl
->tus
.w
);
694 le32_to_cpu(putPaddrLow(physaddr
));
696 le32_to_cpu(putPaddrHigh(physaddr
));
703 * Finish initializing those IOCB fields that are dependent on the
704 * scsi_cmnd request_buffer. Note that for SLI-2 the bdeSize is
705 * explicitly reinitialized and for SLI-3 the extended bde count is
706 * explicitly reinitialized since all iocb memory resources are reused.
708 if (phba
->sli_rev
== 3 &&
709 !(phba
->sli3_options
& LPFC_SLI3_BG_ENABLED
)) {
710 if (num_bde
> LPFC_EXT_DATA_BDE_COUNT
) {
712 * The extended IOCB format can only fit 3 BDE or a BPL.
713 * This I/O has more than 3 BDE so the 1st data bde will
714 * be a BPL that is filled in here.
716 physaddr
= lpfc_cmd
->dma_handle
;
717 data_bde
->tus
.f
.bdeFlags
= BUFF_TYPE_BLP_64
;
718 data_bde
->tus
.f
.bdeSize
= (num_bde
*
719 sizeof(struct ulp_bde64
));
720 physaddr
+= (sizeof(struct fcp_cmnd
) +
721 sizeof(struct fcp_rsp
) +
722 (2 * sizeof(struct ulp_bde64
)));
723 data_bde
->addrHigh
= putPaddrHigh(physaddr
);
724 data_bde
->addrLow
= putPaddrLow(physaddr
);
725 /* ebde count includes the responce bde and data bpl */
726 iocb_cmd
->unsli3
.fcp_ext
.ebde_count
= 2;
728 /* ebde count includes the responce bde and data bdes */
729 iocb_cmd
->unsli3
.fcp_ext
.ebde_count
= (num_bde
+ 1);
732 iocb_cmd
->un
.fcpi64
.bdl
.bdeSize
=
733 ((num_bde
+ 2) * sizeof(struct ulp_bde64
));
735 fcp_cmnd
->fcpDl
= cpu_to_be32(scsi_bufflen(scsi_cmnd
));
738 * Due to difference in data length between DIF/non-DIF paths,
739 * we need to set word 4 of IOCB here
741 iocb_cmd
->un
.fcpi
.fcpi_parm
= le32_to_cpu(scsi_bufflen(scsi_cmnd
));
746 * Given a scsi cmnd, determine the BlockGuard profile to be used
750 lpfc_sc_to_sli_prof(struct scsi_cmnd
*sc
)
752 uint8_t guard_type
= scsi_host_get_guard(sc
->device
->host
);
753 uint8_t ret_prof
= LPFC_PROF_INVALID
;
755 if (guard_type
== SHOST_DIX_GUARD_IP
) {
756 switch (scsi_get_prot_op(sc
)) {
757 case SCSI_PROT_READ_INSERT
:
758 case SCSI_PROT_WRITE_STRIP
:
759 ret_prof
= LPFC_PROF_AST2
;
762 case SCSI_PROT_READ_STRIP
:
763 case SCSI_PROT_WRITE_INSERT
:
764 ret_prof
= LPFC_PROF_A1
;
767 case SCSI_PROT_READ_CONVERT
:
768 case SCSI_PROT_WRITE_CONVERT
:
769 ret_prof
= LPFC_PROF_AST1
;
772 case SCSI_PROT_READ_PASS
:
773 case SCSI_PROT_WRITE_PASS
:
774 case SCSI_PROT_NORMAL
:
776 printk(KERN_ERR
"Bad op/guard:%d/%d combination\n",
777 scsi_get_prot_op(sc
), guard_type
);
781 } else if (guard_type
== SHOST_DIX_GUARD_CRC
) {
782 switch (scsi_get_prot_op(sc
)) {
783 case SCSI_PROT_READ_STRIP
:
784 case SCSI_PROT_WRITE_INSERT
:
785 ret_prof
= LPFC_PROF_A1
;
788 case SCSI_PROT_READ_PASS
:
789 case SCSI_PROT_WRITE_PASS
:
790 ret_prof
= LPFC_PROF_C1
;
793 case SCSI_PROT_READ_CONVERT
:
794 case SCSI_PROT_WRITE_CONVERT
:
795 case SCSI_PROT_READ_INSERT
:
796 case SCSI_PROT_WRITE_STRIP
:
797 case SCSI_PROT_NORMAL
:
799 printk(KERN_ERR
"Bad op/guard:%d/%d combination\n",
800 scsi_get_prot_op(sc
), guard_type
);
804 /* unsupported format */
811 struct scsi_dif_tuple
{
812 __be16 guard_tag
; /* Checksum */
813 __be16 app_tag
; /* Opaque storage */
814 __be32 ref_tag
; /* Target LBA or indirect LBA */
817 static inline unsigned
818 lpfc_cmd_blksize(struct scsi_cmnd
*sc
)
820 return sc
->device
->sector_size
;
824 * lpfc_get_cmd_dif_parms - Extract DIF parameters from SCSI command
825 * @sc: in: SCSI command
826 * @apptagmask out: app tag mask
827 * @apptagval out: app tag value
828 * @reftag out: ref tag (reference tag)
831 * Extract DIF paramters from the command if possible. Otherwise,
832 * use default paratmers.
836 lpfc_get_cmd_dif_parms(struct scsi_cmnd
*sc
, uint16_t *apptagmask
,
837 uint16_t *apptagval
, uint32_t *reftag
)
839 struct scsi_dif_tuple
*spt
;
840 unsigned char op
= scsi_get_prot_op(sc
);
841 unsigned int protcnt
= scsi_prot_sg_count(sc
);
844 if (protcnt
&& (op
== SCSI_PROT_WRITE_STRIP
||
845 op
== SCSI_PROT_WRITE_PASS
||
846 op
== SCSI_PROT_WRITE_CONVERT
)) {
849 spt
= page_address(sg_page(scsi_prot_sglist(sc
))) +
850 scsi_prot_sglist(sc
)[0].offset
;
853 *reftag
= cpu_to_be32(spt
->ref_tag
);
856 /* SBC defines ref tag to be lower 32bits of LBA */
857 *reftag
= (uint32_t) (0xffffffff & scsi_get_lba(sc
));
864 * This function sets up buffer list for protection groups of
865 * type LPFC_PG_TYPE_NO_DIF
867 * This is usually used when the HBA is instructed to generate
868 * DIFs and insert them into data stream (or strip DIF from
869 * incoming data stream)
871 * The buffer list consists of just one protection group described
873 * +-------------------------+
874 * start of prot group --> | PDE_1 |
875 * +-------------------------+
877 * +-------------------------+
878 * |more Data BDE's ... (opt)|
879 * +-------------------------+
881 * @sc: pointer to scsi command we're working on
882 * @bpl: pointer to buffer list for protection groups
883 * @datacnt: number of segments of data that have been dma mapped
885 * Note: Data s/g buffers have been dma mapped
888 lpfc_bg_setup_bpl(struct lpfc_hba
*phba
, struct scsi_cmnd
*sc
,
889 struct ulp_bde64
*bpl
, int datasegcnt
)
891 struct scatterlist
*sgde
= NULL
; /* s/g data entry */
892 struct lpfc_pde
*pde1
= NULL
;
894 int i
= 0, num_bde
= 0;
895 int datadir
= sc
->sc_data_direction
;
896 int prof
= LPFC_PROF_INVALID
;
899 uint16_t apptagmask
, apptagval
;
901 pde1
= (struct lpfc_pde
*) bpl
;
902 prof
= lpfc_sc_to_sli_prof(sc
);
904 if (prof
== LPFC_PROF_INVALID
)
907 /* extract some info from the scsi command for PDE1*/
908 blksize
= lpfc_cmd_blksize(sc
);
909 lpfc_get_cmd_dif_parms(sc
, &apptagmask
, &apptagval
, &reftag
);
911 /* setup PDE1 with what we have */
912 lpfc_pde_set_bg_parms(pde1
, LPFC_PDE1_DESCRIPTOR
, prof
, blksize
,
914 lpfc_pde_set_dif_parms(pde1
, apptagmask
, apptagval
, reftag
);
919 /* assumption: caller has already run dma_map_sg on command data */
920 scsi_for_each_sg(sc
, sgde
, datasegcnt
, i
) {
921 physaddr
= sg_dma_address(sgde
);
922 bpl
->addrLow
= le32_to_cpu(putPaddrLow(physaddr
));
923 bpl
->addrHigh
= le32_to_cpu(putPaddrHigh(physaddr
));
924 bpl
->tus
.f
.bdeSize
= sg_dma_len(sgde
);
925 if (datadir
== DMA_TO_DEVICE
)
926 bpl
->tus
.f
.bdeFlags
= BUFF_TYPE_BDE_64
;
928 bpl
->tus
.f
.bdeFlags
= BUFF_TYPE_BDE_64I
;
929 bpl
->tus
.w
= le32_to_cpu(bpl
->tus
.w
);
939 * This function sets up buffer list for protection groups of
940 * type LPFC_PG_TYPE_DIF_BUF
942 * This is usually used when DIFs are in their own buffers,
943 * separate from the data. The HBA can then by instructed
944 * to place the DIFs in the outgoing stream. For read operations,
945 * The HBA could extract the DIFs and place it in DIF buffers.
947 * The buffer list for this type consists of one or more of the
948 * protection groups described below:
949 * +-------------------------+
950 * start of first prot group --> | PDE_1 |
951 * +-------------------------+
952 * | PDE_3 (Prot BDE) |
953 * +-------------------------+
955 * +-------------------------+
956 * |more Data BDE's ... (opt)|
957 * +-------------------------+
958 * start of new prot group --> | PDE_1 |
959 * +-------------------------+
961 * +-------------------------+
963 * @sc: pointer to scsi command we're working on
964 * @bpl: pointer to buffer list for protection groups
965 * @datacnt: number of segments of data that have been dma mapped
966 * @protcnt: number of segment of protection data that have been dma mapped
968 * Note: It is assumed that both data and protection s/g buffers have been
972 lpfc_bg_setup_bpl_prot(struct lpfc_hba
*phba
, struct scsi_cmnd
*sc
,
973 struct ulp_bde64
*bpl
, int datacnt
, int protcnt
)
975 struct scatterlist
*sgde
= NULL
; /* s/g data entry */
976 struct scatterlist
*sgpe
= NULL
; /* s/g prot entry */
977 struct lpfc_pde
*pde1
= NULL
;
978 struct ulp_bde64
*prot_bde
= NULL
;
979 dma_addr_t dataphysaddr
, protphysaddr
;
980 unsigned short curr_data
= 0, curr_prot
= 0;
981 unsigned int split_offset
, protgroup_len
;
982 unsigned int protgrp_blks
, protgrp_bytes
;
983 unsigned int remainder
, subtotal
;
984 int prof
= LPFC_PROF_INVALID
;
985 int datadir
= sc
->sc_data_direction
;
986 unsigned char pgdone
= 0, alldone
= 0;
989 uint16_t apptagmask
, apptagval
;
992 sgpe
= scsi_prot_sglist(sc
);
993 sgde
= scsi_sglist(sc
);
995 if (!sgpe
|| !sgde
) {
996 lpfc_printf_log(phba
, KERN_ERR
, LOG_FCP
,
997 "9020 Invalid s/g entry: data=0x%p prot=0x%p\n",
1002 prof
= lpfc_sc_to_sli_prof(sc
);
1003 if (prof
== LPFC_PROF_INVALID
)
1006 /* extract some info from the scsi command for PDE1*/
1007 blksize
= lpfc_cmd_blksize(sc
);
1008 lpfc_get_cmd_dif_parms(sc
, &apptagmask
, &apptagval
, &reftag
);
1012 /* setup the first PDE_1 */
1013 pde1
= (struct lpfc_pde
*) bpl
;
1015 lpfc_pde_set_bg_parms(pde1
, LPFC_PDE1_DESCRIPTOR
, prof
, blksize
,
1017 lpfc_pde_set_dif_parms(pde1
, apptagmask
, apptagval
, reftag
);
1022 /* setup the first BDE that points to protection buffer */
1023 prot_bde
= (struct ulp_bde64
*) bpl
;
1024 protphysaddr
= sg_dma_address(sgpe
);
1025 prot_bde
->addrLow
= le32_to_cpu(putPaddrLow(protphysaddr
));
1026 prot_bde
->addrHigh
= le32_to_cpu(putPaddrHigh(protphysaddr
));
1027 protgroup_len
= sg_dma_len(sgpe
);
1030 /* must be integer multiple of the DIF block length */
1031 BUG_ON(protgroup_len
% 8);
1033 protgrp_blks
= protgroup_len
/ 8;
1034 protgrp_bytes
= protgrp_blks
* blksize
;
1036 prot_bde
->tus
.f
.bdeSize
= protgroup_len
;
1037 if (datadir
== DMA_TO_DEVICE
)
1038 prot_bde
->tus
.f
.bdeFlags
= BUFF_TYPE_BDE_64
;
1040 prot_bde
->tus
.f
.bdeFlags
= BUFF_TYPE_BDE_64I
;
1041 prot_bde
->tus
.w
= le32_to_cpu(bpl
->tus
.w
);
1046 /* setup BDE's for data blocks associated with DIF data */
1048 subtotal
= 0; /* total bytes processed for current prot grp */
1051 printk(KERN_ERR
"%s Invalid data segment\n",
1056 dataphysaddr
= sg_dma_address(sgde
) + split_offset
;
1057 bpl
->addrLow
= le32_to_cpu(putPaddrLow(dataphysaddr
));
1058 bpl
->addrHigh
= le32_to_cpu(putPaddrHigh(dataphysaddr
));
1060 remainder
= sg_dma_len(sgde
) - split_offset
;
1062 if ((subtotal
+ remainder
) <= protgrp_bytes
) {
1063 /* we can use this whole buffer */
1064 bpl
->tus
.f
.bdeSize
= remainder
;
1067 if ((subtotal
+ remainder
) == protgrp_bytes
)
1070 /* must split this buffer with next prot grp */
1071 bpl
->tus
.f
.bdeSize
= protgrp_bytes
- subtotal
;
1072 split_offset
+= bpl
->tus
.f
.bdeSize
;
1075 subtotal
+= bpl
->tus
.f
.bdeSize
;
1077 if (datadir
== DMA_TO_DEVICE
)
1078 bpl
->tus
.f
.bdeFlags
= BUFF_TYPE_BDE_64
;
1080 bpl
->tus
.f
.bdeFlags
= BUFF_TYPE_BDE_64I
;
1081 bpl
->tus
.w
= le32_to_cpu(bpl
->tus
.w
);
1089 /* Move to the next s/g segment if possible */
1090 sgde
= sg_next(sgde
);
1094 if (curr_prot
== protcnt
) {
1096 } else if (curr_prot
< protcnt
) {
1097 /* advance to next prot buffer */
1098 sgpe
= sg_next(sgpe
);
1101 /* update the reference tag */
1102 reftag
+= protgrp_blks
;
1104 /* if we're here, we have a bug */
1105 printk(KERN_ERR
"BLKGRD: bug in %s\n", __func__
);
1116 * Given a SCSI command that supports DIF, determine composition of protection
1117 * groups involved in setting up buffer lists
1120 * for DIF (for both read and write)
1123 lpfc_prot_group_type(struct lpfc_hba
*phba
, struct scsi_cmnd
*sc
)
1125 int ret
= LPFC_PG_TYPE_INVALID
;
1126 unsigned char op
= scsi_get_prot_op(sc
);
1129 case SCSI_PROT_READ_STRIP
:
1130 case SCSI_PROT_WRITE_INSERT
:
1131 ret
= LPFC_PG_TYPE_NO_DIF
;
1133 case SCSI_PROT_READ_INSERT
:
1134 case SCSI_PROT_WRITE_STRIP
:
1135 case SCSI_PROT_READ_PASS
:
1136 case SCSI_PROT_WRITE_PASS
:
1137 case SCSI_PROT_WRITE_CONVERT
:
1138 case SCSI_PROT_READ_CONVERT
:
1139 ret
= LPFC_PG_TYPE_DIF_BUF
;
1142 lpfc_printf_log(phba
, KERN_ERR
, LOG_FCP
,
1143 "9021 Unsupported protection op:%d\n", op
);
1151 * This is the protection/DIF aware version of
1152 * lpfc_scsi_prep_dma_buf(). It may be a good idea to combine the
1153 * two functions eventually, but for now, it's here
1156 lpfc_bg_scsi_prep_dma_buf(struct lpfc_hba
*phba
,
1157 struct lpfc_scsi_buf
*lpfc_cmd
)
1159 struct scsi_cmnd
*scsi_cmnd
= lpfc_cmd
->pCmd
;
1160 struct fcp_cmnd
*fcp_cmnd
= lpfc_cmd
->fcp_cmnd
;
1161 struct ulp_bde64
*bpl
= lpfc_cmd
->fcp_bpl
;
1162 IOCB_t
*iocb_cmd
= &lpfc_cmd
->cur_iocbq
.iocb
;
1163 uint32_t num_bde
= 0;
1164 int datasegcnt
, protsegcnt
, datadir
= scsi_cmnd
->sc_data_direction
;
1165 int prot_group_type
= 0;
1170 * Start the lpfc command prep by bumping the bpl beyond fcp_cmnd
1171 * fcp_rsp regions to the first data bde entry
1174 if (scsi_sg_count(scsi_cmnd
)) {
1176 * The driver stores the segment count returned from pci_map_sg
1177 * because this a count of dma-mappings used to map the use_sg
1178 * pages. They are not guaranteed to be the same for those
1179 * architectures that implement an IOMMU.
1181 datasegcnt
= dma_map_sg(&phba
->pcidev
->dev
,
1182 scsi_sglist(scsi_cmnd
),
1183 scsi_sg_count(scsi_cmnd
), datadir
);
1184 if (unlikely(!datasegcnt
))
1187 lpfc_cmd
->seg_cnt
= datasegcnt
;
1188 if (lpfc_cmd
->seg_cnt
> phba
->cfg_sg_seg_cnt
) {
1189 printk(KERN_ERR
"%s: Too many sg segments from "
1190 "dma_map_sg. Config %d, seg_cnt %d\n",
1191 __func__
, phba
->cfg_sg_seg_cnt
,
1193 scsi_dma_unmap(scsi_cmnd
);
1197 prot_group_type
= lpfc_prot_group_type(phba
, scsi_cmnd
);
1199 switch (prot_group_type
) {
1200 case LPFC_PG_TYPE_NO_DIF
:
1201 num_bde
= lpfc_bg_setup_bpl(phba
, scsi_cmnd
, bpl
,
1203 /* we shoud have 2 or more entries in buffer list */
1207 case LPFC_PG_TYPE_DIF_BUF
:{
1209 * This type indicates that protection buffers are
1210 * passed to the driver, so that needs to be prepared
1213 protsegcnt
= dma_map_sg(&phba
->pcidev
->dev
,
1214 scsi_prot_sglist(scsi_cmnd
),
1215 scsi_prot_sg_count(scsi_cmnd
), datadir
);
1216 if (unlikely(!protsegcnt
)) {
1217 scsi_dma_unmap(scsi_cmnd
);
1221 lpfc_cmd
->prot_seg_cnt
= protsegcnt
;
1222 if (lpfc_cmd
->prot_seg_cnt
1223 > phba
->cfg_prot_sg_seg_cnt
) {
1224 printk(KERN_ERR
"%s: Too many prot sg segments "
1225 "from dma_map_sg. Config %d,"
1226 "prot_seg_cnt %d\n", __func__
,
1227 phba
->cfg_prot_sg_seg_cnt
,
1228 lpfc_cmd
->prot_seg_cnt
);
1229 dma_unmap_sg(&phba
->pcidev
->dev
,
1230 scsi_prot_sglist(scsi_cmnd
),
1231 scsi_prot_sg_count(scsi_cmnd
),
1233 scsi_dma_unmap(scsi_cmnd
);
1237 num_bde
= lpfc_bg_setup_bpl_prot(phba
, scsi_cmnd
, bpl
,
1238 datasegcnt
, protsegcnt
);
1239 /* we shoud have 3 or more entries in buffer list */
1244 case LPFC_PG_TYPE_INVALID
:
1246 lpfc_printf_log(phba
, KERN_ERR
, LOG_FCP
,
1247 "9022 Unexpected protection group %i\n",
1254 * Finish initializing those IOCB fields that are dependent on the
1255 * scsi_cmnd request_buffer. Note that the bdeSize is explicitly
1256 * reinitialized since all iocb memory resources are used many times
1257 * for transmit, receive, and continuation bpl's.
1259 iocb_cmd
->un
.fcpi64
.bdl
.bdeSize
= (2 * sizeof(struct ulp_bde64
));
1260 iocb_cmd
->un
.fcpi64
.bdl
.bdeSize
+= (num_bde
* sizeof(struct ulp_bde64
));
1261 iocb_cmd
->ulpBdeCount
= 1;
1262 iocb_cmd
->ulpLe
= 1;
1264 fcpdl
= scsi_bufflen(scsi_cmnd
);
1266 if (scsi_get_prot_type(scsi_cmnd
) == SCSI_PROT_DIF_TYPE1
) {
1268 * We are in DIF Type 1 mode
1269 * Every data block has a 8 byte DIF (trailer)
1270 * attached to it. Must ajust FCP data length
1272 blksize
= lpfc_cmd_blksize(scsi_cmnd
);
1273 diflen
= (fcpdl
/ blksize
) * 8;
1276 fcp_cmnd
->fcpDl
= be32_to_cpu(fcpdl
);
1279 * Due to difference in data length between DIF/non-DIF paths,
1280 * we need to set word 4 of IOCB here
1282 iocb_cmd
->un
.fcpi
.fcpi_parm
= fcpdl
;
1286 lpfc_printf_log(phba
, KERN_ERR
, LOG_FCP
,
1287 "9023 Could not setup all needed BDE's"
1288 "prot_group_type=%d, num_bde=%d\n",
1289 prot_group_type
, num_bde
);
1294 * This function checks for BlockGuard errors detected by
1295 * the HBA. In case of errors, the ASC/ASCQ fields in the
1296 * sense buffer will be set accordingly, paired with
1297 * ILLEGAL_REQUEST to signal to the kernel that the HBA
1298 * detected corruption.
1301 * 0 - No error found
1302 * 1 - BlockGuard error found
1303 * -1 - Internal error (bad profile, ...etc)
1306 lpfc_parse_bg_err(struct lpfc_hba
*phba
, struct lpfc_scsi_buf
*lpfc_cmd
,
1307 struct lpfc_iocbq
*pIocbOut
)
1309 struct scsi_cmnd
*cmd
= lpfc_cmd
->pCmd
;
1310 struct sli3_bg_fields
*bgf
= &pIocbOut
->iocb
.unsli3
.sli3_bg
;
1312 uint32_t bghm
= bgf
->bghm
;
1313 uint32_t bgstat
= bgf
->bgstat
;
1314 uint64_t failing_sector
= 0;
1316 printk(KERN_ERR
"BG ERROR in cmd 0x%x lba 0x%llx blk cnt 0x%lx "
1317 "bgstat=0x%x bghm=0x%x\n",
1318 cmd
->cmnd
[0], (unsigned long long)scsi_get_lba(cmd
),
1319 cmd
->request
->nr_sectors
, bgstat
, bghm
);
1321 spin_lock(&_dump_buf_lock
);
1322 if (!_dump_buf_done
) {
1323 printk(KERN_ERR
"Saving Data for %u blocks to debugfs\n",
1324 (cmd
->cmnd
[7] << 8 | cmd
->cmnd
[8]));
1325 lpfc_debug_save_data(cmd
);
1327 /* If we have a prot sgl, save the DIF buffer */
1328 if (lpfc_prot_group_type(phba
, cmd
) ==
1329 LPFC_PG_TYPE_DIF_BUF
) {
1330 printk(KERN_ERR
"Saving DIF for %u blocks to debugfs\n",
1331 (cmd
->cmnd
[7] << 8 | cmd
->cmnd
[8]));
1332 lpfc_debug_save_dif(cmd
);
1337 spin_unlock(&_dump_buf_lock
);
1339 if (lpfc_bgs_get_invalid_prof(bgstat
)) {
1340 cmd
->result
= ScsiResult(DID_ERROR
, 0);
1341 printk(KERN_ERR
"Invalid BlockGuard profile. bgstat:0x%x\n",
1347 if (lpfc_bgs_get_uninit_dif_block(bgstat
)) {
1348 cmd
->result
= ScsiResult(DID_ERROR
, 0);
1349 printk(KERN_ERR
"Invalid BlockGuard DIF Block. bgstat:0x%x\n",
1355 if (lpfc_bgs_get_guard_err(bgstat
)) {
1358 scsi_build_sense_buffer(1, cmd
->sense_buffer
, ILLEGAL_REQUEST
,
1360 cmd
->result
= (DRIVER_SENSE
|SUGGEST_DIE
) << 24
1361 | ScsiResult(DID_ABORT
, SAM_STAT_CHECK_CONDITION
);
1362 phba
->bg_guard_err_cnt
++;
1363 printk(KERN_ERR
"BLKGRD: guard_tag error\n");
1366 if (lpfc_bgs_get_reftag_err(bgstat
)) {
1369 scsi_build_sense_buffer(1, cmd
->sense_buffer
, ILLEGAL_REQUEST
,
1371 cmd
->result
= (DRIVER_SENSE
|SUGGEST_DIE
) << 24
1372 | ScsiResult(DID_ABORT
, SAM_STAT_CHECK_CONDITION
);
1374 phba
->bg_reftag_err_cnt
++;
1375 printk(KERN_ERR
"BLKGRD: ref_tag error\n");
1378 if (lpfc_bgs_get_apptag_err(bgstat
)) {
1381 scsi_build_sense_buffer(1, cmd
->sense_buffer
, ILLEGAL_REQUEST
,
1383 cmd
->result
= (DRIVER_SENSE
|SUGGEST_DIE
) << 24
1384 | ScsiResult(DID_ABORT
, SAM_STAT_CHECK_CONDITION
);
1386 phba
->bg_apptag_err_cnt
++;
1387 printk(KERN_ERR
"BLKGRD: app_tag error\n");
1390 if (lpfc_bgs_get_hi_water_mark_present(bgstat
)) {
1392 * setup sense data descriptor 0 per SPC-4 as an information
1393 * field, and put the failing LBA in it
1395 cmd
->sense_buffer
[8] = 0; /* Information */
1396 cmd
->sense_buffer
[9] = 0xa; /* Add. length */
1397 do_div(bghm
, cmd
->device
->sector_size
);
1399 failing_sector
= scsi_get_lba(cmd
);
1400 failing_sector
+= bghm
;
1402 put_unaligned_be64(failing_sector
, &cmd
->sense_buffer
[10]);
1406 /* No error was reported - problem in FW? */
1407 cmd
->result
= ScsiResult(DID_ERROR
, 0);
1408 printk(KERN_ERR
"BLKGRD: no errors reported!\n");
1416 * lpfc_send_scsi_error_event: Posts an event when there is SCSI error.
1417 * @phba: Pointer to hba context object.
1418 * @vport: Pointer to vport object.
1419 * @lpfc_cmd: Pointer to lpfc scsi command which reported the error.
1420 * @rsp_iocb: Pointer to response iocb object which reported error.
1422 * This function posts an event when there is a SCSI command reporting
1423 * error from the scsi device.
1426 lpfc_send_scsi_error_event(struct lpfc_hba
*phba
, struct lpfc_vport
*vport
,
1427 struct lpfc_scsi_buf
*lpfc_cmd
, struct lpfc_iocbq
*rsp_iocb
) {
1428 struct scsi_cmnd
*cmnd
= lpfc_cmd
->pCmd
;
1429 struct fcp_rsp
*fcprsp
= lpfc_cmd
->fcp_rsp
;
1430 uint32_t resp_info
= fcprsp
->rspStatus2
;
1431 uint32_t scsi_status
= fcprsp
->rspStatus3
;
1432 uint32_t fcpi_parm
= rsp_iocb
->iocb
.un
.fcpi
.fcpi_parm
;
1433 struct lpfc_fast_path_event
*fast_path_evt
= NULL
;
1434 struct lpfc_nodelist
*pnode
= lpfc_cmd
->rdata
->pnode
;
1435 unsigned long flags
;
1437 /* If there is queuefull or busy condition send a scsi event */
1438 if ((cmnd
->result
== SAM_STAT_TASK_SET_FULL
) ||
1439 (cmnd
->result
== SAM_STAT_BUSY
)) {
1440 fast_path_evt
= lpfc_alloc_fast_evt(phba
);
1443 fast_path_evt
->un
.scsi_evt
.event_type
=
1445 fast_path_evt
->un
.scsi_evt
.subcategory
=
1446 (cmnd
->result
== SAM_STAT_TASK_SET_FULL
) ?
1447 LPFC_EVENT_QFULL
: LPFC_EVENT_DEVBSY
;
1448 fast_path_evt
->un
.scsi_evt
.lun
= cmnd
->device
->lun
;
1449 memcpy(&fast_path_evt
->un
.scsi_evt
.wwpn
,
1450 &pnode
->nlp_portname
, sizeof(struct lpfc_name
));
1451 memcpy(&fast_path_evt
->un
.scsi_evt
.wwnn
,
1452 &pnode
->nlp_nodename
, sizeof(struct lpfc_name
));
1453 } else if ((resp_info
& SNS_LEN_VALID
) && fcprsp
->rspSnsLen
&&
1454 ((cmnd
->cmnd
[0] == READ_10
) || (cmnd
->cmnd
[0] == WRITE_10
))) {
1455 fast_path_evt
= lpfc_alloc_fast_evt(phba
);
1458 fast_path_evt
->un
.check_cond_evt
.scsi_event
.event_type
=
1460 fast_path_evt
->un
.check_cond_evt
.scsi_event
.subcategory
=
1461 LPFC_EVENT_CHECK_COND
;
1462 fast_path_evt
->un
.check_cond_evt
.scsi_event
.lun
=
1464 memcpy(&fast_path_evt
->un
.check_cond_evt
.scsi_event
.wwpn
,
1465 &pnode
->nlp_portname
, sizeof(struct lpfc_name
));
1466 memcpy(&fast_path_evt
->un
.check_cond_evt
.scsi_event
.wwnn
,
1467 &pnode
->nlp_nodename
, sizeof(struct lpfc_name
));
1468 fast_path_evt
->un
.check_cond_evt
.sense_key
=
1469 cmnd
->sense_buffer
[2] & 0xf;
1470 fast_path_evt
->un
.check_cond_evt
.asc
= cmnd
->sense_buffer
[12];
1471 fast_path_evt
->un
.check_cond_evt
.ascq
= cmnd
->sense_buffer
[13];
1472 } else if ((cmnd
->sc_data_direction
== DMA_FROM_DEVICE
) &&
1474 ((be32_to_cpu(fcprsp
->rspResId
) != fcpi_parm
) ||
1475 ((scsi_status
== SAM_STAT_GOOD
) &&
1476 !(resp_info
& (RESID_UNDER
| RESID_OVER
))))) {
1478 * If status is good or resid does not match with fcp_param and
1479 * there is valid fcpi_parm, then there is a read_check error
1481 fast_path_evt
= lpfc_alloc_fast_evt(phba
);
1484 fast_path_evt
->un
.read_check_error
.header
.event_type
=
1485 FC_REG_FABRIC_EVENT
;
1486 fast_path_evt
->un
.read_check_error
.header
.subcategory
=
1487 LPFC_EVENT_FCPRDCHKERR
;
1488 memcpy(&fast_path_evt
->un
.read_check_error
.header
.wwpn
,
1489 &pnode
->nlp_portname
, sizeof(struct lpfc_name
));
1490 memcpy(&fast_path_evt
->un
.read_check_error
.header
.wwnn
,
1491 &pnode
->nlp_nodename
, sizeof(struct lpfc_name
));
1492 fast_path_evt
->un
.read_check_error
.lun
= cmnd
->device
->lun
;
1493 fast_path_evt
->un
.read_check_error
.opcode
= cmnd
->cmnd
[0];
1494 fast_path_evt
->un
.read_check_error
.fcpiparam
=
1499 fast_path_evt
->vport
= vport
;
1500 spin_lock_irqsave(&phba
->hbalock
, flags
);
1501 list_add_tail(&fast_path_evt
->work_evt
.evt_listp
, &phba
->work_list
);
1502 spin_unlock_irqrestore(&phba
->hbalock
, flags
);
1503 lpfc_worker_wake_up(phba
);
1508 * lpfc_scsi_unprep_dma_buf: Routine to un-map DMA mapping of scatter gather.
1509 * @phba: The Hba for which this call is being executed.
1510 * @psb: The scsi buffer which is going to be un-mapped.
1512 * This routine does DMA un-mapping of scatter gather list of scsi command
1513 * field of @lpfc_cmd.
1516 lpfc_scsi_unprep_dma_buf(struct lpfc_hba
* phba
, struct lpfc_scsi_buf
* psb
)
1519 * There are only two special cases to consider. (1) the scsi command
1520 * requested scatter-gather usage or (2) the scsi command allocated
1521 * a request buffer, but did not request use_sg. There is a third
1522 * case, but it does not require resource deallocation.
1524 if (psb
->seg_cnt
> 0)
1525 scsi_dma_unmap(psb
->pCmd
);
1526 if (psb
->prot_seg_cnt
> 0)
1527 dma_unmap_sg(&phba
->pcidev
->dev
, scsi_prot_sglist(psb
->pCmd
),
1528 scsi_prot_sg_count(psb
->pCmd
),
1529 psb
->pCmd
->sc_data_direction
);
1533 * lpfc_handler_fcp_err: FCP response handler.
1534 * @vport: The virtual port for which this call is being executed.
1535 * @lpfc_cmd: Pointer to lpfc_scsi_buf data structure.
1536 * @rsp_iocb: The response IOCB which contains FCP error.
1538 * This routine is called to process response IOCB with status field
1539 * IOSTAT_FCP_RSP_ERROR. This routine sets result field of scsi command
1540 * based upon SCSI and FCP error.
1543 lpfc_handle_fcp_err(struct lpfc_vport
*vport
, struct lpfc_scsi_buf
*lpfc_cmd
,
1544 struct lpfc_iocbq
*rsp_iocb
)
1546 struct scsi_cmnd
*cmnd
= lpfc_cmd
->pCmd
;
1547 struct fcp_cmnd
*fcpcmd
= lpfc_cmd
->fcp_cmnd
;
1548 struct fcp_rsp
*fcprsp
= lpfc_cmd
->fcp_rsp
;
1549 uint32_t fcpi_parm
= rsp_iocb
->iocb
.un
.fcpi
.fcpi_parm
;
1550 uint32_t resp_info
= fcprsp
->rspStatus2
;
1551 uint32_t scsi_status
= fcprsp
->rspStatus3
;
1553 uint32_t host_status
= DID_OK
;
1554 uint32_t rsplen
= 0;
1555 uint32_t logit
= LOG_FCP
| LOG_FCP_ERROR
;
1559 * If this is a task management command, there is no
1560 * scsi packet associated with this lpfc_cmd. The driver
1563 if (fcpcmd
->fcpCntl2
) {
1568 if ((resp_info
& SNS_LEN_VALID
) && fcprsp
->rspSnsLen
) {
1569 uint32_t snslen
= be32_to_cpu(fcprsp
->rspSnsLen
);
1570 if (snslen
> SCSI_SENSE_BUFFERSIZE
)
1571 snslen
= SCSI_SENSE_BUFFERSIZE
;
1573 if (resp_info
& RSP_LEN_VALID
)
1574 rsplen
= be32_to_cpu(fcprsp
->rspRspLen
);
1575 memcpy(cmnd
->sense_buffer
, &fcprsp
->rspInfo0
+ rsplen
, snslen
);
1577 lp
= (uint32_t *)cmnd
->sense_buffer
;
1579 if (!scsi_status
&& (resp_info
& RESID_UNDER
))
1582 lpfc_printf_vlog(vport
, KERN_WARNING
, logit
,
1583 "9024 FCP command x%x failed: x%x SNS x%x x%x "
1584 "Data: x%x x%x x%x x%x x%x\n",
1585 cmnd
->cmnd
[0], scsi_status
,
1586 be32_to_cpu(*lp
), be32_to_cpu(*(lp
+ 3)), resp_info
,
1587 be32_to_cpu(fcprsp
->rspResId
),
1588 be32_to_cpu(fcprsp
->rspSnsLen
),
1589 be32_to_cpu(fcprsp
->rspRspLen
),
1592 if (resp_info
& RSP_LEN_VALID
) {
1593 rsplen
= be32_to_cpu(fcprsp
->rspRspLen
);
1594 if ((rsplen
!= 0 && rsplen
!= 4 && rsplen
!= 8) ||
1595 (fcprsp
->rspInfo3
!= RSP_NO_FAILURE
)) {
1596 host_status
= DID_ERROR
;
1601 scsi_set_resid(cmnd
, 0);
1602 if (resp_info
& RESID_UNDER
) {
1603 scsi_set_resid(cmnd
, be32_to_cpu(fcprsp
->rspResId
));
1605 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_FCP
,
1606 "9025 FCP Read Underrun, expected %d, "
1607 "residual %d Data: x%x x%x x%x\n",
1608 be32_to_cpu(fcpcmd
->fcpDl
),
1609 scsi_get_resid(cmnd
), fcpi_parm
, cmnd
->cmnd
[0],
1613 * If there is an under run check if under run reported by
1614 * storage array is same as the under run reported by HBA.
1615 * If this is not same, there is a dropped frame.
1617 if ((cmnd
->sc_data_direction
== DMA_FROM_DEVICE
) &&
1619 (scsi_get_resid(cmnd
) != fcpi_parm
)) {
1620 lpfc_printf_vlog(vport
, KERN_WARNING
,
1621 LOG_FCP
| LOG_FCP_ERROR
,
1622 "9026 FCP Read Check Error "
1623 "and Underrun Data: x%x x%x x%x x%x\n",
1624 be32_to_cpu(fcpcmd
->fcpDl
),
1625 scsi_get_resid(cmnd
), fcpi_parm
,
1627 scsi_set_resid(cmnd
, scsi_bufflen(cmnd
));
1628 host_status
= DID_ERROR
;
1631 * The cmnd->underflow is the minimum number of bytes that must
1632 * be transfered for this command. Provided a sense condition
1633 * is not present, make sure the actual amount transferred is at
1634 * least the underflow value or fail.
1636 if (!(resp_info
& SNS_LEN_VALID
) &&
1637 (scsi_status
== SAM_STAT_GOOD
) &&
1638 (scsi_bufflen(cmnd
) - scsi_get_resid(cmnd
)
1639 < cmnd
->underflow
)) {
1640 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_FCP
,
1641 "9027 FCP command x%x residual "
1642 "underrun converted to error "
1643 "Data: x%x x%x x%x\n",
1644 cmnd
->cmnd
[0], scsi_bufflen(cmnd
),
1645 scsi_get_resid(cmnd
), cmnd
->underflow
);
1646 host_status
= DID_ERROR
;
1648 } else if (resp_info
& RESID_OVER
) {
1649 lpfc_printf_vlog(vport
, KERN_WARNING
, LOG_FCP
,
1650 "9028 FCP command x%x residual overrun error. "
1651 "Data: x%x x%x \n", cmnd
->cmnd
[0],
1652 scsi_bufflen(cmnd
), scsi_get_resid(cmnd
));
1653 host_status
= DID_ERROR
;
1656 * Check SLI validation that all the transfer was actually done
1657 * (fcpi_parm should be zero). Apply check only to reads.
1659 } else if ((scsi_status
== SAM_STAT_GOOD
) && fcpi_parm
&&
1660 (cmnd
->sc_data_direction
== DMA_FROM_DEVICE
)) {
1661 lpfc_printf_vlog(vport
, KERN_WARNING
, LOG_FCP
| LOG_FCP_ERROR
,
1662 "9029 FCP Read Check Error Data: "
1663 "x%x x%x x%x x%x\n",
1664 be32_to_cpu(fcpcmd
->fcpDl
),
1665 be32_to_cpu(fcprsp
->rspResId
),
1666 fcpi_parm
, cmnd
->cmnd
[0]);
1667 host_status
= DID_ERROR
;
1668 scsi_set_resid(cmnd
, scsi_bufflen(cmnd
));
1672 cmnd
->result
= ScsiResult(host_status
, scsi_status
);
1673 lpfc_send_scsi_error_event(vport
->phba
, vport
, lpfc_cmd
, rsp_iocb
);
1677 * lpfc_scsi_cmd_iocb_cmpl: Scsi cmnd IOCB completion routine.
1678 * @phba: The Hba for which this call is being executed.
1679 * @pIocbIn: The command IOCBQ for the scsi cmnd.
1680 * @pIocbOut: The response IOCBQ for the scsi cmnd .
1682 * This routine assigns scsi command result by looking into response IOCB
1683 * status field appropriately. This routine handles QUEUE FULL condition as
1684 * well by ramping down device queue depth.
1687 lpfc_scsi_cmd_iocb_cmpl(struct lpfc_hba
*phba
, struct lpfc_iocbq
*pIocbIn
,
1688 struct lpfc_iocbq
*pIocbOut
)
1690 struct lpfc_scsi_buf
*lpfc_cmd
=
1691 (struct lpfc_scsi_buf
*) pIocbIn
->context1
;
1692 struct lpfc_vport
*vport
= pIocbIn
->vport
;
1693 struct lpfc_rport_data
*rdata
= lpfc_cmd
->rdata
;
1694 struct lpfc_nodelist
*pnode
= rdata
->pnode
;
1695 struct scsi_cmnd
*cmd
= lpfc_cmd
->pCmd
;
1697 struct scsi_device
*sdev
, *tmp_sdev
;
1699 unsigned long flags
;
1700 struct lpfc_fast_path_event
*fast_path_evt
;
1702 lpfc_cmd
->result
= pIocbOut
->iocb
.un
.ulpWord
[4];
1703 lpfc_cmd
->status
= pIocbOut
->iocb
.ulpStatus
;
1704 if (pnode
&& NLP_CHK_NODE_ACT(pnode
))
1705 atomic_dec(&pnode
->cmd_pending
);
1707 if (lpfc_cmd
->status
) {
1708 if (lpfc_cmd
->status
== IOSTAT_LOCAL_REJECT
&&
1709 (lpfc_cmd
->result
& IOERR_DRVR_MASK
))
1710 lpfc_cmd
->status
= IOSTAT_DRIVER_REJECT
;
1711 else if (lpfc_cmd
->status
>= IOSTAT_CNT
)
1712 lpfc_cmd
->status
= IOSTAT_DEFAULT
;
1714 lpfc_printf_vlog(vport
, KERN_WARNING
, LOG_FCP
,
1715 "9030 FCP cmd x%x failed <%d/%d> "
1716 "status: x%x result: x%x Data: x%x x%x\n",
1718 cmd
->device
? cmd
->device
->id
: 0xffff,
1719 cmd
->device
? cmd
->device
->lun
: 0xffff,
1720 lpfc_cmd
->status
, lpfc_cmd
->result
,
1721 pIocbOut
->iocb
.ulpContext
,
1722 lpfc_cmd
->cur_iocbq
.iocb
.ulpIoTag
);
1724 switch (lpfc_cmd
->status
) {
1725 case IOSTAT_FCP_RSP_ERROR
:
1726 /* Call FCP RSP handler to determine result */
1727 lpfc_handle_fcp_err(vport
, lpfc_cmd
, pIocbOut
);
1729 case IOSTAT_NPORT_BSY
:
1730 case IOSTAT_FABRIC_BSY
:
1731 cmd
->result
= ScsiResult(DID_TRANSPORT_DISRUPTED
, 0);
1732 fast_path_evt
= lpfc_alloc_fast_evt(phba
);
1735 fast_path_evt
->un
.fabric_evt
.event_type
=
1736 FC_REG_FABRIC_EVENT
;
1737 fast_path_evt
->un
.fabric_evt
.subcategory
=
1738 (lpfc_cmd
->status
== IOSTAT_NPORT_BSY
) ?
1739 LPFC_EVENT_PORT_BUSY
: LPFC_EVENT_FABRIC_BUSY
;
1740 if (pnode
&& NLP_CHK_NODE_ACT(pnode
)) {
1741 memcpy(&fast_path_evt
->un
.fabric_evt
.wwpn
,
1742 &pnode
->nlp_portname
,
1743 sizeof(struct lpfc_name
));
1744 memcpy(&fast_path_evt
->un
.fabric_evt
.wwnn
,
1745 &pnode
->nlp_nodename
,
1746 sizeof(struct lpfc_name
));
1748 fast_path_evt
->vport
= vport
;
1749 fast_path_evt
->work_evt
.evt
=
1750 LPFC_EVT_FASTPATH_MGMT_EVT
;
1751 spin_lock_irqsave(&phba
->hbalock
, flags
);
1752 list_add_tail(&fast_path_evt
->work_evt
.evt_listp
,
1754 spin_unlock_irqrestore(&phba
->hbalock
, flags
);
1755 lpfc_worker_wake_up(phba
);
1757 case IOSTAT_LOCAL_REJECT
:
1758 if (lpfc_cmd
->result
== IOERR_INVALID_RPI
||
1759 lpfc_cmd
->result
== IOERR_NO_RESOURCES
||
1760 lpfc_cmd
->result
== IOERR_ABORT_REQUESTED
) {
1761 cmd
->result
= ScsiResult(DID_REQUEUE
, 0);
1765 if ((lpfc_cmd
->result
== IOERR_RX_DMA_FAILED
||
1766 lpfc_cmd
->result
== IOERR_TX_DMA_FAILED
) &&
1767 pIocbOut
->iocb
.unsli3
.sli3_bg
.bgstat
) {
1768 if (scsi_get_prot_op(cmd
) != SCSI_PROT_NORMAL
) {
1770 * This is a response for a BG enabled
1771 * cmd. Parse BG error
1773 lpfc_parse_bg_err(phba
, lpfc_cmd
,
1777 lpfc_printf_vlog(vport
, KERN_WARNING
,
1779 "9031 non-zero BGSTAT "
1780 "on unprotected cmd");
1784 /* else: fall through */
1786 cmd
->result
= ScsiResult(DID_ERROR
, 0);
1790 if (!pnode
|| !NLP_CHK_NODE_ACT(pnode
)
1791 || (pnode
->nlp_state
!= NLP_STE_MAPPED_NODE
))
1792 cmd
->result
= ScsiResult(DID_TRANSPORT_DISRUPTED
,
1795 cmd
->result
= ScsiResult(DID_OK
, 0);
1798 if (cmd
->result
|| lpfc_cmd
->fcp_rsp
->rspSnsLen
) {
1799 uint32_t *lp
= (uint32_t *)cmd
->sense_buffer
;
1801 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_FCP
,
1802 "0710 Iodone <%d/%d> cmd %p, error "
1803 "x%x SNS x%x x%x Data: x%x x%x\n",
1804 cmd
->device
->id
, cmd
->device
->lun
, cmd
,
1805 cmd
->result
, *lp
, *(lp
+ 3), cmd
->retries
,
1806 scsi_get_resid(cmd
));
1809 lpfc_update_stats(phba
, lpfc_cmd
);
1810 result
= cmd
->result
;
1812 if (vport
->cfg_max_scsicmpl_time
&&
1813 time_after(jiffies
, lpfc_cmd
->start_time
+
1814 msecs_to_jiffies(vport
->cfg_max_scsicmpl_time
))) {
1815 spin_lock_irqsave(sdev
->host
->host_lock
, flags
);
1816 if (pnode
&& NLP_CHK_NODE_ACT(pnode
)) {
1817 if (pnode
->cmd_qdepth
>
1818 atomic_read(&pnode
->cmd_pending
) &&
1819 (atomic_read(&pnode
->cmd_pending
) >
1820 LPFC_MIN_TGT_QDEPTH
) &&
1821 ((cmd
->cmnd
[0] == READ_10
) ||
1822 (cmd
->cmnd
[0] == WRITE_10
)))
1824 atomic_read(&pnode
->cmd_pending
);
1826 pnode
->last_change_time
= jiffies
;
1828 spin_unlock_irqrestore(sdev
->host
->host_lock
, flags
);
1829 } else if (pnode
&& NLP_CHK_NODE_ACT(pnode
)) {
1830 if ((pnode
->cmd_qdepth
< LPFC_MAX_TGT_QDEPTH
) &&
1831 time_after(jiffies
, pnode
->last_change_time
+
1832 msecs_to_jiffies(LPFC_TGTQ_INTERVAL
))) {
1833 spin_lock_irqsave(sdev
->host
->host_lock
, flags
);
1834 pnode
->cmd_qdepth
+= pnode
->cmd_qdepth
*
1835 LPFC_TGTQ_RAMPUP_PCENT
/ 100;
1836 if (pnode
->cmd_qdepth
> LPFC_MAX_TGT_QDEPTH
)
1837 pnode
->cmd_qdepth
= LPFC_MAX_TGT_QDEPTH
;
1838 pnode
->last_change_time
= jiffies
;
1839 spin_unlock_irqrestore(sdev
->host
->host_lock
, flags
);
1843 lpfc_scsi_unprep_dma_buf(phba
, lpfc_cmd
);
1844 cmd
->scsi_done(cmd
);
1846 if (phba
->cfg_poll
& ENABLE_FCP_RING_POLLING
) {
1848 * If there is a thread waiting for command completion
1849 * wake up the thread.
1851 spin_lock_irqsave(sdev
->host
->host_lock
, flags
);
1852 lpfc_cmd
->pCmd
= NULL
;
1853 if (lpfc_cmd
->waitq
)
1854 wake_up(lpfc_cmd
->waitq
);
1855 spin_unlock_irqrestore(sdev
->host
->host_lock
, flags
);
1856 lpfc_release_scsi_buf(phba
, lpfc_cmd
);
1862 lpfc_rampup_queue_depth(vport
, sdev
);
1864 if (!result
&& pnode
&& NLP_CHK_NODE_ACT(pnode
) &&
1865 ((jiffies
- pnode
->last_ramp_up_time
) >
1866 LPFC_Q_RAMP_UP_INTERVAL
* HZ
) &&
1867 ((jiffies
- pnode
->last_q_full_time
) >
1868 LPFC_Q_RAMP_UP_INTERVAL
* HZ
) &&
1869 (vport
->cfg_lun_queue_depth
> sdev
->queue_depth
)) {
1870 shost_for_each_device(tmp_sdev
, sdev
->host
) {
1871 if (vport
->cfg_lun_queue_depth
> tmp_sdev
->queue_depth
){
1872 if (tmp_sdev
->id
!= sdev
->id
)
1874 if (tmp_sdev
->ordered_tags
)
1875 scsi_adjust_queue_depth(tmp_sdev
,
1877 tmp_sdev
->queue_depth
+1);
1879 scsi_adjust_queue_depth(tmp_sdev
,
1881 tmp_sdev
->queue_depth
+1);
1883 pnode
->last_ramp_up_time
= jiffies
;
1886 lpfc_send_sdev_queuedepth_change_event(phba
, vport
, pnode
,
1888 sdev
->queue_depth
- 1, sdev
->queue_depth
);
1892 * Check for queue full. If the lun is reporting queue full, then
1893 * back off the lun queue depth to prevent target overloads.
1895 if (result
== SAM_STAT_TASK_SET_FULL
&& pnode
&&
1896 NLP_CHK_NODE_ACT(pnode
)) {
1897 pnode
->last_q_full_time
= jiffies
;
1899 shost_for_each_device(tmp_sdev
, sdev
->host
) {
1900 if (tmp_sdev
->id
!= sdev
->id
)
1902 depth
= scsi_track_queue_full(tmp_sdev
,
1903 tmp_sdev
->queue_depth
- 1);
1906 * The queue depth cannot be lowered any more.
1907 * Modify the returned error code to store
1908 * the final depth value set by
1909 * scsi_track_queue_full.
1912 depth
= sdev
->host
->cmd_per_lun
;
1915 lpfc_printf_vlog(vport
, KERN_WARNING
, LOG_FCP
,
1916 "0711 detected queue full - lun queue "
1917 "depth adjusted to %d.\n", depth
);
1918 lpfc_send_sdev_queuedepth_change_event(phba
, vport
,
1925 * If there is a thread waiting for command completion
1926 * wake up the thread.
1928 spin_lock_irqsave(sdev
->host
->host_lock
, flags
);
1929 lpfc_cmd
->pCmd
= NULL
;
1930 if (lpfc_cmd
->waitq
)
1931 wake_up(lpfc_cmd
->waitq
);
1932 spin_unlock_irqrestore(sdev
->host
->host_lock
, flags
);
1934 lpfc_release_scsi_buf(phba
, lpfc_cmd
);
1938 * lpfc_fcpcmd_to_iocb - copy the fcp_cmd data into the IOCB.
1939 * @data: A pointer to the immediate command data portion of the IOCB.
1940 * @fcp_cmnd: The FCP Command that is provided by the SCSI layer.
1942 * The routine copies the entire FCP command from @fcp_cmnd to @data while
1943 * byte swapping the data to big endian format for transmission on the wire.
1946 lpfc_fcpcmd_to_iocb(uint8_t *data
, struct fcp_cmnd
*fcp_cmnd
)
1949 for (i
= 0, j
= 0; i
< sizeof(struct fcp_cmnd
);
1950 i
+= sizeof(uint32_t), j
++) {
1951 ((uint32_t *)data
)[j
] = cpu_to_be32(((uint32_t *)fcp_cmnd
)[j
]);
1956 * lpfc_scsi_prep_cmnd: Routine to convert scsi cmnd to FCP information unit.
1957 * @vport: The virtual port for which this call is being executed.
1958 * @lpfc_cmd: The scsi command which needs to send.
1959 * @pnode: Pointer to lpfc_nodelist.
1961 * This routine initializes fcp_cmnd and iocb data structure from scsi command
1965 lpfc_scsi_prep_cmnd(struct lpfc_vport
*vport
, struct lpfc_scsi_buf
*lpfc_cmd
,
1966 struct lpfc_nodelist
*pnode
)
1968 struct lpfc_hba
*phba
= vport
->phba
;
1969 struct scsi_cmnd
*scsi_cmnd
= lpfc_cmd
->pCmd
;
1970 struct fcp_cmnd
*fcp_cmnd
= lpfc_cmd
->fcp_cmnd
;
1971 IOCB_t
*iocb_cmd
= &lpfc_cmd
->cur_iocbq
.iocb
;
1972 struct lpfc_iocbq
*piocbq
= &(lpfc_cmd
->cur_iocbq
);
1973 int datadir
= scsi_cmnd
->sc_data_direction
;
1976 if (!pnode
|| !NLP_CHK_NODE_ACT(pnode
))
1979 lpfc_cmd
->fcp_rsp
->rspSnsLen
= 0;
1980 /* clear task management bits */
1981 lpfc_cmd
->fcp_cmnd
->fcpCntl2
= 0;
1983 int_to_scsilun(lpfc_cmd
->pCmd
->device
->lun
,
1984 &lpfc_cmd
->fcp_cmnd
->fcp_lun
);
1986 memcpy(&fcp_cmnd
->fcpCdb
[0], scsi_cmnd
->cmnd
, 16);
1988 if (scsi_populate_tag_msg(scsi_cmnd
, tag
)) {
1990 case HEAD_OF_QUEUE_TAG
:
1991 fcp_cmnd
->fcpCntl1
= HEAD_OF_Q
;
1993 case ORDERED_QUEUE_TAG
:
1994 fcp_cmnd
->fcpCntl1
= ORDERED_Q
;
1997 fcp_cmnd
->fcpCntl1
= SIMPLE_Q
;
2001 fcp_cmnd
->fcpCntl1
= 0;
2004 * There are three possibilities here - use scatter-gather segment, use
2005 * the single mapping, or neither. Start the lpfc command prep by
2006 * bumping the bpl beyond the fcp_cmnd and fcp_rsp regions to the first
2009 if (scsi_sg_count(scsi_cmnd
)) {
2010 if (datadir
== DMA_TO_DEVICE
) {
2011 iocb_cmd
->ulpCommand
= CMD_FCP_IWRITE64_CR
;
2012 iocb_cmd
->un
.fcpi
.fcpi_parm
= 0;
2013 iocb_cmd
->ulpPU
= 0;
2014 fcp_cmnd
->fcpCntl3
= WRITE_DATA
;
2015 phba
->fc4OutputRequests
++;
2017 iocb_cmd
->ulpCommand
= CMD_FCP_IREAD64_CR
;
2018 iocb_cmd
->ulpPU
= PARM_READ_CHECK
;
2019 fcp_cmnd
->fcpCntl3
= READ_DATA
;
2020 phba
->fc4InputRequests
++;
2023 iocb_cmd
->ulpCommand
= CMD_FCP_ICMND64_CR
;
2024 iocb_cmd
->un
.fcpi
.fcpi_parm
= 0;
2025 iocb_cmd
->ulpPU
= 0;
2026 fcp_cmnd
->fcpCntl3
= 0;
2027 phba
->fc4ControlRequests
++;
2029 if (phba
->sli_rev
== 3 &&
2030 !(phba
->sli3_options
& LPFC_SLI3_BG_ENABLED
))
2031 lpfc_fcpcmd_to_iocb(iocb_cmd
->unsli3
.fcp_ext
.icd
, fcp_cmnd
);
2033 * Finish initializing those IOCB fields that are independent
2034 * of the scsi_cmnd request_buffer
2036 piocbq
->iocb
.ulpContext
= pnode
->nlp_rpi
;
2037 if (pnode
->nlp_fcp_info
& NLP_FCP_2_DEVICE
)
2038 piocbq
->iocb
.ulpFCP2Rcvy
= 1;
2040 piocbq
->iocb
.ulpFCP2Rcvy
= 0;
2042 piocbq
->iocb
.ulpClass
= (pnode
->nlp_fcp_info
& 0x0f);
2043 piocbq
->context1
= lpfc_cmd
;
2044 piocbq
->iocb_cmpl
= lpfc_scsi_cmd_iocb_cmpl
;
2045 piocbq
->iocb
.ulpTimeout
= lpfc_cmd
->timeout
;
2046 piocbq
->vport
= vport
;
2050 * lpfc_scsi_prep_task_mgmt_cmnd: Convert scsi TM cmnd to FCP information unit.
2051 * @vport: The virtual port for which this call is being executed.
2052 * @lpfc_cmd: Pointer to lpfc_scsi_buf data structure.
2053 * @lun: Logical unit number.
2054 * @task_mgmt_cmd: SCSI task management command.
2056 * This routine creates FCP information unit corresponding to @task_mgmt_cmd.
2063 lpfc_scsi_prep_task_mgmt_cmd(struct lpfc_vport
*vport
,
2064 struct lpfc_scsi_buf
*lpfc_cmd
,
2066 uint8_t task_mgmt_cmd
)
2068 struct lpfc_iocbq
*piocbq
;
2070 struct fcp_cmnd
*fcp_cmnd
;
2071 struct lpfc_rport_data
*rdata
= lpfc_cmd
->rdata
;
2072 struct lpfc_nodelist
*ndlp
= rdata
->pnode
;
2074 if (!ndlp
|| !NLP_CHK_NODE_ACT(ndlp
) ||
2075 ndlp
->nlp_state
!= NLP_STE_MAPPED_NODE
)
2078 piocbq
= &(lpfc_cmd
->cur_iocbq
);
2079 piocbq
->vport
= vport
;
2081 piocb
= &piocbq
->iocb
;
2083 fcp_cmnd
= lpfc_cmd
->fcp_cmnd
;
2084 /* Clear out any old data in the FCP command area */
2085 memset(fcp_cmnd
, 0, sizeof(struct fcp_cmnd
));
2086 int_to_scsilun(lun
, &fcp_cmnd
->fcp_lun
);
2087 fcp_cmnd
->fcpCntl2
= task_mgmt_cmd
;
2088 if (vport
->phba
->sli_rev
== 3 &&
2089 !(vport
->phba
->sli3_options
& LPFC_SLI3_BG_ENABLED
))
2090 lpfc_fcpcmd_to_iocb(piocb
->unsli3
.fcp_ext
.icd
, fcp_cmnd
);
2091 piocb
->ulpCommand
= CMD_FCP_ICMND64_CR
;
2092 piocb
->ulpContext
= ndlp
->nlp_rpi
;
2093 if (ndlp
->nlp_fcp_info
& NLP_FCP_2_DEVICE
) {
2094 piocb
->ulpFCP2Rcvy
= 1;
2096 piocb
->ulpClass
= (ndlp
->nlp_fcp_info
& 0x0f);
2098 /* ulpTimeout is only one byte */
2099 if (lpfc_cmd
->timeout
> 0xff) {
2101 * Do not timeout the command at the firmware level.
2102 * The driver will provide the timeout mechanism.
2104 piocb
->ulpTimeout
= 0;
2106 piocb
->ulpTimeout
= lpfc_cmd
->timeout
;
2113 * lpc_taskmgmt_def_cmpl: IOCB completion routine for task management command.
2114 * @phba: The Hba for which this call is being executed.
2115 * @cmdiocbq: Pointer to lpfc_iocbq data structure.
2116 * @rspiocbq: Pointer to lpfc_iocbq data structure.
2118 * This routine is IOCB completion routine for device reset and target reset
2119 * routine. This routine release scsi buffer associated with lpfc_cmd.
2122 lpfc_tskmgmt_def_cmpl(struct lpfc_hba
*phba
,
2123 struct lpfc_iocbq
*cmdiocbq
,
2124 struct lpfc_iocbq
*rspiocbq
)
2126 struct lpfc_scsi_buf
*lpfc_cmd
=
2127 (struct lpfc_scsi_buf
*) cmdiocbq
->context1
;
2129 lpfc_release_scsi_buf(phba
, lpfc_cmd
);
2134 * lpfc_scsi_tgt_reset: Target reset handler.
2135 * @lpfc_cmd: Pointer to lpfc_scsi_buf data structure
2136 * @vport: The virtual port for which this call is being executed.
2137 * @tgt_id: Target ID.
2139 * @rdata: Pointer to lpfc_rport_data.
2141 * This routine issues a TARGET RESET iocb to reset a target with @tgt_id ID.
2148 lpfc_scsi_tgt_reset(struct lpfc_scsi_buf
*lpfc_cmd
, struct lpfc_vport
*vport
,
2149 unsigned tgt_id
, unsigned int lun
,
2150 struct lpfc_rport_data
*rdata
)
2152 struct lpfc_hba
*phba
= vport
->phba
;
2153 struct lpfc_iocbq
*iocbq
;
2154 struct lpfc_iocbq
*iocbqrsp
;
2158 if (!rdata
->pnode
|| !NLP_CHK_NODE_ACT(rdata
->pnode
))
2161 lpfc_cmd
->rdata
= rdata
;
2162 status
= lpfc_scsi_prep_task_mgmt_cmd(vport
, lpfc_cmd
, lun
,
2167 iocbq
= &lpfc_cmd
->cur_iocbq
;
2168 iocbqrsp
= lpfc_sli_get_iocbq(phba
);
2173 /* Issue Target Reset to TGT <num> */
2174 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_FCP
,
2175 "0702 Issue Target Reset to TGT %d Data: x%x x%x\n",
2176 tgt_id
, rdata
->pnode
->nlp_rpi
, rdata
->pnode
->nlp_flag
);
2177 status
= lpfc_sli_issue_iocb_wait(phba
,
2178 &phba
->sli
.ring
[phba
->sli
.fcp_ring
],
2179 iocbq
, iocbqrsp
, lpfc_cmd
->timeout
);
2180 if (status
!= IOCB_SUCCESS
) {
2181 if (status
== IOCB_TIMEDOUT
) {
2182 iocbq
->iocb_cmpl
= lpfc_tskmgmt_def_cmpl
;
2183 ret
= TIMEOUT_ERROR
;
2186 lpfc_cmd
->status
= IOSTAT_DRIVER_REJECT
;
2189 lpfc_cmd
->result
= iocbqrsp
->iocb
.un
.ulpWord
[4];
2190 lpfc_cmd
->status
= iocbqrsp
->iocb
.ulpStatus
;
2191 if (lpfc_cmd
->status
== IOSTAT_LOCAL_REJECT
&&
2192 (lpfc_cmd
->result
& IOERR_DRVR_MASK
))
2193 lpfc_cmd
->status
= IOSTAT_DRIVER_REJECT
;
2196 lpfc_sli_release_iocbq(phba
, iocbqrsp
);
2201 * lpfc_info: Info entry point of scsi_host_template data structure.
2202 * @host: The scsi host for which this call is being executed.
2204 * This routine provides module information about hba.
2207 * Pointer to char - Success.
2210 lpfc_info(struct Scsi_Host
*host
)
2212 struct lpfc_vport
*vport
= (struct lpfc_vport
*) host
->hostdata
;
2213 struct lpfc_hba
*phba
= vport
->phba
;
2215 static char lpfcinfobuf
[384];
2217 memset(lpfcinfobuf
,0,384);
2218 if (phba
&& phba
->pcidev
){
2219 strncpy(lpfcinfobuf
, phba
->ModelDesc
, 256);
2220 len
= strlen(lpfcinfobuf
);
2221 snprintf(lpfcinfobuf
+ len
,
2223 " on PCI bus %02x device %02x irq %d",
2224 phba
->pcidev
->bus
->number
,
2225 phba
->pcidev
->devfn
,
2227 len
= strlen(lpfcinfobuf
);
2228 if (phba
->Port
[0]) {
2229 snprintf(lpfcinfobuf
+ len
,
2239 * lpfc_poll_rearm_time: Routine to modify fcp_poll timer of hba.
2240 * @phba: The Hba for which this call is being executed.
2242 * This routine modifies fcp_poll_timer field of @phba by cfg_poll_tmo.
2243 * The default value of cfg_poll_tmo is 10 milliseconds.
2245 static __inline__
void lpfc_poll_rearm_timer(struct lpfc_hba
* phba
)
2247 unsigned long poll_tmo_expires
=
2248 (jiffies
+ msecs_to_jiffies(phba
->cfg_poll_tmo
));
2250 if (phba
->sli
.ring
[LPFC_FCP_RING
].txcmplq_cnt
)
2251 mod_timer(&phba
->fcp_poll_timer
,
2256 * lpfc_poll_start_timer: Routine to start fcp_poll_timer of HBA.
2257 * @phba: The Hba for which this call is being executed.
2259 * This routine starts the fcp_poll_timer of @phba.
2261 void lpfc_poll_start_timer(struct lpfc_hba
* phba
)
2263 lpfc_poll_rearm_timer(phba
);
2267 * lpfc_poll_timeout: Restart polling timer.
2268 * @ptr: Map to lpfc_hba data structure pointer.
2270 * This routine restarts fcp_poll timer, when FCP ring polling is enable
2271 * and FCP Ring interrupt is disable.
2274 void lpfc_poll_timeout(unsigned long ptr
)
2276 struct lpfc_hba
*phba
= (struct lpfc_hba
*) ptr
;
2278 if (phba
->cfg_poll
& ENABLE_FCP_RING_POLLING
) {
2279 lpfc_sli_poll_fcp_ring (phba
);
2280 if (phba
->cfg_poll
& DISABLE_FCP_RING_INT
)
2281 lpfc_poll_rearm_timer(phba
);
2286 * lpfc_queuecommand: Queuecommand entry point of Scsi Host Templater data
2288 * @cmnd: Pointer to scsi_cmnd data structure.
2289 * @done: Pointer to done routine.
2291 * Driver registers this routine to scsi midlayer to submit a @cmd to process.
2292 * This routine prepares an IOCB from scsi command and provides to firmware.
2293 * The @done callback is invoked after driver finished processing the command.
2297 * SCSI_MLQUEUE_HOST_BUSY - Block all devices served by this host temporarily.
2300 lpfc_queuecommand(struct scsi_cmnd
*cmnd
, void (*done
) (struct scsi_cmnd
*))
2302 struct Scsi_Host
*shost
= cmnd
->device
->host
;
2303 struct lpfc_vport
*vport
= (struct lpfc_vport
*) shost
->hostdata
;
2304 struct lpfc_hba
*phba
= vport
->phba
;
2305 struct lpfc_sli
*psli
= &phba
->sli
;
2306 struct lpfc_rport_data
*rdata
= cmnd
->device
->hostdata
;
2307 struct lpfc_nodelist
*ndlp
= rdata
->pnode
;
2308 struct lpfc_scsi_buf
*lpfc_cmd
;
2309 struct fc_rport
*rport
= starget_to_rport(scsi_target(cmnd
->device
));
2312 err
= fc_remote_port_chkready(rport
);
2315 goto out_fail_command
;
2318 if (!(phba
->sli3_options
& LPFC_SLI3_BG_ENABLED
) &&
2319 scsi_get_prot_op(cmnd
) != SCSI_PROT_NORMAL
) {
2321 printk(KERN_ERR
"BLKGRD ERROR: rcvd protected cmd:%02x op:%02x "
2322 "str=%s without registering for BlockGuard - "
2323 "Rejecting command\n",
2324 cmnd
->cmnd
[0], scsi_get_prot_op(cmnd
),
2325 dif_op_str
[scsi_get_prot_op(cmnd
)]);
2326 goto out_fail_command
;
2330 * Catch race where our node has transitioned, but the
2331 * transport is still transitioning.
2333 if (!ndlp
|| !NLP_CHK_NODE_ACT(ndlp
)) {
2334 cmnd
->result
= ScsiResult(DID_TRANSPORT_DISRUPTED
, 0);
2335 goto out_fail_command
;
2337 if (vport
->cfg_max_scsicmpl_time
&&
2338 (atomic_read(&ndlp
->cmd_pending
) >= ndlp
->cmd_qdepth
))
2341 lpfc_cmd
= lpfc_get_scsi_buf(phba
);
2342 if (lpfc_cmd
== NULL
) {
2343 lpfc_rampdown_queue_depth(phba
);
2345 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_FCP
,
2346 "0707 driver's buffer pool is empty, "
2352 * Store the midlayer's command structure for the completion phase
2353 * and complete the command initialization.
2355 lpfc_cmd
->pCmd
= cmnd
;
2356 lpfc_cmd
->rdata
= rdata
;
2357 lpfc_cmd
->timeout
= 0;
2358 lpfc_cmd
->start_time
= jiffies
;
2359 cmnd
->host_scribble
= (unsigned char *)lpfc_cmd
;
2360 cmnd
->scsi_done
= done
;
2362 if (scsi_get_prot_op(cmnd
) != SCSI_PROT_NORMAL
) {
2363 lpfc_printf_vlog(vport
, KERN_WARNING
, LOG_BG
,
2364 "9033 BLKGRD: rcvd protected cmd:%02x op:%02x "
2366 cmnd
->cmnd
[0], scsi_get_prot_op(cmnd
),
2367 dif_op_str
[scsi_get_prot_op(cmnd
)]);
2368 lpfc_printf_vlog(vport
, KERN_WARNING
, LOG_BG
,
2369 "9034 BLKGRD: CDB: %02x %02x %02x %02x %02x "
2370 "%02x %02x %02x %02x %02x \n",
2371 cmnd
->cmnd
[0], cmnd
->cmnd
[1], cmnd
->cmnd
[2],
2372 cmnd
->cmnd
[3], cmnd
->cmnd
[4], cmnd
->cmnd
[5],
2373 cmnd
->cmnd
[6], cmnd
->cmnd
[7], cmnd
->cmnd
[8],
2375 if (cmnd
->cmnd
[0] == READ_10
)
2376 lpfc_printf_vlog(vport
, KERN_WARNING
, LOG_BG
,
2377 "9035 BLKGRD: READ @ sector %llu, "
2379 (unsigned long long)scsi_get_lba(cmnd
),
2380 cmnd
->request
->nr_sectors
);
2381 else if (cmnd
->cmnd
[0] == WRITE_10
)
2382 lpfc_printf_vlog(vport
, KERN_WARNING
, LOG_BG
,
2383 "9036 BLKGRD: WRITE @ sector %llu, "
2384 "count %lu cmd=%p\n",
2385 (unsigned long long)scsi_get_lba(cmnd
),
2386 cmnd
->request
->nr_sectors
,
2389 err
= lpfc_bg_scsi_prep_dma_buf(phba
, lpfc_cmd
);
2391 lpfc_printf_vlog(vport
, KERN_WARNING
, LOG_BG
,
2392 "9038 BLKGRD: rcvd unprotected cmd:%02x op:%02x"
2394 cmnd
->cmnd
[0], scsi_get_prot_op(cmnd
),
2395 dif_op_str
[scsi_get_prot_op(cmnd
)]);
2396 lpfc_printf_vlog(vport
, KERN_WARNING
, LOG_BG
,
2397 "9039 BLKGRD: CDB: %02x %02x %02x %02x %02x "
2398 "%02x %02x %02x %02x %02x \n",
2399 cmnd
->cmnd
[0], cmnd
->cmnd
[1], cmnd
->cmnd
[2],
2400 cmnd
->cmnd
[3], cmnd
->cmnd
[4], cmnd
->cmnd
[5],
2401 cmnd
->cmnd
[6], cmnd
->cmnd
[7], cmnd
->cmnd
[8],
2403 if (cmnd
->cmnd
[0] == READ_10
)
2404 lpfc_printf_vlog(vport
, KERN_WARNING
, LOG_BG
,
2405 "9040 dbg: READ @ sector %llu, "
2407 (unsigned long long)scsi_get_lba(cmnd
),
2408 cmnd
->request
->nr_sectors
);
2409 else if (cmnd
->cmnd
[0] == WRITE_10
)
2410 lpfc_printf_vlog(vport
, KERN_WARNING
, LOG_BG
,
2411 "9041 dbg: WRITE @ sector %llu, "
2412 "count %lu cmd=%p\n",
2413 (unsigned long long)scsi_get_lba(cmnd
),
2414 cmnd
->request
->nr_sectors
, cmnd
);
2416 lpfc_printf_vlog(vport
, KERN_WARNING
, LOG_BG
,
2417 "9042 dbg: parser not implemented\n");
2418 err
= lpfc_scsi_prep_dma_buf(phba
, lpfc_cmd
);
2422 goto out_host_busy_free_buf
;
2424 lpfc_scsi_prep_cmnd(vport
, lpfc_cmd
, ndlp
);
2426 atomic_inc(&ndlp
->cmd_pending
);
2427 err
= lpfc_sli_issue_iocb(phba
, &phba
->sli
.ring
[psli
->fcp_ring
],
2428 &lpfc_cmd
->cur_iocbq
, SLI_IOCB_RET_IOCB
);
2430 atomic_dec(&ndlp
->cmd_pending
);
2431 goto out_host_busy_free_buf
;
2433 if (phba
->cfg_poll
& ENABLE_FCP_RING_POLLING
) {
2434 lpfc_sli_poll_fcp_ring(phba
);
2435 if (phba
->cfg_poll
& DISABLE_FCP_RING_INT
)
2436 lpfc_poll_rearm_timer(phba
);
2441 out_host_busy_free_buf
:
2442 lpfc_scsi_unprep_dma_buf(phba
, lpfc_cmd
);
2443 lpfc_release_scsi_buf(phba
, lpfc_cmd
);
2445 return SCSI_MLQUEUE_HOST_BUSY
;
2453 * lpfc_block_error_handler: Routine to block error handler.
2454 * @cmnd: Pointer to scsi_cmnd data structure.
2456 * This routine blocks execution till fc_rport state is not FC_PORSTAT_BLCOEKD.
2459 lpfc_block_error_handler(struct scsi_cmnd
*cmnd
)
2461 struct Scsi_Host
*shost
= cmnd
->device
->host
;
2462 struct fc_rport
*rport
= starget_to_rport(scsi_target(cmnd
->device
));
2464 spin_lock_irq(shost
->host_lock
);
2465 while (rport
->port_state
== FC_PORTSTATE_BLOCKED
) {
2466 spin_unlock_irq(shost
->host_lock
);
2468 spin_lock_irq(shost
->host_lock
);
2470 spin_unlock_irq(shost
->host_lock
);
2475 * lpfc_abort_handler: Eh_abort_handler entry point of Scsi Host Template data
2477 * @cmnd: Pointer to scsi_cmnd data structure.
2479 * This routine aborts @cmnd pending in base driver.
2486 lpfc_abort_handler(struct scsi_cmnd
*cmnd
)
2488 struct Scsi_Host
*shost
= cmnd
->device
->host
;
2489 struct lpfc_vport
*vport
= (struct lpfc_vport
*) shost
->hostdata
;
2490 struct lpfc_hba
*phba
= vport
->phba
;
2491 struct lpfc_sli_ring
*pring
= &phba
->sli
.ring
[phba
->sli
.fcp_ring
];
2492 struct lpfc_iocbq
*iocb
;
2493 struct lpfc_iocbq
*abtsiocb
;
2494 struct lpfc_scsi_buf
*lpfc_cmd
;
2497 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(waitq
);
2499 lpfc_block_error_handler(cmnd
);
2500 lpfc_cmd
= (struct lpfc_scsi_buf
*)cmnd
->host_scribble
;
2504 * If pCmd field of the corresponding lpfc_scsi_buf structure
2505 * points to a different SCSI command, then the driver has
2506 * already completed this command, but the midlayer did not
2507 * see the completion before the eh fired. Just return
2510 iocb
= &lpfc_cmd
->cur_iocbq
;
2511 if (lpfc_cmd
->pCmd
!= cmnd
)
2514 BUG_ON(iocb
->context1
!= lpfc_cmd
);
2516 abtsiocb
= lpfc_sli_get_iocbq(phba
);
2517 if (abtsiocb
== NULL
) {
2523 * The scsi command can not be in txq and it is in flight because the
2524 * pCmd is still pointig at the SCSI command we have to abort. There
2525 * is no need to search the txcmplq. Just send an abort to the FW.
2529 icmd
= &abtsiocb
->iocb
;
2530 icmd
->un
.acxri
.abortType
= ABORT_TYPE_ABTS
;
2531 icmd
->un
.acxri
.abortContextTag
= cmd
->ulpContext
;
2532 icmd
->un
.acxri
.abortIoTag
= cmd
->ulpIoTag
;
2535 icmd
->ulpClass
= cmd
->ulpClass
;
2536 if (lpfc_is_link_up(phba
))
2537 icmd
->ulpCommand
= CMD_ABORT_XRI_CN
;
2539 icmd
->ulpCommand
= CMD_CLOSE_XRI_CN
;
2541 abtsiocb
->iocb_cmpl
= lpfc_sli_abort_fcp_cmpl
;
2542 abtsiocb
->vport
= vport
;
2543 if (lpfc_sli_issue_iocb(phba
, pring
, abtsiocb
, 0) == IOCB_ERROR
) {
2544 lpfc_sli_release_iocbq(phba
, abtsiocb
);
2549 if (phba
->cfg_poll
& DISABLE_FCP_RING_INT
)
2550 lpfc_sli_poll_fcp_ring (phba
);
2552 lpfc_cmd
->waitq
= &waitq
;
2553 /* Wait for abort to complete */
2554 wait_event_timeout(waitq
,
2555 (lpfc_cmd
->pCmd
!= cmnd
),
2556 (2*vport
->cfg_devloss_tmo
*HZ
));
2558 spin_lock_irq(shost
->host_lock
);
2559 lpfc_cmd
->waitq
= NULL
;
2560 spin_unlock_irq(shost
->host_lock
);
2562 if (lpfc_cmd
->pCmd
== cmnd
) {
2564 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_FCP
,
2565 "0748 abort handler timed out waiting "
2566 "for abort to complete: ret %#x, ID %d, "
2567 "LUN %d, snum %#lx\n",
2568 ret
, cmnd
->device
->id
, cmnd
->device
->lun
,
2569 cmnd
->serial_number
);
2573 lpfc_printf_vlog(vport
, KERN_WARNING
, LOG_FCP
,
2574 "0749 SCSI Layer I/O Abort Request Status x%x ID %d "
2575 "LUN %d snum %#lx\n", ret
, cmnd
->device
->id
,
2576 cmnd
->device
->lun
, cmnd
->serial_number
);
2581 * lpfc_device_reset_handler: eh_device_reset entry point of Scsi Host Template
2583 * @cmnd: Pointer to scsi_cmnd data structure.
2585 * This routine does a device reset by sending a TARGET_RESET task management
2593 lpfc_device_reset_handler(struct scsi_cmnd
*cmnd
)
2595 struct Scsi_Host
*shost
= cmnd
->device
->host
;
2596 struct lpfc_vport
*vport
= (struct lpfc_vport
*) shost
->hostdata
;
2597 struct lpfc_hba
*phba
= vport
->phba
;
2598 struct lpfc_scsi_buf
*lpfc_cmd
;
2599 struct lpfc_iocbq
*iocbq
, *iocbqrsp
;
2600 struct lpfc_rport_data
*rdata
= cmnd
->device
->hostdata
;
2601 struct lpfc_nodelist
*pnode
= rdata
->pnode
;
2602 unsigned long later
;
2606 struct lpfc_scsi_event_header scsi_event
;
2608 lpfc_block_error_handler(cmnd
);
2610 * If target is not in a MAPPED state, delay the reset until
2611 * target is rediscovered or devloss timeout expires.
2613 later
= msecs_to_jiffies(2 * vport
->cfg_devloss_tmo
* 1000) + jiffies
;
2614 while (time_after(later
, jiffies
)) {
2615 if (!pnode
|| !NLP_CHK_NODE_ACT(pnode
))
2617 if (pnode
->nlp_state
== NLP_STE_MAPPED_NODE
)
2619 schedule_timeout_uninterruptible(msecs_to_jiffies(500));
2620 rdata
= cmnd
->device
->hostdata
;
2623 pnode
= rdata
->pnode
;
2626 scsi_event
.event_type
= FC_REG_SCSI_EVENT
;
2627 scsi_event
.subcategory
= LPFC_EVENT_TGTRESET
;
2629 memcpy(scsi_event
.wwpn
, &pnode
->nlp_portname
, sizeof(struct lpfc_name
));
2630 memcpy(scsi_event
.wwnn
, &pnode
->nlp_nodename
, sizeof(struct lpfc_name
));
2632 fc_host_post_vendor_event(shost
,
2633 fc_get_event_number(),
2635 (char *)&scsi_event
,
2638 if (!rdata
|| pnode
->nlp_state
!= NLP_STE_MAPPED_NODE
) {
2639 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_FCP
,
2640 "0721 LUN Reset rport "
2641 "failure: msec x%x rdata x%p\n",
2642 jiffies_to_msecs(jiffies
- later
), rdata
);
2645 lpfc_cmd
= lpfc_get_scsi_buf(phba
);
2646 if (lpfc_cmd
== NULL
)
2648 lpfc_cmd
->timeout
= 60;
2649 lpfc_cmd
->rdata
= rdata
;
2651 status
= lpfc_scsi_prep_task_mgmt_cmd(vport
, lpfc_cmd
,
2655 lpfc_release_scsi_buf(phba
, lpfc_cmd
);
2658 iocbq
= &lpfc_cmd
->cur_iocbq
;
2660 /* get a buffer for this IOCB command response */
2661 iocbqrsp
= lpfc_sli_get_iocbq(phba
);
2662 if (iocbqrsp
== NULL
) {
2663 lpfc_release_scsi_buf(phba
, lpfc_cmd
);
2666 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_FCP
,
2667 "0703 Issue target reset to TGT %d LUN %d "
2668 "rpi x%x nlp_flag x%x\n", cmnd
->device
->id
,
2669 cmnd
->device
->lun
, pnode
->nlp_rpi
, pnode
->nlp_flag
);
2670 status
= lpfc_sli_issue_iocb_wait(phba
,
2671 &phba
->sli
.ring
[phba
->sli
.fcp_ring
],
2672 iocbq
, iocbqrsp
, lpfc_cmd
->timeout
);
2673 if (status
== IOCB_TIMEDOUT
) {
2674 iocbq
->iocb_cmpl
= lpfc_tskmgmt_def_cmpl
;
2675 ret
= TIMEOUT_ERROR
;
2677 if (status
!= IOCB_SUCCESS
)
2679 lpfc_release_scsi_buf(phba
, lpfc_cmd
);
2681 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_FCP
,
2682 "0713 SCSI layer issued device reset (%d, %d) "
2683 "return x%x status x%x result x%x\n",
2684 cmnd
->device
->id
, cmnd
->device
->lun
, ret
,
2685 iocbqrsp
->iocb
.ulpStatus
,
2686 iocbqrsp
->iocb
.un
.ulpWord
[4]);
2687 lpfc_sli_release_iocbq(phba
, iocbqrsp
);
2688 cnt
= lpfc_sli_sum_iocb(vport
, cmnd
->device
->id
, cmnd
->device
->lun
,
2691 lpfc_sli_abort_iocb(vport
, &phba
->sli
.ring
[phba
->sli
.fcp_ring
],
2692 cmnd
->device
->id
, cmnd
->device
->lun
,
2694 later
= msecs_to_jiffies(2 * vport
->cfg_devloss_tmo
* 1000) + jiffies
;
2695 while (time_after(later
, jiffies
) && cnt
) {
2696 schedule_timeout_uninterruptible(msecs_to_jiffies(20));
2697 cnt
= lpfc_sli_sum_iocb(vport
, cmnd
->device
->id
,
2698 cmnd
->device
->lun
, LPFC_CTX_TGT
);
2701 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_FCP
,
2702 "0719 device reset I/O flush failure: "
2710 * lpfc_bus_reset_handler: eh_bus_reset_handler entry point of Scsi Host
2711 * Template data structure.
2712 * @cmnd: Pointer to scsi_cmnd data structure.
2714 * This routine does target reset to all target on @cmnd->device->host.
2721 lpfc_bus_reset_handler(struct scsi_cmnd
*cmnd
)
2723 struct Scsi_Host
*shost
= cmnd
->device
->host
;
2724 struct lpfc_vport
*vport
= (struct lpfc_vport
*) shost
->hostdata
;
2725 struct lpfc_hba
*phba
= vport
->phba
;
2726 struct lpfc_nodelist
*ndlp
= NULL
;
2728 int ret
= SUCCESS
, status
= SUCCESS
, i
;
2730 struct lpfc_scsi_buf
* lpfc_cmd
;
2731 unsigned long later
;
2732 struct lpfc_scsi_event_header scsi_event
;
2734 scsi_event
.event_type
= FC_REG_SCSI_EVENT
;
2735 scsi_event
.subcategory
= LPFC_EVENT_BUSRESET
;
2737 memcpy(scsi_event
.wwpn
, &vport
->fc_portname
, sizeof(struct lpfc_name
));
2738 memcpy(scsi_event
.wwnn
, &vport
->fc_nodename
, sizeof(struct lpfc_name
));
2740 fc_host_post_vendor_event(shost
,
2741 fc_get_event_number(),
2743 (char *)&scsi_event
,
2746 lpfc_block_error_handler(cmnd
);
2748 * Since the driver manages a single bus device, reset all
2749 * targets known to the driver. Should any target reset
2750 * fail, this routine returns failure to the midlayer.
2752 for (i
= 0; i
< LPFC_MAX_TARGET
; i
++) {
2753 /* Search for mapped node by target ID */
2755 spin_lock_irq(shost
->host_lock
);
2756 list_for_each_entry(ndlp
, &vport
->fc_nodes
, nlp_listp
) {
2757 if (!NLP_CHK_NODE_ACT(ndlp
))
2759 if (ndlp
->nlp_state
== NLP_STE_MAPPED_NODE
&&
2760 ndlp
->nlp_sid
== i
&&
2766 spin_unlock_irq(shost
->host_lock
);
2769 lpfc_cmd
= lpfc_get_scsi_buf(phba
);
2771 lpfc_cmd
->timeout
= 60;
2772 status
= lpfc_scsi_tgt_reset(lpfc_cmd
, vport
, i
,
2774 ndlp
->rport
->dd_data
);
2775 if (status
!= TIMEOUT_ERROR
)
2776 lpfc_release_scsi_buf(phba
, lpfc_cmd
);
2778 if (!lpfc_cmd
|| status
!= SUCCESS
) {
2779 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_FCP
,
2780 "0700 Bus Reset on target %d failed\n",
2786 * All outstanding txcmplq I/Os should have been aborted by
2787 * the targets. Unfortunately, some targets do not abide by
2788 * this forcing the driver to double check.
2790 cnt
= lpfc_sli_sum_iocb(vport
, 0, 0, LPFC_CTX_HOST
);
2792 lpfc_sli_abort_iocb(vport
, &phba
->sli
.ring
[phba
->sli
.fcp_ring
],
2793 0, 0, LPFC_CTX_HOST
);
2794 later
= msecs_to_jiffies(2 * vport
->cfg_devloss_tmo
* 1000) + jiffies
;
2795 while (time_after(later
, jiffies
) && cnt
) {
2796 schedule_timeout_uninterruptible(msecs_to_jiffies(20));
2797 cnt
= lpfc_sli_sum_iocb(vport
, 0, 0, LPFC_CTX_HOST
);
2800 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_FCP
,
2801 "0715 Bus Reset I/O flush failure: "
2802 "cnt x%x left x%x\n", cnt
, i
);
2805 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_FCP
,
2806 "0714 SCSI layer issued Bus Reset Data: x%x\n", ret
);
2811 * lpfc_slave_alloc: slave_alloc entry point of Scsi Host Template data
2813 * @sdev: Pointer to scsi_device.
2815 * This routine populates the cmds_per_lun count + 2 scsi_bufs into this host's
2816 * globally available list of scsi buffers. This routine also makes sure scsi
2817 * buffer is not allocated more than HBA limit conveyed to midlayer. This list
2818 * of scsi buffer exists for the lifetime of the driver.
2825 lpfc_slave_alloc(struct scsi_device
*sdev
)
2827 struct lpfc_vport
*vport
= (struct lpfc_vport
*) sdev
->host
->hostdata
;
2828 struct lpfc_hba
*phba
= vport
->phba
;
2829 struct lpfc_scsi_buf
*scsi_buf
= NULL
;
2830 struct fc_rport
*rport
= starget_to_rport(scsi_target(sdev
));
2831 uint32_t total
= 0, i
;
2832 uint32_t num_to_alloc
= 0;
2833 unsigned long flags
;
2835 if (!rport
|| fc_remote_port_chkready(rport
))
2838 sdev
->hostdata
= rport
->dd_data
;
2841 * Populate the cmds_per_lun count scsi_bufs into this host's globally
2842 * available list of scsi buffers. Don't allocate more than the
2843 * HBA limit conveyed to the midlayer via the host structure. The
2844 * formula accounts for the lun_queue_depth + error handlers + 1
2845 * extra. This list of scsi bufs exists for the lifetime of the driver.
2847 total
= phba
->total_scsi_bufs
;
2848 num_to_alloc
= vport
->cfg_lun_queue_depth
+ 2;
2850 /* Allow some exchanges to be available always to complete discovery */
2851 if (total
>= phba
->cfg_hba_queue_depth
- LPFC_DISC_IOCB_BUFF_COUNT
) {
2852 lpfc_printf_vlog(vport
, KERN_WARNING
, LOG_FCP
,
2853 "0704 At limitation of %d preallocated "
2854 "command buffers\n", total
);
2856 /* Allow some exchanges to be available always to complete discovery */
2857 } else if (total
+ num_to_alloc
>
2858 phba
->cfg_hba_queue_depth
- LPFC_DISC_IOCB_BUFF_COUNT
) {
2859 lpfc_printf_vlog(vport
, KERN_WARNING
, LOG_FCP
,
2860 "0705 Allocation request of %d "
2861 "command buffers will exceed max of %d. "
2862 "Reducing allocation request to %d.\n",
2863 num_to_alloc
, phba
->cfg_hba_queue_depth
,
2864 (phba
->cfg_hba_queue_depth
- total
));
2865 num_to_alloc
= phba
->cfg_hba_queue_depth
- total
;
2868 for (i
= 0; i
< num_to_alloc
; i
++) {
2869 scsi_buf
= lpfc_new_scsi_buf(vport
);
2871 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_FCP
,
2872 "0706 Failed to allocate "
2873 "command buffer\n");
2877 spin_lock_irqsave(&phba
->scsi_buf_list_lock
, flags
);
2878 phba
->total_scsi_bufs
++;
2879 list_add_tail(&scsi_buf
->list
, &phba
->lpfc_scsi_buf_list
);
2880 spin_unlock_irqrestore(&phba
->scsi_buf_list_lock
, flags
);
2886 * lpfc_slave_configure: slave_configure entry point of Scsi Host Templater data
2888 * @sdev: Pointer to scsi_device.
2890 * This routine configures following items
2891 * - Tag command queuing support for @sdev if supported.
2892 * - Dev loss time out value of fc_rport.
2893 * - Enable SLI polling for fcp ring if ENABLE_FCP_RING_POLLING flag is set.
2899 lpfc_slave_configure(struct scsi_device
*sdev
)
2901 struct lpfc_vport
*vport
= (struct lpfc_vport
*) sdev
->host
->hostdata
;
2902 struct lpfc_hba
*phba
= vport
->phba
;
2903 struct fc_rport
*rport
= starget_to_rport(sdev
->sdev_target
);
2905 if (sdev
->tagged_supported
)
2906 scsi_activate_tcq(sdev
, vport
->cfg_lun_queue_depth
);
2908 scsi_deactivate_tcq(sdev
, vport
->cfg_lun_queue_depth
);
2911 * Initialize the fc transport attributes for the target
2912 * containing this scsi device. Also note that the driver's
2913 * target pointer is stored in the starget_data for the
2914 * driver's sysfs entry point functions.
2916 rport
->dev_loss_tmo
= vport
->cfg_devloss_tmo
;
2918 if (phba
->cfg_poll
& ENABLE_FCP_RING_POLLING
) {
2919 lpfc_sli_poll_fcp_ring(phba
);
2920 if (phba
->cfg_poll
& DISABLE_FCP_RING_INT
)
2921 lpfc_poll_rearm_timer(phba
);
2928 * lpfc_slave_destroy: slave_destroy entry point of SHT data structure.
2929 * @sdev: Pointer to scsi_device.
2931 * This routine sets @sdev hostatdata filed to null.
2934 lpfc_slave_destroy(struct scsi_device
*sdev
)
2936 sdev
->hostdata
= NULL
;
2941 struct scsi_host_template lpfc_template
= {
2942 .module
= THIS_MODULE
,
2943 .name
= LPFC_DRIVER_NAME
,
2945 .queuecommand
= lpfc_queuecommand
,
2946 .eh_abort_handler
= lpfc_abort_handler
,
2947 .eh_device_reset_handler
= lpfc_device_reset_handler
,
2948 .eh_bus_reset_handler
= lpfc_bus_reset_handler
,
2949 .slave_alloc
= lpfc_slave_alloc
,
2950 .slave_configure
= lpfc_slave_configure
,
2951 .slave_destroy
= lpfc_slave_destroy
,
2952 .scan_finished
= lpfc_scan_finished
,
2954 .sg_tablesize
= LPFC_DEFAULT_SG_SEG_CNT
,
2955 .cmd_per_lun
= LPFC_CMD_PER_LUN
,
2956 .use_clustering
= ENABLE_CLUSTERING
,
2957 .shost_attrs
= lpfc_hba_attrs
,
2958 .max_sectors
= 0xFFFF,
2961 struct scsi_host_template lpfc_vport_template
= {
2962 .module
= THIS_MODULE
,
2963 .name
= LPFC_DRIVER_NAME
,
2965 .queuecommand
= lpfc_queuecommand
,
2966 .eh_abort_handler
= lpfc_abort_handler
,
2967 .eh_device_reset_handler
= lpfc_device_reset_handler
,
2968 .eh_bus_reset_handler
= lpfc_bus_reset_handler
,
2969 .slave_alloc
= lpfc_slave_alloc
,
2970 .slave_configure
= lpfc_slave_configure
,
2971 .slave_destroy
= lpfc_slave_destroy
,
2972 .scan_finished
= lpfc_scan_finished
,
2974 .sg_tablesize
= LPFC_DEFAULT_SG_SEG_CNT
,
2975 .cmd_per_lun
= LPFC_CMD_PER_LUN
,
2976 .use_clustering
= ENABLE_CLUSTERING
,
2977 .shost_attrs
= lpfc_vport_attrs
,
2978 .max_sectors
= 0xFFFF,