2 * Copyright (c) 2005-2010 Brocade Communications Systems, Inc.
6 * Linux driver for Brocade Fibre Channel Host Bus Adapter.
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License (GPL) Version 2 as
10 * published by the Free Software Foundation
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
19 * bfad_im.c Linux driver IM module.
26 BFA_TRC_FILE(LDRV
, IM
);
28 DEFINE_IDR(bfad_im_port_index
);
29 struct scsi_transport_template
*bfad_im_scsi_transport_template
;
30 struct scsi_transport_template
*bfad_im_scsi_vport_transport_template
;
31 static void bfad_im_itnim_work_handler(struct work_struct
*work
);
32 static int bfad_im_queuecommand(struct Scsi_Host
*h
, struct scsi_cmnd
*cmnd
);
33 static int bfad_im_slave_alloc(struct scsi_device
*sdev
);
34 static void bfad_im_fc_rport_add(struct bfad_im_port_s
*im_port
,
35 struct bfad_itnim_s
*itnim
);
38 bfa_cb_ioim_done(void *drv
, struct bfad_ioim_s
*dio
,
39 enum bfi_ioim_status io_status
, u8 scsi_status
,
40 int sns_len
, u8
*sns_info
, s32 residue
)
42 struct scsi_cmnd
*cmnd
= (struct scsi_cmnd
*)dio
;
43 struct bfad_s
*bfad
= drv
;
44 struct bfad_itnim_data_s
*itnim_data
;
45 struct bfad_itnim_s
*itnim
;
46 u8 host_status
= DID_OK
;
50 bfa_trc(bfad
, scsi_status
);
51 scsi_set_resid(cmnd
, 0);
54 bfa_trc(bfad
, sns_len
);
55 if (sns_len
> SCSI_SENSE_BUFFERSIZE
)
56 sns_len
= SCSI_SENSE_BUFFERSIZE
;
57 memcpy(cmnd
->sense_buffer
, sns_info
, sns_len
);
61 bfa_trc(bfad
, residue
);
62 scsi_set_resid(cmnd
, residue
);
63 if (!sns_len
&& (scsi_status
== SAM_STAT_GOOD
) &&
64 (scsi_bufflen(cmnd
) - residue
) <
67 host_status
= DID_ERROR
;
70 cmnd
->result
= ScsiResult(host_status
, scsi_status
);
74 case BFI_IOIM_STS_ABORTED
:
75 case BFI_IOIM_STS_TIMEDOUT
:
76 case BFI_IOIM_STS_PATHTOV
:
78 host_status
= DID_ERROR
;
79 cmnd
->result
= ScsiResult(host_status
, 0);
82 /* Unmap DMA, if host is NULL, it means a scsi passthru cmd */
83 if (cmnd
->device
->host
!= NULL
)
86 cmnd
->host_scribble
= NULL
;
87 bfa_trc(bfad
, cmnd
->result
);
89 itnim_data
= cmnd
->device
->hostdata
;
91 itnim
= itnim_data
->itnim
;
92 if (!cmnd
->result
&& itnim
&&
93 (bfa_lun_queue_depth
> cmnd
->device
->queue_depth
)) {
94 /* Queue depth adjustment for good status completion */
95 bfad_ramp_up_qdepth(itnim
, cmnd
->device
);
96 } else if (cmnd
->result
== SAM_STAT_TASK_SET_FULL
&& itnim
) {
98 bfad_handle_qfull(itnim
, cmnd
->device
);
102 cmnd
->scsi_done(cmnd
);
106 bfa_cb_ioim_good_comp(void *drv
, struct bfad_ioim_s
*dio
)
108 struct scsi_cmnd
*cmnd
= (struct scsi_cmnd
*)dio
;
109 struct bfad_itnim_data_s
*itnim_data
;
110 struct bfad_itnim_s
*itnim
;
112 cmnd
->result
= ScsiResult(DID_OK
, SCSI_STATUS_GOOD
);
114 /* Unmap DMA, if host is NULL, it means a scsi passthru cmd */
115 if (cmnd
->device
->host
!= NULL
)
116 scsi_dma_unmap(cmnd
);
118 cmnd
->host_scribble
= NULL
;
120 /* Queue depth adjustment */
121 if (bfa_lun_queue_depth
> cmnd
->device
->queue_depth
) {
122 itnim_data
= cmnd
->device
->hostdata
;
124 itnim
= itnim_data
->itnim
;
126 bfad_ramp_up_qdepth(itnim
, cmnd
->device
);
130 cmnd
->scsi_done(cmnd
);
134 bfa_cb_ioim_abort(void *drv
, struct bfad_ioim_s
*dio
)
136 struct scsi_cmnd
*cmnd
= (struct scsi_cmnd
*)dio
;
137 struct bfad_s
*bfad
= drv
;
139 cmnd
->result
= ScsiResult(DID_ERROR
, 0);
141 /* Unmap DMA, if host is NULL, it means a scsi passthru cmd */
142 if (cmnd
->device
->host
!= NULL
)
143 scsi_dma_unmap(cmnd
);
145 bfa_trc(bfad
, cmnd
->result
);
146 cmnd
->host_scribble
= NULL
;
150 bfa_cb_tskim_done(void *bfad
, struct bfad_tskim_s
*dtsk
,
151 enum bfi_tskim_status tsk_status
)
153 struct scsi_cmnd
*cmnd
= (struct scsi_cmnd
*)dtsk
;
154 wait_queue_head_t
*wq
;
156 cmnd
->SCp
.Status
|= tsk_status
<< 1;
157 set_bit(IO_DONE_BIT
, (unsigned long *)&cmnd
->SCp
.Status
);
158 wq
= (wait_queue_head_t
*) cmnd
->SCp
.ptr
;
159 cmnd
->SCp
.ptr
= NULL
;
166 * Scsi_Host_template SCSI host template
169 * Scsi_Host template entry, returns BFAD PCI info.
172 bfad_im_info(struct Scsi_Host
*shost
)
174 static char bfa_buf
[256];
175 struct bfad_im_port_s
*im_port
=
176 (struct bfad_im_port_s
*) shost
->hostdata
[0];
177 struct bfad_s
*bfad
= im_port
->bfad
;
179 memset(bfa_buf
, 0, sizeof(bfa_buf
));
180 snprintf(bfa_buf
, sizeof(bfa_buf
),
181 "Brocade FC/FCOE Adapter, " "hwpath: %s driver: %s",
182 bfad
->pci_name
, BFAD_DRIVER_VERSION
);
188 * Scsi_Host template entry, aborts the specified SCSI command.
190 * Returns: SUCCESS or FAILED.
193 bfad_im_abort_handler(struct scsi_cmnd
*cmnd
)
195 struct Scsi_Host
*shost
= cmnd
->device
->host
;
196 struct bfad_im_port_s
*im_port
=
197 (struct bfad_im_port_s
*) shost
->hostdata
[0];
198 struct bfad_s
*bfad
= im_port
->bfad
;
199 struct bfa_ioim_s
*hal_io
;
204 spin_lock_irqsave(&bfad
->bfad_lock
, flags
);
205 hal_io
= (struct bfa_ioim_s
*) cmnd
->host_scribble
;
207 /* IO has been completed, retrun success */
211 if (hal_io
->dio
!= (struct bfad_ioim_s
*) cmnd
) {
216 bfa_trc(bfad
, hal_io
->iotag
);
217 BFA_LOG(KERN_INFO
, bfad
, bfa_log_level
,
218 "scsi%d: abort cmnd %p iotag %x\n",
219 im_port
->shost
->host_no
, cmnd
, hal_io
->iotag
);
220 (void) bfa_ioim_abort(hal_io
);
221 spin_unlock_irqrestore(&bfad
->bfad_lock
, flags
);
223 /* Need to wait until the command get aborted */
225 while ((struct bfa_ioim_s
*) cmnd
->host_scribble
== hal_io
) {
226 set_current_state(TASK_UNINTERRUPTIBLE
);
227 schedule_timeout(timeout
);
228 if (timeout
< 4 * HZ
)
232 cmnd
->scsi_done(cmnd
);
233 bfa_trc(bfad
, hal_io
->iotag
);
234 BFA_LOG(KERN_INFO
, bfad
, bfa_log_level
,
235 "scsi%d: complete abort 0x%p iotag 0x%x\n",
236 im_port
->shost
->host_no
, cmnd
, hal_io
->iotag
);
239 spin_unlock_irqrestore(&bfad
->bfad_lock
, flags
);
244 bfad_im_target_reset_send(struct bfad_s
*bfad
, struct scsi_cmnd
*cmnd
,
245 struct bfad_itnim_s
*itnim
)
247 struct bfa_tskim_s
*tskim
;
248 struct bfa_itnim_s
*bfa_itnim
;
249 bfa_status_t rc
= BFA_STATUS_OK
;
250 struct scsi_lun scsilun
;
252 tskim
= bfa_tskim_alloc(&bfad
->bfa
, (struct bfad_tskim_s
*) cmnd
);
254 BFA_LOG(KERN_ERR
, bfad
, bfa_log_level
,
255 "target reset, fail to allocate tskim\n");
256 rc
= BFA_STATUS_FAILED
;
261 * Set host_scribble to NULL to avoid aborting a task command if
264 cmnd
->host_scribble
= NULL
;
265 cmnd
->SCp
.Status
= 0;
266 bfa_itnim
= bfa_fcs_itnim_get_halitn(&itnim
->fcs_itnim
);
267 memset(&scsilun
, 0, sizeof(scsilun
));
268 bfa_tskim_start(tskim
, bfa_itnim
, scsilun
,
269 FCP_TM_TARGET_RESET
, BFAD_TARGET_RESET_TMO
);
275 * Scsi_Host template entry, resets a LUN and abort its all commands.
277 * Returns: SUCCESS or FAILED.
281 bfad_im_reset_lun_handler(struct scsi_cmnd
*cmnd
)
283 struct Scsi_Host
*shost
= cmnd
->device
->host
;
284 struct bfad_im_port_s
*im_port
=
285 (struct bfad_im_port_s
*) shost
->hostdata
[0];
286 struct bfad_itnim_data_s
*itnim_data
= cmnd
->device
->hostdata
;
287 struct bfad_s
*bfad
= im_port
->bfad
;
288 struct bfa_tskim_s
*tskim
;
289 struct bfad_itnim_s
*itnim
;
290 struct bfa_itnim_s
*bfa_itnim
;
291 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq
);
294 enum bfi_tskim_status task_status
;
295 struct scsi_lun scsilun
;
297 spin_lock_irqsave(&bfad
->bfad_lock
, flags
);
298 itnim
= itnim_data
->itnim
;
300 spin_unlock_irqrestore(&bfad
->bfad_lock
, flags
);
305 tskim
= bfa_tskim_alloc(&bfad
->bfa
, (struct bfad_tskim_s
*) cmnd
);
307 BFA_LOG(KERN_ERR
, bfad
, bfa_log_level
,
308 "LUN reset, fail to allocate tskim");
309 spin_unlock_irqrestore(&bfad
->bfad_lock
, flags
);
315 * Set host_scribble to NULL to avoid aborting a task command
318 cmnd
->host_scribble
= NULL
;
319 cmnd
->SCp
.ptr
= (char *)&wq
;
320 cmnd
->SCp
.Status
= 0;
321 bfa_itnim
= bfa_fcs_itnim_get_halitn(&itnim
->fcs_itnim
);
322 int_to_scsilun(cmnd
->device
->lun
, &scsilun
);
323 bfa_tskim_start(tskim
, bfa_itnim
, scsilun
,
324 FCP_TM_LUN_RESET
, BFAD_LUN_RESET_TMO
);
325 spin_unlock_irqrestore(&bfad
->bfad_lock
, flags
);
327 wait_event(wq
, test_bit(IO_DONE_BIT
,
328 (unsigned long *)&cmnd
->SCp
.Status
));
330 task_status
= cmnd
->SCp
.Status
>> 1;
331 if (task_status
!= BFI_TSKIM_STS_OK
) {
332 BFA_LOG(KERN_ERR
, bfad
, bfa_log_level
,
333 "LUN reset failure, status: %d\n", task_status
);
342 * Scsi_Host template entry, resets the bus and abort all commands.
345 bfad_im_reset_bus_handler(struct scsi_cmnd
*cmnd
)
347 struct Scsi_Host
*shost
= cmnd
->device
->host
;
348 struct bfad_im_port_s
*im_port
=
349 (struct bfad_im_port_s
*) shost
->hostdata
[0];
350 struct bfad_s
*bfad
= im_port
->bfad
;
351 struct bfad_itnim_s
*itnim
;
353 u32 i
, rc
, err_cnt
= 0;
354 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq
);
355 enum bfi_tskim_status task_status
;
357 spin_lock_irqsave(&bfad
->bfad_lock
, flags
);
358 for (i
= 0; i
< MAX_FCP_TARGET
; i
++) {
359 itnim
= bfad_get_itnim(im_port
, i
);
361 cmnd
->SCp
.ptr
= (char *)&wq
;
362 rc
= bfad_im_target_reset_send(bfad
, cmnd
, itnim
);
363 if (rc
!= BFA_STATUS_OK
) {
368 /* wait target reset to complete */
369 spin_unlock_irqrestore(&bfad
->bfad_lock
, flags
);
370 wait_event(wq
, test_bit(IO_DONE_BIT
,
371 (unsigned long *)&cmnd
->SCp
.Status
));
372 spin_lock_irqsave(&bfad
->bfad_lock
, flags
);
374 task_status
= cmnd
->SCp
.Status
>> 1;
375 if (task_status
!= BFI_TSKIM_STS_OK
) {
376 BFA_LOG(KERN_ERR
, bfad
, bfa_log_level
,
377 "target reset failure,"
378 " status: %d\n", task_status
);
383 spin_unlock_irqrestore(&bfad
->bfad_lock
, flags
);
392 * Scsi_Host template entry slave_destroy.
395 bfad_im_slave_destroy(struct scsi_device
*sdev
)
397 sdev
->hostdata
= NULL
;
402 * BFA FCS itnim callbacks
406 * BFA FCS itnim alloc callback, after successful PRLI
410 bfa_fcb_itnim_alloc(struct bfad_s
*bfad
, struct bfa_fcs_itnim_s
**itnim
,
411 struct bfad_itnim_s
**itnim_drv
)
413 *itnim_drv
= kzalloc(sizeof(struct bfad_itnim_s
), GFP_ATOMIC
);
414 if (*itnim_drv
== NULL
)
417 (*itnim_drv
)->im
= bfad
->im
;
418 *itnim
= &(*itnim_drv
)->fcs_itnim
;
419 (*itnim_drv
)->state
= ITNIM_STATE_NONE
;
422 * Initiaze the itnim_work
424 INIT_WORK(&(*itnim_drv
)->itnim_work
, bfad_im_itnim_work_handler
);
425 bfad
->bfad_flags
|= BFAD_RPORT_ONLINE
;
429 * BFA FCS itnim free callback.
430 * Context: Interrupt. bfad_lock is held
433 bfa_fcb_itnim_free(struct bfad_s
*bfad
, struct bfad_itnim_s
*itnim_drv
)
435 struct bfad_port_s
*port
;
438 char wwpn_str
[32], fcid_str
[16];
439 struct bfad_im_s
*im
= itnim_drv
->im
;
441 /* online to free state transtion should not happen */
442 WARN_ON(itnim_drv
->state
== ITNIM_STATE_ONLINE
);
444 itnim_drv
->queue_work
= 1;
445 /* offline request is not yet done, use the same request to free */
446 if (itnim_drv
->state
== ITNIM_STATE_OFFLINE_PENDING
)
447 itnim_drv
->queue_work
= 0;
449 itnim_drv
->state
= ITNIM_STATE_FREE
;
450 port
= bfa_fcs_itnim_get_drvport(&itnim_drv
->fcs_itnim
);
451 itnim_drv
->im_port
= port
->im_port
;
452 wwpn
= bfa_fcs_itnim_get_pwwn(&itnim_drv
->fcs_itnim
);
453 fcid
= bfa_fcs_itnim_get_fcid(&itnim_drv
->fcs_itnim
);
454 wwn2str(wwpn_str
, wwpn
);
455 fcid2str(fcid_str
, fcid
);
456 BFA_LOG(KERN_INFO
, bfad
, bfa_log_level
,
457 "ITNIM FREE scsi%d: FCID: %s WWPN: %s\n",
458 port
->im_port
->shost
->host_no
,
461 /* ITNIM processing */
462 if (itnim_drv
->queue_work
)
463 queue_work(im
->drv_workq
, &itnim_drv
->itnim_work
);
467 * BFA FCS itnim online callback.
468 * Context: Interrupt. bfad_lock is held
471 bfa_fcb_itnim_online(struct bfad_itnim_s
*itnim_drv
)
473 struct bfad_port_s
*port
;
474 struct bfad_im_s
*im
= itnim_drv
->im
;
476 itnim_drv
->bfa_itnim
= bfa_fcs_itnim_get_halitn(&itnim_drv
->fcs_itnim
);
477 port
= bfa_fcs_itnim_get_drvport(&itnim_drv
->fcs_itnim
);
478 itnim_drv
->state
= ITNIM_STATE_ONLINE
;
479 itnim_drv
->queue_work
= 1;
480 itnim_drv
->im_port
= port
->im_port
;
482 /* ITNIM processing */
483 if (itnim_drv
->queue_work
)
484 queue_work(im
->drv_workq
, &itnim_drv
->itnim_work
);
488 * BFA FCS itnim offline callback.
489 * Context: Interrupt. bfad_lock is held
492 bfa_fcb_itnim_offline(struct bfad_itnim_s
*itnim_drv
)
494 struct bfad_port_s
*port
;
496 struct bfad_im_s
*im
= itnim_drv
->im
;
498 port
= bfa_fcs_itnim_get_drvport(&itnim_drv
->fcs_itnim
);
500 if ((bfad
->pport
.flags
& BFAD_PORT_DELETE
) ||
501 (port
->flags
& BFAD_PORT_DELETE
)) {
502 itnim_drv
->state
= ITNIM_STATE_OFFLINE
;
505 itnim_drv
->im_port
= port
->im_port
;
506 itnim_drv
->state
= ITNIM_STATE_OFFLINE_PENDING
;
507 itnim_drv
->queue_work
= 1;
509 /* ITNIM processing */
510 if (itnim_drv
->queue_work
)
511 queue_work(im
->drv_workq
, &itnim_drv
->itnim_work
);
515 * Allocate a Scsi_Host for a port.
518 bfad_im_scsi_host_alloc(struct bfad_s
*bfad
, struct bfad_im_port_s
*im_port
,
523 mutex_lock(&bfad_mutex
);
524 if (!idr_pre_get(&bfad_im_port_index
, GFP_KERNEL
)) {
525 mutex_unlock(&bfad_mutex
);
526 printk(KERN_WARNING
"idr_pre_get failure\n");
530 error
= idr_get_new(&bfad_im_port_index
, im_port
,
533 mutex_unlock(&bfad_mutex
);
534 printk(KERN_WARNING
"idr_get_new failure\n");
538 mutex_unlock(&bfad_mutex
);
540 im_port
->shost
= bfad_scsi_host_alloc(im_port
, bfad
);
541 if (!im_port
->shost
) {
546 im_port
->shost
->hostdata
[0] = (unsigned long)im_port
;
547 im_port
->shost
->unique_id
= im_port
->idr_id
;
548 im_port
->shost
->this_id
= -1;
549 im_port
->shost
->max_id
= MAX_FCP_TARGET
;
550 im_port
->shost
->max_lun
= MAX_FCP_LUN
;
551 im_port
->shost
->max_cmd_len
= 16;
552 im_port
->shost
->can_queue
= bfad
->cfg_data
.ioc_queue_depth
;
553 if (im_port
->port
->pvb_type
== BFAD_PORT_PHYS_BASE
)
554 im_port
->shost
->transportt
= bfad_im_scsi_transport_template
;
556 im_port
->shost
->transportt
=
557 bfad_im_scsi_vport_transport_template
;
559 error
= scsi_add_host_with_dma(im_port
->shost
, dev
, &bfad
->pcidev
->dev
);
561 printk(KERN_WARNING
"scsi_add_host failure %d\n", error
);
568 scsi_host_put(im_port
->shost
);
569 im_port
->shost
= NULL
;
571 mutex_lock(&bfad_mutex
);
572 idr_remove(&bfad_im_port_index
, im_port
->idr_id
);
573 mutex_unlock(&bfad_mutex
);
579 bfad_im_scsi_host_free(struct bfad_s
*bfad
, struct bfad_im_port_s
*im_port
)
581 bfa_trc(bfad
, bfad
->inst_no
);
582 BFA_LOG(KERN_INFO
, bfad
, bfa_log_level
, "Free scsi%d\n",
583 im_port
->shost
->host_no
);
585 fc_remove_host(im_port
->shost
);
587 scsi_remove_host(im_port
->shost
);
588 scsi_host_put(im_port
->shost
);
590 mutex_lock(&bfad_mutex
);
591 idr_remove(&bfad_im_port_index
, im_port
->idr_id
);
592 mutex_unlock(&bfad_mutex
);
596 bfad_im_port_delete_handler(struct work_struct
*work
)
598 struct bfad_im_port_s
*im_port
=
599 container_of(work
, struct bfad_im_port_s
, port_delete_work
);
601 if (im_port
->port
->pvb_type
!= BFAD_PORT_PHYS_BASE
) {
602 im_port
->flags
|= BFAD_PORT_DELETE
;
603 fc_vport_terminate(im_port
->fc_vport
);
608 bfad_im_port_new(struct bfad_s
*bfad
, struct bfad_port_s
*port
)
610 int rc
= BFA_STATUS_OK
;
611 struct bfad_im_port_s
*im_port
;
613 im_port
= kzalloc(sizeof(struct bfad_im_port_s
), GFP_ATOMIC
);
614 if (im_port
== NULL
) {
615 rc
= BFA_STATUS_ENOMEM
;
618 port
->im_port
= im_port
;
619 im_port
->port
= port
;
620 im_port
->bfad
= bfad
;
622 INIT_WORK(&im_port
->port_delete_work
, bfad_im_port_delete_handler
);
623 INIT_LIST_HEAD(&im_port
->itnim_mapped_list
);
624 INIT_LIST_HEAD(&im_port
->binding_list
);
631 bfad_im_port_delete(struct bfad_s
*bfad
, struct bfad_port_s
*port
)
633 struct bfad_im_port_s
*im_port
= port
->im_port
;
635 queue_work(bfad
->im
->drv_workq
,
636 &im_port
->port_delete_work
);
640 bfad_im_port_clean(struct bfad_im_port_s
*im_port
)
642 struct bfad_fcp_binding
*bp
, *bp_new
;
644 struct bfad_s
*bfad
= im_port
->bfad
;
646 spin_lock_irqsave(&bfad
->bfad_lock
, flags
);
647 list_for_each_entry_safe(bp
, bp_new
, &im_port
->binding_list
,
649 list_del(&bp
->list_entry
);
653 /* the itnim_mapped_list must be empty at this time */
654 WARN_ON(!list_empty(&im_port
->itnim_mapped_list
));
656 spin_unlock_irqrestore(&bfad
->bfad_lock
, flags
);
659 static void bfad_aen_im_notify_handler(struct work_struct
*work
)
661 struct bfad_im_s
*im
=
662 container_of(work
, struct bfad_im_s
, aen_im_notify_work
);
663 struct bfa_aen_entry_s
*aen_entry
;
664 struct bfad_s
*bfad
= im
->bfad
;
665 struct Scsi_Host
*shost
= bfad
->pport
.im_port
->shost
;
669 while (!list_empty(&bfad
->active_aen_q
)) {
670 spin_lock_irqsave(&bfad
->bfad_aen_spinlock
, flags
);
671 bfa_q_deq(&bfad
->active_aen_q
, &aen_entry
);
672 spin_unlock_irqrestore(&bfad
->bfad_aen_spinlock
, flags
);
673 event_data
= (char *)aen_entry
+ sizeof(struct list_head
);
674 fc_host_post_vendor_event(shost
, fc_get_event_number(),
675 sizeof(struct bfa_aen_entry_s
) -
676 sizeof(struct list_head
),
677 (char *)event_data
, BFAD_NL_VENDOR_ID
);
678 spin_lock_irqsave(&bfad
->bfad_aen_spinlock
, flags
);
679 list_add_tail(&aen_entry
->qe
, &bfad
->free_aen_q
);
680 spin_unlock_irqrestore(&bfad
->bfad_aen_spinlock
, flags
);
685 bfad_im_probe(struct bfad_s
*bfad
)
687 struct bfad_im_s
*im
;
688 bfa_status_t rc
= BFA_STATUS_OK
;
690 im
= kzalloc(sizeof(struct bfad_im_s
), GFP_KERNEL
);
692 rc
= BFA_STATUS_ENOMEM
;
699 if (bfad_thread_workq(bfad
) != BFA_STATUS_OK
) {
701 rc
= BFA_STATUS_FAILED
;
704 INIT_WORK(&im
->aen_im_notify_work
, bfad_aen_im_notify_handler
);
710 bfad_im_probe_undo(struct bfad_s
*bfad
)
713 bfad_destroy_workq(bfad
->im
);
720 bfad_scsi_host_alloc(struct bfad_im_port_s
*im_port
, struct bfad_s
*bfad
)
722 struct scsi_host_template
*sht
;
724 if (im_port
->port
->pvb_type
== BFAD_PORT_PHYS_BASE
)
725 sht
= &bfad_im_scsi_host_template
;
727 sht
= &bfad_im_vport_template
;
729 if (max_xfer_size
!= BFAD_MAX_SECTORS
>> 1)
730 sht
->max_sectors
= max_xfer_size
<< 1;
732 sht
->sg_tablesize
= bfad
->cfg_data
.io_max_sge
;
734 return scsi_host_alloc(sht
, sizeof(unsigned long));
738 bfad_scsi_host_free(struct bfad_s
*bfad
, struct bfad_im_port_s
*im_port
)
740 if (!(im_port
->flags
& BFAD_PORT_DELETE
))
741 flush_workqueue(bfad
->im
->drv_workq
);
742 bfad_im_scsi_host_free(im_port
->bfad
, im_port
);
743 bfad_im_port_clean(im_port
);
748 bfad_destroy_workq(struct bfad_im_s
*im
)
750 if (im
&& im
->drv_workq
) {
751 flush_workqueue(im
->drv_workq
);
752 destroy_workqueue(im
->drv_workq
);
753 im
->drv_workq
= NULL
;
758 bfad_thread_workq(struct bfad_s
*bfad
)
760 struct bfad_im_s
*im
= bfad
->im
;
763 snprintf(im
->drv_workq_name
, KOBJ_NAME_LEN
, "bfad_wq_%d",
765 im
->drv_workq
= create_singlethread_workqueue(im
->drv_workq_name
);
767 return BFA_STATUS_FAILED
;
769 return BFA_STATUS_OK
;
773 * Scsi_Host template entry.
776 * OS entry point to adjust the queue_depths on a per-device basis.
777 * Called once per device during the bus scan.
778 * Return non-zero if fails.
781 bfad_im_slave_configure(struct scsi_device
*sdev
)
783 if (sdev
->tagged_supported
)
784 scsi_activate_tcq(sdev
, bfa_lun_queue_depth
);
786 scsi_deactivate_tcq(sdev
, bfa_lun_queue_depth
);
791 struct scsi_host_template bfad_im_scsi_host_template
= {
792 .module
= THIS_MODULE
,
793 .name
= BFAD_DRIVER_NAME
,
794 .info
= bfad_im_info
,
795 .queuecommand
= bfad_im_queuecommand
,
796 .eh_abort_handler
= bfad_im_abort_handler
,
797 .eh_device_reset_handler
= bfad_im_reset_lun_handler
,
798 .eh_bus_reset_handler
= bfad_im_reset_bus_handler
,
800 .slave_alloc
= bfad_im_slave_alloc
,
801 .slave_configure
= bfad_im_slave_configure
,
802 .slave_destroy
= bfad_im_slave_destroy
,
805 .sg_tablesize
= BFAD_IO_MAX_SGE
,
807 .use_clustering
= ENABLE_CLUSTERING
,
808 .shost_attrs
= bfad_im_host_attrs
,
809 .max_sectors
= BFAD_MAX_SECTORS
,
810 .vendor_id
= BFA_PCI_VENDOR_ID_BROCADE
,
813 struct scsi_host_template bfad_im_vport_template
= {
814 .module
= THIS_MODULE
,
815 .name
= BFAD_DRIVER_NAME
,
816 .info
= bfad_im_info
,
817 .queuecommand
= bfad_im_queuecommand
,
818 .eh_abort_handler
= bfad_im_abort_handler
,
819 .eh_device_reset_handler
= bfad_im_reset_lun_handler
,
820 .eh_bus_reset_handler
= bfad_im_reset_bus_handler
,
822 .slave_alloc
= bfad_im_slave_alloc
,
823 .slave_configure
= bfad_im_slave_configure
,
824 .slave_destroy
= bfad_im_slave_destroy
,
827 .sg_tablesize
= BFAD_IO_MAX_SGE
,
829 .use_clustering
= ENABLE_CLUSTERING
,
830 .shost_attrs
= bfad_im_vport_attrs
,
831 .max_sectors
= BFAD_MAX_SECTORS
,
835 bfad_im_module_init(void)
837 bfad_im_scsi_transport_template
=
838 fc_attach_transport(&bfad_im_fc_function_template
);
839 if (!bfad_im_scsi_transport_template
)
840 return BFA_STATUS_ENOMEM
;
842 bfad_im_scsi_vport_transport_template
=
843 fc_attach_transport(&bfad_im_vport_fc_function_template
);
844 if (!bfad_im_scsi_vport_transport_template
) {
845 fc_release_transport(bfad_im_scsi_transport_template
);
846 return BFA_STATUS_ENOMEM
;
849 return BFA_STATUS_OK
;
853 bfad_im_module_exit(void)
855 if (bfad_im_scsi_transport_template
)
856 fc_release_transport(bfad_im_scsi_transport_template
);
858 if (bfad_im_scsi_vport_transport_template
)
859 fc_release_transport(bfad_im_scsi_vport_transport_template
);
863 bfad_ramp_up_qdepth(struct bfad_itnim_s
*itnim
, struct scsi_device
*sdev
)
865 struct scsi_device
*tmp_sdev
;
867 if (((jiffies
- itnim
->last_ramp_up_time
) >
868 BFA_QUEUE_FULL_RAMP_UP_TIME
* HZ
) &&
869 ((jiffies
- itnim
->last_queue_full_time
) >
870 BFA_QUEUE_FULL_RAMP_UP_TIME
* HZ
)) {
871 shost_for_each_device(tmp_sdev
, sdev
->host
) {
872 if (bfa_lun_queue_depth
> tmp_sdev
->queue_depth
) {
873 if (tmp_sdev
->id
!= sdev
->id
)
875 if (tmp_sdev
->ordered_tags
)
876 scsi_adjust_queue_depth(tmp_sdev
,
878 tmp_sdev
->queue_depth
+ 1);
880 scsi_adjust_queue_depth(tmp_sdev
,
882 tmp_sdev
->queue_depth
+ 1);
884 itnim
->last_ramp_up_time
= jiffies
;
891 bfad_handle_qfull(struct bfad_itnim_s
*itnim
, struct scsi_device
*sdev
)
893 struct scsi_device
*tmp_sdev
;
895 itnim
->last_queue_full_time
= jiffies
;
897 shost_for_each_device(tmp_sdev
, sdev
->host
) {
898 if (tmp_sdev
->id
!= sdev
->id
)
900 scsi_track_queue_full(tmp_sdev
, tmp_sdev
->queue_depth
- 1);
904 struct bfad_itnim_s
*
905 bfad_get_itnim(struct bfad_im_port_s
*im_port
, int id
)
907 struct bfad_itnim_s
*itnim
= NULL
;
909 /* Search the mapped list for this target ID */
910 list_for_each_entry(itnim
, &im_port
->itnim_mapped_list
, list_entry
) {
911 if (id
== itnim
->scsi_tgt_id
)
919 * Scsi_Host template entry slave_alloc
922 bfad_im_slave_alloc(struct scsi_device
*sdev
)
924 struct fc_rport
*rport
= starget_to_rport(scsi_target(sdev
));
926 if (!rport
|| fc_remote_port_chkready(rport
))
929 sdev
->hostdata
= rport
->dd_data
;
935 bfad_im_supported_speeds(struct bfa_s
*bfa
)
937 struct bfa_ioc_attr_s
*ioc_attr
;
938 u32 supported_speed
= 0;
940 ioc_attr
= kzalloc(sizeof(struct bfa_ioc_attr_s
), GFP_KERNEL
);
944 bfa_ioc_get_attr(&bfa
->ioc
, ioc_attr
);
945 if (ioc_attr
->adapter_attr
.max_speed
== BFA_PORT_SPEED_16GBPS
)
946 supported_speed
|= FC_PORTSPEED_16GBIT
| FC_PORTSPEED_8GBIT
|
947 FC_PORTSPEED_4GBIT
| FC_PORTSPEED_2GBIT
;
948 else if (ioc_attr
->adapter_attr
.max_speed
== BFA_PORT_SPEED_8GBPS
) {
949 if (ioc_attr
->adapter_attr
.is_mezz
) {
950 supported_speed
|= FC_PORTSPEED_8GBIT
|
952 FC_PORTSPEED_2GBIT
| FC_PORTSPEED_1GBIT
;
954 supported_speed
|= FC_PORTSPEED_8GBIT
|
958 } else if (ioc_attr
->adapter_attr
.max_speed
== BFA_PORT_SPEED_4GBPS
) {
959 supported_speed
|= FC_PORTSPEED_4GBIT
| FC_PORTSPEED_2GBIT
|
961 } else if (ioc_attr
->adapter_attr
.max_speed
== BFA_PORT_SPEED_10GBPS
) {
962 supported_speed
|= FC_PORTSPEED_10GBIT
;
965 return supported_speed
;
969 bfad_fc_host_init(struct bfad_im_port_s
*im_port
)
971 struct Scsi_Host
*host
= im_port
->shost
;
972 struct bfad_s
*bfad
= im_port
->bfad
;
973 struct bfad_port_s
*port
= im_port
->port
;
974 char symname
[BFA_SYMNAME_MAXLEN
];
975 struct bfa_fcport_s
*fcport
= BFA_FCPORT_MOD(&bfad
->bfa
);
977 fc_host_node_name(host
) =
978 cpu_to_be64((bfa_fcs_lport_get_nwwn(port
->fcs_port
)));
979 fc_host_port_name(host
) =
980 cpu_to_be64((bfa_fcs_lport_get_pwwn(port
->fcs_port
)));
981 fc_host_max_npiv_vports(host
) = bfa_lps_get_max_vport(&bfad
->bfa
);
983 fc_host_supported_classes(host
) = FC_COS_CLASS3
;
985 memset(fc_host_supported_fc4s(host
), 0,
986 sizeof(fc_host_supported_fc4s(host
)));
987 if (supported_fc4s
& BFA_LPORT_ROLE_FCP_IM
)
988 /* For FCP type 0x08 */
989 fc_host_supported_fc4s(host
)[2] = 1;
990 /* For fibre channel services type 0x20 */
991 fc_host_supported_fc4s(host
)[7] = 1;
993 strncpy(symname
, bfad
->bfa_fcs
.fabric
.bport
.port_cfg
.sym_name
.symname
,
995 sprintf(fc_host_symbolic_name(host
), "%s", symname
);
997 fc_host_supported_speeds(host
) = bfad_im_supported_speeds(&bfad
->bfa
);
998 fc_host_maxframe_size(host
) = fcport
->cfg
.maxfrsize
;
1002 bfad_im_fc_rport_add(struct bfad_im_port_s
*im_port
, struct bfad_itnim_s
*itnim
)
1004 struct fc_rport_identifiers rport_ids
;
1005 struct fc_rport
*fc_rport
;
1006 struct bfad_itnim_data_s
*itnim_data
;
1008 rport_ids
.node_name
=
1009 cpu_to_be64(bfa_fcs_itnim_get_nwwn(&itnim
->fcs_itnim
));
1010 rport_ids
.port_name
=
1011 cpu_to_be64(bfa_fcs_itnim_get_pwwn(&itnim
->fcs_itnim
));
1013 bfa_hton3b(bfa_fcs_itnim_get_fcid(&itnim
->fcs_itnim
));
1014 rport_ids
.roles
= FC_RPORT_ROLE_UNKNOWN
;
1016 itnim
->fc_rport
= fc_rport
=
1017 fc_remote_port_add(im_port
->shost
, 0, &rport_ids
);
1022 fc_rport
->maxframe_size
=
1023 bfa_fcs_itnim_get_maxfrsize(&itnim
->fcs_itnim
);
1024 fc_rport
->supported_classes
= bfa_fcs_itnim_get_cos(&itnim
->fcs_itnim
);
1026 itnim_data
= fc_rport
->dd_data
;
1027 itnim_data
->itnim
= itnim
;
1029 rport_ids
.roles
|= FC_RPORT_ROLE_FCP_TARGET
;
1031 if (rport_ids
.roles
!= FC_RPORT_ROLE_UNKNOWN
)
1032 fc_remote_port_rolechg(fc_rport
, rport_ids
.roles
);
1034 if ((fc_rport
->scsi_target_id
!= -1)
1035 && (fc_rport
->scsi_target_id
< MAX_FCP_TARGET
))
1036 itnim
->scsi_tgt_id
= fc_rport
->scsi_target_id
;
1042 * Work queue handler using FC transport service
1046 bfad_im_itnim_work_handler(struct work_struct
*work
)
1048 struct bfad_itnim_s
*itnim
= container_of(work
, struct bfad_itnim_s
,
1050 struct bfad_im_s
*im
= itnim
->im
;
1051 struct bfad_s
*bfad
= im
->bfad
;
1052 struct bfad_im_port_s
*im_port
;
1053 unsigned long flags
;
1054 struct fc_rport
*fc_rport
;
1057 char wwpn_str
[32], fcid_str
[16];
1059 spin_lock_irqsave(&bfad
->bfad_lock
, flags
);
1060 im_port
= itnim
->im_port
;
1061 bfa_trc(bfad
, itnim
->state
);
1062 switch (itnim
->state
) {
1063 case ITNIM_STATE_ONLINE
:
1064 if (!itnim
->fc_rport
) {
1065 spin_unlock_irqrestore(&bfad
->bfad_lock
, flags
);
1066 bfad_im_fc_rport_add(im_port
, itnim
);
1067 spin_lock_irqsave(&bfad
->bfad_lock
, flags
);
1068 wwpn
= bfa_fcs_itnim_get_pwwn(&itnim
->fcs_itnim
);
1069 fcid
= bfa_fcs_itnim_get_fcid(&itnim
->fcs_itnim
);
1070 wwn2str(wwpn_str
, wwpn
);
1071 fcid2str(fcid_str
, fcid
);
1072 list_add_tail(&itnim
->list_entry
,
1073 &im_port
->itnim_mapped_list
);
1074 BFA_LOG(KERN_INFO
, bfad
, bfa_log_level
,
1075 "ITNIM ONLINE Target: %d:0:%d "
1076 "FCID: %s WWPN: %s\n",
1077 im_port
->shost
->host_no
,
1079 fcid_str
, wwpn_str
);
1082 "%s: itnim %llx is already in online state\n",
1084 bfa_fcs_itnim_get_pwwn(&itnim
->fcs_itnim
));
1088 case ITNIM_STATE_OFFLINE_PENDING
:
1089 itnim
->state
= ITNIM_STATE_OFFLINE
;
1090 if (itnim
->fc_rport
) {
1091 fc_rport
= itnim
->fc_rport
;
1092 ((struct bfad_itnim_data_s
*)
1093 fc_rport
->dd_data
)->itnim
= NULL
;
1094 itnim
->fc_rport
= NULL
;
1095 if (!(im_port
->port
->flags
& BFAD_PORT_DELETE
)) {
1096 spin_unlock_irqrestore(&bfad
->bfad_lock
, flags
);
1097 fc_rport
->dev_loss_tmo
=
1098 bfa_fcpim_path_tov_get(&bfad
->bfa
) + 1;
1099 fc_remote_port_delete(fc_rport
);
1100 spin_lock_irqsave(&bfad
->bfad_lock
, flags
);
1102 wwpn
= bfa_fcs_itnim_get_pwwn(&itnim
->fcs_itnim
);
1103 fcid
= bfa_fcs_itnim_get_fcid(&itnim
->fcs_itnim
);
1104 wwn2str(wwpn_str
, wwpn
);
1105 fcid2str(fcid_str
, fcid
);
1106 list_del(&itnim
->list_entry
);
1107 BFA_LOG(KERN_INFO
, bfad
, bfa_log_level
,
1108 "ITNIM OFFLINE Target: %d:0:%d "
1109 "FCID: %s WWPN: %s\n",
1110 im_port
->shost
->host_no
,
1112 fcid_str
, wwpn_str
);
1115 case ITNIM_STATE_FREE
:
1116 if (itnim
->fc_rport
) {
1117 fc_rport
= itnim
->fc_rport
;
1118 ((struct bfad_itnim_data_s
*)
1119 fc_rport
->dd_data
)->itnim
= NULL
;
1120 itnim
->fc_rport
= NULL
;
1121 if (!(im_port
->port
->flags
& BFAD_PORT_DELETE
)) {
1122 spin_unlock_irqrestore(&bfad
->bfad_lock
, flags
);
1123 fc_rport
->dev_loss_tmo
=
1124 bfa_fcpim_path_tov_get(&bfad
->bfa
) + 1;
1125 fc_remote_port_delete(fc_rport
);
1126 spin_lock_irqsave(&bfad
->bfad_lock
, flags
);
1128 list_del(&itnim
->list_entry
);
1138 spin_unlock_irqrestore(&bfad
->bfad_lock
, flags
);
1142 * Scsi_Host template entry, queue a SCSI command to the BFAD.
1145 bfad_im_queuecommand_lck(struct scsi_cmnd
*cmnd
, void (*done
) (struct scsi_cmnd
*))
1147 struct bfad_im_port_s
*im_port
=
1148 (struct bfad_im_port_s
*) cmnd
->device
->host
->hostdata
[0];
1149 struct bfad_s
*bfad
= im_port
->bfad
;
1150 struct bfad_itnim_data_s
*itnim_data
= cmnd
->device
->hostdata
;
1151 struct bfad_itnim_s
*itnim
;
1152 struct bfa_ioim_s
*hal_io
;
1153 unsigned long flags
;
1156 struct fc_rport
*rport
= starget_to_rport(scsi_target(cmnd
->device
));
1158 rc
= fc_remote_port_chkready(rport
);
1165 sg_cnt
= scsi_dma_map(cmnd
);
1167 return SCSI_MLQUEUE_HOST_BUSY
;
1169 cmnd
->scsi_done
= done
;
1171 spin_lock_irqsave(&bfad
->bfad_lock
, flags
);
1172 if (!(bfad
->bfad_flags
& BFAD_HAL_START_DONE
)) {
1174 "bfad%d, queuecommand %p %x failed, BFA stopped\n",
1175 bfad
->inst_no
, cmnd
, cmnd
->cmnd
[0]);
1176 cmnd
->result
= ScsiResult(DID_NO_CONNECT
, 0);
1181 itnim
= itnim_data
->itnim
;
1183 cmnd
->result
= ScsiResult(DID_IMM_RETRY
, 0);
1187 hal_io
= bfa_ioim_alloc(&bfad
->bfa
, (struct bfad_ioim_s
*) cmnd
,
1188 itnim
->bfa_itnim
, sg_cnt
);
1190 printk(KERN_WARNING
"hal_io failure\n");
1191 spin_unlock_irqrestore(&bfad
->bfad_lock
, flags
);
1192 scsi_dma_unmap(cmnd
);
1193 return SCSI_MLQUEUE_HOST_BUSY
;
1196 cmnd
->host_scribble
= (char *)hal_io
;
1197 bfa_ioim_start(hal_io
);
1198 spin_unlock_irqrestore(&bfad
->bfad_lock
, flags
);
1203 spin_unlock_irqrestore(&bfad
->bfad_lock
, flags
);
1204 scsi_dma_unmap(cmnd
);
1211 static DEF_SCSI_QCMD(bfad_im_queuecommand
)
1214 bfad_rport_online_wait(struct bfad_s
*bfad
)
1217 int rport_delay
= 10;
1219 for (i
= 0; !(bfad
->bfad_flags
& BFAD_PORT_ONLINE
)
1220 && i
< bfa_linkup_delay
; i
++) {
1221 set_current_state(TASK_UNINTERRUPTIBLE
);
1222 schedule_timeout(HZ
);
1225 if (bfad
->bfad_flags
& BFAD_PORT_ONLINE
) {
1226 rport_delay
= rport_delay
< bfa_linkup_delay
?
1227 rport_delay
: bfa_linkup_delay
;
1228 for (i
= 0; !(bfad
->bfad_flags
& BFAD_RPORT_ONLINE
)
1229 && i
< rport_delay
; i
++) {
1230 set_current_state(TASK_UNINTERRUPTIBLE
);
1231 schedule_timeout(HZ
);
1234 if (rport_delay
> 0 && (bfad
->bfad_flags
& BFAD_RPORT_ONLINE
)) {
1235 set_current_state(TASK_UNINTERRUPTIBLE
);
1236 schedule_timeout(rport_delay
* HZ
);
1242 bfad_get_linkup_delay(struct bfad_s
*bfad
)
1245 wwn_t wwns
[BFA_PREBOOT_BOOTLUN_MAX
];
1249 * Querying for the boot target port wwns
1250 * -- read from boot information in flash.
1251 * If nwwns > 0 => boot over SAN and set linkup_delay = 30
1252 * else => local boot machine set linkup_delay = 0
1255 bfa_iocfc_get_bootwwns(&bfad
->bfa
, &nwwns
, wwns
);
1258 /* If Boot over SAN set linkup_delay = 30sec */
1261 /* If local boot; no linkup_delay */
1264 return linkup_delay
;