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.
22 #include <linux/export.h>
28 BFA_TRC_FILE(LDRV
, IM
);
30 DEFINE_IDR(bfad_im_port_index
);
31 struct scsi_transport_template
*bfad_im_scsi_transport_template
;
32 struct scsi_transport_template
*bfad_im_scsi_vport_transport_template
;
33 static void bfad_im_itnim_work_handler(struct work_struct
*work
);
34 static int bfad_im_queuecommand(struct Scsi_Host
*h
, struct scsi_cmnd
*cmnd
);
35 static int bfad_im_slave_alloc(struct scsi_device
*sdev
);
36 static void bfad_im_fc_rport_add(struct bfad_im_port_s
*im_port
,
37 struct bfad_itnim_s
*itnim
);
40 bfa_cb_ioim_done(void *drv
, struct bfad_ioim_s
*dio
,
41 enum bfi_ioim_status io_status
, u8 scsi_status
,
42 int sns_len
, u8
*sns_info
, s32 residue
)
44 struct scsi_cmnd
*cmnd
= (struct scsi_cmnd
*)dio
;
45 struct bfad_s
*bfad
= drv
;
46 struct bfad_itnim_data_s
*itnim_data
;
47 struct bfad_itnim_s
*itnim
;
48 u8 host_status
= DID_OK
;
52 bfa_trc(bfad
, scsi_status
);
53 scsi_set_resid(cmnd
, 0);
56 bfa_trc(bfad
, sns_len
);
57 if (sns_len
> SCSI_SENSE_BUFFERSIZE
)
58 sns_len
= SCSI_SENSE_BUFFERSIZE
;
59 memcpy(cmnd
->sense_buffer
, sns_info
, sns_len
);
63 bfa_trc(bfad
, residue
);
64 scsi_set_resid(cmnd
, residue
);
65 if (!sns_len
&& (scsi_status
== SAM_STAT_GOOD
) &&
66 (scsi_bufflen(cmnd
) - residue
) <
69 host_status
= DID_ERROR
;
72 cmnd
->result
= ScsiResult(host_status
, scsi_status
);
76 case BFI_IOIM_STS_ABORTED
:
77 case BFI_IOIM_STS_TIMEDOUT
:
78 case BFI_IOIM_STS_PATHTOV
:
80 host_status
= DID_ERROR
;
81 cmnd
->result
= ScsiResult(host_status
, 0);
84 /* Unmap DMA, if host is NULL, it means a scsi passthru cmd */
85 if (cmnd
->device
->host
!= NULL
)
88 cmnd
->host_scribble
= NULL
;
89 bfa_trc(bfad
, cmnd
->result
);
91 itnim_data
= cmnd
->device
->hostdata
;
93 itnim
= itnim_data
->itnim
;
94 if (!cmnd
->result
&& itnim
&&
95 (bfa_lun_queue_depth
> cmnd
->device
->queue_depth
)) {
96 /* Queue depth adjustment for good status completion */
97 bfad_ramp_up_qdepth(itnim
, cmnd
->device
);
98 } else if (cmnd
->result
== SAM_STAT_TASK_SET_FULL
&& itnim
) {
100 bfad_handle_qfull(itnim
, cmnd
->device
);
104 cmnd
->scsi_done(cmnd
);
108 bfa_cb_ioim_good_comp(void *drv
, struct bfad_ioim_s
*dio
)
110 struct scsi_cmnd
*cmnd
= (struct scsi_cmnd
*)dio
;
111 struct bfad_itnim_data_s
*itnim_data
;
112 struct bfad_itnim_s
*itnim
;
114 cmnd
->result
= ScsiResult(DID_OK
, SCSI_STATUS_GOOD
);
116 /* Unmap DMA, if host is NULL, it means a scsi passthru cmd */
117 if (cmnd
->device
->host
!= NULL
)
118 scsi_dma_unmap(cmnd
);
120 cmnd
->host_scribble
= NULL
;
122 /* Queue depth adjustment */
123 if (bfa_lun_queue_depth
> cmnd
->device
->queue_depth
) {
124 itnim_data
= cmnd
->device
->hostdata
;
126 itnim
= itnim_data
->itnim
;
128 bfad_ramp_up_qdepth(itnim
, cmnd
->device
);
132 cmnd
->scsi_done(cmnd
);
136 bfa_cb_ioim_abort(void *drv
, struct bfad_ioim_s
*dio
)
138 struct scsi_cmnd
*cmnd
= (struct scsi_cmnd
*)dio
;
139 struct bfad_s
*bfad
= drv
;
141 cmnd
->result
= ScsiResult(DID_ERROR
, 0);
143 /* Unmap DMA, if host is NULL, it means a scsi passthru cmd */
144 if (cmnd
->device
->host
!= NULL
)
145 scsi_dma_unmap(cmnd
);
147 bfa_trc(bfad
, cmnd
->result
);
148 cmnd
->host_scribble
= NULL
;
152 bfa_cb_tskim_done(void *bfad
, struct bfad_tskim_s
*dtsk
,
153 enum bfi_tskim_status tsk_status
)
155 struct scsi_cmnd
*cmnd
= (struct scsi_cmnd
*)dtsk
;
156 wait_queue_head_t
*wq
;
158 cmnd
->SCp
.Status
|= tsk_status
<< 1;
159 set_bit(IO_DONE_BIT
, (unsigned long *)&cmnd
->SCp
.Status
);
160 wq
= (wait_queue_head_t
*) cmnd
->SCp
.ptr
;
161 cmnd
->SCp
.ptr
= NULL
;
168 * Scsi_Host_template SCSI host template
171 * Scsi_Host template entry, returns BFAD PCI info.
174 bfad_im_info(struct Scsi_Host
*shost
)
176 static char bfa_buf
[256];
177 struct bfad_im_port_s
*im_port
=
178 (struct bfad_im_port_s
*) shost
->hostdata
[0];
179 struct bfad_s
*bfad
= im_port
->bfad
;
181 memset(bfa_buf
, 0, sizeof(bfa_buf
));
182 snprintf(bfa_buf
, sizeof(bfa_buf
),
183 "Brocade FC/FCOE Adapter, " "hwpath: %s driver: %s",
184 bfad
->pci_name
, BFAD_DRIVER_VERSION
);
190 * Scsi_Host template entry, aborts the specified SCSI command.
192 * Returns: SUCCESS or FAILED.
195 bfad_im_abort_handler(struct scsi_cmnd
*cmnd
)
197 struct Scsi_Host
*shost
= cmnd
->device
->host
;
198 struct bfad_im_port_s
*im_port
=
199 (struct bfad_im_port_s
*) shost
->hostdata
[0];
200 struct bfad_s
*bfad
= im_port
->bfad
;
201 struct bfa_ioim_s
*hal_io
;
206 spin_lock_irqsave(&bfad
->bfad_lock
, flags
);
207 hal_io
= (struct bfa_ioim_s
*) cmnd
->host_scribble
;
209 /* IO has been completed, retrun success */
213 if (hal_io
->dio
!= (struct bfad_ioim_s
*) cmnd
) {
218 bfa_trc(bfad
, hal_io
->iotag
);
219 BFA_LOG(KERN_INFO
, bfad
, bfa_log_level
,
220 "scsi%d: abort cmnd %p iotag %x\n",
221 im_port
->shost
->host_no
, cmnd
, hal_io
->iotag
);
222 (void) bfa_ioim_abort(hal_io
);
223 spin_unlock_irqrestore(&bfad
->bfad_lock
, flags
);
225 /* Need to wait until the command get aborted */
227 while ((struct bfa_ioim_s
*) cmnd
->host_scribble
== hal_io
) {
228 set_current_state(TASK_UNINTERRUPTIBLE
);
229 schedule_timeout(timeout
);
230 if (timeout
< 4 * HZ
)
234 cmnd
->scsi_done(cmnd
);
235 bfa_trc(bfad
, hal_io
->iotag
);
236 BFA_LOG(KERN_INFO
, bfad
, bfa_log_level
,
237 "scsi%d: complete abort 0x%p iotag 0x%x\n",
238 im_port
->shost
->host_no
, cmnd
, hal_io
->iotag
);
241 spin_unlock_irqrestore(&bfad
->bfad_lock
, flags
);
246 bfad_im_target_reset_send(struct bfad_s
*bfad
, struct scsi_cmnd
*cmnd
,
247 struct bfad_itnim_s
*itnim
)
249 struct bfa_tskim_s
*tskim
;
250 struct bfa_itnim_s
*bfa_itnim
;
251 bfa_status_t rc
= BFA_STATUS_OK
;
252 struct scsi_lun scsilun
;
254 tskim
= bfa_tskim_alloc(&bfad
->bfa
, (struct bfad_tskim_s
*) cmnd
);
256 BFA_LOG(KERN_ERR
, bfad
, bfa_log_level
,
257 "target reset, fail to allocate tskim\n");
258 rc
= BFA_STATUS_FAILED
;
263 * Set host_scribble to NULL to avoid aborting a task command if
266 cmnd
->host_scribble
= NULL
;
267 cmnd
->SCp
.Status
= 0;
268 bfa_itnim
= bfa_fcs_itnim_get_halitn(&itnim
->fcs_itnim
);
269 memset(&scsilun
, 0, sizeof(scsilun
));
270 bfa_tskim_start(tskim
, bfa_itnim
, scsilun
,
271 FCP_TM_TARGET_RESET
, BFAD_TARGET_RESET_TMO
);
277 * Scsi_Host template entry, resets a LUN and abort its all commands.
279 * Returns: SUCCESS or FAILED.
283 bfad_im_reset_lun_handler(struct scsi_cmnd
*cmnd
)
285 struct Scsi_Host
*shost
= cmnd
->device
->host
;
286 struct bfad_im_port_s
*im_port
=
287 (struct bfad_im_port_s
*) shost
->hostdata
[0];
288 struct bfad_itnim_data_s
*itnim_data
= cmnd
->device
->hostdata
;
289 struct bfad_s
*bfad
= im_port
->bfad
;
290 struct bfa_tskim_s
*tskim
;
291 struct bfad_itnim_s
*itnim
;
292 struct bfa_itnim_s
*bfa_itnim
;
293 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq
);
296 enum bfi_tskim_status task_status
;
297 struct scsi_lun scsilun
;
299 spin_lock_irqsave(&bfad
->bfad_lock
, flags
);
300 itnim
= itnim_data
->itnim
;
302 spin_unlock_irqrestore(&bfad
->bfad_lock
, flags
);
307 tskim
= bfa_tskim_alloc(&bfad
->bfa
, (struct bfad_tskim_s
*) cmnd
);
309 BFA_LOG(KERN_ERR
, bfad
, bfa_log_level
,
310 "LUN reset, fail to allocate tskim");
311 spin_unlock_irqrestore(&bfad
->bfad_lock
, flags
);
317 * Set host_scribble to NULL to avoid aborting a task command
320 cmnd
->host_scribble
= NULL
;
321 cmnd
->SCp
.ptr
= (char *)&wq
;
322 cmnd
->SCp
.Status
= 0;
323 bfa_itnim
= bfa_fcs_itnim_get_halitn(&itnim
->fcs_itnim
);
324 int_to_scsilun(cmnd
->device
->lun
, &scsilun
);
325 bfa_tskim_start(tskim
, bfa_itnim
, scsilun
,
326 FCP_TM_LUN_RESET
, BFAD_LUN_RESET_TMO
);
327 spin_unlock_irqrestore(&bfad
->bfad_lock
, flags
);
329 wait_event(wq
, test_bit(IO_DONE_BIT
,
330 (unsigned long *)&cmnd
->SCp
.Status
));
332 task_status
= cmnd
->SCp
.Status
>> 1;
333 if (task_status
!= BFI_TSKIM_STS_OK
) {
334 BFA_LOG(KERN_ERR
, bfad
, bfa_log_level
,
335 "LUN reset failure, status: %d\n", task_status
);
344 * Scsi_Host template entry, resets the bus and abort all commands.
347 bfad_im_reset_bus_handler(struct scsi_cmnd
*cmnd
)
349 struct Scsi_Host
*shost
= cmnd
->device
->host
;
350 struct bfad_im_port_s
*im_port
=
351 (struct bfad_im_port_s
*) shost
->hostdata
[0];
352 struct bfad_s
*bfad
= im_port
->bfad
;
353 struct bfad_itnim_s
*itnim
;
355 u32 i
, rc
, err_cnt
= 0;
356 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq
);
357 enum bfi_tskim_status task_status
;
359 spin_lock_irqsave(&bfad
->bfad_lock
, flags
);
360 for (i
= 0; i
< MAX_FCP_TARGET
; i
++) {
361 itnim
= bfad_get_itnim(im_port
, i
);
363 cmnd
->SCp
.ptr
= (char *)&wq
;
364 rc
= bfad_im_target_reset_send(bfad
, cmnd
, itnim
);
365 if (rc
!= BFA_STATUS_OK
) {
370 /* wait target reset to complete */
371 spin_unlock_irqrestore(&bfad
->bfad_lock
, flags
);
372 wait_event(wq
, test_bit(IO_DONE_BIT
,
373 (unsigned long *)&cmnd
->SCp
.Status
));
374 spin_lock_irqsave(&bfad
->bfad_lock
, flags
);
376 task_status
= cmnd
->SCp
.Status
>> 1;
377 if (task_status
!= BFI_TSKIM_STS_OK
) {
378 BFA_LOG(KERN_ERR
, bfad
, bfa_log_level
,
379 "target reset failure,"
380 " status: %d\n", task_status
);
385 spin_unlock_irqrestore(&bfad
->bfad_lock
, flags
);
394 * Scsi_Host template entry slave_destroy.
397 bfad_im_slave_destroy(struct scsi_device
*sdev
)
399 sdev
->hostdata
= NULL
;
404 * BFA FCS itnim callbacks
408 * BFA FCS itnim alloc callback, after successful PRLI
412 bfa_fcb_itnim_alloc(struct bfad_s
*bfad
, struct bfa_fcs_itnim_s
**itnim
,
413 struct bfad_itnim_s
**itnim_drv
)
415 *itnim_drv
= kzalloc(sizeof(struct bfad_itnim_s
), GFP_ATOMIC
);
416 if (*itnim_drv
== NULL
)
419 (*itnim_drv
)->im
= bfad
->im
;
420 *itnim
= &(*itnim_drv
)->fcs_itnim
;
421 (*itnim_drv
)->state
= ITNIM_STATE_NONE
;
424 * Initiaze the itnim_work
426 INIT_WORK(&(*itnim_drv
)->itnim_work
, bfad_im_itnim_work_handler
);
427 bfad
->bfad_flags
|= BFAD_RPORT_ONLINE
;
431 * BFA FCS itnim free callback.
432 * Context: Interrupt. bfad_lock is held
435 bfa_fcb_itnim_free(struct bfad_s
*bfad
, struct bfad_itnim_s
*itnim_drv
)
437 struct bfad_port_s
*port
;
440 char wwpn_str
[32], fcid_str
[16];
441 struct bfad_im_s
*im
= itnim_drv
->im
;
443 /* online to free state transtion should not happen */
444 WARN_ON(itnim_drv
->state
== ITNIM_STATE_ONLINE
);
446 itnim_drv
->queue_work
= 1;
447 /* offline request is not yet done, use the same request to free */
448 if (itnim_drv
->state
== ITNIM_STATE_OFFLINE_PENDING
)
449 itnim_drv
->queue_work
= 0;
451 itnim_drv
->state
= ITNIM_STATE_FREE
;
452 port
= bfa_fcs_itnim_get_drvport(&itnim_drv
->fcs_itnim
);
453 itnim_drv
->im_port
= port
->im_port
;
454 wwpn
= bfa_fcs_itnim_get_pwwn(&itnim_drv
->fcs_itnim
);
455 fcid
= bfa_fcs_itnim_get_fcid(&itnim_drv
->fcs_itnim
);
456 wwn2str(wwpn_str
, wwpn
);
457 fcid2str(fcid_str
, fcid
);
458 BFA_LOG(KERN_INFO
, bfad
, bfa_log_level
,
459 "ITNIM FREE scsi%d: FCID: %s WWPN: %s\n",
460 port
->im_port
->shost
->host_no
,
463 /* ITNIM processing */
464 if (itnim_drv
->queue_work
)
465 queue_work(im
->drv_workq
, &itnim_drv
->itnim_work
);
469 * BFA FCS itnim online callback.
470 * Context: Interrupt. bfad_lock is held
473 bfa_fcb_itnim_online(struct bfad_itnim_s
*itnim_drv
)
475 struct bfad_port_s
*port
;
476 struct bfad_im_s
*im
= itnim_drv
->im
;
478 itnim_drv
->bfa_itnim
= bfa_fcs_itnim_get_halitn(&itnim_drv
->fcs_itnim
);
479 port
= bfa_fcs_itnim_get_drvport(&itnim_drv
->fcs_itnim
);
480 itnim_drv
->state
= ITNIM_STATE_ONLINE
;
481 itnim_drv
->queue_work
= 1;
482 itnim_drv
->im_port
= port
->im_port
;
484 /* ITNIM processing */
485 if (itnim_drv
->queue_work
)
486 queue_work(im
->drv_workq
, &itnim_drv
->itnim_work
);
490 * BFA FCS itnim offline callback.
491 * Context: Interrupt. bfad_lock is held
494 bfa_fcb_itnim_offline(struct bfad_itnim_s
*itnim_drv
)
496 struct bfad_port_s
*port
;
498 struct bfad_im_s
*im
= itnim_drv
->im
;
500 port
= bfa_fcs_itnim_get_drvport(&itnim_drv
->fcs_itnim
);
502 if ((bfad
->pport
.flags
& BFAD_PORT_DELETE
) ||
503 (port
->flags
& BFAD_PORT_DELETE
)) {
504 itnim_drv
->state
= ITNIM_STATE_OFFLINE
;
507 itnim_drv
->im_port
= port
->im_port
;
508 itnim_drv
->state
= ITNIM_STATE_OFFLINE_PENDING
;
509 itnim_drv
->queue_work
= 1;
511 /* ITNIM processing */
512 if (itnim_drv
->queue_work
)
513 queue_work(im
->drv_workq
, &itnim_drv
->itnim_work
);
517 * Allocate a Scsi_Host for a port.
520 bfad_im_scsi_host_alloc(struct bfad_s
*bfad
, struct bfad_im_port_s
*im_port
,
525 mutex_lock(&bfad_mutex
);
526 if (!idr_pre_get(&bfad_im_port_index
, GFP_KERNEL
)) {
527 mutex_unlock(&bfad_mutex
);
528 printk(KERN_WARNING
"idr_pre_get failure\n");
532 error
= idr_get_new(&bfad_im_port_index
, im_port
,
535 mutex_unlock(&bfad_mutex
);
536 printk(KERN_WARNING
"idr_get_new failure\n");
540 mutex_unlock(&bfad_mutex
);
542 im_port
->shost
= bfad_scsi_host_alloc(im_port
, bfad
);
543 if (!im_port
->shost
) {
548 im_port
->shost
->hostdata
[0] = (unsigned long)im_port
;
549 im_port
->shost
->unique_id
= im_port
->idr_id
;
550 im_port
->shost
->this_id
= -1;
551 im_port
->shost
->max_id
= MAX_FCP_TARGET
;
552 im_port
->shost
->max_lun
= MAX_FCP_LUN
;
553 im_port
->shost
->max_cmd_len
= 16;
554 im_port
->shost
->can_queue
= bfad
->cfg_data
.ioc_queue_depth
;
555 if (im_port
->port
->pvb_type
== BFAD_PORT_PHYS_BASE
)
556 im_port
->shost
->transportt
= bfad_im_scsi_transport_template
;
558 im_port
->shost
->transportt
=
559 bfad_im_scsi_vport_transport_template
;
561 error
= scsi_add_host_with_dma(im_port
->shost
, dev
, &bfad
->pcidev
->dev
);
563 printk(KERN_WARNING
"scsi_add_host failure %d\n", error
);
570 scsi_host_put(im_port
->shost
);
571 im_port
->shost
= NULL
;
573 mutex_lock(&bfad_mutex
);
574 idr_remove(&bfad_im_port_index
, im_port
->idr_id
);
575 mutex_unlock(&bfad_mutex
);
581 bfad_im_scsi_host_free(struct bfad_s
*bfad
, struct bfad_im_port_s
*im_port
)
583 bfa_trc(bfad
, bfad
->inst_no
);
584 BFA_LOG(KERN_INFO
, bfad
, bfa_log_level
, "Free scsi%d\n",
585 im_port
->shost
->host_no
);
587 fc_remove_host(im_port
->shost
);
589 scsi_remove_host(im_port
->shost
);
590 scsi_host_put(im_port
->shost
);
592 mutex_lock(&bfad_mutex
);
593 idr_remove(&bfad_im_port_index
, im_port
->idr_id
);
594 mutex_unlock(&bfad_mutex
);
598 bfad_im_port_delete_handler(struct work_struct
*work
)
600 struct bfad_im_port_s
*im_port
=
601 container_of(work
, struct bfad_im_port_s
, port_delete_work
);
603 if (im_port
->port
->pvb_type
!= BFAD_PORT_PHYS_BASE
) {
604 im_port
->flags
|= BFAD_PORT_DELETE
;
605 fc_vport_terminate(im_port
->fc_vport
);
610 bfad_im_port_new(struct bfad_s
*bfad
, struct bfad_port_s
*port
)
612 int rc
= BFA_STATUS_OK
;
613 struct bfad_im_port_s
*im_port
;
615 im_port
= kzalloc(sizeof(struct bfad_im_port_s
), GFP_ATOMIC
);
616 if (im_port
== NULL
) {
617 rc
= BFA_STATUS_ENOMEM
;
620 port
->im_port
= im_port
;
621 im_port
->port
= port
;
622 im_port
->bfad
= bfad
;
624 INIT_WORK(&im_port
->port_delete_work
, bfad_im_port_delete_handler
);
625 INIT_LIST_HEAD(&im_port
->itnim_mapped_list
);
626 INIT_LIST_HEAD(&im_port
->binding_list
);
633 bfad_im_port_delete(struct bfad_s
*bfad
, struct bfad_port_s
*port
)
635 struct bfad_im_port_s
*im_port
= port
->im_port
;
637 queue_work(bfad
->im
->drv_workq
,
638 &im_port
->port_delete_work
);
642 bfad_im_port_clean(struct bfad_im_port_s
*im_port
)
644 struct bfad_fcp_binding
*bp
, *bp_new
;
646 struct bfad_s
*bfad
= im_port
->bfad
;
648 spin_lock_irqsave(&bfad
->bfad_lock
, flags
);
649 list_for_each_entry_safe(bp
, bp_new
, &im_port
->binding_list
,
651 list_del(&bp
->list_entry
);
655 /* the itnim_mapped_list must be empty at this time */
656 WARN_ON(!list_empty(&im_port
->itnim_mapped_list
));
658 spin_unlock_irqrestore(&bfad
->bfad_lock
, flags
);
661 static void bfad_aen_im_notify_handler(struct work_struct
*work
)
663 struct bfad_im_s
*im
=
664 container_of(work
, struct bfad_im_s
, aen_im_notify_work
);
665 struct bfa_aen_entry_s
*aen_entry
;
666 struct bfad_s
*bfad
= im
->bfad
;
667 struct Scsi_Host
*shost
= bfad
->pport
.im_port
->shost
;
671 while (!list_empty(&bfad
->active_aen_q
)) {
672 spin_lock_irqsave(&bfad
->bfad_aen_spinlock
, flags
);
673 bfa_q_deq(&bfad
->active_aen_q
, &aen_entry
);
674 spin_unlock_irqrestore(&bfad
->bfad_aen_spinlock
, flags
);
675 event_data
= (char *)aen_entry
+ sizeof(struct list_head
);
676 fc_host_post_vendor_event(shost
, fc_get_event_number(),
677 sizeof(struct bfa_aen_entry_s
) -
678 sizeof(struct list_head
),
679 (char *)event_data
, BFAD_NL_VENDOR_ID
);
680 spin_lock_irqsave(&bfad
->bfad_aen_spinlock
, flags
);
681 list_add_tail(&aen_entry
->qe
, &bfad
->free_aen_q
);
682 spin_unlock_irqrestore(&bfad
->bfad_aen_spinlock
, flags
);
687 bfad_im_probe(struct bfad_s
*bfad
)
689 struct bfad_im_s
*im
;
690 bfa_status_t rc
= BFA_STATUS_OK
;
692 im
= kzalloc(sizeof(struct bfad_im_s
), GFP_KERNEL
);
694 rc
= BFA_STATUS_ENOMEM
;
701 if (bfad_thread_workq(bfad
) != BFA_STATUS_OK
) {
703 rc
= BFA_STATUS_FAILED
;
706 INIT_WORK(&im
->aen_im_notify_work
, bfad_aen_im_notify_handler
);
712 bfad_im_probe_undo(struct bfad_s
*bfad
)
715 bfad_destroy_workq(bfad
->im
);
722 bfad_scsi_host_alloc(struct bfad_im_port_s
*im_port
, struct bfad_s
*bfad
)
724 struct scsi_host_template
*sht
;
726 if (im_port
->port
->pvb_type
== BFAD_PORT_PHYS_BASE
)
727 sht
= &bfad_im_scsi_host_template
;
729 sht
= &bfad_im_vport_template
;
731 if (max_xfer_size
!= BFAD_MAX_SECTORS
>> 1)
732 sht
->max_sectors
= max_xfer_size
<< 1;
734 sht
->sg_tablesize
= bfad
->cfg_data
.io_max_sge
;
736 return scsi_host_alloc(sht
, sizeof(unsigned long));
740 bfad_scsi_host_free(struct bfad_s
*bfad
, struct bfad_im_port_s
*im_port
)
742 if (!(im_port
->flags
& BFAD_PORT_DELETE
))
743 flush_workqueue(bfad
->im
->drv_workq
);
744 bfad_im_scsi_host_free(im_port
->bfad
, im_port
);
745 bfad_im_port_clean(im_port
);
750 bfad_destroy_workq(struct bfad_im_s
*im
)
752 if (im
&& im
->drv_workq
) {
753 flush_workqueue(im
->drv_workq
);
754 destroy_workqueue(im
->drv_workq
);
755 im
->drv_workq
= NULL
;
760 bfad_thread_workq(struct bfad_s
*bfad
)
762 struct bfad_im_s
*im
= bfad
->im
;
765 snprintf(im
->drv_workq_name
, KOBJ_NAME_LEN
, "bfad_wq_%d",
767 im
->drv_workq
= create_singlethread_workqueue(im
->drv_workq_name
);
769 return BFA_STATUS_FAILED
;
771 return BFA_STATUS_OK
;
775 * Scsi_Host template entry.
778 * OS entry point to adjust the queue_depths on a per-device basis.
779 * Called once per device during the bus scan.
780 * Return non-zero if fails.
783 bfad_im_slave_configure(struct scsi_device
*sdev
)
785 if (sdev
->tagged_supported
)
786 scsi_activate_tcq(sdev
, bfa_lun_queue_depth
);
788 scsi_deactivate_tcq(sdev
, bfa_lun_queue_depth
);
793 struct scsi_host_template bfad_im_scsi_host_template
= {
794 .module
= THIS_MODULE
,
795 .name
= BFAD_DRIVER_NAME
,
796 .info
= bfad_im_info
,
797 .queuecommand
= bfad_im_queuecommand
,
798 .eh_abort_handler
= bfad_im_abort_handler
,
799 .eh_device_reset_handler
= bfad_im_reset_lun_handler
,
800 .eh_bus_reset_handler
= bfad_im_reset_bus_handler
,
802 .slave_alloc
= bfad_im_slave_alloc
,
803 .slave_configure
= bfad_im_slave_configure
,
804 .slave_destroy
= bfad_im_slave_destroy
,
807 .sg_tablesize
= BFAD_IO_MAX_SGE
,
809 .use_clustering
= ENABLE_CLUSTERING
,
810 .shost_attrs
= bfad_im_host_attrs
,
811 .max_sectors
= BFAD_MAX_SECTORS
,
812 .vendor_id
= BFA_PCI_VENDOR_ID_BROCADE
,
815 struct scsi_host_template bfad_im_vport_template
= {
816 .module
= THIS_MODULE
,
817 .name
= BFAD_DRIVER_NAME
,
818 .info
= bfad_im_info
,
819 .queuecommand
= bfad_im_queuecommand
,
820 .eh_abort_handler
= bfad_im_abort_handler
,
821 .eh_device_reset_handler
= bfad_im_reset_lun_handler
,
822 .eh_bus_reset_handler
= bfad_im_reset_bus_handler
,
824 .slave_alloc
= bfad_im_slave_alloc
,
825 .slave_configure
= bfad_im_slave_configure
,
826 .slave_destroy
= bfad_im_slave_destroy
,
829 .sg_tablesize
= BFAD_IO_MAX_SGE
,
831 .use_clustering
= ENABLE_CLUSTERING
,
832 .shost_attrs
= bfad_im_vport_attrs
,
833 .max_sectors
= BFAD_MAX_SECTORS
,
837 bfad_im_module_init(void)
839 bfad_im_scsi_transport_template
=
840 fc_attach_transport(&bfad_im_fc_function_template
);
841 if (!bfad_im_scsi_transport_template
)
842 return BFA_STATUS_ENOMEM
;
844 bfad_im_scsi_vport_transport_template
=
845 fc_attach_transport(&bfad_im_vport_fc_function_template
);
846 if (!bfad_im_scsi_vport_transport_template
) {
847 fc_release_transport(bfad_im_scsi_transport_template
);
848 return BFA_STATUS_ENOMEM
;
851 return BFA_STATUS_OK
;
855 bfad_im_module_exit(void)
857 if (bfad_im_scsi_transport_template
)
858 fc_release_transport(bfad_im_scsi_transport_template
);
860 if (bfad_im_scsi_vport_transport_template
)
861 fc_release_transport(bfad_im_scsi_vport_transport_template
);
865 bfad_ramp_up_qdepth(struct bfad_itnim_s
*itnim
, struct scsi_device
*sdev
)
867 struct scsi_device
*tmp_sdev
;
869 if (((jiffies
- itnim
->last_ramp_up_time
) >
870 BFA_QUEUE_FULL_RAMP_UP_TIME
* HZ
) &&
871 ((jiffies
- itnim
->last_queue_full_time
) >
872 BFA_QUEUE_FULL_RAMP_UP_TIME
* HZ
)) {
873 shost_for_each_device(tmp_sdev
, sdev
->host
) {
874 if (bfa_lun_queue_depth
> tmp_sdev
->queue_depth
) {
875 if (tmp_sdev
->id
!= sdev
->id
)
877 if (tmp_sdev
->ordered_tags
)
878 scsi_adjust_queue_depth(tmp_sdev
,
880 tmp_sdev
->queue_depth
+ 1);
882 scsi_adjust_queue_depth(tmp_sdev
,
884 tmp_sdev
->queue_depth
+ 1);
886 itnim
->last_ramp_up_time
= jiffies
;
893 bfad_handle_qfull(struct bfad_itnim_s
*itnim
, struct scsi_device
*sdev
)
895 struct scsi_device
*tmp_sdev
;
897 itnim
->last_queue_full_time
= jiffies
;
899 shost_for_each_device(tmp_sdev
, sdev
->host
) {
900 if (tmp_sdev
->id
!= sdev
->id
)
902 scsi_track_queue_full(tmp_sdev
, tmp_sdev
->queue_depth
- 1);
906 struct bfad_itnim_s
*
907 bfad_get_itnim(struct bfad_im_port_s
*im_port
, int id
)
909 struct bfad_itnim_s
*itnim
= NULL
;
911 /* Search the mapped list for this target ID */
912 list_for_each_entry(itnim
, &im_port
->itnim_mapped_list
, list_entry
) {
913 if (id
== itnim
->scsi_tgt_id
)
921 * Scsi_Host template entry slave_alloc
924 bfad_im_slave_alloc(struct scsi_device
*sdev
)
926 struct fc_rport
*rport
= starget_to_rport(scsi_target(sdev
));
928 if (!rport
|| fc_remote_port_chkready(rport
))
931 sdev
->hostdata
= rport
->dd_data
;
937 bfad_im_supported_speeds(struct bfa_s
*bfa
)
939 struct bfa_ioc_attr_s
*ioc_attr
;
940 u32 supported_speed
= 0;
942 ioc_attr
= kzalloc(sizeof(struct bfa_ioc_attr_s
), GFP_KERNEL
);
946 bfa_ioc_get_attr(&bfa
->ioc
, ioc_attr
);
947 if (ioc_attr
->adapter_attr
.max_speed
== BFA_PORT_SPEED_16GBPS
)
948 supported_speed
|= FC_PORTSPEED_16GBIT
| FC_PORTSPEED_8GBIT
|
949 FC_PORTSPEED_4GBIT
| FC_PORTSPEED_2GBIT
;
950 else if (ioc_attr
->adapter_attr
.max_speed
== BFA_PORT_SPEED_8GBPS
) {
951 if (ioc_attr
->adapter_attr
.is_mezz
) {
952 supported_speed
|= FC_PORTSPEED_8GBIT
|
954 FC_PORTSPEED_2GBIT
| FC_PORTSPEED_1GBIT
;
956 supported_speed
|= FC_PORTSPEED_8GBIT
|
960 } else if (ioc_attr
->adapter_attr
.max_speed
== BFA_PORT_SPEED_4GBPS
) {
961 supported_speed
|= FC_PORTSPEED_4GBIT
| FC_PORTSPEED_2GBIT
|
963 } else if (ioc_attr
->adapter_attr
.max_speed
== BFA_PORT_SPEED_10GBPS
) {
964 supported_speed
|= FC_PORTSPEED_10GBIT
;
967 return supported_speed
;
971 bfad_fc_host_init(struct bfad_im_port_s
*im_port
)
973 struct Scsi_Host
*host
= im_port
->shost
;
974 struct bfad_s
*bfad
= im_port
->bfad
;
975 struct bfad_port_s
*port
= im_port
->port
;
976 char symname
[BFA_SYMNAME_MAXLEN
];
977 struct bfa_fcport_s
*fcport
= BFA_FCPORT_MOD(&bfad
->bfa
);
979 fc_host_node_name(host
) =
980 cpu_to_be64((bfa_fcs_lport_get_nwwn(port
->fcs_port
)));
981 fc_host_port_name(host
) =
982 cpu_to_be64((bfa_fcs_lport_get_pwwn(port
->fcs_port
)));
983 fc_host_max_npiv_vports(host
) = bfa_lps_get_max_vport(&bfad
->bfa
);
985 fc_host_supported_classes(host
) = FC_COS_CLASS3
;
987 memset(fc_host_supported_fc4s(host
), 0,
988 sizeof(fc_host_supported_fc4s(host
)));
989 if (supported_fc4s
& BFA_LPORT_ROLE_FCP_IM
)
990 /* For FCP type 0x08 */
991 fc_host_supported_fc4s(host
)[2] = 1;
992 /* For fibre channel services type 0x20 */
993 fc_host_supported_fc4s(host
)[7] = 1;
995 strncpy(symname
, bfad
->bfa_fcs
.fabric
.bport
.port_cfg
.sym_name
.symname
,
997 sprintf(fc_host_symbolic_name(host
), "%s", symname
);
999 fc_host_supported_speeds(host
) = bfad_im_supported_speeds(&bfad
->bfa
);
1000 fc_host_maxframe_size(host
) = fcport
->cfg
.maxfrsize
;
1004 bfad_im_fc_rport_add(struct bfad_im_port_s
*im_port
, struct bfad_itnim_s
*itnim
)
1006 struct fc_rport_identifiers rport_ids
;
1007 struct fc_rport
*fc_rport
;
1008 struct bfad_itnim_data_s
*itnim_data
;
1010 rport_ids
.node_name
=
1011 cpu_to_be64(bfa_fcs_itnim_get_nwwn(&itnim
->fcs_itnim
));
1012 rport_ids
.port_name
=
1013 cpu_to_be64(bfa_fcs_itnim_get_pwwn(&itnim
->fcs_itnim
));
1015 bfa_hton3b(bfa_fcs_itnim_get_fcid(&itnim
->fcs_itnim
));
1016 rport_ids
.roles
= FC_RPORT_ROLE_UNKNOWN
;
1018 itnim
->fc_rport
= fc_rport
=
1019 fc_remote_port_add(im_port
->shost
, 0, &rport_ids
);
1024 fc_rport
->maxframe_size
=
1025 bfa_fcs_itnim_get_maxfrsize(&itnim
->fcs_itnim
);
1026 fc_rport
->supported_classes
= bfa_fcs_itnim_get_cos(&itnim
->fcs_itnim
);
1028 itnim_data
= fc_rport
->dd_data
;
1029 itnim_data
->itnim
= itnim
;
1031 rport_ids
.roles
|= FC_RPORT_ROLE_FCP_TARGET
;
1033 if (rport_ids
.roles
!= FC_RPORT_ROLE_UNKNOWN
)
1034 fc_remote_port_rolechg(fc_rport
, rport_ids
.roles
);
1036 if ((fc_rport
->scsi_target_id
!= -1)
1037 && (fc_rport
->scsi_target_id
< MAX_FCP_TARGET
))
1038 itnim
->scsi_tgt_id
= fc_rport
->scsi_target_id
;
1044 * Work queue handler using FC transport service
1048 bfad_im_itnim_work_handler(struct work_struct
*work
)
1050 struct bfad_itnim_s
*itnim
= container_of(work
, struct bfad_itnim_s
,
1052 struct bfad_im_s
*im
= itnim
->im
;
1053 struct bfad_s
*bfad
= im
->bfad
;
1054 struct bfad_im_port_s
*im_port
;
1055 unsigned long flags
;
1056 struct fc_rport
*fc_rport
;
1059 char wwpn_str
[32], fcid_str
[16];
1061 spin_lock_irqsave(&bfad
->bfad_lock
, flags
);
1062 im_port
= itnim
->im_port
;
1063 bfa_trc(bfad
, itnim
->state
);
1064 switch (itnim
->state
) {
1065 case ITNIM_STATE_ONLINE
:
1066 if (!itnim
->fc_rport
) {
1067 spin_unlock_irqrestore(&bfad
->bfad_lock
, flags
);
1068 bfad_im_fc_rport_add(im_port
, itnim
);
1069 spin_lock_irqsave(&bfad
->bfad_lock
, flags
);
1070 wwpn
= bfa_fcs_itnim_get_pwwn(&itnim
->fcs_itnim
);
1071 fcid
= bfa_fcs_itnim_get_fcid(&itnim
->fcs_itnim
);
1072 wwn2str(wwpn_str
, wwpn
);
1073 fcid2str(fcid_str
, fcid
);
1074 list_add_tail(&itnim
->list_entry
,
1075 &im_port
->itnim_mapped_list
);
1076 BFA_LOG(KERN_INFO
, bfad
, bfa_log_level
,
1077 "ITNIM ONLINE Target: %d:0:%d "
1078 "FCID: %s WWPN: %s\n",
1079 im_port
->shost
->host_no
,
1081 fcid_str
, wwpn_str
);
1084 "%s: itnim %llx is already in online state\n",
1086 bfa_fcs_itnim_get_pwwn(&itnim
->fcs_itnim
));
1090 case ITNIM_STATE_OFFLINE_PENDING
:
1091 itnim
->state
= ITNIM_STATE_OFFLINE
;
1092 if (itnim
->fc_rport
) {
1093 fc_rport
= itnim
->fc_rport
;
1094 ((struct bfad_itnim_data_s
*)
1095 fc_rport
->dd_data
)->itnim
= NULL
;
1096 itnim
->fc_rport
= NULL
;
1097 if (!(im_port
->port
->flags
& BFAD_PORT_DELETE
)) {
1098 spin_unlock_irqrestore(&bfad
->bfad_lock
, flags
);
1099 fc_rport
->dev_loss_tmo
=
1100 bfa_fcpim_path_tov_get(&bfad
->bfa
) + 1;
1101 fc_remote_port_delete(fc_rport
);
1102 spin_lock_irqsave(&bfad
->bfad_lock
, flags
);
1104 wwpn
= bfa_fcs_itnim_get_pwwn(&itnim
->fcs_itnim
);
1105 fcid
= bfa_fcs_itnim_get_fcid(&itnim
->fcs_itnim
);
1106 wwn2str(wwpn_str
, wwpn
);
1107 fcid2str(fcid_str
, fcid
);
1108 list_del(&itnim
->list_entry
);
1109 BFA_LOG(KERN_INFO
, bfad
, bfa_log_level
,
1110 "ITNIM OFFLINE Target: %d:0:%d "
1111 "FCID: %s WWPN: %s\n",
1112 im_port
->shost
->host_no
,
1114 fcid_str
, wwpn_str
);
1117 case ITNIM_STATE_FREE
:
1118 if (itnim
->fc_rport
) {
1119 fc_rport
= itnim
->fc_rport
;
1120 ((struct bfad_itnim_data_s
*)
1121 fc_rport
->dd_data
)->itnim
= NULL
;
1122 itnim
->fc_rport
= NULL
;
1123 if (!(im_port
->port
->flags
& BFAD_PORT_DELETE
)) {
1124 spin_unlock_irqrestore(&bfad
->bfad_lock
, flags
);
1125 fc_rport
->dev_loss_tmo
=
1126 bfa_fcpim_path_tov_get(&bfad
->bfa
) + 1;
1127 fc_remote_port_delete(fc_rport
);
1128 spin_lock_irqsave(&bfad
->bfad_lock
, flags
);
1130 list_del(&itnim
->list_entry
);
1140 spin_unlock_irqrestore(&bfad
->bfad_lock
, flags
);
1144 * Scsi_Host template entry, queue a SCSI command to the BFAD.
1147 bfad_im_queuecommand_lck(struct scsi_cmnd
*cmnd
, void (*done
) (struct scsi_cmnd
*))
1149 struct bfad_im_port_s
*im_port
=
1150 (struct bfad_im_port_s
*) cmnd
->device
->host
->hostdata
[0];
1151 struct bfad_s
*bfad
= im_port
->bfad
;
1152 struct bfad_itnim_data_s
*itnim_data
= cmnd
->device
->hostdata
;
1153 struct bfad_itnim_s
*itnim
;
1154 struct bfa_ioim_s
*hal_io
;
1155 unsigned long flags
;
1158 struct fc_rport
*rport
= starget_to_rport(scsi_target(cmnd
->device
));
1160 rc
= fc_remote_port_chkready(rport
);
1167 sg_cnt
= scsi_dma_map(cmnd
);
1169 return SCSI_MLQUEUE_HOST_BUSY
;
1171 cmnd
->scsi_done
= done
;
1173 spin_lock_irqsave(&bfad
->bfad_lock
, flags
);
1174 if (!(bfad
->bfad_flags
& BFAD_HAL_START_DONE
)) {
1176 "bfad%d, queuecommand %p %x failed, BFA stopped\n",
1177 bfad
->inst_no
, cmnd
, cmnd
->cmnd
[0]);
1178 cmnd
->result
= ScsiResult(DID_NO_CONNECT
, 0);
1183 itnim
= itnim_data
->itnim
;
1185 cmnd
->result
= ScsiResult(DID_IMM_RETRY
, 0);
1189 hal_io
= bfa_ioim_alloc(&bfad
->bfa
, (struct bfad_ioim_s
*) cmnd
,
1190 itnim
->bfa_itnim
, sg_cnt
);
1192 printk(KERN_WARNING
"hal_io failure\n");
1193 spin_unlock_irqrestore(&bfad
->bfad_lock
, flags
);
1194 scsi_dma_unmap(cmnd
);
1195 return SCSI_MLQUEUE_HOST_BUSY
;
1198 cmnd
->host_scribble
= (char *)hal_io
;
1199 bfa_ioim_start(hal_io
);
1200 spin_unlock_irqrestore(&bfad
->bfad_lock
, flags
);
1205 spin_unlock_irqrestore(&bfad
->bfad_lock
, flags
);
1206 scsi_dma_unmap(cmnd
);
1213 static DEF_SCSI_QCMD(bfad_im_queuecommand
)
1216 bfad_rport_online_wait(struct bfad_s
*bfad
)
1219 int rport_delay
= 10;
1221 for (i
= 0; !(bfad
->bfad_flags
& BFAD_PORT_ONLINE
)
1222 && i
< bfa_linkup_delay
; i
++) {
1223 set_current_state(TASK_UNINTERRUPTIBLE
);
1224 schedule_timeout(HZ
);
1227 if (bfad
->bfad_flags
& BFAD_PORT_ONLINE
) {
1228 rport_delay
= rport_delay
< bfa_linkup_delay
?
1229 rport_delay
: bfa_linkup_delay
;
1230 for (i
= 0; !(bfad
->bfad_flags
& BFAD_RPORT_ONLINE
)
1231 && i
< rport_delay
; i
++) {
1232 set_current_state(TASK_UNINTERRUPTIBLE
);
1233 schedule_timeout(HZ
);
1236 if (rport_delay
> 0 && (bfad
->bfad_flags
& BFAD_RPORT_ONLINE
)) {
1237 set_current_state(TASK_UNINTERRUPTIBLE
);
1238 schedule_timeout(rport_delay
* HZ
);
1244 bfad_get_linkup_delay(struct bfad_s
*bfad
)
1247 wwn_t wwns
[BFA_PREBOOT_BOOTLUN_MAX
];
1251 * Querying for the boot target port wwns
1252 * -- read from boot information in flash.
1253 * If nwwns > 0 => boot over SAN and set linkup_delay = 30
1254 * else => local boot machine set linkup_delay = 0
1257 bfa_iocfc_get_bootwwns(&bfad
->bfa
, &nwwns
, wwns
);
1260 /* If Boot over SAN set linkup_delay = 30sec */
1263 /* If local boot; no linkup_delay */
1266 return linkup_delay
;