2 * ibmvfc.c -- driver for IBM Power Virtual Fibre Channel Adapter
4 * Written By: Brian King <brking@linux.vnet.ibm.com>, IBM Corporation
6 * Copyright (C) IBM Corporation, 2008
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 #include <linux/module.h>
25 #include <linux/moduleparam.h>
26 #include <linux/dma-mapping.h>
27 #include <linux/dmapool.h>
28 #include <linux/delay.h>
29 #include <linux/interrupt.h>
30 #include <linux/kthread.h>
33 #include <linux/stringify.h>
34 #include <asm/firmware.h>
37 #include <scsi/scsi.h>
38 #include <scsi/scsi_cmnd.h>
39 #include <scsi/scsi_host.h>
40 #include <scsi/scsi_device.h>
41 #include <scsi/scsi_tcq.h>
42 #include <scsi/scsi_transport_fc.h>
43 #include <scsi/scsi_bsg_fc.h>
46 static unsigned int init_timeout
= IBMVFC_INIT_TIMEOUT
;
47 static unsigned int default_timeout
= IBMVFC_DEFAULT_TIMEOUT
;
48 static unsigned int max_lun
= IBMVFC_MAX_LUN
;
49 static unsigned int max_targets
= IBMVFC_MAX_TARGETS
;
50 static unsigned int max_requests
= IBMVFC_MAX_REQUESTS_DEFAULT
;
51 static unsigned int disc_threads
= IBMVFC_MAX_DISC_THREADS
;
52 static unsigned int dev_loss_tmo
= IBMVFC_DEV_LOSS_TMO
;
53 static unsigned int ibmvfc_debug
= IBMVFC_DEBUG
;
54 static unsigned int log_level
= IBMVFC_DEFAULT_LOG_LEVEL
;
55 static LIST_HEAD(ibmvfc_head
);
56 static DEFINE_SPINLOCK(ibmvfc_driver_lock
);
57 static struct scsi_transport_template
*ibmvfc_transport_template
;
59 MODULE_DESCRIPTION("IBM Virtual Fibre Channel Driver");
60 MODULE_AUTHOR("Brian King <brking@linux.vnet.ibm.com>");
61 MODULE_LICENSE("GPL");
62 MODULE_VERSION(IBMVFC_DRIVER_VERSION
);
64 module_param_named(init_timeout
, init_timeout
, uint
, S_IRUGO
| S_IWUSR
);
65 MODULE_PARM_DESC(init_timeout
, "Initialization timeout in seconds. "
66 "[Default=" __stringify(IBMVFC_INIT_TIMEOUT
) "]");
67 module_param_named(default_timeout
, default_timeout
, uint
, S_IRUGO
| S_IWUSR
);
68 MODULE_PARM_DESC(default_timeout
,
69 "Default timeout in seconds for initialization and EH commands. "
70 "[Default=" __stringify(IBMVFC_DEFAULT_TIMEOUT
) "]");
71 module_param_named(max_requests
, max_requests
, uint
, S_IRUGO
);
72 MODULE_PARM_DESC(max_requests
, "Maximum requests for this adapter. "
73 "[Default=" __stringify(IBMVFC_MAX_REQUESTS_DEFAULT
) "]");
74 module_param_named(max_lun
, max_lun
, uint
, S_IRUGO
);
75 MODULE_PARM_DESC(max_lun
, "Maximum allowed LUN. "
76 "[Default=" __stringify(IBMVFC_MAX_LUN
) "]");
77 module_param_named(max_targets
, max_targets
, uint
, S_IRUGO
);
78 MODULE_PARM_DESC(max_targets
, "Maximum allowed targets. "
79 "[Default=" __stringify(IBMVFC_MAX_TARGETS
) "]");
80 module_param_named(disc_threads
, disc_threads
, uint
, S_IRUGO
);
81 MODULE_PARM_DESC(disc_threads
, "Number of device discovery threads to use. "
82 "[Default=" __stringify(IBMVFC_MAX_DISC_THREADS
) "]");
83 module_param_named(debug
, ibmvfc_debug
, uint
, S_IRUGO
| S_IWUSR
);
84 MODULE_PARM_DESC(debug
, "Enable driver debug information. "
85 "[Default=" __stringify(IBMVFC_DEBUG
) "]");
86 module_param_named(dev_loss_tmo
, dev_loss_tmo
, uint
, S_IRUGO
| S_IWUSR
);
87 MODULE_PARM_DESC(dev_loss_tmo
, "Maximum number of seconds that the FC "
88 "transport should insulate the loss of a remote port. Once this "
89 "value is exceeded, the scsi target is removed. "
90 "[Default=" __stringify(IBMVFC_DEV_LOSS_TMO
) "]");
91 module_param_named(log_level
, log_level
, uint
, 0);
92 MODULE_PARM_DESC(log_level
, "Set to 0 - 4 for increasing verbosity of device driver. "
93 "[Default=" __stringify(IBMVFC_DEFAULT_LOG_LEVEL
) "]");
103 { IBMVFC_FABRIC_MAPPED
, IBMVFC_UNABLE_TO_ESTABLISH
, DID_ERROR
, 1, 1, "unable to establish" },
104 { IBMVFC_FABRIC_MAPPED
, IBMVFC_XPORT_FAULT
, DID_OK
, 1, 0, "transport fault" },
105 { IBMVFC_FABRIC_MAPPED
, IBMVFC_CMD_TIMEOUT
, DID_TIME_OUT
, 1, 1, "command timeout" },
106 { IBMVFC_FABRIC_MAPPED
, IBMVFC_ENETDOWN
, DID_TRANSPORT_DISRUPTED
, 1, 1, "network down" },
107 { IBMVFC_FABRIC_MAPPED
, IBMVFC_HW_FAILURE
, DID_ERROR
, 1, 1, "hardware failure" },
108 { IBMVFC_FABRIC_MAPPED
, IBMVFC_LINK_DOWN_ERR
, DID_REQUEUE
, 0, 0, "link down" },
109 { IBMVFC_FABRIC_MAPPED
, IBMVFC_LINK_DEAD_ERR
, DID_ERROR
, 0, 0, "link dead" },
110 { IBMVFC_FABRIC_MAPPED
, IBMVFC_UNABLE_TO_REGISTER
, DID_ERROR
, 1, 1, "unable to register" },
111 { IBMVFC_FABRIC_MAPPED
, IBMVFC_XPORT_BUSY
, DID_BUS_BUSY
, 1, 0, "transport busy" },
112 { IBMVFC_FABRIC_MAPPED
, IBMVFC_XPORT_DEAD
, DID_ERROR
, 0, 1, "transport dead" },
113 { IBMVFC_FABRIC_MAPPED
, IBMVFC_CONFIG_ERROR
, DID_ERROR
, 1, 1, "configuration error" },
114 { IBMVFC_FABRIC_MAPPED
, IBMVFC_NAME_SERVER_FAIL
, DID_ERROR
, 1, 1, "name server failure" },
115 { IBMVFC_FABRIC_MAPPED
, IBMVFC_LINK_HALTED
, DID_REQUEUE
, 1, 0, "link halted" },
116 { IBMVFC_FABRIC_MAPPED
, IBMVFC_XPORT_GENERAL
, DID_OK
, 1, 0, "general transport error" },
118 { IBMVFC_VIOS_FAILURE
, IBMVFC_CRQ_FAILURE
, DID_REQUEUE
, 1, 1, "CRQ failure" },
119 { IBMVFC_VIOS_FAILURE
, IBMVFC_SW_FAILURE
, DID_ERROR
, 0, 1, "software failure" },
120 { IBMVFC_VIOS_FAILURE
, IBMVFC_INVALID_PARAMETER
, DID_ERROR
, 0, 1, "invalid parameter" },
121 { IBMVFC_VIOS_FAILURE
, IBMVFC_MISSING_PARAMETER
, DID_ERROR
, 0, 1, "missing parameter" },
122 { IBMVFC_VIOS_FAILURE
, IBMVFC_HOST_IO_BUS
, DID_ERROR
, 1, 1, "host I/O bus failure" },
123 { IBMVFC_VIOS_FAILURE
, IBMVFC_TRANS_CANCELLED
, DID_ERROR
, 0, 1, "transaction cancelled" },
124 { IBMVFC_VIOS_FAILURE
, IBMVFC_TRANS_CANCELLED_IMPLICIT
, DID_ERROR
, 0, 1, "transaction cancelled implicit" },
125 { IBMVFC_VIOS_FAILURE
, IBMVFC_INSUFFICIENT_RESOURCE
, DID_REQUEUE
, 1, 1, "insufficient resources" },
126 { IBMVFC_VIOS_FAILURE
, IBMVFC_PLOGI_REQUIRED
, DID_ERROR
, 0, 1, "port login required" },
127 { IBMVFC_VIOS_FAILURE
, IBMVFC_COMMAND_FAILED
, DID_ERROR
, 1, 1, "command failed" },
129 { IBMVFC_FC_FAILURE
, IBMVFC_INVALID_ELS_CMD_CODE
, DID_ERROR
, 0, 1, "invalid ELS command code" },
130 { IBMVFC_FC_FAILURE
, IBMVFC_INVALID_VERSION
, DID_ERROR
, 0, 1, "invalid version level" },
131 { IBMVFC_FC_FAILURE
, IBMVFC_LOGICAL_ERROR
, DID_ERROR
, 1, 1, "logical error" },
132 { IBMVFC_FC_FAILURE
, IBMVFC_INVALID_CT_IU_SIZE
, DID_ERROR
, 0, 1, "invalid CT_IU size" },
133 { IBMVFC_FC_FAILURE
, IBMVFC_LOGICAL_BUSY
, DID_REQUEUE
, 1, 0, "logical busy" },
134 { IBMVFC_FC_FAILURE
, IBMVFC_PROTOCOL_ERROR
, DID_ERROR
, 1, 1, "protocol error" },
135 { IBMVFC_FC_FAILURE
, IBMVFC_UNABLE_TO_PERFORM_REQ
, DID_ERROR
, 1, 1, "unable to perform request" },
136 { IBMVFC_FC_FAILURE
, IBMVFC_CMD_NOT_SUPPORTED
, DID_ERROR
, 0, 0, "command not supported" },
137 { IBMVFC_FC_FAILURE
, IBMVFC_SERVER_NOT_AVAIL
, DID_ERROR
, 0, 1, "server not available" },
138 { IBMVFC_FC_FAILURE
, IBMVFC_CMD_IN_PROGRESS
, DID_ERROR
, 0, 1, "command already in progress" },
139 { IBMVFC_FC_FAILURE
, IBMVFC_VENDOR_SPECIFIC
, DID_ERROR
, 1, 1, "vendor specific" },
141 { IBMVFC_FC_SCSI_ERROR
, 0, DID_OK
, 1, 0, "SCSI error" },
144 static void ibmvfc_npiv_login(struct ibmvfc_host
*);
145 static void ibmvfc_tgt_send_prli(struct ibmvfc_target
*);
146 static void ibmvfc_tgt_send_plogi(struct ibmvfc_target
*);
147 static void ibmvfc_tgt_query_target(struct ibmvfc_target
*);
148 static void ibmvfc_npiv_logout(struct ibmvfc_host
*);
150 static const char *unknown_error
= "unknown error";
152 #ifdef CONFIG_SCSI_IBMVFC_TRACE
154 * ibmvfc_trc_start - Log a start trace entry
155 * @evt: ibmvfc event struct
158 static void ibmvfc_trc_start(struct ibmvfc_event
*evt
)
160 struct ibmvfc_host
*vhost
= evt
->vhost
;
161 struct ibmvfc_cmd
*vfc_cmd
= &evt
->iu
.cmd
;
162 struct ibmvfc_mad_common
*mad
= &evt
->iu
.mad_common
;
163 struct ibmvfc_trace_entry
*entry
;
165 entry
= &vhost
->trace
[vhost
->trace_index
++];
167 entry
->time
= jiffies
;
168 entry
->fmt
= evt
->crq
.format
;
169 entry
->type
= IBMVFC_TRC_START
;
171 switch (entry
->fmt
) {
172 case IBMVFC_CMD_FORMAT
:
173 entry
->op_code
= vfc_cmd
->iu
.cdb
[0];
174 entry
->scsi_id
= vfc_cmd
->tgt_scsi_id
;
175 entry
->lun
= scsilun_to_int(&vfc_cmd
->iu
.lun
);
176 entry
->tmf_flags
= vfc_cmd
->iu
.tmf_flags
;
177 entry
->u
.start
.xfer_len
= vfc_cmd
->iu
.xfer_len
;
179 case IBMVFC_MAD_FORMAT
:
180 entry
->op_code
= mad
->opcode
;
188 * ibmvfc_trc_end - Log an end trace entry
189 * @evt: ibmvfc event struct
192 static void ibmvfc_trc_end(struct ibmvfc_event
*evt
)
194 struct ibmvfc_host
*vhost
= evt
->vhost
;
195 struct ibmvfc_cmd
*vfc_cmd
= &evt
->xfer_iu
->cmd
;
196 struct ibmvfc_mad_common
*mad
= &evt
->xfer_iu
->mad_common
;
197 struct ibmvfc_trace_entry
*entry
= &vhost
->trace
[vhost
->trace_index
++];
200 entry
->time
= jiffies
;
201 entry
->fmt
= evt
->crq
.format
;
202 entry
->type
= IBMVFC_TRC_END
;
204 switch (entry
->fmt
) {
205 case IBMVFC_CMD_FORMAT
:
206 entry
->op_code
= vfc_cmd
->iu
.cdb
[0];
207 entry
->scsi_id
= vfc_cmd
->tgt_scsi_id
;
208 entry
->lun
= scsilun_to_int(&vfc_cmd
->iu
.lun
);
209 entry
->tmf_flags
= vfc_cmd
->iu
.tmf_flags
;
210 entry
->u
.end
.status
= vfc_cmd
->status
;
211 entry
->u
.end
.error
= vfc_cmd
->error
;
212 entry
->u
.end
.fcp_rsp_flags
= vfc_cmd
->rsp
.flags
;
213 entry
->u
.end
.rsp_code
= vfc_cmd
->rsp
.data
.info
.rsp_code
;
214 entry
->u
.end
.scsi_status
= vfc_cmd
->rsp
.scsi_status
;
216 case IBMVFC_MAD_FORMAT
:
217 entry
->op_code
= mad
->opcode
;
218 entry
->u
.end
.status
= mad
->status
;
227 #define ibmvfc_trc_start(evt) do { } while (0)
228 #define ibmvfc_trc_end(evt) do { } while (0)
232 * ibmvfc_get_err_index - Find the index into cmd_status for the fcp response
233 * @status: status / error class
237 * index into cmd_status / -EINVAL on failure
239 static int ibmvfc_get_err_index(u16 status
, u16 error
)
243 for (i
= 0; i
< ARRAY_SIZE(cmd_status
); i
++)
244 if ((cmd_status
[i
].status
& status
) == cmd_status
[i
].status
&&
245 cmd_status
[i
].error
== error
)
252 * ibmvfc_get_cmd_error - Find the error description for the fcp response
253 * @status: status / error class
257 * error description string
259 static const char *ibmvfc_get_cmd_error(u16 status
, u16 error
)
261 int rc
= ibmvfc_get_err_index(status
, error
);
263 return cmd_status
[rc
].name
;
264 return unknown_error
;
268 * ibmvfc_get_err_result - Find the scsi status to return for the fcp response
269 * @vfc_cmd: ibmvfc command struct
272 * SCSI result value to return for completed command
274 static int ibmvfc_get_err_result(struct ibmvfc_cmd
*vfc_cmd
)
277 struct ibmvfc_fcp_rsp
*rsp
= &vfc_cmd
->rsp
;
278 int fc_rsp_len
= rsp
->fcp_rsp_len
;
280 if ((rsp
->flags
& FCP_RSP_LEN_VALID
) &&
281 ((fc_rsp_len
&& fc_rsp_len
!= 4 && fc_rsp_len
!= 8) ||
282 rsp
->data
.info
.rsp_code
))
283 return DID_ERROR
<< 16;
285 err
= ibmvfc_get_err_index(vfc_cmd
->status
, vfc_cmd
->error
);
287 return rsp
->scsi_status
| (cmd_status
[err
].result
<< 16);
288 return rsp
->scsi_status
| (DID_ERROR
<< 16);
292 * ibmvfc_retry_cmd - Determine if error status is retryable
293 * @status: status / error class
297 * 1 if error should be retried / 0 if it should not
299 static int ibmvfc_retry_cmd(u16 status
, u16 error
)
301 int rc
= ibmvfc_get_err_index(status
, error
);
304 return cmd_status
[rc
].retry
;
308 static const char *unknown_fc_explain
= "unknown fc explain";
310 static const struct {
314 { 0x00, "no additional explanation" },
315 { 0x01, "service parameter error - options" },
316 { 0x03, "service parameter error - initiator control" },
317 { 0x05, "service parameter error - recipient control" },
318 { 0x07, "service parameter error - received data field size" },
319 { 0x09, "service parameter error - concurrent seq" },
320 { 0x0B, "service parameter error - credit" },
321 { 0x0D, "invalid N_Port/F_Port_Name" },
322 { 0x0E, "invalid node/Fabric Name" },
323 { 0x0F, "invalid common service parameters" },
324 { 0x11, "invalid association header" },
325 { 0x13, "association header required" },
326 { 0x15, "invalid originator S_ID" },
327 { 0x17, "invalid OX_ID-RX-ID combination" },
328 { 0x19, "command (request) already in progress" },
329 { 0x1E, "N_Port Login requested" },
330 { 0x1F, "Invalid N_Port_ID" },
333 static const struct {
337 { 0x00, "no additional explanation" },
338 { 0x01, "port identifier not registered" },
339 { 0x02, "port name not registered" },
340 { 0x03, "node name not registered" },
341 { 0x04, "class of service not registered" },
342 { 0x06, "initial process associator not registered" },
343 { 0x07, "FC-4 TYPEs not registered" },
344 { 0x08, "symbolic port name not registered" },
345 { 0x09, "symbolic node name not registered" },
346 { 0x0A, "port type not registered" },
347 { 0xF0, "authorization exception" },
348 { 0xF1, "authentication exception" },
349 { 0xF2, "data base full" },
350 { 0xF3, "data base empty" },
351 { 0xF4, "processing request" },
352 { 0xF5, "unable to verify connection" },
353 { 0xF6, "devices not in a common zone" },
357 * ibmvfc_get_ls_explain - Return the FC Explain description text
358 * @status: FC Explain status
363 static const char *ibmvfc_get_ls_explain(u16 status
)
367 for (i
= 0; i
< ARRAY_SIZE(ls_explain
); i
++)
368 if (ls_explain
[i
].fc_explain
== status
)
369 return ls_explain
[i
].name
;
371 return unknown_fc_explain
;
375 * ibmvfc_get_gs_explain - Return the FC Explain description text
376 * @status: FC Explain status
381 static const char *ibmvfc_get_gs_explain(u16 status
)
385 for (i
= 0; i
< ARRAY_SIZE(gs_explain
); i
++)
386 if (gs_explain
[i
].fc_explain
== status
)
387 return gs_explain
[i
].name
;
389 return unknown_fc_explain
;
392 static const struct {
393 enum ibmvfc_fc_type fc_type
;
396 { IBMVFC_FABRIC_REJECT
, "fabric reject" },
397 { IBMVFC_PORT_REJECT
, "port reject" },
398 { IBMVFC_LS_REJECT
, "ELS reject" },
399 { IBMVFC_FABRIC_BUSY
, "fabric busy" },
400 { IBMVFC_PORT_BUSY
, "port busy" },
401 { IBMVFC_BASIC_REJECT
, "basic reject" },
404 static const char *unknown_fc_type
= "unknown fc type";
407 * ibmvfc_get_fc_type - Return the FC Type description text
408 * @status: FC Type error status
413 static const char *ibmvfc_get_fc_type(u16 status
)
417 for (i
= 0; i
< ARRAY_SIZE(fc_type
); i
++)
418 if (fc_type
[i
].fc_type
== status
)
419 return fc_type
[i
].name
;
421 return unknown_fc_type
;
425 * ibmvfc_set_tgt_action - Set the next init action for the target
426 * @tgt: ibmvfc target struct
427 * @action: action to perform
430 static void ibmvfc_set_tgt_action(struct ibmvfc_target
*tgt
,
431 enum ibmvfc_target_action action
)
433 switch (tgt
->action
) {
434 case IBMVFC_TGT_ACTION_DEL_RPORT
:
437 if (action
== IBMVFC_TGT_ACTION_DEL_RPORT
)
439 tgt
->action
= action
;
445 * ibmvfc_set_host_state - Set the state for the host
446 * @vhost: ibmvfc host struct
447 * @state: state to set host to
450 * 0 if state changed / non-zero if not changed
452 static int ibmvfc_set_host_state(struct ibmvfc_host
*vhost
,
453 enum ibmvfc_host_state state
)
457 switch (vhost
->state
) {
458 case IBMVFC_HOST_OFFLINE
:
462 vhost
->state
= state
;
470 * ibmvfc_set_host_action - Set the next init action for the host
471 * @vhost: ibmvfc host struct
472 * @action: action to perform
475 static void ibmvfc_set_host_action(struct ibmvfc_host
*vhost
,
476 enum ibmvfc_host_action action
)
479 case IBMVFC_HOST_ACTION_ALLOC_TGTS
:
480 if (vhost
->action
== IBMVFC_HOST_ACTION_INIT_WAIT
)
481 vhost
->action
= action
;
483 case IBMVFC_HOST_ACTION_LOGO_WAIT
:
484 if (vhost
->action
== IBMVFC_HOST_ACTION_LOGO
)
485 vhost
->action
= action
;
487 case IBMVFC_HOST_ACTION_INIT_WAIT
:
488 if (vhost
->action
== IBMVFC_HOST_ACTION_INIT
)
489 vhost
->action
= action
;
491 case IBMVFC_HOST_ACTION_QUERY
:
492 switch (vhost
->action
) {
493 case IBMVFC_HOST_ACTION_INIT_WAIT
:
494 case IBMVFC_HOST_ACTION_NONE
:
495 case IBMVFC_HOST_ACTION_TGT_DEL_FAILED
:
496 vhost
->action
= action
;
502 case IBMVFC_HOST_ACTION_TGT_INIT
:
503 if (vhost
->action
== IBMVFC_HOST_ACTION_ALLOC_TGTS
)
504 vhost
->action
= action
;
506 case IBMVFC_HOST_ACTION_LOGO
:
507 case IBMVFC_HOST_ACTION_INIT
:
508 case IBMVFC_HOST_ACTION_TGT_DEL
:
509 case IBMVFC_HOST_ACTION_QUERY_TGTS
:
510 case IBMVFC_HOST_ACTION_TGT_DEL_FAILED
:
511 case IBMVFC_HOST_ACTION_NONE
:
513 vhost
->action
= action
;
519 * ibmvfc_reinit_host - Re-start host initialization (no NPIV Login)
520 * @vhost: ibmvfc host struct
525 static void ibmvfc_reinit_host(struct ibmvfc_host
*vhost
)
527 if (vhost
->action
== IBMVFC_HOST_ACTION_NONE
) {
528 if (!ibmvfc_set_host_state(vhost
, IBMVFC_INITIALIZING
)) {
529 scsi_block_requests(vhost
->host
);
530 ibmvfc_set_host_action(vhost
, IBMVFC_HOST_ACTION_QUERY
);
535 wake_up(&vhost
->work_wait_q
);
539 * ibmvfc_link_down - Handle a link down event from the adapter
540 * @vhost: ibmvfc host struct
541 * @state: ibmvfc host state to enter
544 static void ibmvfc_link_down(struct ibmvfc_host
*vhost
,
545 enum ibmvfc_host_state state
)
547 struct ibmvfc_target
*tgt
;
550 scsi_block_requests(vhost
->host
);
551 list_for_each_entry(tgt
, &vhost
->targets
, queue
)
552 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_DEL_RPORT
);
553 ibmvfc_set_host_state(vhost
, state
);
554 ibmvfc_set_host_action(vhost
, IBMVFC_HOST_ACTION_TGT_DEL
);
555 vhost
->events_to_log
|= IBMVFC_AE_LINKDOWN
;
556 wake_up(&vhost
->work_wait_q
);
561 * ibmvfc_init_host - Start host initialization
562 * @vhost: ibmvfc host struct
567 static void ibmvfc_init_host(struct ibmvfc_host
*vhost
)
569 struct ibmvfc_target
*tgt
;
571 if (vhost
->action
== IBMVFC_HOST_ACTION_INIT_WAIT
) {
572 if (++vhost
->init_retries
> IBMVFC_MAX_HOST_INIT_RETRIES
) {
574 "Host initialization retries exceeded. Taking adapter offline\n");
575 ibmvfc_link_down(vhost
, IBMVFC_HOST_OFFLINE
);
580 if (!ibmvfc_set_host_state(vhost
, IBMVFC_INITIALIZING
)) {
581 memset(vhost
->async_crq
.msgs
, 0, PAGE_SIZE
);
582 vhost
->async_crq
.cur
= 0;
584 list_for_each_entry(tgt
, &vhost
->targets
, queue
)
585 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_DEL_RPORT
);
586 scsi_block_requests(vhost
->host
);
587 ibmvfc_set_host_action(vhost
, IBMVFC_HOST_ACTION_INIT
);
588 vhost
->job_step
= ibmvfc_npiv_login
;
589 wake_up(&vhost
->work_wait_q
);
594 * ibmvfc_send_crq - Send a CRQ
595 * @vhost: ibmvfc host struct
596 * @word1: the first 64 bits of the data
597 * @word2: the second 64 bits of the data
600 * 0 on success / other on failure
602 static int ibmvfc_send_crq(struct ibmvfc_host
*vhost
, u64 word1
, u64 word2
)
604 struct vio_dev
*vdev
= to_vio_dev(vhost
->dev
);
605 return plpar_hcall_norets(H_SEND_CRQ
, vdev
->unit_address
, word1
, word2
);
609 * ibmvfc_send_crq_init - Send a CRQ init message
610 * @vhost: ibmvfc host struct
613 * 0 on success / other on failure
615 static int ibmvfc_send_crq_init(struct ibmvfc_host
*vhost
)
617 ibmvfc_dbg(vhost
, "Sending CRQ init\n");
618 return ibmvfc_send_crq(vhost
, 0xC001000000000000LL
, 0);
622 * ibmvfc_send_crq_init_complete - Send a CRQ init complete message
623 * @vhost: ibmvfc host struct
626 * 0 on success / other on failure
628 static int ibmvfc_send_crq_init_complete(struct ibmvfc_host
*vhost
)
630 ibmvfc_dbg(vhost
, "Sending CRQ init complete\n");
631 return ibmvfc_send_crq(vhost
, 0xC002000000000000LL
, 0);
635 * ibmvfc_release_crq_queue - Deallocates data and unregisters CRQ
636 * @vhost: ibmvfc host struct
638 * Frees irq, deallocates a page for messages, unmaps dma, and unregisters
639 * the crq with the hypervisor.
641 static void ibmvfc_release_crq_queue(struct ibmvfc_host
*vhost
)
644 struct vio_dev
*vdev
= to_vio_dev(vhost
->dev
);
645 struct ibmvfc_crq_queue
*crq
= &vhost
->crq
;
647 ibmvfc_dbg(vhost
, "Releasing CRQ\n");
648 free_irq(vdev
->irq
, vhost
);
649 tasklet_kill(&vhost
->tasklet
);
651 rc
= plpar_hcall_norets(H_FREE_CRQ
, vdev
->unit_address
);
652 } while (rc
== H_BUSY
|| H_IS_LONG_BUSY(rc
));
654 vhost
->state
= IBMVFC_NO_CRQ
;
655 vhost
->logged_in
= 0;
656 dma_unmap_single(vhost
->dev
, crq
->msg_token
, PAGE_SIZE
, DMA_BIDIRECTIONAL
);
657 free_page((unsigned long)crq
->msgs
);
661 * ibmvfc_reenable_crq_queue - reenables the CRQ
662 * @vhost: ibmvfc host struct
665 * 0 on success / other on failure
667 static int ibmvfc_reenable_crq_queue(struct ibmvfc_host
*vhost
)
670 struct vio_dev
*vdev
= to_vio_dev(vhost
->dev
);
672 /* Re-enable the CRQ */
674 rc
= plpar_hcall_norets(H_ENABLE_CRQ
, vdev
->unit_address
);
675 } while (rc
== H_IN_PROGRESS
|| rc
== H_BUSY
|| H_IS_LONG_BUSY(rc
));
678 dev_err(vhost
->dev
, "Error enabling adapter (rc=%d)\n", rc
);
684 * ibmvfc_reset_crq - resets a crq after a failure
685 * @vhost: ibmvfc host struct
688 * 0 on success / other on failure
690 static int ibmvfc_reset_crq(struct ibmvfc_host
*vhost
)
693 struct vio_dev
*vdev
= to_vio_dev(vhost
->dev
);
694 struct ibmvfc_crq_queue
*crq
= &vhost
->crq
;
698 rc
= plpar_hcall_norets(H_FREE_CRQ
, vdev
->unit_address
);
699 } while (rc
== H_BUSY
|| H_IS_LONG_BUSY(rc
));
701 vhost
->state
= IBMVFC_NO_CRQ
;
702 vhost
->logged_in
= 0;
703 ibmvfc_set_host_action(vhost
, IBMVFC_HOST_ACTION_NONE
);
705 /* Clean out the queue */
706 memset(crq
->msgs
, 0, PAGE_SIZE
);
709 /* And re-open it again */
710 rc
= plpar_hcall_norets(H_REG_CRQ
, vdev
->unit_address
,
711 crq
->msg_token
, PAGE_SIZE
);
714 /* Adapter is good, but other end is not ready */
715 dev_warn(vhost
->dev
, "Partner adapter not ready\n");
717 dev_warn(vhost
->dev
, "Couldn't register crq (rc=%d)\n", rc
);
723 * ibmvfc_valid_event - Determines if event is valid.
724 * @pool: event_pool that contains the event
725 * @evt: ibmvfc event to be checked for validity
728 * 1 if event is valid / 0 if event is not valid
730 static int ibmvfc_valid_event(struct ibmvfc_event_pool
*pool
,
731 struct ibmvfc_event
*evt
)
733 int index
= evt
- pool
->events
;
734 if (index
< 0 || index
>= pool
->size
) /* outside of bounds */
736 if (evt
!= pool
->events
+ index
) /* unaligned */
742 * ibmvfc_free_event - Free the specified event
743 * @evt: ibmvfc_event to be freed
746 static void ibmvfc_free_event(struct ibmvfc_event
*evt
)
748 struct ibmvfc_host
*vhost
= evt
->vhost
;
749 struct ibmvfc_event_pool
*pool
= &vhost
->pool
;
751 BUG_ON(!ibmvfc_valid_event(pool
, evt
));
752 BUG_ON(atomic_inc_return(&evt
->free
) != 1);
753 list_add_tail(&evt
->queue
, &vhost
->free
);
757 * ibmvfc_scsi_eh_done - EH done function for queuecommand commands
758 * @evt: ibmvfc event struct
760 * This function does not setup any error status, that must be done
761 * before this function gets called.
763 static void ibmvfc_scsi_eh_done(struct ibmvfc_event
*evt
)
765 struct scsi_cmnd
*cmnd
= evt
->cmnd
;
768 scsi_dma_unmap(cmnd
);
769 cmnd
->scsi_done(cmnd
);
773 complete(evt
->eh_comp
);
775 ibmvfc_free_event(evt
);
779 * ibmvfc_fail_request - Fail request with specified error code
780 * @evt: ibmvfc event struct
781 * @error_code: error code to fail request with
786 static void ibmvfc_fail_request(struct ibmvfc_event
*evt
, int error_code
)
789 evt
->cmnd
->result
= (error_code
<< 16);
790 evt
->done
= ibmvfc_scsi_eh_done
;
792 evt
->xfer_iu
->mad_common
.status
= IBMVFC_MAD_DRIVER_FAILED
;
794 list_del(&evt
->queue
);
795 del_timer(&evt
->timer
);
801 * ibmvfc_purge_requests - Our virtual adapter just shut down. Purge any sent requests
802 * @vhost: ibmvfc host struct
803 * @error_code: error code to fail requests with
808 static void ibmvfc_purge_requests(struct ibmvfc_host
*vhost
, int error_code
)
810 struct ibmvfc_event
*evt
, *pos
;
812 ibmvfc_dbg(vhost
, "Purging all requests\n");
813 list_for_each_entry_safe(evt
, pos
, &vhost
->sent
, queue
)
814 ibmvfc_fail_request(evt
, error_code
);
818 * ibmvfc_hard_reset_host - Reset the connection to the server by breaking the CRQ
819 * @vhost: struct ibmvfc host to reset
821 static void ibmvfc_hard_reset_host(struct ibmvfc_host
*vhost
)
825 scsi_block_requests(vhost
->host
);
826 ibmvfc_purge_requests(vhost
, DID_ERROR
);
827 if ((rc
= ibmvfc_reset_crq(vhost
)) ||
828 (rc
= ibmvfc_send_crq_init(vhost
)) ||
829 (rc
= vio_enable_interrupts(to_vio_dev(vhost
->dev
)))) {
830 dev_err(vhost
->dev
, "Error after reset rc=%d\n", rc
);
831 ibmvfc_link_down(vhost
, IBMVFC_LINK_DEAD
);
833 ibmvfc_link_down(vhost
, IBMVFC_LINK_DOWN
);
837 * __ibmvfc_reset_host - Reset the connection to the server (no locking)
838 * @vhost: struct ibmvfc host to reset
840 static void __ibmvfc_reset_host(struct ibmvfc_host
*vhost
)
842 if (vhost
->logged_in
&& vhost
->action
!= IBMVFC_HOST_ACTION_LOGO_WAIT
&&
843 !ibmvfc_set_host_state(vhost
, IBMVFC_INITIALIZING
)) {
844 scsi_block_requests(vhost
->host
);
845 ibmvfc_set_host_action(vhost
, IBMVFC_HOST_ACTION_LOGO
);
846 vhost
->job_step
= ibmvfc_npiv_logout
;
847 wake_up(&vhost
->work_wait_q
);
849 ibmvfc_hard_reset_host(vhost
);
853 * ibmvfc_reset_host - Reset the connection to the server
854 * @vhost: ibmvfc host struct
856 static void ibmvfc_reset_host(struct ibmvfc_host
*vhost
)
860 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
861 __ibmvfc_reset_host(vhost
);
862 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
866 * ibmvfc_retry_host_init - Retry host initialization if allowed
867 * @vhost: ibmvfc host struct
869 * Returns: 1 if init will be retried / 0 if not
872 static int ibmvfc_retry_host_init(struct ibmvfc_host
*vhost
)
876 if (vhost
->action
== IBMVFC_HOST_ACTION_INIT_WAIT
) {
877 vhost
->delay_init
= 1;
878 if (++vhost
->init_retries
> IBMVFC_MAX_HOST_INIT_RETRIES
) {
880 "Host initialization retries exceeded. Taking adapter offline\n");
881 ibmvfc_link_down(vhost
, IBMVFC_HOST_OFFLINE
);
882 } else if (vhost
->init_retries
== IBMVFC_MAX_HOST_INIT_RETRIES
)
883 __ibmvfc_reset_host(vhost
);
885 ibmvfc_set_host_action(vhost
, IBMVFC_HOST_ACTION_INIT
);
890 wake_up(&vhost
->work_wait_q
);
895 * __ibmvfc_get_target - Find the specified scsi_target (no locking)
896 * @starget: scsi target struct
899 * ibmvfc_target struct / NULL if not found
901 static struct ibmvfc_target
*__ibmvfc_get_target(struct scsi_target
*starget
)
903 struct Scsi_Host
*shost
= dev_to_shost(starget
->dev
.parent
);
904 struct ibmvfc_host
*vhost
= shost_priv(shost
);
905 struct ibmvfc_target
*tgt
;
907 list_for_each_entry(tgt
, &vhost
->targets
, queue
)
908 if (tgt
->target_id
== starget
->id
) {
909 kref_get(&tgt
->kref
);
916 * ibmvfc_get_target - Find the specified scsi_target
917 * @starget: scsi target struct
920 * ibmvfc_target struct / NULL if not found
922 static struct ibmvfc_target
*ibmvfc_get_target(struct scsi_target
*starget
)
924 struct Scsi_Host
*shost
= dev_to_shost(starget
->dev
.parent
);
925 struct ibmvfc_target
*tgt
;
928 spin_lock_irqsave(shost
->host_lock
, flags
);
929 tgt
= __ibmvfc_get_target(starget
);
930 spin_unlock_irqrestore(shost
->host_lock
, flags
);
935 * ibmvfc_get_host_speed - Get host port speed
936 * @shost: scsi host struct
941 static void ibmvfc_get_host_speed(struct Scsi_Host
*shost
)
943 struct ibmvfc_host
*vhost
= shost_priv(shost
);
946 spin_lock_irqsave(shost
->host_lock
, flags
);
947 if (vhost
->state
== IBMVFC_ACTIVE
) {
948 switch (vhost
->login_buf
->resp
.link_speed
/ 100) {
950 fc_host_speed(shost
) = FC_PORTSPEED_1GBIT
;
953 fc_host_speed(shost
) = FC_PORTSPEED_2GBIT
;
956 fc_host_speed(shost
) = FC_PORTSPEED_4GBIT
;
959 fc_host_speed(shost
) = FC_PORTSPEED_8GBIT
;
962 fc_host_speed(shost
) = FC_PORTSPEED_10GBIT
;
965 fc_host_speed(shost
) = FC_PORTSPEED_16GBIT
;
968 ibmvfc_log(vhost
, 3, "Unknown port speed: %lld Gbit\n",
969 vhost
->login_buf
->resp
.link_speed
/ 100);
970 fc_host_speed(shost
) = FC_PORTSPEED_UNKNOWN
;
974 fc_host_speed(shost
) = FC_PORTSPEED_UNKNOWN
;
975 spin_unlock_irqrestore(shost
->host_lock
, flags
);
979 * ibmvfc_get_host_port_state - Get host port state
980 * @shost: scsi host struct
985 static void ibmvfc_get_host_port_state(struct Scsi_Host
*shost
)
987 struct ibmvfc_host
*vhost
= shost_priv(shost
);
990 spin_lock_irqsave(shost
->host_lock
, flags
);
991 switch (vhost
->state
) {
992 case IBMVFC_INITIALIZING
:
994 fc_host_port_state(shost
) = FC_PORTSTATE_ONLINE
;
996 case IBMVFC_LINK_DOWN
:
997 fc_host_port_state(shost
) = FC_PORTSTATE_LINKDOWN
;
999 case IBMVFC_LINK_DEAD
:
1000 case IBMVFC_HOST_OFFLINE
:
1001 fc_host_port_state(shost
) = FC_PORTSTATE_OFFLINE
;
1004 fc_host_port_state(shost
) = FC_PORTSTATE_BLOCKED
;
1007 fc_host_port_state(shost
) = FC_PORTSTATE_UNKNOWN
;
1010 ibmvfc_log(vhost
, 3, "Unknown port state: %d\n", vhost
->state
);
1011 fc_host_port_state(shost
) = FC_PORTSTATE_UNKNOWN
;
1014 spin_unlock_irqrestore(shost
->host_lock
, flags
);
1018 * ibmvfc_set_rport_dev_loss_tmo - Set rport's device loss timeout
1019 * @rport: rport struct
1020 * @timeout: timeout value
1025 static void ibmvfc_set_rport_dev_loss_tmo(struct fc_rport
*rport
, u32 timeout
)
1028 rport
->dev_loss_tmo
= timeout
;
1030 rport
->dev_loss_tmo
= 1;
1034 * ibmvfc_release_tgt - Free memory allocated for a target
1035 * @kref: kref struct
1038 static void ibmvfc_release_tgt(struct kref
*kref
)
1040 struct ibmvfc_target
*tgt
= container_of(kref
, struct ibmvfc_target
, kref
);
1045 * ibmvfc_get_starget_node_name - Get SCSI target's node name
1046 * @starget: scsi target struct
1051 static void ibmvfc_get_starget_node_name(struct scsi_target
*starget
)
1053 struct ibmvfc_target
*tgt
= ibmvfc_get_target(starget
);
1054 fc_starget_port_name(starget
) = tgt
? tgt
->ids
.node_name
: 0;
1056 kref_put(&tgt
->kref
, ibmvfc_release_tgt
);
1060 * ibmvfc_get_starget_port_name - Get SCSI target's port name
1061 * @starget: scsi target struct
1066 static void ibmvfc_get_starget_port_name(struct scsi_target
*starget
)
1068 struct ibmvfc_target
*tgt
= ibmvfc_get_target(starget
);
1069 fc_starget_port_name(starget
) = tgt
? tgt
->ids
.port_name
: 0;
1071 kref_put(&tgt
->kref
, ibmvfc_release_tgt
);
1075 * ibmvfc_get_starget_port_id - Get SCSI target's port ID
1076 * @starget: scsi target struct
1081 static void ibmvfc_get_starget_port_id(struct scsi_target
*starget
)
1083 struct ibmvfc_target
*tgt
= ibmvfc_get_target(starget
);
1084 fc_starget_port_id(starget
) = tgt
? tgt
->scsi_id
: -1;
1086 kref_put(&tgt
->kref
, ibmvfc_release_tgt
);
1090 * ibmvfc_wait_while_resetting - Wait while the host resets
1091 * @vhost: ibmvfc host struct
1094 * 0 on success / other on failure
1096 static int ibmvfc_wait_while_resetting(struct ibmvfc_host
*vhost
)
1098 long timeout
= wait_event_timeout(vhost
->init_wait_q
,
1099 ((vhost
->state
== IBMVFC_ACTIVE
||
1100 vhost
->state
== IBMVFC_HOST_OFFLINE
||
1101 vhost
->state
== IBMVFC_LINK_DEAD
) &&
1102 vhost
->action
== IBMVFC_HOST_ACTION_NONE
),
1103 (init_timeout
* HZ
));
1105 return timeout
? 0 : -EIO
;
1109 * ibmvfc_issue_fc_host_lip - Re-initiate link initialization
1110 * @shost: scsi host struct
1113 * 0 on success / other on failure
1115 static int ibmvfc_issue_fc_host_lip(struct Scsi_Host
*shost
)
1117 struct ibmvfc_host
*vhost
= shost_priv(shost
);
1119 dev_err(vhost
->dev
, "Initiating host LIP. Resetting connection\n");
1120 ibmvfc_reset_host(vhost
);
1121 return ibmvfc_wait_while_resetting(vhost
);
1125 * ibmvfc_gather_partition_info - Gather info about the LPAR
1130 static void ibmvfc_gather_partition_info(struct ibmvfc_host
*vhost
)
1132 struct device_node
*rootdn
;
1134 const unsigned int *num
;
1136 rootdn
= of_find_node_by_path("/");
1140 name
= of_get_property(rootdn
, "ibm,partition-name", NULL
);
1142 strncpy(vhost
->partition_name
, name
, sizeof(vhost
->partition_name
));
1143 num
= of_get_property(rootdn
, "ibm,partition-no", NULL
);
1145 vhost
->partition_number
= *num
;
1146 of_node_put(rootdn
);
1150 * ibmvfc_set_login_info - Setup info for NPIV login
1151 * @vhost: ibmvfc host struct
1156 static void ibmvfc_set_login_info(struct ibmvfc_host
*vhost
)
1158 struct ibmvfc_npiv_login
*login_info
= &vhost
->login_info
;
1159 struct device_node
*of_node
= vhost
->dev
->archdata
.of_node
;
1160 const char *location
;
1162 memset(login_info
, 0, sizeof(*login_info
));
1164 login_info
->ostype
= IBMVFC_OS_LINUX
;
1165 login_info
->max_dma_len
= IBMVFC_MAX_SECTORS
<< 9;
1166 login_info
->max_payload
= sizeof(struct ibmvfc_fcp_cmd_iu
);
1167 login_info
->max_response
= sizeof(struct ibmvfc_fcp_rsp
);
1168 login_info
->partition_num
= vhost
->partition_number
;
1169 login_info
->vfc_frame_version
= 1;
1170 login_info
->fcp_version
= 3;
1171 login_info
->flags
= IBMVFC_FLUSH_ON_HALT
;
1172 if (vhost
->client_migrated
)
1173 login_info
->flags
|= IBMVFC_CLIENT_MIGRATED
;
1175 login_info
->max_cmds
= max_requests
+ IBMVFC_NUM_INTERNAL_REQ
;
1176 login_info
->capabilities
= IBMVFC_CAN_MIGRATE
;
1177 login_info
->async
.va
= vhost
->async_crq
.msg_token
;
1178 login_info
->async
.len
= vhost
->async_crq
.size
* sizeof(*vhost
->async_crq
.msgs
);
1179 strncpy(login_info
->partition_name
, vhost
->partition_name
, IBMVFC_MAX_NAME
);
1180 strncpy(login_info
->device_name
,
1181 dev_name(&vhost
->host
->shost_gendev
), IBMVFC_MAX_NAME
);
1183 location
= of_get_property(of_node
, "ibm,loc-code", NULL
);
1184 location
= location
? location
: dev_name(vhost
->dev
);
1185 strncpy(login_info
->drc_name
, location
, IBMVFC_MAX_NAME
);
1189 * ibmvfc_init_event_pool - Allocates and initializes the event pool for a host
1190 * @vhost: ibmvfc host who owns the event pool
1192 * Returns zero on success.
1194 static int ibmvfc_init_event_pool(struct ibmvfc_host
*vhost
)
1197 struct ibmvfc_event_pool
*pool
= &vhost
->pool
;
1200 pool
->size
= max_requests
+ IBMVFC_NUM_INTERNAL_REQ
;
1201 pool
->events
= kcalloc(pool
->size
, sizeof(*pool
->events
), GFP_KERNEL
);
1205 pool
->iu_storage
= dma_alloc_coherent(vhost
->dev
,
1206 pool
->size
* sizeof(*pool
->iu_storage
),
1207 &pool
->iu_token
, 0);
1209 if (!pool
->iu_storage
) {
1210 kfree(pool
->events
);
1214 for (i
= 0; i
< pool
->size
; ++i
) {
1215 struct ibmvfc_event
*evt
= &pool
->events
[i
];
1216 atomic_set(&evt
->free
, 1);
1217 evt
->crq
.valid
= 0x80;
1218 evt
->crq
.ioba
= pool
->iu_token
+ (sizeof(*evt
->xfer_iu
) * i
);
1219 evt
->xfer_iu
= pool
->iu_storage
+ i
;
1221 evt
->ext_list
= NULL
;
1222 list_add_tail(&evt
->queue
, &vhost
->free
);
1230 * ibmvfc_free_event_pool - Frees memory of the event pool of a host
1231 * @vhost: ibmvfc host who owns the event pool
1234 static void ibmvfc_free_event_pool(struct ibmvfc_host
*vhost
)
1237 struct ibmvfc_event_pool
*pool
= &vhost
->pool
;
1240 for (i
= 0; i
< pool
->size
; ++i
) {
1241 list_del(&pool
->events
[i
].queue
);
1242 BUG_ON(atomic_read(&pool
->events
[i
].free
) != 1);
1243 if (pool
->events
[i
].ext_list
)
1244 dma_pool_free(vhost
->sg_pool
,
1245 pool
->events
[i
].ext_list
,
1246 pool
->events
[i
].ext_list_token
);
1249 kfree(pool
->events
);
1250 dma_free_coherent(vhost
->dev
,
1251 pool
->size
* sizeof(*pool
->iu_storage
),
1252 pool
->iu_storage
, pool
->iu_token
);
1257 * ibmvfc_get_event - Gets the next free event in pool
1258 * @vhost: ibmvfc host struct
1260 * Returns a free event from the pool.
1262 static struct ibmvfc_event
*ibmvfc_get_event(struct ibmvfc_host
*vhost
)
1264 struct ibmvfc_event
*evt
;
1266 BUG_ON(list_empty(&vhost
->free
));
1267 evt
= list_entry(vhost
->free
.next
, struct ibmvfc_event
, queue
);
1268 atomic_set(&evt
->free
, 0);
1269 list_del(&evt
->queue
);
1274 * ibmvfc_init_event - Initialize fields in an event struct that are always
1277 * @done: Routine to call when the event is responded to
1278 * @format: SRP or MAD format
1280 static void ibmvfc_init_event(struct ibmvfc_event
*evt
,
1281 void (*done
) (struct ibmvfc_event
*), u8 format
)
1284 evt
->sync_iu
= NULL
;
1285 evt
->crq
.format
= format
;
1287 evt
->eh_comp
= NULL
;
1291 * ibmvfc_map_sg_list - Initialize scatterlist
1292 * @scmd: scsi command struct
1293 * @nseg: number of scatterlist segments
1294 * @md: memory descriptor list to initialize
1296 static void ibmvfc_map_sg_list(struct scsi_cmnd
*scmd
, int nseg
,
1297 struct srp_direct_buf
*md
)
1300 struct scatterlist
*sg
;
1302 scsi_for_each_sg(scmd
, sg
, nseg
, i
) {
1303 md
[i
].va
= sg_dma_address(sg
);
1304 md
[i
].len
= sg_dma_len(sg
);
1310 * ibmvfc_map_sg_data - Maps dma for a scatterlist and initializes decriptor fields
1311 * @scmd: Scsi_Cmnd with the scatterlist
1312 * @evt: ibmvfc event struct
1313 * @vfc_cmd: vfc_cmd that contains the memory descriptor
1314 * @dev: device for which to map dma memory
1317 * 0 on success / non-zero on failure
1319 static int ibmvfc_map_sg_data(struct scsi_cmnd
*scmd
,
1320 struct ibmvfc_event
*evt
,
1321 struct ibmvfc_cmd
*vfc_cmd
, struct device
*dev
)
1325 struct srp_direct_buf
*data
= &vfc_cmd
->ioba
;
1326 struct ibmvfc_host
*vhost
= dev_get_drvdata(dev
);
1328 sg_mapped
= scsi_dma_map(scmd
);
1330 vfc_cmd
->flags
|= IBMVFC_NO_MEM_DESC
;
1332 } else if (unlikely(sg_mapped
< 0)) {
1333 if (vhost
->log_level
> IBMVFC_DEFAULT_LOG_LEVEL
)
1334 scmd_printk(KERN_ERR
, scmd
, "Failed to map DMA buffer for command\n");
1338 if (scmd
->sc_data_direction
== DMA_TO_DEVICE
) {
1339 vfc_cmd
->flags
|= IBMVFC_WRITE
;
1340 vfc_cmd
->iu
.add_cdb_len
|= IBMVFC_WRDATA
;
1342 vfc_cmd
->flags
|= IBMVFC_READ
;
1343 vfc_cmd
->iu
.add_cdb_len
|= IBMVFC_RDDATA
;
1346 if (sg_mapped
== 1) {
1347 ibmvfc_map_sg_list(scmd
, sg_mapped
, data
);
1351 vfc_cmd
->flags
|= IBMVFC_SCATTERLIST
;
1353 if (!evt
->ext_list
) {
1354 evt
->ext_list
= dma_pool_alloc(vhost
->sg_pool
, GFP_ATOMIC
,
1355 &evt
->ext_list_token
);
1357 if (!evt
->ext_list
) {
1358 scsi_dma_unmap(scmd
);
1359 if (vhost
->log_level
> IBMVFC_DEFAULT_LOG_LEVEL
)
1360 scmd_printk(KERN_ERR
, scmd
, "Can't allocate memory for scatterlist\n");
1365 ibmvfc_map_sg_list(scmd
, sg_mapped
, evt
->ext_list
);
1367 data
->va
= evt
->ext_list_token
;
1368 data
->len
= sg_mapped
* sizeof(struct srp_direct_buf
);
1374 * ibmvfc_timeout - Internal command timeout handler
1375 * @evt: struct ibmvfc_event that timed out
1377 * Called when an internally generated command times out
1379 static void ibmvfc_timeout(struct ibmvfc_event
*evt
)
1381 struct ibmvfc_host
*vhost
= evt
->vhost
;
1382 dev_err(vhost
->dev
, "Command timed out (%p). Resetting connection\n", evt
);
1383 ibmvfc_reset_host(vhost
);
1387 * ibmvfc_send_event - Transforms event to u64 array and calls send_crq()
1388 * @evt: event to be sent
1389 * @vhost: ibmvfc host struct
1390 * @timeout: timeout in seconds - 0 means do not time command
1392 * Returns the value returned from ibmvfc_send_crq(). (Zero for success)
1394 static int ibmvfc_send_event(struct ibmvfc_event
*evt
,
1395 struct ibmvfc_host
*vhost
, unsigned long timeout
)
1397 u64
*crq_as_u64
= (u64
*) &evt
->crq
;
1400 /* Copy the IU into the transfer area */
1401 *evt
->xfer_iu
= evt
->iu
;
1402 if (evt
->crq
.format
== IBMVFC_CMD_FORMAT
)
1403 evt
->xfer_iu
->cmd
.tag
= (u64
)evt
;
1404 else if (evt
->crq
.format
== IBMVFC_MAD_FORMAT
)
1405 evt
->xfer_iu
->mad_common
.tag
= (u64
)evt
;
1409 list_add_tail(&evt
->queue
, &vhost
->sent
);
1410 init_timer(&evt
->timer
);
1413 evt
->timer
.data
= (unsigned long) evt
;
1414 evt
->timer
.expires
= jiffies
+ (timeout
* HZ
);
1415 evt
->timer
.function
= (void (*)(unsigned long))ibmvfc_timeout
;
1416 add_timer(&evt
->timer
);
1421 if ((rc
= ibmvfc_send_crq(vhost
, crq_as_u64
[0], crq_as_u64
[1]))) {
1422 list_del(&evt
->queue
);
1423 del_timer(&evt
->timer
);
1425 /* If send_crq returns H_CLOSED, return SCSI_MLQUEUE_HOST_BUSY.
1426 * Firmware will send a CRQ with a transport event (0xFF) to
1427 * tell this client what has happened to the transport. This
1428 * will be handled in ibmvfc_handle_crq()
1430 if (rc
== H_CLOSED
) {
1431 if (printk_ratelimit())
1432 dev_warn(vhost
->dev
, "Send warning. Receive queue closed, will retry.\n");
1434 scsi_dma_unmap(evt
->cmnd
);
1435 ibmvfc_free_event(evt
);
1436 return SCSI_MLQUEUE_HOST_BUSY
;
1439 dev_err(vhost
->dev
, "Send error (rc=%d)\n", rc
);
1441 evt
->cmnd
->result
= DID_ERROR
<< 16;
1442 evt
->done
= ibmvfc_scsi_eh_done
;
1444 evt
->xfer_iu
->mad_common
.status
= IBMVFC_MAD_CRQ_ERROR
;
1448 ibmvfc_trc_start(evt
);
1454 * ibmvfc_log_error - Log an error for the failed command if appropriate
1455 * @evt: ibmvfc event to log
1458 static void ibmvfc_log_error(struct ibmvfc_event
*evt
)
1460 struct ibmvfc_cmd
*vfc_cmd
= &evt
->xfer_iu
->cmd
;
1461 struct ibmvfc_host
*vhost
= evt
->vhost
;
1462 struct ibmvfc_fcp_rsp
*rsp
= &vfc_cmd
->rsp
;
1463 struct scsi_cmnd
*cmnd
= evt
->cmnd
;
1464 const char *err
= unknown_error
;
1465 int index
= ibmvfc_get_err_index(vfc_cmd
->status
, vfc_cmd
->error
);
1470 logerr
= cmd_status
[index
].log
;
1471 err
= cmd_status
[index
].name
;
1474 if (!logerr
&& (vhost
->log_level
<= (IBMVFC_DEFAULT_LOG_LEVEL
+ 1)))
1477 if (rsp
->flags
& FCP_RSP_LEN_VALID
)
1478 rsp_code
= rsp
->data
.info
.rsp_code
;
1480 scmd_printk(KERN_ERR
, cmnd
, "Command (%02X) failed: %s (%x:%x) "
1481 "flags: %x fcp_rsp: %x, resid=%d, scsi_status: %x\n",
1482 cmnd
->cmnd
[0], err
, vfc_cmd
->status
, vfc_cmd
->error
,
1483 rsp
->flags
, rsp_code
, scsi_get_resid(cmnd
), rsp
->scsi_status
);
1487 * ibmvfc_relogin - Log back into the specified device
1488 * @sdev: scsi device struct
1491 static void ibmvfc_relogin(struct scsi_device
*sdev
)
1493 struct ibmvfc_host
*vhost
= shost_priv(sdev
->host
);
1494 struct fc_rport
*rport
= starget_to_rport(scsi_target(sdev
));
1495 struct ibmvfc_target
*tgt
;
1497 list_for_each_entry(tgt
, &vhost
->targets
, queue
) {
1498 if (rport
== tgt
->rport
) {
1499 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_DEL_RPORT
);
1504 ibmvfc_reinit_host(vhost
);
1508 * ibmvfc_scsi_done - Handle responses from commands
1509 * @evt: ibmvfc event to be handled
1511 * Used as a callback when sending scsi cmds.
1513 static void ibmvfc_scsi_done(struct ibmvfc_event
*evt
)
1515 struct ibmvfc_cmd
*vfc_cmd
= &evt
->xfer_iu
->cmd
;
1516 struct ibmvfc_fcp_rsp
*rsp
= &vfc_cmd
->rsp
;
1517 struct scsi_cmnd
*cmnd
= evt
->cmnd
;
1519 u32 sense_len
= rsp
->fcp_sense_len
;
1522 if (vfc_cmd
->response_flags
& IBMVFC_ADAPTER_RESID_VALID
)
1523 scsi_set_resid(cmnd
, vfc_cmd
->adapter_resid
);
1524 else if (rsp
->flags
& FCP_RESID_UNDER
)
1525 scsi_set_resid(cmnd
, rsp
->fcp_resid
);
1527 scsi_set_resid(cmnd
, 0);
1529 if (vfc_cmd
->status
) {
1530 cmnd
->result
= ibmvfc_get_err_result(vfc_cmd
);
1532 if (rsp
->flags
& FCP_RSP_LEN_VALID
)
1533 rsp_len
= rsp
->fcp_rsp_len
;
1534 if ((sense_len
+ rsp_len
) > SCSI_SENSE_BUFFERSIZE
)
1535 sense_len
= SCSI_SENSE_BUFFERSIZE
- rsp_len
;
1536 if ((rsp
->flags
& FCP_SNS_LEN_VALID
) && rsp
->fcp_sense_len
&& rsp_len
<= 8)
1537 memcpy(cmnd
->sense_buffer
, rsp
->data
.sense
+ rsp_len
, sense_len
);
1538 if ((vfc_cmd
->status
& IBMVFC_VIOS_FAILURE
) && (vfc_cmd
->error
== IBMVFC_PLOGI_REQUIRED
))
1539 ibmvfc_relogin(cmnd
->device
);
1541 if (!cmnd
->result
&& (!scsi_get_resid(cmnd
) || (rsp
->flags
& FCP_RESID_OVER
)))
1542 cmnd
->result
= (DID_ERROR
<< 16);
1544 ibmvfc_log_error(evt
);
1547 if (!cmnd
->result
&&
1548 (scsi_bufflen(cmnd
) - scsi_get_resid(cmnd
) < cmnd
->underflow
))
1549 cmnd
->result
= (DID_ERROR
<< 16);
1551 scsi_dma_unmap(cmnd
);
1552 cmnd
->scsi_done(cmnd
);
1556 complete(evt
->eh_comp
);
1558 ibmvfc_free_event(evt
);
1562 * ibmvfc_host_chkready - Check if the host can accept commands
1563 * @vhost: struct ibmvfc host
1566 * 1 if host can accept command / 0 if not
1568 static inline int ibmvfc_host_chkready(struct ibmvfc_host
*vhost
)
1572 switch (vhost
->state
) {
1573 case IBMVFC_LINK_DEAD
:
1574 case IBMVFC_HOST_OFFLINE
:
1575 result
= DID_NO_CONNECT
<< 16;
1578 case IBMVFC_INITIALIZING
:
1580 case IBMVFC_LINK_DOWN
:
1581 result
= DID_REQUEUE
<< 16;
1592 * ibmvfc_queuecommand - The queuecommand function of the scsi template
1593 * @cmnd: struct scsi_cmnd to be executed
1594 * @done: Callback function to be called when cmnd is completed
1597 * 0 on success / other on failure
1599 static int ibmvfc_queuecommand(struct scsi_cmnd
*cmnd
,
1600 void (*done
) (struct scsi_cmnd
*))
1602 struct ibmvfc_host
*vhost
= shost_priv(cmnd
->device
->host
);
1603 struct fc_rport
*rport
= starget_to_rport(scsi_target(cmnd
->device
));
1604 struct ibmvfc_cmd
*vfc_cmd
;
1605 struct ibmvfc_event
*evt
;
1609 if (unlikely((rc
= fc_remote_port_chkready(rport
))) ||
1610 unlikely((rc
= ibmvfc_host_chkready(vhost
)))) {
1616 cmnd
->result
= (DID_OK
<< 16);
1617 evt
= ibmvfc_get_event(vhost
);
1618 ibmvfc_init_event(evt
, ibmvfc_scsi_done
, IBMVFC_CMD_FORMAT
);
1620 cmnd
->scsi_done
= done
;
1621 vfc_cmd
= &evt
->iu
.cmd
;
1622 memset(vfc_cmd
, 0, sizeof(*vfc_cmd
));
1623 vfc_cmd
->resp
.va
= (u64
)evt
->crq
.ioba
+ offsetof(struct ibmvfc_cmd
, rsp
);
1624 vfc_cmd
->resp
.len
= sizeof(vfc_cmd
->rsp
);
1625 vfc_cmd
->frame_type
= IBMVFC_SCSI_FCP_TYPE
;
1626 vfc_cmd
->payload_len
= sizeof(vfc_cmd
->iu
);
1627 vfc_cmd
->resp_len
= sizeof(vfc_cmd
->rsp
);
1628 vfc_cmd
->cancel_key
= (unsigned long)cmnd
->device
->hostdata
;
1629 vfc_cmd
->tgt_scsi_id
= rport
->port_id
;
1630 vfc_cmd
->iu
.xfer_len
= scsi_bufflen(cmnd
);
1631 int_to_scsilun(cmnd
->device
->lun
, &vfc_cmd
->iu
.lun
);
1632 memcpy(vfc_cmd
->iu
.cdb
, cmnd
->cmnd
, cmnd
->cmd_len
);
1634 if (scsi_populate_tag_msg(cmnd
, tag
)) {
1635 vfc_cmd
->task_tag
= tag
[1];
1637 case MSG_SIMPLE_TAG
:
1638 vfc_cmd
->iu
.pri_task_attr
= IBMVFC_SIMPLE_TASK
;
1641 vfc_cmd
->iu
.pri_task_attr
= IBMVFC_HEAD_OF_QUEUE
;
1643 case MSG_ORDERED_TAG
:
1644 vfc_cmd
->iu
.pri_task_attr
= IBMVFC_ORDERED_TASK
;
1649 if (likely(!(rc
= ibmvfc_map_sg_data(cmnd
, evt
, vfc_cmd
, vhost
->dev
))))
1650 return ibmvfc_send_event(evt
, vhost
, 0);
1652 ibmvfc_free_event(evt
);
1654 return SCSI_MLQUEUE_HOST_BUSY
;
1656 if (vhost
->log_level
> IBMVFC_DEFAULT_LOG_LEVEL
)
1657 scmd_printk(KERN_ERR
, cmnd
,
1658 "Failed to map DMA buffer for command. rc=%d\n", rc
);
1660 cmnd
->result
= DID_ERROR
<< 16;
1666 * ibmvfc_sync_completion - Signal that a synchronous command has completed
1667 * @evt: ibmvfc event struct
1670 static void ibmvfc_sync_completion(struct ibmvfc_event
*evt
)
1672 /* copy the response back */
1674 *evt
->sync_iu
= *evt
->xfer_iu
;
1676 complete(&evt
->comp
);
1680 * ibmvfc_bsg_timeout_done - Completion handler for cancelling BSG commands
1681 * @evt: struct ibmvfc_event
1684 static void ibmvfc_bsg_timeout_done(struct ibmvfc_event
*evt
)
1686 struct ibmvfc_host
*vhost
= evt
->vhost
;
1688 ibmvfc_free_event(evt
);
1689 vhost
->aborting_passthru
= 0;
1690 dev_info(vhost
->dev
, "Passthru command cancelled\n");
1694 * ibmvfc_bsg_timeout - Handle a BSG timeout
1695 * @job: struct fc_bsg_job that timed out
1698 * 0 on success / other on failure
1700 static int ibmvfc_bsg_timeout(struct fc_bsg_job
*job
)
1702 struct ibmvfc_host
*vhost
= shost_priv(job
->shost
);
1703 unsigned long port_id
= (unsigned long)job
->dd_data
;
1704 struct ibmvfc_event
*evt
;
1705 struct ibmvfc_tmf
*tmf
;
1706 unsigned long flags
;
1710 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
1711 if (vhost
->aborting_passthru
|| vhost
->state
!= IBMVFC_ACTIVE
) {
1712 __ibmvfc_reset_host(vhost
);
1713 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
1717 vhost
->aborting_passthru
= 1;
1718 evt
= ibmvfc_get_event(vhost
);
1719 ibmvfc_init_event(evt
, ibmvfc_bsg_timeout_done
, IBMVFC_MAD_FORMAT
);
1722 memset(tmf
, 0, sizeof(*tmf
));
1723 tmf
->common
.version
= 1;
1724 tmf
->common
.opcode
= IBMVFC_TMF_MAD
;
1725 tmf
->common
.length
= sizeof(*tmf
);
1726 tmf
->scsi_id
= port_id
;
1727 tmf
->cancel_key
= IBMVFC_PASSTHRU_CANCEL_KEY
;
1728 tmf
->my_cancel_key
= IBMVFC_INTERNAL_CANCEL_KEY
;
1729 rc
= ibmvfc_send_event(evt
, vhost
, default_timeout
);
1732 vhost
->aborting_passthru
= 0;
1733 dev_err(vhost
->dev
, "Failed to send cancel event. rc=%d\n", rc
);
1736 dev_info(vhost
->dev
, "Cancelling passthru command to port id 0x%lx\n",
1739 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
1746 * ibmvfc_bsg_plogi - PLOGI into a target to handle a BSG command
1747 * @vhost: struct ibmvfc_host to send command
1748 * @port_id: port ID to send command
1751 * 0 on success / other on failure
1753 static int ibmvfc_bsg_plogi(struct ibmvfc_host
*vhost
, unsigned int port_id
)
1755 struct ibmvfc_port_login
*plogi
;
1756 struct ibmvfc_target
*tgt
;
1757 struct ibmvfc_event
*evt
;
1758 union ibmvfc_iu rsp_iu
;
1759 unsigned long flags
;
1760 int rc
= 0, issue_login
= 1;
1763 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
1764 list_for_each_entry(tgt
, &vhost
->targets
, queue
) {
1765 if (tgt
->scsi_id
== port_id
) {
1773 if (unlikely((rc
= ibmvfc_host_chkready(vhost
))))
1776 evt
= ibmvfc_get_event(vhost
);
1777 ibmvfc_init_event(evt
, ibmvfc_sync_completion
, IBMVFC_MAD_FORMAT
);
1778 plogi
= &evt
->iu
.plogi
;
1779 memset(plogi
, 0, sizeof(*plogi
));
1780 plogi
->common
.version
= 1;
1781 plogi
->common
.opcode
= IBMVFC_PORT_LOGIN
;
1782 plogi
->common
.length
= sizeof(*plogi
);
1783 plogi
->scsi_id
= port_id
;
1784 evt
->sync_iu
= &rsp_iu
;
1785 init_completion(&evt
->comp
);
1787 rc
= ibmvfc_send_event(evt
, vhost
, default_timeout
);
1788 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
1793 wait_for_completion(&evt
->comp
);
1795 if (rsp_iu
.plogi
.common
.status
)
1798 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
1799 ibmvfc_free_event(evt
);
1801 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
1807 * ibmvfc_bsg_request - Handle a BSG request
1808 * @job: struct fc_bsg_job to be executed
1811 * 0 on success / other on failure
1813 static int ibmvfc_bsg_request(struct fc_bsg_job
*job
)
1815 struct ibmvfc_host
*vhost
= shost_priv(job
->shost
);
1816 struct fc_rport
*rport
= job
->rport
;
1817 struct ibmvfc_passthru_mad
*mad
;
1818 struct ibmvfc_event
*evt
;
1819 union ibmvfc_iu rsp_iu
;
1820 unsigned long flags
, port_id
= -1;
1821 unsigned int code
= job
->request
->msgcode
;
1822 int rc
= 0, req_seg
, rsp_seg
, issue_login
= 0;
1823 u32 fc_flags
, rsp_len
;
1826 job
->reply
->reply_payload_rcv_len
= 0;
1828 port_id
= rport
->port_id
;
1831 case FC_BSG_HST_ELS_NOLOGIN
:
1832 port_id
= (job
->request
->rqst_data
.h_els
.port_id
[0] << 16) |
1833 (job
->request
->rqst_data
.h_els
.port_id
[1] << 8) |
1834 job
->request
->rqst_data
.h_els
.port_id
[2];
1835 case FC_BSG_RPT_ELS
:
1836 fc_flags
= IBMVFC_FC_ELS
;
1840 port_id
= (job
->request
->rqst_data
.h_ct
.port_id
[0] << 16) |
1841 (job
->request
->rqst_data
.h_ct
.port_id
[1] << 8) |
1842 job
->request
->rqst_data
.h_ct
.port_id
[2];
1844 fc_flags
= IBMVFC_FC_CT_IU
;
1852 if (!mutex_trylock(&vhost
->passthru_mutex
))
1855 job
->dd_data
= (void *)port_id
;
1856 req_seg
= dma_map_sg(vhost
->dev
, job
->request_payload
.sg_list
,
1857 job
->request_payload
.sg_cnt
, DMA_TO_DEVICE
);
1860 mutex_unlock(&vhost
->passthru_mutex
);
1864 rsp_seg
= dma_map_sg(vhost
->dev
, job
->reply_payload
.sg_list
,
1865 job
->reply_payload
.sg_cnt
, DMA_FROM_DEVICE
);
1868 dma_unmap_sg(vhost
->dev
, job
->request_payload
.sg_list
,
1869 job
->request_payload
.sg_cnt
, DMA_TO_DEVICE
);
1870 mutex_unlock(&vhost
->passthru_mutex
);
1874 if (req_seg
> 1 || rsp_seg
> 1) {
1880 rc
= ibmvfc_bsg_plogi(vhost
, port_id
);
1882 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
1884 if (unlikely(rc
|| (rport
&& (rc
= fc_remote_port_chkready(rport
)))) ||
1885 unlikely((rc
= ibmvfc_host_chkready(vhost
)))) {
1886 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
1890 evt
= ibmvfc_get_event(vhost
);
1891 ibmvfc_init_event(evt
, ibmvfc_sync_completion
, IBMVFC_MAD_FORMAT
);
1892 mad
= &evt
->iu
.passthru
;
1894 memset(mad
, 0, sizeof(*mad
));
1895 mad
->common
.version
= 1;
1896 mad
->common
.opcode
= IBMVFC_PASSTHRU
;
1897 mad
->common
.length
= sizeof(*mad
) - sizeof(mad
->fc_iu
) - sizeof(mad
->iu
);
1899 mad
->cmd_ioba
.va
= (u64
)evt
->crq
.ioba
+
1900 offsetof(struct ibmvfc_passthru_mad
, iu
);
1901 mad
->cmd_ioba
.len
= sizeof(mad
->iu
);
1903 mad
->iu
.cmd_len
= job
->request_payload
.payload_len
;
1904 mad
->iu
.rsp_len
= job
->reply_payload
.payload_len
;
1905 mad
->iu
.flags
= fc_flags
;
1906 mad
->iu
.cancel_key
= IBMVFC_PASSTHRU_CANCEL_KEY
;
1908 mad
->iu
.cmd
.va
= sg_dma_address(job
->request_payload
.sg_list
);
1909 mad
->iu
.cmd
.len
= sg_dma_len(job
->request_payload
.sg_list
);
1910 mad
->iu
.rsp
.va
= sg_dma_address(job
->reply_payload
.sg_list
);
1911 mad
->iu
.rsp
.len
= sg_dma_len(job
->reply_payload
.sg_list
);
1912 mad
->iu
.scsi_id
= port_id
;
1913 mad
->iu
.tag
= (u64
)evt
;
1914 rsp_len
= mad
->iu
.rsp
.len
;
1916 evt
->sync_iu
= &rsp_iu
;
1917 init_completion(&evt
->comp
);
1918 rc
= ibmvfc_send_event(evt
, vhost
, 0);
1919 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
1926 wait_for_completion(&evt
->comp
);
1928 if (rsp_iu
.passthru
.common
.status
)
1931 job
->reply
->reply_payload_rcv_len
= rsp_len
;
1933 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
1934 ibmvfc_free_event(evt
);
1935 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
1936 job
->reply
->result
= rc
;
1940 dma_unmap_sg(vhost
->dev
, job
->request_payload
.sg_list
,
1941 job
->request_payload
.sg_cnt
, DMA_TO_DEVICE
);
1942 dma_unmap_sg(vhost
->dev
, job
->reply_payload
.sg_list
,
1943 job
->reply_payload
.sg_cnt
, DMA_FROM_DEVICE
);
1944 mutex_unlock(&vhost
->passthru_mutex
);
1950 * ibmvfc_reset_device - Reset the device with the specified reset type
1951 * @sdev: scsi device to reset
1953 * @desc: reset type description for log messages
1956 * 0 on success / other on failure
1958 static int ibmvfc_reset_device(struct scsi_device
*sdev
, int type
, char *desc
)
1960 struct ibmvfc_host
*vhost
= shost_priv(sdev
->host
);
1961 struct fc_rport
*rport
= starget_to_rport(scsi_target(sdev
));
1962 struct ibmvfc_cmd
*tmf
;
1963 struct ibmvfc_event
*evt
= NULL
;
1964 union ibmvfc_iu rsp_iu
;
1965 struct ibmvfc_fcp_rsp
*fc_rsp
= &rsp_iu
.cmd
.rsp
;
1966 int rsp_rc
= -EBUSY
;
1967 unsigned long flags
;
1970 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
1971 if (vhost
->state
== IBMVFC_ACTIVE
) {
1972 evt
= ibmvfc_get_event(vhost
);
1973 ibmvfc_init_event(evt
, ibmvfc_sync_completion
, IBMVFC_CMD_FORMAT
);
1976 memset(tmf
, 0, sizeof(*tmf
));
1977 tmf
->resp
.va
= (u64
)evt
->crq
.ioba
+ offsetof(struct ibmvfc_cmd
, rsp
);
1978 tmf
->resp
.len
= sizeof(tmf
->rsp
);
1979 tmf
->frame_type
= IBMVFC_SCSI_FCP_TYPE
;
1980 tmf
->payload_len
= sizeof(tmf
->iu
);
1981 tmf
->resp_len
= sizeof(tmf
->rsp
);
1982 tmf
->cancel_key
= (unsigned long)sdev
->hostdata
;
1983 tmf
->tgt_scsi_id
= rport
->port_id
;
1984 int_to_scsilun(sdev
->lun
, &tmf
->iu
.lun
);
1985 tmf
->flags
= (IBMVFC_NO_MEM_DESC
| IBMVFC_TMF
);
1986 tmf
->iu
.tmf_flags
= type
;
1987 evt
->sync_iu
= &rsp_iu
;
1989 init_completion(&evt
->comp
);
1990 rsp_rc
= ibmvfc_send_event(evt
, vhost
, default_timeout
);
1992 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
1995 sdev_printk(KERN_ERR
, sdev
, "Failed to send %s reset event. rc=%d\n",
2000 sdev_printk(KERN_INFO
, sdev
, "Resetting %s\n", desc
);
2001 wait_for_completion(&evt
->comp
);
2003 if (rsp_iu
.cmd
.status
)
2004 rsp_code
= ibmvfc_get_err_result(&rsp_iu
.cmd
);
2007 if (fc_rsp
->flags
& FCP_RSP_LEN_VALID
)
2008 rsp_code
= fc_rsp
->data
.info
.rsp_code
;
2010 sdev_printk(KERN_ERR
, sdev
, "%s reset failed: %s (%x:%x) "
2011 "flags: %x fcp_rsp: %x, scsi_status: %x\n",
2012 desc
, ibmvfc_get_cmd_error(rsp_iu
.cmd
.status
, rsp_iu
.cmd
.error
),
2013 rsp_iu
.cmd
.status
, rsp_iu
.cmd
.error
, fc_rsp
->flags
, rsp_code
,
2014 fc_rsp
->scsi_status
);
2017 sdev_printk(KERN_INFO
, sdev
, "%s reset successful\n", desc
);
2019 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
2020 ibmvfc_free_event(evt
);
2021 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
2026 * ibmvfc_abort_task_set - Abort outstanding commands to the device
2027 * @sdev: scsi device to abort commands
2029 * This sends an Abort Task Set to the VIOS for the specified device. This does
2030 * NOT send any cancel to the VIOS. That must be done separately.
2033 * 0 on success / other on failure
2035 static int ibmvfc_abort_task_set(struct scsi_device
*sdev
)
2037 struct ibmvfc_host
*vhost
= shost_priv(sdev
->host
);
2038 struct fc_rport
*rport
= starget_to_rport(scsi_target(sdev
));
2039 struct ibmvfc_cmd
*tmf
;
2040 struct ibmvfc_event
*evt
, *found_evt
;
2041 union ibmvfc_iu rsp_iu
;
2042 struct ibmvfc_fcp_rsp
*fc_rsp
= &rsp_iu
.cmd
.rsp
;
2043 int rsp_rc
= -EBUSY
;
2044 unsigned long flags
;
2047 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
2049 list_for_each_entry(evt
, &vhost
->sent
, queue
) {
2050 if (evt
->cmnd
&& evt
->cmnd
->device
== sdev
) {
2057 if (vhost
->log_level
> IBMVFC_DEFAULT_LOG_LEVEL
)
2058 sdev_printk(KERN_INFO
, sdev
, "No events found to abort\n");
2059 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
2063 if (vhost
->state
== IBMVFC_ACTIVE
) {
2064 evt
= ibmvfc_get_event(vhost
);
2065 ibmvfc_init_event(evt
, ibmvfc_sync_completion
, IBMVFC_CMD_FORMAT
);
2068 memset(tmf
, 0, sizeof(*tmf
));
2069 tmf
->resp
.va
= (u64
)evt
->crq
.ioba
+ offsetof(struct ibmvfc_cmd
, rsp
);
2070 tmf
->resp
.len
= sizeof(tmf
->rsp
);
2071 tmf
->frame_type
= IBMVFC_SCSI_FCP_TYPE
;
2072 tmf
->payload_len
= sizeof(tmf
->iu
);
2073 tmf
->resp_len
= sizeof(tmf
->rsp
);
2074 tmf
->cancel_key
= (unsigned long)sdev
->hostdata
;
2075 tmf
->tgt_scsi_id
= rport
->port_id
;
2076 int_to_scsilun(sdev
->lun
, &tmf
->iu
.lun
);
2077 tmf
->flags
= (IBMVFC_NO_MEM_DESC
| IBMVFC_TMF
);
2078 tmf
->iu
.tmf_flags
= IBMVFC_ABORT_TASK_SET
;
2079 evt
->sync_iu
= &rsp_iu
;
2081 init_completion(&evt
->comp
);
2082 rsp_rc
= ibmvfc_send_event(evt
, vhost
, default_timeout
);
2085 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
2088 sdev_printk(KERN_ERR
, sdev
, "Failed to send abort. rc=%d\n", rsp_rc
);
2092 sdev_printk(KERN_INFO
, sdev
, "Aborting outstanding commands\n");
2093 wait_for_completion(&evt
->comp
);
2095 if (rsp_iu
.cmd
.status
)
2096 rsp_code
= ibmvfc_get_err_result(&rsp_iu
.cmd
);
2099 if (fc_rsp
->flags
& FCP_RSP_LEN_VALID
)
2100 rsp_code
= fc_rsp
->data
.info
.rsp_code
;
2102 sdev_printk(KERN_ERR
, sdev
, "Abort failed: %s (%x:%x) "
2103 "flags: %x fcp_rsp: %x, scsi_status: %x\n",
2104 ibmvfc_get_cmd_error(rsp_iu
.cmd
.status
, rsp_iu
.cmd
.error
),
2105 rsp_iu
.cmd
.status
, rsp_iu
.cmd
.error
, fc_rsp
->flags
, rsp_code
,
2106 fc_rsp
->scsi_status
);
2109 sdev_printk(KERN_INFO
, sdev
, "Abort successful\n");
2111 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
2112 ibmvfc_free_event(evt
);
2113 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
2118 * ibmvfc_cancel_all - Cancel all outstanding commands to the device
2119 * @sdev: scsi device to cancel commands
2120 * @type: type of error recovery being performed
2122 * This sends a cancel to the VIOS for the specified device. This does
2123 * NOT send any abort to the actual device. That must be done separately.
2126 * 0 on success / other on failure
2128 static int ibmvfc_cancel_all(struct scsi_device
*sdev
, int type
)
2130 struct ibmvfc_host
*vhost
= shost_priv(sdev
->host
);
2131 struct scsi_target
*starget
= scsi_target(sdev
);
2132 struct fc_rport
*rport
= starget_to_rport(starget
);
2133 struct ibmvfc_tmf
*tmf
;
2134 struct ibmvfc_event
*evt
, *found_evt
;
2135 union ibmvfc_iu rsp
;
2136 int rsp_rc
= -EBUSY
;
2137 unsigned long flags
;
2141 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
2143 list_for_each_entry(evt
, &vhost
->sent
, queue
) {
2144 if (evt
->cmnd
&& evt
->cmnd
->device
== sdev
) {
2151 if (vhost
->log_level
> IBMVFC_DEFAULT_LOG_LEVEL
)
2152 sdev_printk(KERN_INFO
, sdev
, "No events found to cancel\n");
2153 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
2157 if (vhost
->state
== IBMVFC_ACTIVE
) {
2158 evt
= ibmvfc_get_event(vhost
);
2159 ibmvfc_init_event(evt
, ibmvfc_sync_completion
, IBMVFC_MAD_FORMAT
);
2162 memset(tmf
, 0, sizeof(*tmf
));
2163 tmf
->common
.version
= 1;
2164 tmf
->common
.opcode
= IBMVFC_TMF_MAD
;
2165 tmf
->common
.length
= sizeof(*tmf
);
2166 tmf
->scsi_id
= rport
->port_id
;
2167 int_to_scsilun(sdev
->lun
, &tmf
->lun
);
2168 tmf
->flags
= (type
| IBMVFC_TMF_LUA_VALID
);
2169 tmf
->cancel_key
= (unsigned long)sdev
->hostdata
;
2170 tmf
->my_cancel_key
= (unsigned long)starget
->hostdata
;
2172 evt
->sync_iu
= &rsp
;
2173 init_completion(&evt
->comp
);
2174 rsp_rc
= ibmvfc_send_event(evt
, vhost
, default_timeout
);
2177 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
2180 sdev_printk(KERN_ERR
, sdev
, "Failed to send cancel event. rc=%d\n", rsp_rc
);
2184 sdev_printk(KERN_INFO
, sdev
, "Cancelling outstanding commands.\n");
2186 wait_for_completion(&evt
->comp
);
2187 status
= rsp
.mad_common
.status
;
2188 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
2189 ibmvfc_free_event(evt
);
2190 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
2192 if (status
!= IBMVFC_MAD_SUCCESS
) {
2193 sdev_printk(KERN_WARNING
, sdev
, "Cancel failed with rc=%x\n", status
);
2197 sdev_printk(KERN_INFO
, sdev
, "Successfully cancelled outstanding commands\n");
2202 * ibmvfc_match_target - Match function for specified target
2203 * @evt: ibmvfc event struct
2204 * @device: device to match (starget)
2207 * 1 if event matches starget / 0 if event does not match starget
2209 static int ibmvfc_match_target(struct ibmvfc_event
*evt
, void *device
)
2211 if (evt
->cmnd
&& scsi_target(evt
->cmnd
->device
) == device
)
2217 * ibmvfc_match_lun - Match function for specified LUN
2218 * @evt: ibmvfc event struct
2219 * @device: device to match (sdev)
2222 * 1 if event matches sdev / 0 if event does not match sdev
2224 static int ibmvfc_match_lun(struct ibmvfc_event
*evt
, void *device
)
2226 if (evt
->cmnd
&& evt
->cmnd
->device
== device
)
2232 * ibmvfc_wait_for_ops - Wait for ops to complete
2233 * @vhost: ibmvfc host struct
2234 * @device: device to match (starget or sdev)
2235 * @match: match function
2240 static int ibmvfc_wait_for_ops(struct ibmvfc_host
*vhost
, void *device
,
2241 int (*match
) (struct ibmvfc_event
*, void *))
2243 struct ibmvfc_event
*evt
;
2244 DECLARE_COMPLETION_ONSTACK(comp
);
2246 unsigned long flags
;
2247 signed long timeout
= init_timeout
* HZ
;
2252 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
2253 list_for_each_entry(evt
, &vhost
->sent
, queue
) {
2254 if (match(evt
, device
)) {
2255 evt
->eh_comp
= &comp
;
2259 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
2262 timeout
= wait_for_completion_timeout(&comp
, timeout
);
2266 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
2267 list_for_each_entry(evt
, &vhost
->sent
, queue
) {
2268 if (match(evt
, device
)) {
2269 evt
->eh_comp
= NULL
;
2273 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
2275 dev_err(vhost
->dev
, "Timed out waiting for aborted commands\n");
2277 return wait
? FAILED
: SUCCESS
;
2287 * ibmvfc_eh_abort_handler - Abort a command
2288 * @cmd: scsi command to abort
2293 static int ibmvfc_eh_abort_handler(struct scsi_cmnd
*cmd
)
2295 struct scsi_device
*sdev
= cmd
->device
;
2296 struct ibmvfc_host
*vhost
= shost_priv(sdev
->host
);
2297 int cancel_rc
, abort_rc
;
2301 ibmvfc_wait_while_resetting(vhost
);
2302 cancel_rc
= ibmvfc_cancel_all(sdev
, IBMVFC_TMF_ABORT_TASK_SET
);
2303 abort_rc
= ibmvfc_abort_task_set(sdev
);
2305 if (!cancel_rc
&& !abort_rc
)
2306 rc
= ibmvfc_wait_for_ops(vhost
, sdev
, ibmvfc_match_lun
);
2313 * ibmvfc_eh_device_reset_handler - Reset a single LUN
2314 * @cmd: scsi command struct
2319 static int ibmvfc_eh_device_reset_handler(struct scsi_cmnd
*cmd
)
2321 struct scsi_device
*sdev
= cmd
->device
;
2322 struct ibmvfc_host
*vhost
= shost_priv(sdev
->host
);
2323 int cancel_rc
, reset_rc
;
2327 ibmvfc_wait_while_resetting(vhost
);
2328 cancel_rc
= ibmvfc_cancel_all(sdev
, IBMVFC_TMF_LUN_RESET
);
2329 reset_rc
= ibmvfc_reset_device(sdev
, IBMVFC_LUN_RESET
, "LUN");
2331 if (!cancel_rc
&& !reset_rc
)
2332 rc
= ibmvfc_wait_for_ops(vhost
, sdev
, ibmvfc_match_lun
);
2339 * ibmvfc_dev_cancel_all_abts - Device iterated cancel all function
2340 * @sdev: scsi device struct
2341 * @data: return code
2344 static void ibmvfc_dev_cancel_all_abts(struct scsi_device
*sdev
, void *data
)
2346 unsigned long *rc
= data
;
2347 *rc
|= ibmvfc_cancel_all(sdev
, IBMVFC_TMF_ABORT_TASK_SET
);
2351 * ibmvfc_dev_cancel_all_reset - Device iterated cancel all function
2352 * @sdev: scsi device struct
2353 * @data: return code
2356 static void ibmvfc_dev_cancel_all_reset(struct scsi_device
*sdev
, void *data
)
2358 unsigned long *rc
= data
;
2359 *rc
|= ibmvfc_cancel_all(sdev
, IBMVFC_TMF_TGT_RESET
);
2363 * ibmvfc_dev_abort_all - Device iterated abort task set function
2364 * @sdev: scsi device struct
2365 * @data: return code
2368 static void ibmvfc_dev_abort_all(struct scsi_device
*sdev
, void *data
)
2370 unsigned long *rc
= data
;
2371 *rc
|= ibmvfc_abort_task_set(sdev
);
2375 * ibmvfc_eh_target_reset_handler - Reset the target
2376 * @cmd: scsi command struct
2381 static int ibmvfc_eh_target_reset_handler(struct scsi_cmnd
*cmd
)
2383 struct scsi_device
*sdev
= cmd
->device
;
2384 struct ibmvfc_host
*vhost
= shost_priv(sdev
->host
);
2385 struct scsi_target
*starget
= scsi_target(sdev
);
2388 unsigned long cancel_rc
= 0;
2391 ibmvfc_wait_while_resetting(vhost
);
2392 starget_for_each_device(starget
, &cancel_rc
, ibmvfc_dev_cancel_all_reset
);
2393 reset_rc
= ibmvfc_reset_device(sdev
, IBMVFC_TARGET_RESET
, "target");
2395 if (!cancel_rc
&& !reset_rc
)
2396 rc
= ibmvfc_wait_for_ops(vhost
, starget
, ibmvfc_match_target
);
2403 * ibmvfc_eh_host_reset_handler - Reset the connection to the server
2404 * @cmd: struct scsi_cmnd having problems
2407 static int ibmvfc_eh_host_reset_handler(struct scsi_cmnd
*cmd
)
2410 struct ibmvfc_host
*vhost
= shost_priv(cmd
->device
->host
);
2412 dev_err(vhost
->dev
, "Resetting connection due to error recovery\n");
2413 rc
= ibmvfc_issue_fc_host_lip(vhost
->host
);
2414 return rc
? FAILED
: SUCCESS
;
2418 * ibmvfc_terminate_rport_io - Terminate all pending I/O to the rport.
2419 * @rport: rport struct
2424 static void ibmvfc_terminate_rport_io(struct fc_rport
*rport
)
2426 struct scsi_target
*starget
= to_scsi_target(&rport
->dev
);
2427 struct Scsi_Host
*shost
= dev_to_shost(starget
->dev
.parent
);
2428 struct ibmvfc_host
*vhost
= shost_priv(shost
);
2429 unsigned long cancel_rc
= 0;
2430 unsigned long abort_rc
= 0;
2434 starget_for_each_device(starget
, &cancel_rc
, ibmvfc_dev_cancel_all_abts
);
2435 starget_for_each_device(starget
, &abort_rc
, ibmvfc_dev_abort_all
);
2437 if (!cancel_rc
&& !abort_rc
)
2438 rc
= ibmvfc_wait_for_ops(vhost
, starget
, ibmvfc_match_target
);
2441 ibmvfc_issue_fc_host_lip(shost
);
2445 static const struct {
2446 enum ibmvfc_async_event ae
;
2449 { IBMVFC_AE_ELS_PLOGI
, "PLOGI" },
2450 { IBMVFC_AE_ELS_LOGO
, "LOGO" },
2451 { IBMVFC_AE_ELS_PRLO
, "PRLO" },
2452 { IBMVFC_AE_SCN_NPORT
, "N-Port SCN" },
2453 { IBMVFC_AE_SCN_GROUP
, "Group SCN" },
2454 { IBMVFC_AE_SCN_DOMAIN
, "Domain SCN" },
2455 { IBMVFC_AE_SCN_FABRIC
, "Fabric SCN" },
2456 { IBMVFC_AE_LINK_UP
, "Link Up" },
2457 { IBMVFC_AE_LINK_DOWN
, "Link Down" },
2458 { IBMVFC_AE_LINK_DEAD
, "Link Dead" },
2459 { IBMVFC_AE_HALT
, "Halt" },
2460 { IBMVFC_AE_RESUME
, "Resume" },
2461 { IBMVFC_AE_ADAPTER_FAILED
, "Adapter Failed" },
2464 static const char *unknown_ae
= "Unknown async";
2467 * ibmvfc_get_ae_desc - Get text description for async event
2471 static const char *ibmvfc_get_ae_desc(u64 ae
)
2475 for (i
= 0; i
< ARRAY_SIZE(ae_desc
); i
++)
2476 if (ae_desc
[i
].ae
== ae
)
2477 return ae_desc
[i
].desc
;
2483 * ibmvfc_handle_async - Handle an async event from the adapter
2484 * @crq: crq to process
2485 * @vhost: ibmvfc host struct
2488 static void ibmvfc_handle_async(struct ibmvfc_async_crq
*crq
,
2489 struct ibmvfc_host
*vhost
)
2491 const char *desc
= ibmvfc_get_ae_desc(crq
->event
);
2492 struct ibmvfc_target
*tgt
;
2494 ibmvfc_log(vhost
, 3, "%s event received. scsi_id: %llx, wwpn: %llx,"
2495 " node_name: %llx\n", desc
, crq
->scsi_id
, crq
->wwpn
, crq
->node_name
);
2497 switch (crq
->event
) {
2498 case IBMVFC_AE_RESUME
:
2499 switch (crq
->link_state
) {
2500 case IBMVFC_AE_LS_LINK_DOWN
:
2501 ibmvfc_link_down(vhost
, IBMVFC_LINK_DOWN
);
2503 case IBMVFC_AE_LS_LINK_DEAD
:
2504 ibmvfc_link_down(vhost
, IBMVFC_LINK_DEAD
);
2506 case IBMVFC_AE_LS_LINK_UP
:
2507 case IBMVFC_AE_LS_LINK_BOUNCED
:
2509 vhost
->events_to_log
|= IBMVFC_AE_LINKUP
;
2510 vhost
->delay_init
= 1;
2511 __ibmvfc_reset_host(vhost
);
2516 case IBMVFC_AE_LINK_UP
:
2517 vhost
->events_to_log
|= IBMVFC_AE_LINKUP
;
2518 vhost
->delay_init
= 1;
2519 __ibmvfc_reset_host(vhost
);
2521 case IBMVFC_AE_SCN_FABRIC
:
2522 case IBMVFC_AE_SCN_DOMAIN
:
2523 vhost
->events_to_log
|= IBMVFC_AE_RSCN
;
2524 vhost
->delay_init
= 1;
2525 __ibmvfc_reset_host(vhost
);
2527 case IBMVFC_AE_SCN_NPORT
:
2528 case IBMVFC_AE_SCN_GROUP
:
2529 vhost
->events_to_log
|= IBMVFC_AE_RSCN
;
2530 ibmvfc_reinit_host(vhost
);
2532 case IBMVFC_AE_ELS_LOGO
:
2533 case IBMVFC_AE_ELS_PRLO
:
2534 case IBMVFC_AE_ELS_PLOGI
:
2535 list_for_each_entry(tgt
, &vhost
->targets
, queue
) {
2536 if (!crq
->scsi_id
&& !crq
->wwpn
&& !crq
->node_name
)
2538 if (crq
->scsi_id
&& tgt
->scsi_id
!= crq
->scsi_id
)
2540 if (crq
->wwpn
&& tgt
->ids
.port_name
!= crq
->wwpn
)
2542 if (crq
->node_name
&& tgt
->ids
.node_name
!= crq
->node_name
)
2544 if (tgt
->need_login
&& crq
->event
== IBMVFC_AE_ELS_LOGO
)
2546 if (!tgt
->need_login
|| crq
->event
== IBMVFC_AE_ELS_PLOGI
) {
2547 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_DEL_RPORT
);
2548 ibmvfc_reinit_host(vhost
);
2552 case IBMVFC_AE_LINK_DOWN
:
2553 case IBMVFC_AE_ADAPTER_FAILED
:
2554 ibmvfc_link_down(vhost
, IBMVFC_LINK_DOWN
);
2556 case IBMVFC_AE_LINK_DEAD
:
2557 ibmvfc_link_down(vhost
, IBMVFC_LINK_DEAD
);
2559 case IBMVFC_AE_HALT
:
2560 ibmvfc_link_down(vhost
, IBMVFC_HALTED
);
2563 dev_err(vhost
->dev
, "Unknown async event received: %lld\n", crq
->event
);
2569 * ibmvfc_handle_crq - Handles and frees received events in the CRQ
2570 * @crq: Command/Response queue
2571 * @vhost: ibmvfc host struct
2574 static void ibmvfc_handle_crq(struct ibmvfc_crq
*crq
, struct ibmvfc_host
*vhost
)
2577 struct ibmvfc_event
*evt
= (struct ibmvfc_event
*)crq
->ioba
;
2579 switch (crq
->valid
) {
2580 case IBMVFC_CRQ_INIT_RSP
:
2581 switch (crq
->format
) {
2582 case IBMVFC_CRQ_INIT
:
2583 dev_info(vhost
->dev
, "Partner initialized\n");
2584 /* Send back a response */
2585 rc
= ibmvfc_send_crq_init_complete(vhost
);
2587 ibmvfc_init_host(vhost
);
2589 dev_err(vhost
->dev
, "Unable to send init rsp. rc=%ld\n", rc
);
2591 case IBMVFC_CRQ_INIT_COMPLETE
:
2592 dev_info(vhost
->dev
, "Partner initialization complete\n");
2593 ibmvfc_init_host(vhost
);
2596 dev_err(vhost
->dev
, "Unknown crq message type: %d\n", crq
->format
);
2599 case IBMVFC_CRQ_XPORT_EVENT
:
2600 vhost
->state
= IBMVFC_NO_CRQ
;
2601 vhost
->logged_in
= 0;
2602 ibmvfc_set_host_action(vhost
, IBMVFC_HOST_ACTION_NONE
);
2603 if (crq
->format
== IBMVFC_PARTITION_MIGRATED
) {
2604 /* We need to re-setup the interpartition connection */
2605 dev_info(vhost
->dev
, "Re-enabling adapter\n");
2606 vhost
->client_migrated
= 1;
2607 ibmvfc_purge_requests(vhost
, DID_REQUEUE
);
2608 if ((rc
= ibmvfc_reenable_crq_queue(vhost
)) ||
2609 (rc
= ibmvfc_send_crq_init(vhost
))) {
2610 ibmvfc_link_down(vhost
, IBMVFC_LINK_DEAD
);
2611 dev_err(vhost
->dev
, "Error after enable (rc=%ld)\n", rc
);
2613 ibmvfc_link_down(vhost
, IBMVFC_LINK_DOWN
);
2615 dev_err(vhost
->dev
, "Virtual adapter failed (rc=%d)\n", crq
->format
);
2617 ibmvfc_purge_requests(vhost
, DID_ERROR
);
2618 if ((rc
= ibmvfc_reset_crq(vhost
)) ||
2619 (rc
= ibmvfc_send_crq_init(vhost
))) {
2620 ibmvfc_link_down(vhost
, IBMVFC_LINK_DEAD
);
2621 dev_err(vhost
->dev
, "Error after reset (rc=%ld)\n", rc
);
2623 ibmvfc_link_down(vhost
, IBMVFC_LINK_DOWN
);
2626 case IBMVFC_CRQ_CMD_RSP
:
2629 dev_err(vhost
->dev
, "Got an invalid message type 0x%02x\n", crq
->valid
);
2633 if (crq
->format
== IBMVFC_ASYNC_EVENT
)
2636 /* The only kind of payload CRQs we should get are responses to
2637 * things we send. Make sure this response is to something we
2640 if (unlikely(!ibmvfc_valid_event(&vhost
->pool
, evt
))) {
2641 dev_err(vhost
->dev
, "Returned correlation_token 0x%08llx is invalid!\n",
2646 if (unlikely(atomic_read(&evt
->free
))) {
2647 dev_err(vhost
->dev
, "Received duplicate correlation_token 0x%08llx!\n",
2652 del_timer(&evt
->timer
);
2653 list_del(&evt
->queue
);
2654 ibmvfc_trc_end(evt
);
2659 * ibmvfc_scan_finished - Check if the device scan is done.
2660 * @shost: scsi host struct
2661 * @time: current elapsed time
2664 * 0 if scan is not done / 1 if scan is done
2666 static int ibmvfc_scan_finished(struct Scsi_Host
*shost
, unsigned long time
)
2668 unsigned long flags
;
2669 struct ibmvfc_host
*vhost
= shost_priv(shost
);
2672 spin_lock_irqsave(shost
->host_lock
, flags
);
2673 if (time
>= (init_timeout
* HZ
)) {
2674 dev_info(vhost
->dev
, "Scan taking longer than %d seconds, "
2675 "continuing initialization\n", init_timeout
);
2679 if (vhost
->scan_complete
)
2681 spin_unlock_irqrestore(shost
->host_lock
, flags
);
2686 * ibmvfc_slave_alloc - Setup the device's task set value
2687 * @sdev: struct scsi_device device to configure
2689 * Set the device's task set value so that error handling works as
2693 * 0 on success / -ENXIO if device does not exist
2695 static int ibmvfc_slave_alloc(struct scsi_device
*sdev
)
2697 struct Scsi_Host
*shost
= sdev
->host
;
2698 struct fc_rport
*rport
= starget_to_rport(scsi_target(sdev
));
2699 struct ibmvfc_host
*vhost
= shost_priv(shost
);
2700 unsigned long flags
= 0;
2702 if (!rport
|| fc_remote_port_chkready(rport
))
2705 spin_lock_irqsave(shost
->host_lock
, flags
);
2706 sdev
->hostdata
= (void *)(unsigned long)vhost
->task_set
++;
2707 spin_unlock_irqrestore(shost
->host_lock
, flags
);
2712 * ibmvfc_target_alloc - Setup the target's task set value
2713 * @starget: struct scsi_target
2715 * Set the target's task set value so that error handling works as
2719 * 0 on success / -ENXIO if device does not exist
2721 static int ibmvfc_target_alloc(struct scsi_target
*starget
)
2723 struct Scsi_Host
*shost
= dev_to_shost(starget
->dev
.parent
);
2724 struct ibmvfc_host
*vhost
= shost_priv(shost
);
2725 unsigned long flags
= 0;
2727 spin_lock_irqsave(shost
->host_lock
, flags
);
2728 starget
->hostdata
= (void *)(unsigned long)vhost
->task_set
++;
2729 spin_unlock_irqrestore(shost
->host_lock
, flags
);
2734 * ibmvfc_slave_configure - Configure the device
2735 * @sdev: struct scsi_device device to configure
2737 * Enable allow_restart for a device if it is a disk. Adjust the
2738 * queue_depth here also.
2743 static int ibmvfc_slave_configure(struct scsi_device
*sdev
)
2745 struct Scsi_Host
*shost
= sdev
->host
;
2746 struct fc_rport
*rport
= starget_to_rport(sdev
->sdev_target
);
2747 unsigned long flags
= 0;
2749 spin_lock_irqsave(shost
->host_lock
, flags
);
2750 if (sdev
->type
== TYPE_DISK
)
2751 sdev
->allow_restart
= 1;
2753 if (sdev
->tagged_supported
) {
2754 scsi_set_tag_type(sdev
, MSG_SIMPLE_TAG
);
2755 scsi_activate_tcq(sdev
, sdev
->queue_depth
);
2757 scsi_deactivate_tcq(sdev
, sdev
->queue_depth
);
2759 rport
->dev_loss_tmo
= dev_loss_tmo
;
2760 spin_unlock_irqrestore(shost
->host_lock
, flags
);
2765 * ibmvfc_change_queue_depth - Change the device's queue depth
2766 * @sdev: scsi device struct
2767 * @qdepth: depth to set
2768 * @reason: calling context
2773 static int ibmvfc_change_queue_depth(struct scsi_device
*sdev
, int qdepth
,
2776 if (reason
!= SCSI_QDEPTH_DEFAULT
)
2779 if (qdepth
> IBMVFC_MAX_CMDS_PER_LUN
)
2780 qdepth
= IBMVFC_MAX_CMDS_PER_LUN
;
2782 scsi_adjust_queue_depth(sdev
, 0, qdepth
);
2783 return sdev
->queue_depth
;
2787 * ibmvfc_change_queue_type - Change the device's queue type
2788 * @sdev: scsi device struct
2789 * @tag_type: type of tags to use
2792 * actual queue type set
2794 static int ibmvfc_change_queue_type(struct scsi_device
*sdev
, int tag_type
)
2796 if (sdev
->tagged_supported
) {
2797 scsi_set_tag_type(sdev
, tag_type
);
2800 scsi_activate_tcq(sdev
, sdev
->queue_depth
);
2802 scsi_deactivate_tcq(sdev
, sdev
->queue_depth
);
2809 static ssize_t
ibmvfc_show_host_partition_name(struct device
*dev
,
2810 struct device_attribute
*attr
, char *buf
)
2812 struct Scsi_Host
*shost
= class_to_shost(dev
);
2813 struct ibmvfc_host
*vhost
= shost_priv(shost
);
2815 return snprintf(buf
, PAGE_SIZE
, "%s\n",
2816 vhost
->login_buf
->resp
.partition_name
);
2819 static ssize_t
ibmvfc_show_host_device_name(struct device
*dev
,
2820 struct device_attribute
*attr
, char *buf
)
2822 struct Scsi_Host
*shost
= class_to_shost(dev
);
2823 struct ibmvfc_host
*vhost
= shost_priv(shost
);
2825 return snprintf(buf
, PAGE_SIZE
, "%s\n",
2826 vhost
->login_buf
->resp
.device_name
);
2829 static ssize_t
ibmvfc_show_host_loc_code(struct device
*dev
,
2830 struct device_attribute
*attr
, char *buf
)
2832 struct Scsi_Host
*shost
= class_to_shost(dev
);
2833 struct ibmvfc_host
*vhost
= shost_priv(shost
);
2835 return snprintf(buf
, PAGE_SIZE
, "%s\n",
2836 vhost
->login_buf
->resp
.port_loc_code
);
2839 static ssize_t
ibmvfc_show_host_drc_name(struct device
*dev
,
2840 struct device_attribute
*attr
, char *buf
)
2842 struct Scsi_Host
*shost
= class_to_shost(dev
);
2843 struct ibmvfc_host
*vhost
= shost_priv(shost
);
2845 return snprintf(buf
, PAGE_SIZE
, "%s\n",
2846 vhost
->login_buf
->resp
.drc_name
);
2849 static ssize_t
ibmvfc_show_host_npiv_version(struct device
*dev
,
2850 struct device_attribute
*attr
, char *buf
)
2852 struct Scsi_Host
*shost
= class_to_shost(dev
);
2853 struct ibmvfc_host
*vhost
= shost_priv(shost
);
2854 return snprintf(buf
, PAGE_SIZE
, "%d\n", vhost
->login_buf
->resp
.version
);
2857 static ssize_t
ibmvfc_show_host_capabilities(struct device
*dev
,
2858 struct device_attribute
*attr
, char *buf
)
2860 struct Scsi_Host
*shost
= class_to_shost(dev
);
2861 struct ibmvfc_host
*vhost
= shost_priv(shost
);
2862 return snprintf(buf
, PAGE_SIZE
, "%llx\n", vhost
->login_buf
->resp
.capabilities
);
2866 * ibmvfc_show_log_level - Show the adapter's error logging level
2867 * @dev: class device struct
2871 * number of bytes printed to buffer
2873 static ssize_t
ibmvfc_show_log_level(struct device
*dev
,
2874 struct device_attribute
*attr
, char *buf
)
2876 struct Scsi_Host
*shost
= class_to_shost(dev
);
2877 struct ibmvfc_host
*vhost
= shost_priv(shost
);
2878 unsigned long flags
= 0;
2881 spin_lock_irqsave(shost
->host_lock
, flags
);
2882 len
= snprintf(buf
, PAGE_SIZE
, "%d\n", vhost
->log_level
);
2883 spin_unlock_irqrestore(shost
->host_lock
, flags
);
2888 * ibmvfc_store_log_level - Change the adapter's error logging level
2889 * @dev: class device struct
2893 * number of bytes printed to buffer
2895 static ssize_t
ibmvfc_store_log_level(struct device
*dev
,
2896 struct device_attribute
*attr
,
2897 const char *buf
, size_t count
)
2899 struct Scsi_Host
*shost
= class_to_shost(dev
);
2900 struct ibmvfc_host
*vhost
= shost_priv(shost
);
2901 unsigned long flags
= 0;
2903 spin_lock_irqsave(shost
->host_lock
, flags
);
2904 vhost
->log_level
= simple_strtoul(buf
, NULL
, 10);
2905 spin_unlock_irqrestore(shost
->host_lock
, flags
);
2909 static DEVICE_ATTR(partition_name
, S_IRUGO
, ibmvfc_show_host_partition_name
, NULL
);
2910 static DEVICE_ATTR(device_name
, S_IRUGO
, ibmvfc_show_host_device_name
, NULL
);
2911 static DEVICE_ATTR(port_loc_code
, S_IRUGO
, ibmvfc_show_host_loc_code
, NULL
);
2912 static DEVICE_ATTR(drc_name
, S_IRUGO
, ibmvfc_show_host_drc_name
, NULL
);
2913 static DEVICE_ATTR(npiv_version
, S_IRUGO
, ibmvfc_show_host_npiv_version
, NULL
);
2914 static DEVICE_ATTR(capabilities
, S_IRUGO
, ibmvfc_show_host_capabilities
, NULL
);
2915 static DEVICE_ATTR(log_level
, S_IRUGO
| S_IWUSR
,
2916 ibmvfc_show_log_level
, ibmvfc_store_log_level
);
2918 #ifdef CONFIG_SCSI_IBMVFC_TRACE
2920 * ibmvfc_read_trace - Dump the adapter trace
2921 * @kobj: kobject struct
2922 * @bin_attr: bin_attribute struct
2925 * @count: buffer size
2928 * number of bytes printed to buffer
2930 static ssize_t
ibmvfc_read_trace(struct kobject
*kobj
,
2931 struct bin_attribute
*bin_attr
,
2932 char *buf
, loff_t off
, size_t count
)
2934 struct device
*dev
= container_of(kobj
, struct device
, kobj
);
2935 struct Scsi_Host
*shost
= class_to_shost(dev
);
2936 struct ibmvfc_host
*vhost
= shost_priv(shost
);
2937 unsigned long flags
= 0;
2938 int size
= IBMVFC_TRACE_SIZE
;
2939 char *src
= (char *)vhost
->trace
;
2943 if (off
+ count
> size
) {
2948 spin_lock_irqsave(shost
->host_lock
, flags
);
2949 memcpy(buf
, &src
[off
], count
);
2950 spin_unlock_irqrestore(shost
->host_lock
, flags
);
2954 static struct bin_attribute ibmvfc_trace_attr
= {
2960 .read
= ibmvfc_read_trace
,
2964 static struct device_attribute
*ibmvfc_attrs
[] = {
2965 &dev_attr_partition_name
,
2966 &dev_attr_device_name
,
2967 &dev_attr_port_loc_code
,
2969 &dev_attr_npiv_version
,
2970 &dev_attr_capabilities
,
2971 &dev_attr_log_level
,
2975 static struct scsi_host_template driver_template
= {
2976 .module
= THIS_MODULE
,
2977 .name
= "IBM POWER Virtual FC Adapter",
2978 .proc_name
= IBMVFC_NAME
,
2979 .queuecommand
= ibmvfc_queuecommand
,
2980 .eh_abort_handler
= ibmvfc_eh_abort_handler
,
2981 .eh_device_reset_handler
= ibmvfc_eh_device_reset_handler
,
2982 .eh_target_reset_handler
= ibmvfc_eh_target_reset_handler
,
2983 .eh_host_reset_handler
= ibmvfc_eh_host_reset_handler
,
2984 .slave_alloc
= ibmvfc_slave_alloc
,
2985 .slave_configure
= ibmvfc_slave_configure
,
2986 .target_alloc
= ibmvfc_target_alloc
,
2987 .scan_finished
= ibmvfc_scan_finished
,
2988 .change_queue_depth
= ibmvfc_change_queue_depth
,
2989 .change_queue_type
= ibmvfc_change_queue_type
,
2991 .can_queue
= IBMVFC_MAX_REQUESTS_DEFAULT
,
2993 .sg_tablesize
= SG_ALL
,
2994 .max_sectors
= IBMVFC_MAX_SECTORS
,
2995 .use_clustering
= ENABLE_CLUSTERING
,
2996 .shost_attrs
= ibmvfc_attrs
,
3000 * ibmvfc_next_async_crq - Returns the next entry in async queue
3001 * @vhost: ibmvfc host struct
3004 * Pointer to next entry in queue / NULL if empty
3006 static struct ibmvfc_async_crq
*ibmvfc_next_async_crq(struct ibmvfc_host
*vhost
)
3008 struct ibmvfc_async_crq_queue
*async_crq
= &vhost
->async_crq
;
3009 struct ibmvfc_async_crq
*crq
;
3011 crq
= &async_crq
->msgs
[async_crq
->cur
];
3012 if (crq
->valid
& 0x80) {
3013 if (++async_crq
->cur
== async_crq
->size
)
3022 * ibmvfc_next_crq - Returns the next entry in message queue
3023 * @vhost: ibmvfc host struct
3026 * Pointer to next entry in queue / NULL if empty
3028 static struct ibmvfc_crq
*ibmvfc_next_crq(struct ibmvfc_host
*vhost
)
3030 struct ibmvfc_crq_queue
*queue
= &vhost
->crq
;
3031 struct ibmvfc_crq
*crq
;
3033 crq
= &queue
->msgs
[queue
->cur
];
3034 if (crq
->valid
& 0x80) {
3035 if (++queue
->cur
== queue
->size
)
3044 * ibmvfc_interrupt - Interrupt handler
3045 * @irq: number of irq to handle, not used
3046 * @dev_instance: ibmvfc_host that received interrupt
3051 static irqreturn_t
ibmvfc_interrupt(int irq
, void *dev_instance
)
3053 struct ibmvfc_host
*vhost
= (struct ibmvfc_host
*)dev_instance
;
3054 unsigned long flags
;
3056 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
3057 vio_disable_interrupts(to_vio_dev(vhost
->dev
));
3058 tasklet_schedule(&vhost
->tasklet
);
3059 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
3064 * ibmvfc_tasklet - Interrupt handler tasklet
3065 * @data: ibmvfc host struct
3070 static void ibmvfc_tasklet(void *data
)
3072 struct ibmvfc_host
*vhost
= data
;
3073 struct vio_dev
*vdev
= to_vio_dev(vhost
->dev
);
3074 struct ibmvfc_crq
*crq
;
3075 struct ibmvfc_async_crq
*async
;
3076 unsigned long flags
;
3079 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
3081 /* Pull all the valid messages off the async CRQ */
3082 while ((async
= ibmvfc_next_async_crq(vhost
)) != NULL
) {
3083 ibmvfc_handle_async(async
, vhost
);
3087 /* Pull all the valid messages off the CRQ */
3088 while ((crq
= ibmvfc_next_crq(vhost
)) != NULL
) {
3089 ibmvfc_handle_crq(crq
, vhost
);
3093 vio_enable_interrupts(vdev
);
3094 if ((async
= ibmvfc_next_async_crq(vhost
)) != NULL
) {
3095 vio_disable_interrupts(vdev
);
3096 ibmvfc_handle_async(async
, vhost
);
3098 } else if ((crq
= ibmvfc_next_crq(vhost
)) != NULL
) {
3099 vio_disable_interrupts(vdev
);
3100 ibmvfc_handle_crq(crq
, vhost
);
3106 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
3110 * ibmvfc_init_tgt - Set the next init job step for the target
3111 * @tgt: ibmvfc target struct
3112 * @job_step: job step to perform
3115 static void ibmvfc_init_tgt(struct ibmvfc_target
*tgt
,
3116 void (*job_step
) (struct ibmvfc_target
*))
3118 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_INIT
);
3119 tgt
->job_step
= job_step
;
3120 wake_up(&tgt
->vhost
->work_wait_q
);
3124 * ibmvfc_retry_tgt_init - Attempt to retry a step in target initialization
3125 * @tgt: ibmvfc target struct
3126 * @job_step: initialization job step
3128 * Returns: 1 if step will be retried / 0 if not
3131 static int ibmvfc_retry_tgt_init(struct ibmvfc_target
*tgt
,
3132 void (*job_step
) (struct ibmvfc_target
*))
3134 if (++tgt
->init_retries
> IBMVFC_MAX_TGT_INIT_RETRIES
) {
3135 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_DEL_RPORT
);
3136 wake_up(&tgt
->vhost
->work_wait_q
);
3139 ibmvfc_init_tgt(tgt
, job_step
);
3143 /* Defined in FC-LS */
3144 static const struct {
3161 * ibmvfc_get_prli_rsp - Find PRLI response index
3162 * @flags: PRLI response flags
3165 static int ibmvfc_get_prli_rsp(u16 flags
)
3168 int code
= (flags
& 0x0f00) >> 8;
3170 for (i
= 0; i
< ARRAY_SIZE(prli_rsp
); i
++)
3171 if (prli_rsp
[i
].code
== code
)
3178 * ibmvfc_tgt_prli_done - Completion handler for Process Login
3179 * @evt: ibmvfc event struct
3182 static void ibmvfc_tgt_prli_done(struct ibmvfc_event
*evt
)
3184 struct ibmvfc_target
*tgt
= evt
->tgt
;
3185 struct ibmvfc_host
*vhost
= evt
->vhost
;
3186 struct ibmvfc_process_login
*rsp
= &evt
->xfer_iu
->prli
;
3187 struct ibmvfc_prli_svc_parms
*parms
= &rsp
->parms
;
3188 u32 status
= rsp
->common
.status
;
3189 int index
, level
= IBMVFC_DEFAULT_LOG_LEVEL
;
3191 vhost
->discovery_threads
--;
3192 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_NONE
);
3194 case IBMVFC_MAD_SUCCESS
:
3195 tgt_dbg(tgt
, "Process Login succeeded: %X %02X %04X\n",
3196 parms
->type
, parms
->flags
, parms
->service_parms
);
3198 if (parms
->type
== IBMVFC_SCSI_FCP_TYPE
) {
3199 index
= ibmvfc_get_prli_rsp(parms
->flags
);
3200 if (prli_rsp
[index
].logged_in
) {
3201 if (parms
->flags
& IBMVFC_PRLI_EST_IMG_PAIR
) {
3202 tgt
->need_login
= 0;
3204 if (parms
->service_parms
& IBMVFC_PRLI_TARGET_FUNC
)
3205 tgt
->ids
.roles
|= FC_PORT_ROLE_FCP_TARGET
;
3206 if (parms
->service_parms
& IBMVFC_PRLI_INITIATOR_FUNC
)
3207 tgt
->ids
.roles
|= FC_PORT_ROLE_FCP_INITIATOR
;
3210 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_DEL_RPORT
);
3211 } else if (prli_rsp
[index
].retry
)
3212 ibmvfc_retry_tgt_init(tgt
, ibmvfc_tgt_send_prli
);
3214 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_DEL_RPORT
);
3216 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_DEL_RPORT
);
3218 case IBMVFC_MAD_DRIVER_FAILED
:
3220 case IBMVFC_MAD_CRQ_ERROR
:
3221 ibmvfc_retry_tgt_init(tgt
, ibmvfc_tgt_send_prli
);
3223 case IBMVFC_MAD_FAILED
:
3225 if ((rsp
->status
& IBMVFC_VIOS_FAILURE
) && rsp
->error
== IBMVFC_PLOGI_REQUIRED
)
3226 level
+= ibmvfc_retry_tgt_init(tgt
, ibmvfc_tgt_send_plogi
);
3227 else if (tgt
->logo_rcvd
)
3228 level
+= ibmvfc_retry_tgt_init(tgt
, ibmvfc_tgt_send_plogi
);
3229 else if (ibmvfc_retry_cmd(rsp
->status
, rsp
->error
))
3230 level
+= ibmvfc_retry_tgt_init(tgt
, ibmvfc_tgt_send_prli
);
3232 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_DEL_RPORT
);
3234 tgt_log(tgt
, level
, "Process Login failed: %s (%x:%x) rc=0x%02X\n",
3235 ibmvfc_get_cmd_error(rsp
->status
, rsp
->error
),
3236 rsp
->status
, rsp
->error
, status
);
3240 kref_put(&tgt
->kref
, ibmvfc_release_tgt
);
3241 ibmvfc_free_event(evt
);
3242 wake_up(&vhost
->work_wait_q
);
3246 * ibmvfc_tgt_send_prli - Send a process login
3247 * @tgt: ibmvfc target struct
3250 static void ibmvfc_tgt_send_prli(struct ibmvfc_target
*tgt
)
3252 struct ibmvfc_process_login
*prli
;
3253 struct ibmvfc_host
*vhost
= tgt
->vhost
;
3254 struct ibmvfc_event
*evt
;
3256 if (vhost
->discovery_threads
>= disc_threads
)
3259 kref_get(&tgt
->kref
);
3260 evt
= ibmvfc_get_event(vhost
);
3261 vhost
->discovery_threads
++;
3262 ibmvfc_init_event(evt
, ibmvfc_tgt_prli_done
, IBMVFC_MAD_FORMAT
);
3264 prli
= &evt
->iu
.prli
;
3265 memset(prli
, 0, sizeof(*prli
));
3266 prli
->common
.version
= 1;
3267 prli
->common
.opcode
= IBMVFC_PROCESS_LOGIN
;
3268 prli
->common
.length
= sizeof(*prli
);
3269 prli
->scsi_id
= tgt
->scsi_id
;
3271 prli
->parms
.type
= IBMVFC_SCSI_FCP_TYPE
;
3272 prli
->parms
.flags
= IBMVFC_PRLI_EST_IMG_PAIR
;
3273 prli
->parms
.service_parms
= IBMVFC_PRLI_INITIATOR_FUNC
;
3275 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_INIT_WAIT
);
3276 if (ibmvfc_send_event(evt
, vhost
, default_timeout
)) {
3277 vhost
->discovery_threads
--;
3278 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_NONE
);
3279 kref_put(&tgt
->kref
, ibmvfc_release_tgt
);
3281 tgt_dbg(tgt
, "Sent process login\n");
3285 * ibmvfc_tgt_plogi_done - Completion handler for Port Login
3286 * @evt: ibmvfc event struct
3289 static void ibmvfc_tgt_plogi_done(struct ibmvfc_event
*evt
)
3291 struct ibmvfc_target
*tgt
= evt
->tgt
;
3292 struct ibmvfc_host
*vhost
= evt
->vhost
;
3293 struct ibmvfc_port_login
*rsp
= &evt
->xfer_iu
->plogi
;
3294 u32 status
= rsp
->common
.status
;
3295 int level
= IBMVFC_DEFAULT_LOG_LEVEL
;
3297 vhost
->discovery_threads
--;
3298 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_NONE
);
3300 case IBMVFC_MAD_SUCCESS
:
3301 tgt_dbg(tgt
, "Port Login succeeded\n");
3302 if (tgt
->ids
.port_name
&&
3303 tgt
->ids
.port_name
!= wwn_to_u64(rsp
->service_parms
.port_name
)) {
3305 tgt_dbg(tgt
, "Port re-init required\n");
3308 tgt
->ids
.node_name
= wwn_to_u64(rsp
->service_parms
.node_name
);
3309 tgt
->ids
.port_name
= wwn_to_u64(rsp
->service_parms
.port_name
);
3310 tgt
->ids
.port_id
= tgt
->scsi_id
;
3311 memcpy(&tgt
->service_parms
, &rsp
->service_parms
,
3312 sizeof(tgt
->service_parms
));
3313 memcpy(&tgt
->service_parms_change
, &rsp
->service_parms_change
,
3314 sizeof(tgt
->service_parms_change
));
3315 ibmvfc_init_tgt(tgt
, ibmvfc_tgt_send_prli
);
3317 case IBMVFC_MAD_DRIVER_FAILED
:
3319 case IBMVFC_MAD_CRQ_ERROR
:
3320 ibmvfc_retry_tgt_init(tgt
, ibmvfc_tgt_send_plogi
);
3322 case IBMVFC_MAD_FAILED
:
3324 if (ibmvfc_retry_cmd(rsp
->status
, rsp
->error
))
3325 level
+= ibmvfc_retry_tgt_init(tgt
, ibmvfc_tgt_send_plogi
);
3327 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_DEL_RPORT
);
3329 tgt_log(tgt
, level
, "Port Login failed: %s (%x:%x) %s (%x) %s (%x) rc=0x%02X\n",
3330 ibmvfc_get_cmd_error(rsp
->status
, rsp
->error
), rsp
->status
, rsp
->error
,
3331 ibmvfc_get_fc_type(rsp
->fc_type
), rsp
->fc_type
,
3332 ibmvfc_get_ls_explain(rsp
->fc_explain
), rsp
->fc_explain
, status
);
3336 kref_put(&tgt
->kref
, ibmvfc_release_tgt
);
3337 ibmvfc_free_event(evt
);
3338 wake_up(&vhost
->work_wait_q
);
3342 * ibmvfc_tgt_send_plogi - Send PLOGI to the specified target
3343 * @tgt: ibmvfc target struct
3346 static void ibmvfc_tgt_send_plogi(struct ibmvfc_target
*tgt
)
3348 struct ibmvfc_port_login
*plogi
;
3349 struct ibmvfc_host
*vhost
= tgt
->vhost
;
3350 struct ibmvfc_event
*evt
;
3352 if (vhost
->discovery_threads
>= disc_threads
)
3355 kref_get(&tgt
->kref
);
3357 evt
= ibmvfc_get_event(vhost
);
3358 vhost
->discovery_threads
++;
3359 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_INIT_WAIT
);
3360 ibmvfc_init_event(evt
, ibmvfc_tgt_plogi_done
, IBMVFC_MAD_FORMAT
);
3362 plogi
= &evt
->iu
.plogi
;
3363 memset(plogi
, 0, sizeof(*plogi
));
3364 plogi
->common
.version
= 1;
3365 plogi
->common
.opcode
= IBMVFC_PORT_LOGIN
;
3366 plogi
->common
.length
= sizeof(*plogi
);
3367 plogi
->scsi_id
= tgt
->scsi_id
;
3369 if (ibmvfc_send_event(evt
, vhost
, default_timeout
)) {
3370 vhost
->discovery_threads
--;
3371 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_NONE
);
3372 kref_put(&tgt
->kref
, ibmvfc_release_tgt
);
3374 tgt_dbg(tgt
, "Sent port login\n");
3378 * ibmvfc_tgt_implicit_logout_done - Completion handler for Implicit Logout MAD
3379 * @evt: ibmvfc event struct
3382 static void ibmvfc_tgt_implicit_logout_done(struct ibmvfc_event
*evt
)
3384 struct ibmvfc_target
*tgt
= evt
->tgt
;
3385 struct ibmvfc_host
*vhost
= evt
->vhost
;
3386 struct ibmvfc_implicit_logout
*rsp
= &evt
->xfer_iu
->implicit_logout
;
3387 u32 status
= rsp
->common
.status
;
3389 vhost
->discovery_threads
--;
3390 ibmvfc_free_event(evt
);
3391 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_NONE
);
3394 case IBMVFC_MAD_SUCCESS
:
3395 tgt_dbg(tgt
, "Implicit Logout succeeded\n");
3397 case IBMVFC_MAD_DRIVER_FAILED
:
3398 kref_put(&tgt
->kref
, ibmvfc_release_tgt
);
3399 wake_up(&vhost
->work_wait_q
);
3401 case IBMVFC_MAD_FAILED
:
3403 tgt_err(tgt
, "Implicit Logout failed: rc=0x%02X\n", status
);
3407 if (vhost
->action
== IBMVFC_HOST_ACTION_TGT_INIT
)
3408 ibmvfc_init_tgt(tgt
, ibmvfc_tgt_send_plogi
);
3409 else if (vhost
->action
== IBMVFC_HOST_ACTION_QUERY_TGTS
&&
3410 tgt
->scsi_id
!= tgt
->new_scsi_id
)
3411 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_DEL_RPORT
);
3412 kref_put(&tgt
->kref
, ibmvfc_release_tgt
);
3413 wake_up(&vhost
->work_wait_q
);
3417 * ibmvfc_tgt_implicit_logout - Initiate an Implicit Logout for specified target
3418 * @tgt: ibmvfc target struct
3421 static void ibmvfc_tgt_implicit_logout(struct ibmvfc_target
*tgt
)
3423 struct ibmvfc_implicit_logout
*mad
;
3424 struct ibmvfc_host
*vhost
= tgt
->vhost
;
3425 struct ibmvfc_event
*evt
;
3427 if (vhost
->discovery_threads
>= disc_threads
)
3430 kref_get(&tgt
->kref
);
3431 evt
= ibmvfc_get_event(vhost
);
3432 vhost
->discovery_threads
++;
3433 ibmvfc_init_event(evt
, ibmvfc_tgt_implicit_logout_done
, IBMVFC_MAD_FORMAT
);
3435 mad
= &evt
->iu
.implicit_logout
;
3436 memset(mad
, 0, sizeof(*mad
));
3437 mad
->common
.version
= 1;
3438 mad
->common
.opcode
= IBMVFC_IMPLICIT_LOGOUT
;
3439 mad
->common
.length
= sizeof(*mad
);
3440 mad
->old_scsi_id
= tgt
->scsi_id
;
3442 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_INIT_WAIT
);
3443 if (ibmvfc_send_event(evt
, vhost
, default_timeout
)) {
3444 vhost
->discovery_threads
--;
3445 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_NONE
);
3446 kref_put(&tgt
->kref
, ibmvfc_release_tgt
);
3448 tgt_dbg(tgt
, "Sent Implicit Logout\n");
3452 * ibmvfc_adisc_needs_plogi - Does device need PLOGI?
3453 * @mad: ibmvfc passthru mad struct
3454 * @tgt: ibmvfc target struct
3457 * 1 if PLOGI needed / 0 if PLOGI not needed
3459 static int ibmvfc_adisc_needs_plogi(struct ibmvfc_passthru_mad
*mad
,
3460 struct ibmvfc_target
*tgt
)
3462 if (memcmp(&mad
->fc_iu
.response
[2], &tgt
->ids
.port_name
,
3463 sizeof(tgt
->ids
.port_name
)))
3465 if (memcmp(&mad
->fc_iu
.response
[4], &tgt
->ids
.node_name
,
3466 sizeof(tgt
->ids
.node_name
)))
3468 if (mad
->fc_iu
.response
[6] != tgt
->scsi_id
)
3474 * ibmvfc_tgt_adisc_done - Completion handler for ADISC
3475 * @evt: ibmvfc event struct
3478 static void ibmvfc_tgt_adisc_done(struct ibmvfc_event
*evt
)
3480 struct ibmvfc_target
*tgt
= evt
->tgt
;
3481 struct ibmvfc_host
*vhost
= evt
->vhost
;
3482 struct ibmvfc_passthru_mad
*mad
= &evt
->xfer_iu
->passthru
;
3483 u32 status
= mad
->common
.status
;
3484 u8 fc_reason
, fc_explain
;
3486 vhost
->discovery_threads
--;
3487 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_NONE
);
3488 del_timer(&tgt
->timer
);
3491 case IBMVFC_MAD_SUCCESS
:
3492 tgt_dbg(tgt
, "ADISC succeeded\n");
3493 if (ibmvfc_adisc_needs_plogi(mad
, tgt
))
3494 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_DEL_RPORT
);
3496 case IBMVFC_MAD_DRIVER_FAILED
:
3498 case IBMVFC_MAD_FAILED
:
3500 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_DEL_RPORT
);
3501 fc_reason
= (mad
->fc_iu
.response
[1] & 0x00ff0000) >> 16;
3502 fc_explain
= (mad
->fc_iu
.response
[1] & 0x0000ff00) >> 8;
3503 tgt_info(tgt
, "ADISC failed: %s (%x:%x) %s (%x) %s (%x) rc=0x%02X\n",
3504 ibmvfc_get_cmd_error(mad
->iu
.status
, mad
->iu
.error
),
3505 mad
->iu
.status
, mad
->iu
.error
,
3506 ibmvfc_get_fc_type(fc_reason
), fc_reason
,
3507 ibmvfc_get_ls_explain(fc_explain
), fc_explain
, status
);
3511 kref_put(&tgt
->kref
, ibmvfc_release_tgt
);
3512 ibmvfc_free_event(evt
);
3513 wake_up(&vhost
->work_wait_q
);
3517 * ibmvfc_init_passthru - Initialize an event struct for FC passthru
3518 * @evt: ibmvfc event struct
3521 static void ibmvfc_init_passthru(struct ibmvfc_event
*evt
)
3523 struct ibmvfc_passthru_mad
*mad
= &evt
->iu
.passthru
;
3525 memset(mad
, 0, sizeof(*mad
));
3526 mad
->common
.version
= 1;
3527 mad
->common
.opcode
= IBMVFC_PASSTHRU
;
3528 mad
->common
.length
= sizeof(*mad
) - sizeof(mad
->fc_iu
) - sizeof(mad
->iu
);
3529 mad
->cmd_ioba
.va
= (u64
)evt
->crq
.ioba
+
3530 offsetof(struct ibmvfc_passthru_mad
, iu
);
3531 mad
->cmd_ioba
.len
= sizeof(mad
->iu
);
3532 mad
->iu
.cmd_len
= sizeof(mad
->fc_iu
.payload
);
3533 mad
->iu
.rsp_len
= sizeof(mad
->fc_iu
.response
);
3534 mad
->iu
.cmd
.va
= (u64
)evt
->crq
.ioba
+
3535 offsetof(struct ibmvfc_passthru_mad
, fc_iu
) +
3536 offsetof(struct ibmvfc_passthru_fc_iu
, payload
);
3537 mad
->iu
.cmd
.len
= sizeof(mad
->fc_iu
.payload
);
3538 mad
->iu
.rsp
.va
= (u64
)evt
->crq
.ioba
+
3539 offsetof(struct ibmvfc_passthru_mad
, fc_iu
) +
3540 offsetof(struct ibmvfc_passthru_fc_iu
, response
);
3541 mad
->iu
.rsp
.len
= sizeof(mad
->fc_iu
.response
);
3545 * ibmvfc_tgt_adisc_cancel_done - Completion handler when cancelling an ADISC
3546 * @evt: ibmvfc event struct
3548 * Just cleanup this event struct. Everything else is handled by
3549 * the ADISC completion handler. If the ADISC never actually comes
3550 * back, we still have the timer running on the ADISC event struct
3551 * which will fire and cause the CRQ to get reset.
3554 static void ibmvfc_tgt_adisc_cancel_done(struct ibmvfc_event
*evt
)
3556 struct ibmvfc_host
*vhost
= evt
->vhost
;
3557 struct ibmvfc_target
*tgt
= evt
->tgt
;
3559 tgt_dbg(tgt
, "ADISC cancel complete\n");
3560 vhost
->abort_threads
--;
3561 ibmvfc_free_event(evt
);
3562 kref_put(&tgt
->kref
, ibmvfc_release_tgt
);
3563 wake_up(&vhost
->work_wait_q
);
3567 * ibmvfc_adisc_timeout - Handle an ADISC timeout
3568 * @tgt: ibmvfc target struct
3570 * If an ADISC times out, send a cancel. If the cancel times
3571 * out, reset the CRQ. When the ADISC comes back as cancelled,
3572 * log back into the target.
3574 static void ibmvfc_adisc_timeout(struct ibmvfc_target
*tgt
)
3576 struct ibmvfc_host
*vhost
= tgt
->vhost
;
3577 struct ibmvfc_event
*evt
;
3578 struct ibmvfc_tmf
*tmf
;
3579 unsigned long flags
;
3582 tgt_dbg(tgt
, "ADISC timeout\n");
3583 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
3584 if (vhost
->abort_threads
>= disc_threads
||
3585 tgt
->action
!= IBMVFC_TGT_ACTION_INIT_WAIT
||
3586 vhost
->state
!= IBMVFC_INITIALIZING
||
3587 vhost
->action
!= IBMVFC_HOST_ACTION_QUERY_TGTS
) {
3588 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
3592 vhost
->abort_threads
++;
3593 kref_get(&tgt
->kref
);
3594 evt
= ibmvfc_get_event(vhost
);
3595 ibmvfc_init_event(evt
, ibmvfc_tgt_adisc_cancel_done
, IBMVFC_MAD_FORMAT
);
3599 memset(tmf
, 0, sizeof(*tmf
));
3600 tmf
->common
.version
= 1;
3601 tmf
->common
.opcode
= IBMVFC_TMF_MAD
;
3602 tmf
->common
.length
= sizeof(*tmf
);
3603 tmf
->scsi_id
= tgt
->scsi_id
;
3604 tmf
->cancel_key
= tgt
->cancel_key
;
3606 rc
= ibmvfc_send_event(evt
, vhost
, default_timeout
);
3609 tgt_err(tgt
, "Failed to send cancel event for ADISC. rc=%d\n", rc
);
3610 vhost
->abort_threads
--;
3611 kref_put(&tgt
->kref
, ibmvfc_release_tgt
);
3612 __ibmvfc_reset_host(vhost
);
3614 tgt_dbg(tgt
, "Attempting to cancel ADISC\n");
3615 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
3619 * ibmvfc_tgt_adisc - Initiate an ADISC for specified target
3620 * @tgt: ibmvfc target struct
3622 * When sending an ADISC we end up with two timers running. The
3623 * first timer is the timer in the ibmvfc target struct. If this
3624 * fires, we send a cancel to the target. The second timer is the
3625 * timer on the ibmvfc event for the ADISC, which is longer. If that
3626 * fires, it means the ADISC timed out and our attempt to cancel it
3627 * also failed, so we need to reset the CRQ.
3629 static void ibmvfc_tgt_adisc(struct ibmvfc_target
*tgt
)
3631 struct ibmvfc_passthru_mad
*mad
;
3632 struct ibmvfc_host
*vhost
= tgt
->vhost
;
3633 struct ibmvfc_event
*evt
;
3635 if (vhost
->discovery_threads
>= disc_threads
)
3638 kref_get(&tgt
->kref
);
3639 evt
= ibmvfc_get_event(vhost
);
3640 vhost
->discovery_threads
++;
3641 ibmvfc_init_event(evt
, ibmvfc_tgt_adisc_done
, IBMVFC_MAD_FORMAT
);
3644 ibmvfc_init_passthru(evt
);
3645 mad
= &evt
->iu
.passthru
;
3646 mad
->iu
.flags
= IBMVFC_FC_ELS
;
3647 mad
->iu
.scsi_id
= tgt
->scsi_id
;
3648 mad
->iu
.cancel_key
= tgt
->cancel_key
;
3650 mad
->fc_iu
.payload
[0] = IBMVFC_ADISC
;
3651 memcpy(&mad
->fc_iu
.payload
[2], &vhost
->login_buf
->resp
.port_name
,
3652 sizeof(vhost
->login_buf
->resp
.port_name
));
3653 memcpy(&mad
->fc_iu
.payload
[4], &vhost
->login_buf
->resp
.node_name
,
3654 sizeof(vhost
->login_buf
->resp
.node_name
));
3655 mad
->fc_iu
.payload
[6] = vhost
->login_buf
->resp
.scsi_id
& 0x00ffffff;
3657 if (timer_pending(&tgt
->timer
))
3658 mod_timer(&tgt
->timer
, jiffies
+ (IBMVFC_ADISC_TIMEOUT
* HZ
));
3660 tgt
->timer
.data
= (unsigned long) tgt
;
3661 tgt
->timer
.expires
= jiffies
+ (IBMVFC_ADISC_TIMEOUT
* HZ
);
3662 tgt
->timer
.function
= (void (*)(unsigned long))ibmvfc_adisc_timeout
;
3663 add_timer(&tgt
->timer
);
3666 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_INIT_WAIT
);
3667 if (ibmvfc_send_event(evt
, vhost
, IBMVFC_ADISC_PLUS_CANCEL_TIMEOUT
)) {
3668 vhost
->discovery_threads
--;
3669 del_timer(&tgt
->timer
);
3670 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_NONE
);
3671 kref_put(&tgt
->kref
, ibmvfc_release_tgt
);
3673 tgt_dbg(tgt
, "Sent ADISC\n");
3677 * ibmvfc_tgt_query_target_done - Completion handler for Query Target MAD
3678 * @evt: ibmvfc event struct
3681 static void ibmvfc_tgt_query_target_done(struct ibmvfc_event
*evt
)
3683 struct ibmvfc_target
*tgt
= evt
->tgt
;
3684 struct ibmvfc_host
*vhost
= evt
->vhost
;
3685 struct ibmvfc_query_tgt
*rsp
= &evt
->xfer_iu
->query_tgt
;
3686 u32 status
= rsp
->common
.status
;
3687 int level
= IBMVFC_DEFAULT_LOG_LEVEL
;
3689 vhost
->discovery_threads
--;
3690 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_NONE
);
3692 case IBMVFC_MAD_SUCCESS
:
3693 tgt_dbg(tgt
, "Query Target succeeded\n");
3694 tgt
->new_scsi_id
= rsp
->scsi_id
;
3695 if (rsp
->scsi_id
!= tgt
->scsi_id
)
3696 ibmvfc_init_tgt(tgt
, ibmvfc_tgt_implicit_logout
);
3698 ibmvfc_init_tgt(tgt
, ibmvfc_tgt_adisc
);
3700 case IBMVFC_MAD_DRIVER_FAILED
:
3702 case IBMVFC_MAD_CRQ_ERROR
:
3703 ibmvfc_retry_tgt_init(tgt
, ibmvfc_tgt_query_target
);
3705 case IBMVFC_MAD_FAILED
:
3707 if ((rsp
->status
& IBMVFC_FABRIC_MAPPED
) == IBMVFC_FABRIC_MAPPED
&&
3708 rsp
->error
== IBMVFC_UNABLE_TO_PERFORM_REQ
&&
3709 rsp
->fc_explain
== IBMVFC_PORT_NAME_NOT_REG
)
3710 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_DEL_RPORT
);
3711 else if (ibmvfc_retry_cmd(rsp
->status
, rsp
->error
))
3712 level
+= ibmvfc_retry_tgt_init(tgt
, ibmvfc_tgt_query_target
);
3714 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_DEL_RPORT
);
3716 tgt_log(tgt
, level
, "Query Target failed: %s (%x:%x) %s (%x) %s (%x) rc=0x%02X\n",
3717 ibmvfc_get_cmd_error(rsp
->status
, rsp
->error
), rsp
->status
, rsp
->error
,
3718 ibmvfc_get_fc_type(rsp
->fc_type
), rsp
->fc_type
,
3719 ibmvfc_get_gs_explain(rsp
->fc_explain
), rsp
->fc_explain
, status
);
3723 kref_put(&tgt
->kref
, ibmvfc_release_tgt
);
3724 ibmvfc_free_event(evt
);
3725 wake_up(&vhost
->work_wait_q
);
3729 * ibmvfc_tgt_query_target - Initiate a Query Target for specified target
3730 * @tgt: ibmvfc target struct
3733 static void ibmvfc_tgt_query_target(struct ibmvfc_target
*tgt
)
3735 struct ibmvfc_query_tgt
*query_tgt
;
3736 struct ibmvfc_host
*vhost
= tgt
->vhost
;
3737 struct ibmvfc_event
*evt
;
3739 if (vhost
->discovery_threads
>= disc_threads
)
3742 kref_get(&tgt
->kref
);
3743 evt
= ibmvfc_get_event(vhost
);
3744 vhost
->discovery_threads
++;
3746 ibmvfc_init_event(evt
, ibmvfc_tgt_query_target_done
, IBMVFC_MAD_FORMAT
);
3747 query_tgt
= &evt
->iu
.query_tgt
;
3748 memset(query_tgt
, 0, sizeof(*query_tgt
));
3749 query_tgt
->common
.version
= 1;
3750 query_tgt
->common
.opcode
= IBMVFC_QUERY_TARGET
;
3751 query_tgt
->common
.length
= sizeof(*query_tgt
);
3752 query_tgt
->wwpn
= tgt
->ids
.port_name
;
3754 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_INIT_WAIT
);
3755 if (ibmvfc_send_event(evt
, vhost
, default_timeout
)) {
3756 vhost
->discovery_threads
--;
3757 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_NONE
);
3758 kref_put(&tgt
->kref
, ibmvfc_release_tgt
);
3760 tgt_dbg(tgt
, "Sent Query Target\n");
3764 * ibmvfc_alloc_target - Allocate and initialize an ibmvfc target
3765 * @vhost: ibmvfc host struct
3766 * @scsi_id: SCSI ID to allocate target for
3769 * 0 on success / other on failure
3771 static int ibmvfc_alloc_target(struct ibmvfc_host
*vhost
, u64 scsi_id
)
3773 struct ibmvfc_target
*tgt
;
3774 unsigned long flags
;
3776 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
3777 list_for_each_entry(tgt
, &vhost
->targets
, queue
) {
3778 if (tgt
->scsi_id
== scsi_id
) {
3779 if (tgt
->need_login
)
3780 ibmvfc_init_tgt(tgt
, ibmvfc_tgt_implicit_logout
);
3784 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
3786 tgt
= mempool_alloc(vhost
->tgt_pool
, GFP_NOIO
);
3788 dev_err(vhost
->dev
, "Target allocation failure for scsi id %08llx\n",
3793 memset(tgt
, 0, sizeof(*tgt
));
3794 tgt
->scsi_id
= scsi_id
;
3795 tgt
->new_scsi_id
= scsi_id
;
3797 tgt
->need_login
= 1;
3798 tgt
->cancel_key
= vhost
->task_set
++;
3799 init_timer(&tgt
->timer
);
3800 kref_init(&tgt
->kref
);
3801 ibmvfc_init_tgt(tgt
, ibmvfc_tgt_implicit_logout
);
3802 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
3803 list_add_tail(&tgt
->queue
, &vhost
->targets
);
3806 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
3811 * ibmvfc_alloc_targets - Allocate and initialize ibmvfc targets
3812 * @vhost: ibmvfc host struct
3815 * 0 on success / other on failure
3817 static int ibmvfc_alloc_targets(struct ibmvfc_host
*vhost
)
3821 for (i
= 0, rc
= 0; !rc
&& i
< vhost
->num_targets
; i
++)
3822 rc
= ibmvfc_alloc_target(vhost
,
3823 vhost
->disc_buf
->scsi_id
[i
] & IBMVFC_DISC_TGT_SCSI_ID_MASK
);
3829 * ibmvfc_discover_targets_done - Completion handler for discover targets MAD
3830 * @evt: ibmvfc event struct
3833 static void ibmvfc_discover_targets_done(struct ibmvfc_event
*evt
)
3835 struct ibmvfc_host
*vhost
= evt
->vhost
;
3836 struct ibmvfc_discover_targets
*rsp
= &evt
->xfer_iu
->discover_targets
;
3837 u32 mad_status
= rsp
->common
.status
;
3838 int level
= IBMVFC_DEFAULT_LOG_LEVEL
;
3840 switch (mad_status
) {
3841 case IBMVFC_MAD_SUCCESS
:
3842 ibmvfc_dbg(vhost
, "Discover Targets succeeded\n");
3843 vhost
->num_targets
= rsp
->num_written
;
3844 ibmvfc_set_host_action(vhost
, IBMVFC_HOST_ACTION_ALLOC_TGTS
);
3846 case IBMVFC_MAD_FAILED
:
3847 level
+= ibmvfc_retry_host_init(vhost
);
3848 ibmvfc_log(vhost
, level
, "Discover Targets failed: %s (%x:%x)\n",
3849 ibmvfc_get_cmd_error(rsp
->status
, rsp
->error
), rsp
->status
, rsp
->error
);
3851 case IBMVFC_MAD_DRIVER_FAILED
:
3854 dev_err(vhost
->dev
, "Invalid Discover Targets response: 0x%x\n", mad_status
);
3855 ibmvfc_link_down(vhost
, IBMVFC_LINK_DEAD
);
3859 ibmvfc_free_event(evt
);
3860 wake_up(&vhost
->work_wait_q
);
3864 * ibmvfc_discover_targets - Send Discover Targets MAD
3865 * @vhost: ibmvfc host struct
3868 static void ibmvfc_discover_targets(struct ibmvfc_host
*vhost
)
3870 struct ibmvfc_discover_targets
*mad
;
3871 struct ibmvfc_event
*evt
= ibmvfc_get_event(vhost
);
3873 ibmvfc_init_event(evt
, ibmvfc_discover_targets_done
, IBMVFC_MAD_FORMAT
);
3874 mad
= &evt
->iu
.discover_targets
;
3875 memset(mad
, 0, sizeof(*mad
));
3876 mad
->common
.version
= 1;
3877 mad
->common
.opcode
= IBMVFC_DISC_TARGETS
;
3878 mad
->common
.length
= sizeof(*mad
);
3879 mad
->bufflen
= vhost
->disc_buf_sz
;
3880 mad
->buffer
.va
= vhost
->disc_buf_dma
;
3881 mad
->buffer
.len
= vhost
->disc_buf_sz
;
3882 ibmvfc_set_host_action(vhost
, IBMVFC_HOST_ACTION_INIT_WAIT
);
3884 if (!ibmvfc_send_event(evt
, vhost
, default_timeout
))
3885 ibmvfc_dbg(vhost
, "Sent discover targets\n");
3887 ibmvfc_link_down(vhost
, IBMVFC_LINK_DEAD
);
3891 * ibmvfc_npiv_login_done - Completion handler for NPIV Login
3892 * @evt: ibmvfc event struct
3895 static void ibmvfc_npiv_login_done(struct ibmvfc_event
*evt
)
3897 struct ibmvfc_host
*vhost
= evt
->vhost
;
3898 u32 mad_status
= evt
->xfer_iu
->npiv_login
.common
.status
;
3899 struct ibmvfc_npiv_login_resp
*rsp
= &vhost
->login_buf
->resp
;
3900 unsigned int npiv_max_sectors
;
3901 int level
= IBMVFC_DEFAULT_LOG_LEVEL
;
3903 switch (mad_status
) {
3904 case IBMVFC_MAD_SUCCESS
:
3905 ibmvfc_free_event(evt
);
3907 case IBMVFC_MAD_FAILED
:
3908 if (ibmvfc_retry_cmd(rsp
->status
, rsp
->error
))
3909 level
+= ibmvfc_retry_host_init(vhost
);
3911 ibmvfc_link_down(vhost
, IBMVFC_LINK_DEAD
);
3912 ibmvfc_log(vhost
, level
, "NPIV Login failed: %s (%x:%x)\n",
3913 ibmvfc_get_cmd_error(rsp
->status
, rsp
->error
), rsp
->status
, rsp
->error
);
3914 ibmvfc_free_event(evt
);
3916 case IBMVFC_MAD_CRQ_ERROR
:
3917 ibmvfc_retry_host_init(vhost
);
3918 case IBMVFC_MAD_DRIVER_FAILED
:
3919 ibmvfc_free_event(evt
);
3922 dev_err(vhost
->dev
, "Invalid NPIV Login response: 0x%x\n", mad_status
);
3923 ibmvfc_link_down(vhost
, IBMVFC_LINK_DEAD
);
3924 ibmvfc_free_event(evt
);
3928 vhost
->client_migrated
= 0;
3930 if (!(rsp
->flags
& IBMVFC_NATIVE_FC
)) {
3931 dev_err(vhost
->dev
, "Virtual adapter does not support FC. %x\n",
3933 ibmvfc_link_down(vhost
, IBMVFC_LINK_DEAD
);
3934 wake_up(&vhost
->work_wait_q
);
3938 if (rsp
->max_cmds
<= IBMVFC_NUM_INTERNAL_REQ
) {
3939 dev_err(vhost
->dev
, "Virtual adapter supported queue depth too small: %d\n",
3941 ibmvfc_link_down(vhost
, IBMVFC_LINK_DEAD
);
3942 wake_up(&vhost
->work_wait_q
);
3946 vhost
->logged_in
= 1;
3947 npiv_max_sectors
= min((uint
)(rsp
->max_dma_len
>> 9), IBMVFC_MAX_SECTORS
);
3948 dev_info(vhost
->dev
, "Host partition: %s, device: %s %s %s max sectors %u\n",
3949 rsp
->partition_name
, rsp
->device_name
, rsp
->port_loc_code
,
3950 rsp
->drc_name
, npiv_max_sectors
);
3952 fc_host_fabric_name(vhost
->host
) = rsp
->node_name
;
3953 fc_host_node_name(vhost
->host
) = rsp
->node_name
;
3954 fc_host_port_name(vhost
->host
) = rsp
->port_name
;
3955 fc_host_port_id(vhost
->host
) = rsp
->scsi_id
;
3956 fc_host_port_type(vhost
->host
) = FC_PORTTYPE_NPIV
;
3957 fc_host_supported_classes(vhost
->host
) = 0;
3958 if (rsp
->service_parms
.class1_parms
[0] & 0x80000000)
3959 fc_host_supported_classes(vhost
->host
) |= FC_COS_CLASS1
;
3960 if (rsp
->service_parms
.class2_parms
[0] & 0x80000000)
3961 fc_host_supported_classes(vhost
->host
) |= FC_COS_CLASS2
;
3962 if (rsp
->service_parms
.class3_parms
[0] & 0x80000000)
3963 fc_host_supported_classes(vhost
->host
) |= FC_COS_CLASS3
;
3964 fc_host_maxframe_size(vhost
->host
) =
3965 rsp
->service_parms
.common
.bb_rcv_sz
& 0x0fff;
3967 vhost
->host
->can_queue
= rsp
->max_cmds
- IBMVFC_NUM_INTERNAL_REQ
;
3968 vhost
->host
->max_sectors
= npiv_max_sectors
;
3969 ibmvfc_set_host_action(vhost
, IBMVFC_HOST_ACTION_QUERY
);
3970 wake_up(&vhost
->work_wait_q
);
3974 * ibmvfc_npiv_login - Sends NPIV login
3975 * @vhost: ibmvfc host struct
3978 static void ibmvfc_npiv_login(struct ibmvfc_host
*vhost
)
3980 struct ibmvfc_npiv_login_mad
*mad
;
3981 struct ibmvfc_event
*evt
= ibmvfc_get_event(vhost
);
3983 ibmvfc_gather_partition_info(vhost
);
3984 ibmvfc_set_login_info(vhost
);
3985 ibmvfc_init_event(evt
, ibmvfc_npiv_login_done
, IBMVFC_MAD_FORMAT
);
3987 memcpy(vhost
->login_buf
, &vhost
->login_info
, sizeof(vhost
->login_info
));
3988 mad
= &evt
->iu
.npiv_login
;
3989 memset(mad
, 0, sizeof(struct ibmvfc_npiv_login_mad
));
3990 mad
->common
.version
= 1;
3991 mad
->common
.opcode
= IBMVFC_NPIV_LOGIN
;
3992 mad
->common
.length
= sizeof(struct ibmvfc_npiv_login_mad
);
3993 mad
->buffer
.va
= vhost
->login_buf_dma
;
3994 mad
->buffer
.len
= sizeof(*vhost
->login_buf
);
3996 ibmvfc_set_host_action(vhost
, IBMVFC_HOST_ACTION_INIT_WAIT
);
3998 if (!ibmvfc_send_event(evt
, vhost
, default_timeout
))
3999 ibmvfc_dbg(vhost
, "Sent NPIV login\n");
4001 ibmvfc_link_down(vhost
, IBMVFC_LINK_DEAD
);
4005 * ibmvfc_npiv_logout_done - Completion handler for NPIV Logout
4006 * @vhost: ibmvfc host struct
4009 static void ibmvfc_npiv_logout_done(struct ibmvfc_event
*evt
)
4011 struct ibmvfc_host
*vhost
= evt
->vhost
;
4012 u32 mad_status
= evt
->xfer_iu
->npiv_logout
.common
.status
;
4014 ibmvfc_free_event(evt
);
4016 switch (mad_status
) {
4017 case IBMVFC_MAD_SUCCESS
:
4018 if (list_empty(&vhost
->sent
) &&
4019 vhost
->action
== IBMVFC_HOST_ACTION_LOGO_WAIT
) {
4020 ibmvfc_init_host(vhost
);
4024 case IBMVFC_MAD_FAILED
:
4025 case IBMVFC_MAD_NOT_SUPPORTED
:
4026 case IBMVFC_MAD_CRQ_ERROR
:
4027 case IBMVFC_MAD_DRIVER_FAILED
:
4029 ibmvfc_dbg(vhost
, "NPIV Logout failed. 0x%X\n", mad_status
);
4033 ibmvfc_hard_reset_host(vhost
);
4037 * ibmvfc_npiv_logout - Issue an NPIV Logout
4038 * @vhost: ibmvfc host struct
4041 static void ibmvfc_npiv_logout(struct ibmvfc_host
*vhost
)
4043 struct ibmvfc_npiv_logout_mad
*mad
;
4044 struct ibmvfc_event
*evt
;
4046 evt
= ibmvfc_get_event(vhost
);
4047 ibmvfc_init_event(evt
, ibmvfc_npiv_logout_done
, IBMVFC_MAD_FORMAT
);
4049 mad
= &evt
->iu
.npiv_logout
;
4050 memset(mad
, 0, sizeof(*mad
));
4051 mad
->common
.version
= 1;
4052 mad
->common
.opcode
= IBMVFC_NPIV_LOGOUT
;
4053 mad
->common
.length
= sizeof(struct ibmvfc_npiv_logout_mad
);
4055 ibmvfc_set_host_action(vhost
, IBMVFC_HOST_ACTION_LOGO_WAIT
);
4057 if (!ibmvfc_send_event(evt
, vhost
, default_timeout
))
4058 ibmvfc_dbg(vhost
, "Sent NPIV logout\n");
4060 ibmvfc_link_down(vhost
, IBMVFC_LINK_DEAD
);
4064 * ibmvfc_dev_init_to_do - Is there target initialization work to do?
4065 * @vhost: ibmvfc host struct
4068 * 1 if work to do / 0 if not
4070 static int ibmvfc_dev_init_to_do(struct ibmvfc_host
*vhost
)
4072 struct ibmvfc_target
*tgt
;
4074 list_for_each_entry(tgt
, &vhost
->targets
, queue
) {
4075 if (tgt
->action
== IBMVFC_TGT_ACTION_INIT
||
4076 tgt
->action
== IBMVFC_TGT_ACTION_INIT_WAIT
)
4084 * __ibmvfc_work_to_do - Is there task level work to do? (no locking)
4085 * @vhost: ibmvfc host struct
4088 * 1 if work to do / 0 if not
4090 static int __ibmvfc_work_to_do(struct ibmvfc_host
*vhost
)
4092 struct ibmvfc_target
*tgt
;
4094 if (kthread_should_stop())
4096 switch (vhost
->action
) {
4097 case IBMVFC_HOST_ACTION_NONE
:
4098 case IBMVFC_HOST_ACTION_INIT_WAIT
:
4099 case IBMVFC_HOST_ACTION_LOGO_WAIT
:
4101 case IBMVFC_HOST_ACTION_TGT_INIT
:
4102 case IBMVFC_HOST_ACTION_QUERY_TGTS
:
4103 if (vhost
->discovery_threads
== disc_threads
)
4105 list_for_each_entry(tgt
, &vhost
->targets
, queue
)
4106 if (tgt
->action
== IBMVFC_TGT_ACTION_INIT
)
4108 list_for_each_entry(tgt
, &vhost
->targets
, queue
)
4109 if (tgt
->action
== IBMVFC_TGT_ACTION_INIT_WAIT
)
4112 case IBMVFC_HOST_ACTION_LOGO
:
4113 case IBMVFC_HOST_ACTION_INIT
:
4114 case IBMVFC_HOST_ACTION_ALLOC_TGTS
:
4115 case IBMVFC_HOST_ACTION_TGT_DEL
:
4116 case IBMVFC_HOST_ACTION_TGT_DEL_FAILED
:
4117 case IBMVFC_HOST_ACTION_QUERY
:
4126 * ibmvfc_work_to_do - Is there task level work to do?
4127 * @vhost: ibmvfc host struct
4130 * 1 if work to do / 0 if not
4132 static int ibmvfc_work_to_do(struct ibmvfc_host
*vhost
)
4134 unsigned long flags
;
4137 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
4138 rc
= __ibmvfc_work_to_do(vhost
);
4139 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
4144 * ibmvfc_log_ae - Log async events if necessary
4145 * @vhost: ibmvfc host struct
4146 * @events: events to log
4149 static void ibmvfc_log_ae(struct ibmvfc_host
*vhost
, int events
)
4151 if (events
& IBMVFC_AE_RSCN
)
4152 fc_host_post_event(vhost
->host
, fc_get_event_number(), FCH_EVT_RSCN
, 0);
4153 if ((events
& IBMVFC_AE_LINKDOWN
) &&
4154 vhost
->state
>= IBMVFC_HALTED
)
4155 fc_host_post_event(vhost
->host
, fc_get_event_number(), FCH_EVT_LINKDOWN
, 0);
4156 if ((events
& IBMVFC_AE_LINKUP
) &&
4157 vhost
->state
== IBMVFC_INITIALIZING
)
4158 fc_host_post_event(vhost
->host
, fc_get_event_number(), FCH_EVT_LINKUP
, 0);
4162 * ibmvfc_tgt_add_rport - Tell the FC transport about a new remote port
4163 * @tgt: ibmvfc target struct
4166 static void ibmvfc_tgt_add_rport(struct ibmvfc_target
*tgt
)
4168 struct ibmvfc_host
*vhost
= tgt
->vhost
;
4169 struct fc_rport
*rport
;
4170 unsigned long flags
;
4172 tgt_dbg(tgt
, "Adding rport\n");
4173 rport
= fc_remote_port_add(vhost
->host
, 0, &tgt
->ids
);
4174 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
4176 if (rport
&& tgt
->action
== IBMVFC_TGT_ACTION_DEL_RPORT
) {
4177 tgt_dbg(tgt
, "Deleting rport\n");
4178 list_del(&tgt
->queue
);
4179 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
4180 fc_remote_port_delete(rport
);
4181 del_timer_sync(&tgt
->timer
);
4182 kref_put(&tgt
->kref
, ibmvfc_release_tgt
);
4187 tgt_dbg(tgt
, "rport add succeeded\n");
4189 rport
->maxframe_size
= tgt
->service_parms
.common
.bb_rcv_sz
& 0x0fff;
4190 rport
->supported_classes
= 0;
4191 tgt
->target_id
= rport
->scsi_target_id
;
4192 if (tgt
->service_parms
.class1_parms
[0] & 0x80000000)
4193 rport
->supported_classes
|= FC_COS_CLASS1
;
4194 if (tgt
->service_parms
.class2_parms
[0] & 0x80000000)
4195 rport
->supported_classes
|= FC_COS_CLASS2
;
4196 if (tgt
->service_parms
.class3_parms
[0] & 0x80000000)
4197 rport
->supported_classes
|= FC_COS_CLASS3
;
4199 blk_queue_max_segments(rport
->rqst_q
, 1);
4201 tgt_dbg(tgt
, "rport add failed\n");
4202 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
4206 * ibmvfc_do_work - Do task level work
4207 * @vhost: ibmvfc host struct
4210 static void ibmvfc_do_work(struct ibmvfc_host
*vhost
)
4212 struct ibmvfc_target
*tgt
;
4213 unsigned long flags
;
4214 struct fc_rport
*rport
;
4216 ibmvfc_log_ae(vhost
, vhost
->events_to_log
);
4217 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
4218 vhost
->events_to_log
= 0;
4219 switch (vhost
->action
) {
4220 case IBMVFC_HOST_ACTION_NONE
:
4221 case IBMVFC_HOST_ACTION_LOGO_WAIT
:
4222 case IBMVFC_HOST_ACTION_INIT_WAIT
:
4224 case IBMVFC_HOST_ACTION_LOGO
:
4225 vhost
->job_step(vhost
);
4227 case IBMVFC_HOST_ACTION_INIT
:
4228 BUG_ON(vhost
->state
!= IBMVFC_INITIALIZING
);
4229 if (vhost
->delay_init
) {
4230 vhost
->delay_init
= 0;
4231 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
4235 vhost
->job_step(vhost
);
4237 case IBMVFC_HOST_ACTION_QUERY
:
4238 list_for_each_entry(tgt
, &vhost
->targets
, queue
)
4239 ibmvfc_init_tgt(tgt
, ibmvfc_tgt_query_target
);
4240 ibmvfc_set_host_action(vhost
, IBMVFC_HOST_ACTION_QUERY_TGTS
);
4242 case IBMVFC_HOST_ACTION_QUERY_TGTS
:
4243 list_for_each_entry(tgt
, &vhost
->targets
, queue
) {
4244 if (tgt
->action
== IBMVFC_TGT_ACTION_INIT
) {
4250 if (!ibmvfc_dev_init_to_do(vhost
))
4251 ibmvfc_set_host_action(vhost
, IBMVFC_HOST_ACTION_TGT_DEL
);
4253 case IBMVFC_HOST_ACTION_TGT_DEL
:
4254 case IBMVFC_HOST_ACTION_TGT_DEL_FAILED
:
4255 list_for_each_entry(tgt
, &vhost
->targets
, queue
) {
4256 if (tgt
->action
== IBMVFC_TGT_ACTION_DEL_RPORT
) {
4257 tgt_dbg(tgt
, "Deleting rport\n");
4260 list_del(&tgt
->queue
);
4261 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
4263 fc_remote_port_delete(rport
);
4264 del_timer_sync(&tgt
->timer
);
4265 kref_put(&tgt
->kref
, ibmvfc_release_tgt
);
4270 if (vhost
->state
== IBMVFC_INITIALIZING
) {
4271 if (vhost
->action
== IBMVFC_HOST_ACTION_TGT_DEL_FAILED
) {
4272 if (vhost
->reinit
) {
4274 scsi_block_requests(vhost
->host
);
4275 ibmvfc_set_host_action(vhost
, IBMVFC_HOST_ACTION_QUERY
);
4276 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
4278 ibmvfc_set_host_state(vhost
, IBMVFC_ACTIVE
);
4279 ibmvfc_set_host_action(vhost
, IBMVFC_HOST_ACTION_NONE
);
4280 wake_up(&vhost
->init_wait_q
);
4281 schedule_work(&vhost
->rport_add_work_q
);
4282 vhost
->init_retries
= 0;
4283 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
4284 scsi_unblock_requests(vhost
->host
);
4289 ibmvfc_set_host_action(vhost
, IBMVFC_HOST_ACTION_INIT
);
4290 vhost
->job_step
= ibmvfc_discover_targets
;
4293 ibmvfc_set_host_action(vhost
, IBMVFC_HOST_ACTION_NONE
);
4294 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
4295 scsi_unblock_requests(vhost
->host
);
4296 wake_up(&vhost
->init_wait_q
);
4300 case IBMVFC_HOST_ACTION_ALLOC_TGTS
:
4301 ibmvfc_set_host_action(vhost
, IBMVFC_HOST_ACTION_TGT_INIT
);
4302 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
4303 ibmvfc_alloc_targets(vhost
);
4304 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
4306 case IBMVFC_HOST_ACTION_TGT_INIT
:
4307 list_for_each_entry(tgt
, &vhost
->targets
, queue
) {
4308 if (tgt
->action
== IBMVFC_TGT_ACTION_INIT
) {
4314 if (!ibmvfc_dev_init_to_do(vhost
))
4315 ibmvfc_set_host_action(vhost
, IBMVFC_HOST_ACTION_TGT_DEL_FAILED
);
4321 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
4325 * ibmvfc_work - Do task level work
4326 * @data: ibmvfc host struct
4331 static int ibmvfc_work(void *data
)
4333 struct ibmvfc_host
*vhost
= data
;
4336 set_user_nice(current
, -20);
4339 rc
= wait_event_interruptible(vhost
->work_wait_q
,
4340 ibmvfc_work_to_do(vhost
));
4344 if (kthread_should_stop())
4347 ibmvfc_do_work(vhost
);
4350 ibmvfc_dbg(vhost
, "ibmvfc kthread exiting...\n");
4355 * ibmvfc_init_crq - Initializes and registers CRQ with hypervisor
4356 * @vhost: ibmvfc host struct
4358 * Allocates a page for messages, maps it for dma, and registers
4359 * the crq with the hypervisor.
4362 * zero on success / other on failure
4364 static int ibmvfc_init_crq(struct ibmvfc_host
*vhost
)
4366 int rc
, retrc
= -ENOMEM
;
4367 struct device
*dev
= vhost
->dev
;
4368 struct vio_dev
*vdev
= to_vio_dev(dev
);
4369 struct ibmvfc_crq_queue
*crq
= &vhost
->crq
;
4372 crq
->msgs
= (struct ibmvfc_crq
*)get_zeroed_page(GFP_KERNEL
);
4377 crq
->size
= PAGE_SIZE
/ sizeof(*crq
->msgs
);
4378 crq
->msg_token
= dma_map_single(dev
, crq
->msgs
,
4379 PAGE_SIZE
, DMA_BIDIRECTIONAL
);
4381 if (dma_mapping_error(dev
, crq
->msg_token
))
4384 retrc
= rc
= plpar_hcall_norets(H_REG_CRQ
, vdev
->unit_address
,
4385 crq
->msg_token
, PAGE_SIZE
);
4387 if (rc
== H_RESOURCE
)
4388 /* maybe kexecing and resource is busy. try a reset */
4389 retrc
= rc
= ibmvfc_reset_crq(vhost
);
4392 dev_warn(dev
, "Partner adapter not ready\n");
4394 dev_warn(dev
, "Error %d opening adapter\n", rc
);
4395 goto reg_crq_failed
;
4400 tasklet_init(&vhost
->tasklet
, (void *)ibmvfc_tasklet
, (unsigned long)vhost
);
4402 if ((rc
= request_irq(vdev
->irq
, ibmvfc_interrupt
, 0, IBMVFC_NAME
, vhost
))) {
4403 dev_err(dev
, "Couldn't register irq 0x%x. rc=%d\n", vdev
->irq
, rc
);
4404 goto req_irq_failed
;
4407 if ((rc
= vio_enable_interrupts(vdev
))) {
4408 dev_err(dev
, "Error %d enabling interrupts\n", rc
);
4409 goto req_irq_failed
;
4417 tasklet_kill(&vhost
->tasklet
);
4419 rc
= plpar_hcall_norets(H_FREE_CRQ
, vdev
->unit_address
);
4420 } while (rc
== H_BUSY
|| H_IS_LONG_BUSY(rc
));
4422 dma_unmap_single(dev
, crq
->msg_token
, PAGE_SIZE
, DMA_BIDIRECTIONAL
);
4424 free_page((unsigned long)crq
->msgs
);
4429 * ibmvfc_free_mem - Free memory for vhost
4430 * @vhost: ibmvfc host struct
4435 static void ibmvfc_free_mem(struct ibmvfc_host
*vhost
)
4437 struct ibmvfc_async_crq_queue
*async_q
= &vhost
->async_crq
;
4440 mempool_destroy(vhost
->tgt_pool
);
4441 kfree(vhost
->trace
);
4442 dma_free_coherent(vhost
->dev
, vhost
->disc_buf_sz
, vhost
->disc_buf
,
4443 vhost
->disc_buf_dma
);
4444 dma_free_coherent(vhost
->dev
, sizeof(*vhost
->login_buf
),
4445 vhost
->login_buf
, vhost
->login_buf_dma
);
4446 dma_pool_destroy(vhost
->sg_pool
);
4447 dma_unmap_single(vhost
->dev
, async_q
->msg_token
,
4448 async_q
->size
* sizeof(*async_q
->msgs
), DMA_BIDIRECTIONAL
);
4449 free_page((unsigned long)async_q
->msgs
);
4454 * ibmvfc_alloc_mem - Allocate memory for vhost
4455 * @vhost: ibmvfc host struct
4458 * 0 on success / non-zero on failure
4460 static int ibmvfc_alloc_mem(struct ibmvfc_host
*vhost
)
4462 struct ibmvfc_async_crq_queue
*async_q
= &vhost
->async_crq
;
4463 struct device
*dev
= vhost
->dev
;
4466 async_q
->msgs
= (struct ibmvfc_async_crq
*)get_zeroed_page(GFP_KERNEL
);
4467 if (!async_q
->msgs
) {
4468 dev_err(dev
, "Couldn't allocate async queue.\n");
4472 async_q
->size
= PAGE_SIZE
/ sizeof(struct ibmvfc_async_crq
);
4473 async_q
->msg_token
= dma_map_single(dev
, async_q
->msgs
,
4474 async_q
->size
* sizeof(*async_q
->msgs
),
4477 if (dma_mapping_error(dev
, async_q
->msg_token
)) {
4478 dev_err(dev
, "Failed to map async queue\n");
4479 goto free_async_crq
;
4482 vhost
->sg_pool
= dma_pool_create(IBMVFC_NAME
, dev
,
4483 SG_ALL
* sizeof(struct srp_direct_buf
),
4484 sizeof(struct srp_direct_buf
), 0);
4486 if (!vhost
->sg_pool
) {
4487 dev_err(dev
, "Failed to allocate sg pool\n");
4488 goto unmap_async_crq
;
4491 vhost
->login_buf
= dma_alloc_coherent(dev
, sizeof(*vhost
->login_buf
),
4492 &vhost
->login_buf_dma
, GFP_KERNEL
);
4494 if (!vhost
->login_buf
) {
4495 dev_err(dev
, "Couldn't allocate NPIV login buffer\n");
4499 vhost
->disc_buf_sz
= sizeof(vhost
->disc_buf
->scsi_id
[0]) * max_targets
;
4500 vhost
->disc_buf
= dma_alloc_coherent(dev
, vhost
->disc_buf_sz
,
4501 &vhost
->disc_buf_dma
, GFP_KERNEL
);
4503 if (!vhost
->disc_buf
) {
4504 dev_err(dev
, "Couldn't allocate Discover Targets buffer\n");
4505 goto free_login_buffer
;
4508 vhost
->trace
= kcalloc(IBMVFC_NUM_TRACE_ENTRIES
,
4509 sizeof(struct ibmvfc_trace_entry
), GFP_KERNEL
);
4512 goto free_disc_buffer
;
4514 vhost
->tgt_pool
= mempool_create_kmalloc_pool(IBMVFC_TGT_MEMPOOL_SZ
,
4515 sizeof(struct ibmvfc_target
));
4517 if (!vhost
->tgt_pool
) {
4518 dev_err(dev
, "Couldn't allocate target memory pool\n");
4526 kfree(vhost
->trace
);
4528 dma_free_coherent(dev
, vhost
->disc_buf_sz
, vhost
->disc_buf
,
4529 vhost
->disc_buf_dma
);
4531 dma_free_coherent(dev
, sizeof(*vhost
->login_buf
),
4532 vhost
->login_buf
, vhost
->login_buf_dma
);
4534 dma_pool_destroy(vhost
->sg_pool
);
4536 dma_unmap_single(dev
, async_q
->msg_token
,
4537 async_q
->size
* sizeof(*async_q
->msgs
), DMA_BIDIRECTIONAL
);
4539 free_page((unsigned long)async_q
->msgs
);
4546 * ibmvfc_rport_add_thread - Worker thread for rport adds
4547 * @work: work struct
4550 static void ibmvfc_rport_add_thread(struct work_struct
*work
)
4552 struct ibmvfc_host
*vhost
= container_of(work
, struct ibmvfc_host
,
4554 struct ibmvfc_target
*tgt
;
4555 struct fc_rport
*rport
;
4556 unsigned long flags
;
4560 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
4563 if (vhost
->state
!= IBMVFC_ACTIVE
)
4566 list_for_each_entry(tgt
, &vhost
->targets
, queue
) {
4567 if (tgt
->add_rport
) {
4570 kref_get(&tgt
->kref
);
4573 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
4574 ibmvfc_tgt_add_rport(tgt
);
4575 } else if (get_device(&rport
->dev
)) {
4576 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
4577 tgt_dbg(tgt
, "Setting rport roles\n");
4578 fc_remote_port_rolechg(rport
, tgt
->ids
.roles
);
4579 put_device(&rport
->dev
);
4582 kref_put(&tgt
->kref
, ibmvfc_release_tgt
);
4583 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
4589 if (vhost
->state
== IBMVFC_ACTIVE
)
4590 vhost
->scan_complete
= 1;
4591 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
4596 * ibmvfc_probe - Adapter hot plug add entry point
4597 * @vdev: vio device struct
4598 * @id: vio device id struct
4601 * 0 on success / non-zero on failure
4603 static int ibmvfc_probe(struct vio_dev
*vdev
, const struct vio_device_id
*id
)
4605 struct ibmvfc_host
*vhost
;
4606 struct Scsi_Host
*shost
;
4607 struct device
*dev
= &vdev
->dev
;
4611 shost
= scsi_host_alloc(&driver_template
, sizeof(*vhost
));
4613 dev_err(dev
, "Couldn't allocate host data\n");
4617 shost
->transportt
= ibmvfc_transport_template
;
4618 shost
->can_queue
= max_requests
;
4619 shost
->max_lun
= max_lun
;
4620 shost
->max_id
= max_targets
;
4621 shost
->max_sectors
= IBMVFC_MAX_SECTORS
;
4622 shost
->max_cmd_len
= IBMVFC_MAX_CDB_LEN
;
4623 shost
->unique_id
= shost
->host_no
;
4625 vhost
= shost_priv(shost
);
4626 INIT_LIST_HEAD(&vhost
->sent
);
4627 INIT_LIST_HEAD(&vhost
->free
);
4628 INIT_LIST_HEAD(&vhost
->targets
);
4629 sprintf(vhost
->name
, IBMVFC_NAME
);
4630 vhost
->host
= shost
;
4632 vhost
->partition_number
= -1;
4633 vhost
->log_level
= log_level
;
4634 vhost
->task_set
= 1;
4635 strcpy(vhost
->partition_name
, "UNKNOWN");
4636 init_waitqueue_head(&vhost
->work_wait_q
);
4637 init_waitqueue_head(&vhost
->init_wait_q
);
4638 INIT_WORK(&vhost
->rport_add_work_q
, ibmvfc_rport_add_thread
);
4639 mutex_init(&vhost
->passthru_mutex
);
4641 if ((rc
= ibmvfc_alloc_mem(vhost
)))
4642 goto free_scsi_host
;
4644 vhost
->work_thread
= kthread_run(ibmvfc_work
, vhost
, "%s_%d", IBMVFC_NAME
,
4647 if (IS_ERR(vhost
->work_thread
)) {
4648 dev_err(dev
, "Couldn't create kernel thread: %ld\n",
4649 PTR_ERR(vhost
->work_thread
));
4653 if ((rc
= ibmvfc_init_crq(vhost
))) {
4654 dev_err(dev
, "Couldn't initialize crq. rc=%d\n", rc
);
4658 if ((rc
= ibmvfc_init_event_pool(vhost
))) {
4659 dev_err(dev
, "Couldn't initialize event pool. rc=%d\n", rc
);
4663 if ((rc
= scsi_add_host(shost
, dev
)))
4664 goto release_event_pool
;
4666 if ((rc
= ibmvfc_create_trace_file(&shost
->shost_dev
.kobj
,
4667 &ibmvfc_trace_attr
))) {
4668 dev_err(dev
, "Failed to create trace file. rc=%d\n", rc
);
4672 if (shost_to_fc_host(shost
)->rqst_q
)
4673 blk_queue_max_segments(shost_to_fc_host(shost
)->rqst_q
, 1);
4674 dev_set_drvdata(dev
, vhost
);
4675 spin_lock(&ibmvfc_driver_lock
);
4676 list_add_tail(&vhost
->queue
, &ibmvfc_head
);
4677 spin_unlock(&ibmvfc_driver_lock
);
4679 ibmvfc_send_crq_init(vhost
);
4680 scsi_scan_host(shost
);
4684 scsi_remove_host(shost
);
4686 ibmvfc_free_event_pool(vhost
);
4688 ibmvfc_release_crq_queue(vhost
);
4690 kthread_stop(vhost
->work_thread
);
4692 ibmvfc_free_mem(vhost
);
4694 scsi_host_put(shost
);
4701 * ibmvfc_remove - Adapter hot plug remove entry point
4702 * @vdev: vio device struct
4707 static int ibmvfc_remove(struct vio_dev
*vdev
)
4709 struct ibmvfc_host
*vhost
= dev_get_drvdata(&vdev
->dev
);
4710 unsigned long flags
;
4713 ibmvfc_remove_trace_file(&vhost
->host
->shost_dev
.kobj
, &ibmvfc_trace_attr
);
4715 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
4716 ibmvfc_link_down(vhost
, IBMVFC_HOST_OFFLINE
);
4717 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
4719 ibmvfc_wait_while_resetting(vhost
);
4720 ibmvfc_release_crq_queue(vhost
);
4721 kthread_stop(vhost
->work_thread
);
4722 fc_remove_host(vhost
->host
);
4723 scsi_remove_host(vhost
->host
);
4725 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
4726 ibmvfc_purge_requests(vhost
, DID_ERROR
);
4727 ibmvfc_free_event_pool(vhost
);
4728 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
4730 ibmvfc_free_mem(vhost
);
4731 spin_lock(&ibmvfc_driver_lock
);
4732 list_del(&vhost
->queue
);
4733 spin_unlock(&ibmvfc_driver_lock
);
4734 scsi_host_put(vhost
->host
);
4740 * ibmvfc_resume - Resume from suspend
4741 * @dev: device struct
4743 * We may have lost an interrupt across suspend/resume, so kick the
4747 static int ibmvfc_resume(struct device
*dev
)
4749 unsigned long flags
;
4750 struct ibmvfc_host
*vhost
= dev_get_drvdata(dev
);
4751 struct vio_dev
*vdev
= to_vio_dev(dev
);
4753 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
4754 vio_disable_interrupts(vdev
);
4755 tasklet_schedule(&vhost
->tasklet
);
4756 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
4761 * ibmvfc_get_desired_dma - Calculate DMA resources needed by the driver
4762 * @vdev: vio device struct
4765 * Number of bytes the driver will need to DMA map at the same time in
4766 * order to perform well.
4768 static unsigned long ibmvfc_get_desired_dma(struct vio_dev
*vdev
)
4770 unsigned long pool_dma
= max_requests
* sizeof(union ibmvfc_iu
);
4771 return pool_dma
+ ((512 * 1024) * driver_template
.cmd_per_lun
);
4774 static struct vio_device_id ibmvfc_device_table
[] __devinitdata
= {
4775 {"fcp", "IBM,vfc-client"},
4778 MODULE_DEVICE_TABLE(vio
, ibmvfc_device_table
);
4780 static struct dev_pm_ops ibmvfc_pm_ops
= {
4781 .resume
= ibmvfc_resume
4784 static struct vio_driver ibmvfc_driver
= {
4785 .id_table
= ibmvfc_device_table
,
4786 .probe
= ibmvfc_probe
,
4787 .remove
= ibmvfc_remove
,
4788 .get_desired_dma
= ibmvfc_get_desired_dma
,
4790 .name
= IBMVFC_NAME
,
4791 .owner
= THIS_MODULE
,
4792 .pm
= &ibmvfc_pm_ops
,
4796 static struct fc_function_template ibmvfc_transport_functions
= {
4797 .show_host_fabric_name
= 1,
4798 .show_host_node_name
= 1,
4799 .show_host_port_name
= 1,
4800 .show_host_supported_classes
= 1,
4801 .show_host_port_type
= 1,
4802 .show_host_port_id
= 1,
4803 .show_host_maxframe_size
= 1,
4805 .get_host_port_state
= ibmvfc_get_host_port_state
,
4806 .show_host_port_state
= 1,
4808 .get_host_speed
= ibmvfc_get_host_speed
,
4809 .show_host_speed
= 1,
4811 .issue_fc_host_lip
= ibmvfc_issue_fc_host_lip
,
4812 .terminate_rport_io
= ibmvfc_terminate_rport_io
,
4814 .show_rport_maxframe_size
= 1,
4815 .show_rport_supported_classes
= 1,
4817 .set_rport_dev_loss_tmo
= ibmvfc_set_rport_dev_loss_tmo
,
4818 .show_rport_dev_loss_tmo
= 1,
4820 .get_starget_node_name
= ibmvfc_get_starget_node_name
,
4821 .show_starget_node_name
= 1,
4823 .get_starget_port_name
= ibmvfc_get_starget_port_name
,
4824 .show_starget_port_name
= 1,
4826 .get_starget_port_id
= ibmvfc_get_starget_port_id
,
4827 .show_starget_port_id
= 1,
4829 .bsg_request
= ibmvfc_bsg_request
,
4830 .bsg_timeout
= ibmvfc_bsg_timeout
,
4834 * ibmvfc_module_init - Initialize the ibmvfc module
4837 * 0 on success / other on failure
4839 static int __init
ibmvfc_module_init(void)
4843 if (!firmware_has_feature(FW_FEATURE_VIO
))
4846 printk(KERN_INFO IBMVFC_NAME
": IBM Virtual Fibre Channel Driver version: %s %s\n",
4847 IBMVFC_DRIVER_VERSION
, IBMVFC_DRIVER_DATE
);
4849 ibmvfc_transport_template
= fc_attach_transport(&ibmvfc_transport_functions
);
4850 if (!ibmvfc_transport_template
)
4853 rc
= vio_register_driver(&ibmvfc_driver
);
4855 fc_release_transport(ibmvfc_transport_template
);
4860 * ibmvfc_module_exit - Teardown the ibmvfc module
4865 static void __exit
ibmvfc_module_exit(void)
4867 vio_unregister_driver(&ibmvfc_driver
);
4868 fc_release_transport(ibmvfc_transport_template
);
4871 module_init(ibmvfc_module_init
);
4872 module_exit(ibmvfc_module_exit
);