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>
31 #include <linux/slab.h>
34 #include <linux/stringify.h>
35 #include <asm/firmware.h>
38 #include <scsi/scsi.h>
39 #include <scsi/scsi_cmnd.h>
40 #include <scsi/scsi_host.h>
41 #include <scsi/scsi_device.h>
42 #include <scsi/scsi_tcq.h>
43 #include <scsi/scsi_transport_fc.h>
44 #include <scsi/scsi_bsg_fc.h>
47 static unsigned int init_timeout
= IBMVFC_INIT_TIMEOUT
;
48 static unsigned int default_timeout
= IBMVFC_DEFAULT_TIMEOUT
;
49 static unsigned int max_lun
= IBMVFC_MAX_LUN
;
50 static unsigned int max_targets
= IBMVFC_MAX_TARGETS
;
51 static unsigned int max_requests
= IBMVFC_MAX_REQUESTS_DEFAULT
;
52 static unsigned int disc_threads
= IBMVFC_MAX_DISC_THREADS
;
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(log_level
, log_level
, uint
, 0);
87 MODULE_PARM_DESC(log_level
, "Set to 0 - 4 for increasing verbosity of device driver. "
88 "[Default=" __stringify(IBMVFC_DEFAULT_LOG_LEVEL
) "]");
98 { IBMVFC_FABRIC_MAPPED
, IBMVFC_UNABLE_TO_ESTABLISH
, DID_ERROR
, 1, 1, "unable to establish" },
99 { IBMVFC_FABRIC_MAPPED
, IBMVFC_XPORT_FAULT
, DID_OK
, 1, 0, "transport fault" },
100 { IBMVFC_FABRIC_MAPPED
, IBMVFC_CMD_TIMEOUT
, DID_TIME_OUT
, 1, 1, "command timeout" },
101 { IBMVFC_FABRIC_MAPPED
, IBMVFC_ENETDOWN
, DID_TRANSPORT_DISRUPTED
, 1, 1, "network down" },
102 { IBMVFC_FABRIC_MAPPED
, IBMVFC_HW_FAILURE
, DID_ERROR
, 1, 1, "hardware failure" },
103 { IBMVFC_FABRIC_MAPPED
, IBMVFC_LINK_DOWN_ERR
, DID_REQUEUE
, 0, 0, "link down" },
104 { IBMVFC_FABRIC_MAPPED
, IBMVFC_LINK_DEAD_ERR
, DID_ERROR
, 0, 0, "link dead" },
105 { IBMVFC_FABRIC_MAPPED
, IBMVFC_UNABLE_TO_REGISTER
, DID_ERROR
, 1, 1, "unable to register" },
106 { IBMVFC_FABRIC_MAPPED
, IBMVFC_XPORT_BUSY
, DID_BUS_BUSY
, 1, 0, "transport busy" },
107 { IBMVFC_FABRIC_MAPPED
, IBMVFC_XPORT_DEAD
, DID_ERROR
, 0, 1, "transport dead" },
108 { IBMVFC_FABRIC_MAPPED
, IBMVFC_CONFIG_ERROR
, DID_ERROR
, 1, 1, "configuration error" },
109 { IBMVFC_FABRIC_MAPPED
, IBMVFC_NAME_SERVER_FAIL
, DID_ERROR
, 1, 1, "name server failure" },
110 { IBMVFC_FABRIC_MAPPED
, IBMVFC_LINK_HALTED
, DID_REQUEUE
, 1, 0, "link halted" },
111 { IBMVFC_FABRIC_MAPPED
, IBMVFC_XPORT_GENERAL
, DID_OK
, 1, 0, "general transport error" },
113 { IBMVFC_VIOS_FAILURE
, IBMVFC_CRQ_FAILURE
, DID_REQUEUE
, 1, 1, "CRQ failure" },
114 { IBMVFC_VIOS_FAILURE
, IBMVFC_SW_FAILURE
, DID_ERROR
, 0, 1, "software failure" },
115 { IBMVFC_VIOS_FAILURE
, IBMVFC_INVALID_PARAMETER
, DID_ERROR
, 0, 1, "invalid parameter" },
116 { IBMVFC_VIOS_FAILURE
, IBMVFC_MISSING_PARAMETER
, DID_ERROR
, 0, 1, "missing parameter" },
117 { IBMVFC_VIOS_FAILURE
, IBMVFC_HOST_IO_BUS
, DID_ERROR
, 1, 1, "host I/O bus failure" },
118 { IBMVFC_VIOS_FAILURE
, IBMVFC_TRANS_CANCELLED
, DID_ERROR
, 0, 1, "transaction cancelled" },
119 { IBMVFC_VIOS_FAILURE
, IBMVFC_TRANS_CANCELLED_IMPLICIT
, DID_ERROR
, 0, 1, "transaction cancelled implicit" },
120 { IBMVFC_VIOS_FAILURE
, IBMVFC_INSUFFICIENT_RESOURCE
, DID_REQUEUE
, 1, 1, "insufficient resources" },
121 { IBMVFC_VIOS_FAILURE
, IBMVFC_PLOGI_REQUIRED
, DID_ERROR
, 0, 1, "port login required" },
122 { IBMVFC_VIOS_FAILURE
, IBMVFC_COMMAND_FAILED
, DID_ERROR
, 1, 1, "command failed" },
124 { IBMVFC_FC_FAILURE
, IBMVFC_INVALID_ELS_CMD_CODE
, DID_ERROR
, 0, 1, "invalid ELS command code" },
125 { IBMVFC_FC_FAILURE
, IBMVFC_INVALID_VERSION
, DID_ERROR
, 0, 1, "invalid version level" },
126 { IBMVFC_FC_FAILURE
, IBMVFC_LOGICAL_ERROR
, DID_ERROR
, 1, 1, "logical error" },
127 { IBMVFC_FC_FAILURE
, IBMVFC_INVALID_CT_IU_SIZE
, DID_ERROR
, 0, 1, "invalid CT_IU size" },
128 { IBMVFC_FC_FAILURE
, IBMVFC_LOGICAL_BUSY
, DID_REQUEUE
, 1, 0, "logical busy" },
129 { IBMVFC_FC_FAILURE
, IBMVFC_PROTOCOL_ERROR
, DID_ERROR
, 1, 1, "protocol error" },
130 { IBMVFC_FC_FAILURE
, IBMVFC_UNABLE_TO_PERFORM_REQ
, DID_ERROR
, 1, 1, "unable to perform request" },
131 { IBMVFC_FC_FAILURE
, IBMVFC_CMD_NOT_SUPPORTED
, DID_ERROR
, 0, 0, "command not supported" },
132 { IBMVFC_FC_FAILURE
, IBMVFC_SERVER_NOT_AVAIL
, DID_ERROR
, 0, 1, "server not available" },
133 { IBMVFC_FC_FAILURE
, IBMVFC_CMD_IN_PROGRESS
, DID_ERROR
, 0, 1, "command already in progress" },
134 { IBMVFC_FC_FAILURE
, IBMVFC_VENDOR_SPECIFIC
, DID_ERROR
, 1, 1, "vendor specific" },
136 { IBMVFC_FC_SCSI_ERROR
, 0, DID_OK
, 1, 0, "SCSI error" },
139 static void ibmvfc_npiv_login(struct ibmvfc_host
*);
140 static void ibmvfc_tgt_send_prli(struct ibmvfc_target
*);
141 static void ibmvfc_tgt_send_plogi(struct ibmvfc_target
*);
142 static void ibmvfc_tgt_query_target(struct ibmvfc_target
*);
143 static void ibmvfc_npiv_logout(struct ibmvfc_host
*);
145 static const char *unknown_error
= "unknown error";
147 #ifdef CONFIG_SCSI_IBMVFC_TRACE
149 * ibmvfc_trc_start - Log a start trace entry
150 * @evt: ibmvfc event struct
153 static void ibmvfc_trc_start(struct ibmvfc_event
*evt
)
155 struct ibmvfc_host
*vhost
= evt
->vhost
;
156 struct ibmvfc_cmd
*vfc_cmd
= &evt
->iu
.cmd
;
157 struct ibmvfc_mad_common
*mad
= &evt
->iu
.mad_common
;
158 struct ibmvfc_trace_entry
*entry
;
160 entry
= &vhost
->trace
[vhost
->trace_index
++];
162 entry
->time
= jiffies
;
163 entry
->fmt
= evt
->crq
.format
;
164 entry
->type
= IBMVFC_TRC_START
;
166 switch (entry
->fmt
) {
167 case IBMVFC_CMD_FORMAT
:
168 entry
->op_code
= vfc_cmd
->iu
.cdb
[0];
169 entry
->scsi_id
= vfc_cmd
->tgt_scsi_id
;
170 entry
->lun
= scsilun_to_int(&vfc_cmd
->iu
.lun
);
171 entry
->tmf_flags
= vfc_cmd
->iu
.tmf_flags
;
172 entry
->u
.start
.xfer_len
= vfc_cmd
->iu
.xfer_len
;
174 case IBMVFC_MAD_FORMAT
:
175 entry
->op_code
= mad
->opcode
;
183 * ibmvfc_trc_end - Log an end trace entry
184 * @evt: ibmvfc event struct
187 static void ibmvfc_trc_end(struct ibmvfc_event
*evt
)
189 struct ibmvfc_host
*vhost
= evt
->vhost
;
190 struct ibmvfc_cmd
*vfc_cmd
= &evt
->xfer_iu
->cmd
;
191 struct ibmvfc_mad_common
*mad
= &evt
->xfer_iu
->mad_common
;
192 struct ibmvfc_trace_entry
*entry
= &vhost
->trace
[vhost
->trace_index
++];
195 entry
->time
= jiffies
;
196 entry
->fmt
= evt
->crq
.format
;
197 entry
->type
= IBMVFC_TRC_END
;
199 switch (entry
->fmt
) {
200 case IBMVFC_CMD_FORMAT
:
201 entry
->op_code
= vfc_cmd
->iu
.cdb
[0];
202 entry
->scsi_id
= vfc_cmd
->tgt_scsi_id
;
203 entry
->lun
= scsilun_to_int(&vfc_cmd
->iu
.lun
);
204 entry
->tmf_flags
= vfc_cmd
->iu
.tmf_flags
;
205 entry
->u
.end
.status
= vfc_cmd
->status
;
206 entry
->u
.end
.error
= vfc_cmd
->error
;
207 entry
->u
.end
.fcp_rsp_flags
= vfc_cmd
->rsp
.flags
;
208 entry
->u
.end
.rsp_code
= vfc_cmd
->rsp
.data
.info
.rsp_code
;
209 entry
->u
.end
.scsi_status
= vfc_cmd
->rsp
.scsi_status
;
211 case IBMVFC_MAD_FORMAT
:
212 entry
->op_code
= mad
->opcode
;
213 entry
->u
.end
.status
= mad
->status
;
222 #define ibmvfc_trc_start(evt) do { } while (0)
223 #define ibmvfc_trc_end(evt) do { } while (0)
227 * ibmvfc_get_err_index - Find the index into cmd_status for the fcp response
228 * @status: status / error class
232 * index into cmd_status / -EINVAL on failure
234 static int ibmvfc_get_err_index(u16 status
, u16 error
)
238 for (i
= 0; i
< ARRAY_SIZE(cmd_status
); i
++)
239 if ((cmd_status
[i
].status
& status
) == cmd_status
[i
].status
&&
240 cmd_status
[i
].error
== error
)
247 * ibmvfc_get_cmd_error - Find the error description for the fcp response
248 * @status: status / error class
252 * error description string
254 static const char *ibmvfc_get_cmd_error(u16 status
, u16 error
)
256 int rc
= ibmvfc_get_err_index(status
, error
);
258 return cmd_status
[rc
].name
;
259 return unknown_error
;
263 * ibmvfc_get_err_result - Find the scsi status to return for the fcp response
264 * @vfc_cmd: ibmvfc command struct
267 * SCSI result value to return for completed command
269 static int ibmvfc_get_err_result(struct ibmvfc_cmd
*vfc_cmd
)
272 struct ibmvfc_fcp_rsp
*rsp
= &vfc_cmd
->rsp
;
273 int fc_rsp_len
= rsp
->fcp_rsp_len
;
275 if ((rsp
->flags
& FCP_RSP_LEN_VALID
) &&
276 ((fc_rsp_len
&& fc_rsp_len
!= 4 && fc_rsp_len
!= 8) ||
277 rsp
->data
.info
.rsp_code
))
278 return DID_ERROR
<< 16;
280 err
= ibmvfc_get_err_index(vfc_cmd
->status
, vfc_cmd
->error
);
282 return rsp
->scsi_status
| (cmd_status
[err
].result
<< 16);
283 return rsp
->scsi_status
| (DID_ERROR
<< 16);
287 * ibmvfc_retry_cmd - Determine if error status is retryable
288 * @status: status / error class
292 * 1 if error should be retried / 0 if it should not
294 static int ibmvfc_retry_cmd(u16 status
, u16 error
)
296 int rc
= ibmvfc_get_err_index(status
, error
);
299 return cmd_status
[rc
].retry
;
303 static const char *unknown_fc_explain
= "unknown fc explain";
305 static const struct {
309 { 0x00, "no additional explanation" },
310 { 0x01, "service parameter error - options" },
311 { 0x03, "service parameter error - initiator control" },
312 { 0x05, "service parameter error - recipient control" },
313 { 0x07, "service parameter error - received data field size" },
314 { 0x09, "service parameter error - concurrent seq" },
315 { 0x0B, "service parameter error - credit" },
316 { 0x0D, "invalid N_Port/F_Port_Name" },
317 { 0x0E, "invalid node/Fabric Name" },
318 { 0x0F, "invalid common service parameters" },
319 { 0x11, "invalid association header" },
320 { 0x13, "association header required" },
321 { 0x15, "invalid originator S_ID" },
322 { 0x17, "invalid OX_ID-RX-ID combination" },
323 { 0x19, "command (request) already in progress" },
324 { 0x1E, "N_Port Login requested" },
325 { 0x1F, "Invalid N_Port_ID" },
328 static const struct {
332 { 0x00, "no additional explanation" },
333 { 0x01, "port identifier not registered" },
334 { 0x02, "port name not registered" },
335 { 0x03, "node name not registered" },
336 { 0x04, "class of service not registered" },
337 { 0x06, "initial process associator not registered" },
338 { 0x07, "FC-4 TYPEs not registered" },
339 { 0x08, "symbolic port name not registered" },
340 { 0x09, "symbolic node name not registered" },
341 { 0x0A, "port type not registered" },
342 { 0xF0, "authorization exception" },
343 { 0xF1, "authentication exception" },
344 { 0xF2, "data base full" },
345 { 0xF3, "data base empty" },
346 { 0xF4, "processing request" },
347 { 0xF5, "unable to verify connection" },
348 { 0xF6, "devices not in a common zone" },
352 * ibmvfc_get_ls_explain - Return the FC Explain description text
353 * @status: FC Explain status
358 static const char *ibmvfc_get_ls_explain(u16 status
)
362 for (i
= 0; i
< ARRAY_SIZE(ls_explain
); i
++)
363 if (ls_explain
[i
].fc_explain
== status
)
364 return ls_explain
[i
].name
;
366 return unknown_fc_explain
;
370 * ibmvfc_get_gs_explain - Return the FC Explain description text
371 * @status: FC Explain status
376 static const char *ibmvfc_get_gs_explain(u16 status
)
380 for (i
= 0; i
< ARRAY_SIZE(gs_explain
); i
++)
381 if (gs_explain
[i
].fc_explain
== status
)
382 return gs_explain
[i
].name
;
384 return unknown_fc_explain
;
387 static const struct {
388 enum ibmvfc_fc_type fc_type
;
391 { IBMVFC_FABRIC_REJECT
, "fabric reject" },
392 { IBMVFC_PORT_REJECT
, "port reject" },
393 { IBMVFC_LS_REJECT
, "ELS reject" },
394 { IBMVFC_FABRIC_BUSY
, "fabric busy" },
395 { IBMVFC_PORT_BUSY
, "port busy" },
396 { IBMVFC_BASIC_REJECT
, "basic reject" },
399 static const char *unknown_fc_type
= "unknown fc type";
402 * ibmvfc_get_fc_type - Return the FC Type description text
403 * @status: FC Type error status
408 static const char *ibmvfc_get_fc_type(u16 status
)
412 for (i
= 0; i
< ARRAY_SIZE(fc_type
); i
++)
413 if (fc_type
[i
].fc_type
== status
)
414 return fc_type
[i
].name
;
416 return unknown_fc_type
;
420 * ibmvfc_set_tgt_action - Set the next init action for the target
421 * @tgt: ibmvfc target struct
422 * @action: action to perform
425 static void ibmvfc_set_tgt_action(struct ibmvfc_target
*tgt
,
426 enum ibmvfc_target_action action
)
428 switch (tgt
->action
) {
429 case IBMVFC_TGT_ACTION_DEL_RPORT
:
430 if (action
== IBMVFC_TGT_ACTION_DELETED_RPORT
)
431 tgt
->action
= action
;
432 case IBMVFC_TGT_ACTION_DELETED_RPORT
:
435 if (action
== IBMVFC_TGT_ACTION_DEL_RPORT
)
437 tgt
->action
= action
;
443 * ibmvfc_set_host_state - Set the state for the host
444 * @vhost: ibmvfc host struct
445 * @state: state to set host to
448 * 0 if state changed / non-zero if not changed
450 static int ibmvfc_set_host_state(struct ibmvfc_host
*vhost
,
451 enum ibmvfc_host_state state
)
455 switch (vhost
->state
) {
456 case IBMVFC_HOST_OFFLINE
:
460 vhost
->state
= state
;
468 * ibmvfc_set_host_action - Set the next init action for the host
469 * @vhost: ibmvfc host struct
470 * @action: action to perform
473 static void ibmvfc_set_host_action(struct ibmvfc_host
*vhost
,
474 enum ibmvfc_host_action action
)
477 case IBMVFC_HOST_ACTION_ALLOC_TGTS
:
478 if (vhost
->action
== IBMVFC_HOST_ACTION_INIT_WAIT
)
479 vhost
->action
= action
;
481 case IBMVFC_HOST_ACTION_LOGO_WAIT
:
482 if (vhost
->action
== IBMVFC_HOST_ACTION_LOGO
)
483 vhost
->action
= action
;
485 case IBMVFC_HOST_ACTION_INIT_WAIT
:
486 if (vhost
->action
== IBMVFC_HOST_ACTION_INIT
)
487 vhost
->action
= action
;
489 case IBMVFC_HOST_ACTION_QUERY
:
490 switch (vhost
->action
) {
491 case IBMVFC_HOST_ACTION_INIT_WAIT
:
492 case IBMVFC_HOST_ACTION_NONE
:
493 case IBMVFC_HOST_ACTION_TGT_DEL_FAILED
:
494 vhost
->action
= action
;
500 case IBMVFC_HOST_ACTION_TGT_INIT
:
501 if (vhost
->action
== IBMVFC_HOST_ACTION_ALLOC_TGTS
)
502 vhost
->action
= action
;
504 case IBMVFC_HOST_ACTION_INIT
:
505 case IBMVFC_HOST_ACTION_TGT_DEL
:
506 switch (vhost
->action
) {
507 case IBMVFC_HOST_ACTION_RESET
:
508 case IBMVFC_HOST_ACTION_REENABLE
:
511 vhost
->action
= action
;
515 case IBMVFC_HOST_ACTION_LOGO
:
516 case IBMVFC_HOST_ACTION_QUERY_TGTS
:
517 case IBMVFC_HOST_ACTION_TGT_DEL_FAILED
:
518 case IBMVFC_HOST_ACTION_NONE
:
519 case IBMVFC_HOST_ACTION_RESET
:
520 case IBMVFC_HOST_ACTION_REENABLE
:
522 vhost
->action
= action
;
528 * ibmvfc_reinit_host - Re-start host initialization (no NPIV Login)
529 * @vhost: ibmvfc host struct
534 static void ibmvfc_reinit_host(struct ibmvfc_host
*vhost
)
536 if (vhost
->action
== IBMVFC_HOST_ACTION_NONE
) {
537 if (!ibmvfc_set_host_state(vhost
, IBMVFC_INITIALIZING
)) {
538 scsi_block_requests(vhost
->host
);
539 ibmvfc_set_host_action(vhost
, IBMVFC_HOST_ACTION_QUERY
);
544 wake_up(&vhost
->work_wait_q
);
548 * ibmvfc_link_down - Handle a link down event from the adapter
549 * @vhost: ibmvfc host struct
550 * @state: ibmvfc host state to enter
553 static void ibmvfc_link_down(struct ibmvfc_host
*vhost
,
554 enum ibmvfc_host_state state
)
556 struct ibmvfc_target
*tgt
;
559 scsi_block_requests(vhost
->host
);
560 list_for_each_entry(tgt
, &vhost
->targets
, queue
)
561 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_DEL_RPORT
);
562 ibmvfc_set_host_state(vhost
, state
);
563 ibmvfc_set_host_action(vhost
, IBMVFC_HOST_ACTION_TGT_DEL
);
564 vhost
->events_to_log
|= IBMVFC_AE_LINKDOWN
;
565 wake_up(&vhost
->work_wait_q
);
570 * ibmvfc_init_host - Start host initialization
571 * @vhost: ibmvfc host struct
576 static void ibmvfc_init_host(struct ibmvfc_host
*vhost
)
578 struct ibmvfc_target
*tgt
;
580 if (vhost
->action
== IBMVFC_HOST_ACTION_INIT_WAIT
) {
581 if (++vhost
->init_retries
> IBMVFC_MAX_HOST_INIT_RETRIES
) {
583 "Host initialization retries exceeded. Taking adapter offline\n");
584 ibmvfc_link_down(vhost
, IBMVFC_HOST_OFFLINE
);
589 if (!ibmvfc_set_host_state(vhost
, IBMVFC_INITIALIZING
)) {
590 memset(vhost
->async_crq
.msgs
, 0, PAGE_SIZE
);
591 vhost
->async_crq
.cur
= 0;
593 list_for_each_entry(tgt
, &vhost
->targets
, queue
)
594 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_DEL_RPORT
);
595 scsi_block_requests(vhost
->host
);
596 ibmvfc_set_host_action(vhost
, IBMVFC_HOST_ACTION_INIT
);
597 vhost
->job_step
= ibmvfc_npiv_login
;
598 wake_up(&vhost
->work_wait_q
);
603 * ibmvfc_send_crq - Send a CRQ
604 * @vhost: ibmvfc host struct
605 * @word1: the first 64 bits of the data
606 * @word2: the second 64 bits of the data
609 * 0 on success / other on failure
611 static int ibmvfc_send_crq(struct ibmvfc_host
*vhost
, u64 word1
, u64 word2
)
613 struct vio_dev
*vdev
= to_vio_dev(vhost
->dev
);
614 return plpar_hcall_norets(H_SEND_CRQ
, vdev
->unit_address
, word1
, word2
);
618 * ibmvfc_send_crq_init - Send a CRQ init message
619 * @vhost: ibmvfc host struct
622 * 0 on success / other on failure
624 static int ibmvfc_send_crq_init(struct ibmvfc_host
*vhost
)
626 ibmvfc_dbg(vhost
, "Sending CRQ init\n");
627 return ibmvfc_send_crq(vhost
, 0xC001000000000000LL
, 0);
631 * ibmvfc_send_crq_init_complete - Send a CRQ init complete message
632 * @vhost: ibmvfc host struct
635 * 0 on success / other on failure
637 static int ibmvfc_send_crq_init_complete(struct ibmvfc_host
*vhost
)
639 ibmvfc_dbg(vhost
, "Sending CRQ init complete\n");
640 return ibmvfc_send_crq(vhost
, 0xC002000000000000LL
, 0);
644 * ibmvfc_release_crq_queue - Deallocates data and unregisters CRQ
645 * @vhost: ibmvfc host struct
647 * Frees irq, deallocates a page for messages, unmaps dma, and unregisters
648 * the crq with the hypervisor.
650 static void ibmvfc_release_crq_queue(struct ibmvfc_host
*vhost
)
653 struct vio_dev
*vdev
= to_vio_dev(vhost
->dev
);
654 struct ibmvfc_crq_queue
*crq
= &vhost
->crq
;
656 ibmvfc_dbg(vhost
, "Releasing CRQ\n");
657 free_irq(vdev
->irq
, vhost
);
658 tasklet_kill(&vhost
->tasklet
);
662 rc
= plpar_hcall_norets(H_FREE_CRQ
, vdev
->unit_address
);
663 } while (rc
== H_BUSY
|| H_IS_LONG_BUSY(rc
));
665 vhost
->state
= IBMVFC_NO_CRQ
;
666 vhost
->logged_in
= 0;
667 dma_unmap_single(vhost
->dev
, crq
->msg_token
, PAGE_SIZE
, DMA_BIDIRECTIONAL
);
668 free_page((unsigned long)crq
->msgs
);
672 * ibmvfc_reenable_crq_queue - reenables the CRQ
673 * @vhost: ibmvfc host struct
676 * 0 on success / other on failure
678 static int ibmvfc_reenable_crq_queue(struct ibmvfc_host
*vhost
)
681 struct vio_dev
*vdev
= to_vio_dev(vhost
->dev
);
683 /* Re-enable the CRQ */
687 rc
= plpar_hcall_norets(H_ENABLE_CRQ
, vdev
->unit_address
);
688 } while (rc
== H_IN_PROGRESS
|| rc
== H_BUSY
|| H_IS_LONG_BUSY(rc
));
691 dev_err(vhost
->dev
, "Error enabling adapter (rc=%d)\n", rc
);
697 * ibmvfc_reset_crq - resets a crq after a failure
698 * @vhost: ibmvfc host struct
701 * 0 on success / other on failure
703 static int ibmvfc_reset_crq(struct ibmvfc_host
*vhost
)
707 struct vio_dev
*vdev
= to_vio_dev(vhost
->dev
);
708 struct ibmvfc_crq_queue
*crq
= &vhost
->crq
;
714 rc
= plpar_hcall_norets(H_FREE_CRQ
, vdev
->unit_address
);
715 } while (rc
== H_BUSY
|| H_IS_LONG_BUSY(rc
));
717 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
718 vhost
->state
= IBMVFC_NO_CRQ
;
719 vhost
->logged_in
= 0;
720 ibmvfc_set_host_action(vhost
, IBMVFC_HOST_ACTION_NONE
);
722 /* Clean out the queue */
723 memset(crq
->msgs
, 0, PAGE_SIZE
);
726 /* And re-open it again */
727 rc
= plpar_hcall_norets(H_REG_CRQ
, vdev
->unit_address
,
728 crq
->msg_token
, PAGE_SIZE
);
731 /* Adapter is good, but other end is not ready */
732 dev_warn(vhost
->dev
, "Partner adapter not ready\n");
734 dev_warn(vhost
->dev
, "Couldn't register crq (rc=%d)\n", rc
);
735 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
741 * ibmvfc_valid_event - Determines if event is valid.
742 * @pool: event_pool that contains the event
743 * @evt: ibmvfc event to be checked for validity
746 * 1 if event is valid / 0 if event is not valid
748 static int ibmvfc_valid_event(struct ibmvfc_event_pool
*pool
,
749 struct ibmvfc_event
*evt
)
751 int index
= evt
- pool
->events
;
752 if (index
< 0 || index
>= pool
->size
) /* outside of bounds */
754 if (evt
!= pool
->events
+ index
) /* unaligned */
760 * ibmvfc_free_event - Free the specified event
761 * @evt: ibmvfc_event to be freed
764 static void ibmvfc_free_event(struct ibmvfc_event
*evt
)
766 struct ibmvfc_host
*vhost
= evt
->vhost
;
767 struct ibmvfc_event_pool
*pool
= &vhost
->pool
;
769 BUG_ON(!ibmvfc_valid_event(pool
, evt
));
770 BUG_ON(atomic_inc_return(&evt
->free
) != 1);
771 list_add_tail(&evt
->queue
, &vhost
->free
);
775 * ibmvfc_scsi_eh_done - EH done function for queuecommand commands
776 * @evt: ibmvfc event struct
778 * This function does not setup any error status, that must be done
779 * before this function gets called.
781 static void ibmvfc_scsi_eh_done(struct ibmvfc_event
*evt
)
783 struct scsi_cmnd
*cmnd
= evt
->cmnd
;
786 scsi_dma_unmap(cmnd
);
787 cmnd
->scsi_done(cmnd
);
791 complete(evt
->eh_comp
);
793 ibmvfc_free_event(evt
);
797 * ibmvfc_fail_request - Fail request with specified error code
798 * @evt: ibmvfc event struct
799 * @error_code: error code to fail request with
804 static void ibmvfc_fail_request(struct ibmvfc_event
*evt
, int error_code
)
807 evt
->cmnd
->result
= (error_code
<< 16);
808 evt
->done
= ibmvfc_scsi_eh_done
;
810 evt
->xfer_iu
->mad_common
.status
= IBMVFC_MAD_DRIVER_FAILED
;
812 list_del(&evt
->queue
);
813 del_timer(&evt
->timer
);
819 * ibmvfc_purge_requests - Our virtual adapter just shut down. Purge any sent requests
820 * @vhost: ibmvfc host struct
821 * @error_code: error code to fail requests with
826 static void ibmvfc_purge_requests(struct ibmvfc_host
*vhost
, int error_code
)
828 struct ibmvfc_event
*evt
, *pos
;
830 ibmvfc_dbg(vhost
, "Purging all requests\n");
831 list_for_each_entry_safe(evt
, pos
, &vhost
->sent
, queue
)
832 ibmvfc_fail_request(evt
, error_code
);
836 * ibmvfc_hard_reset_host - Reset the connection to the server by breaking the CRQ
837 * @vhost: struct ibmvfc host to reset
839 static void ibmvfc_hard_reset_host(struct ibmvfc_host
*vhost
)
841 ibmvfc_purge_requests(vhost
, DID_ERROR
);
842 ibmvfc_link_down(vhost
, IBMVFC_LINK_DOWN
);
843 ibmvfc_set_host_action(vhost
, IBMVFC_HOST_ACTION_RESET
);
847 * __ibmvfc_reset_host - Reset the connection to the server (no locking)
848 * @vhost: struct ibmvfc host to reset
850 static void __ibmvfc_reset_host(struct ibmvfc_host
*vhost
)
852 if (vhost
->logged_in
&& vhost
->action
!= IBMVFC_HOST_ACTION_LOGO_WAIT
&&
853 !ibmvfc_set_host_state(vhost
, IBMVFC_INITIALIZING
)) {
854 scsi_block_requests(vhost
->host
);
855 ibmvfc_set_host_action(vhost
, IBMVFC_HOST_ACTION_LOGO
);
856 vhost
->job_step
= ibmvfc_npiv_logout
;
857 wake_up(&vhost
->work_wait_q
);
859 ibmvfc_hard_reset_host(vhost
);
863 * ibmvfc_reset_host - Reset the connection to the server
864 * @vhost: ibmvfc host struct
866 static void ibmvfc_reset_host(struct ibmvfc_host
*vhost
)
870 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
871 __ibmvfc_reset_host(vhost
);
872 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
876 * ibmvfc_retry_host_init - Retry host initialization if allowed
877 * @vhost: ibmvfc host struct
879 * Returns: 1 if init will be retried / 0 if not
882 static int ibmvfc_retry_host_init(struct ibmvfc_host
*vhost
)
886 if (vhost
->action
== IBMVFC_HOST_ACTION_INIT_WAIT
) {
887 vhost
->delay_init
= 1;
888 if (++vhost
->init_retries
> IBMVFC_MAX_HOST_INIT_RETRIES
) {
890 "Host initialization retries exceeded. Taking adapter offline\n");
891 ibmvfc_link_down(vhost
, IBMVFC_HOST_OFFLINE
);
892 } else if (vhost
->init_retries
== IBMVFC_MAX_HOST_INIT_RETRIES
)
893 __ibmvfc_reset_host(vhost
);
895 ibmvfc_set_host_action(vhost
, IBMVFC_HOST_ACTION_INIT
);
900 wake_up(&vhost
->work_wait_q
);
905 * __ibmvfc_get_target - Find the specified scsi_target (no locking)
906 * @starget: scsi target struct
909 * ibmvfc_target struct / NULL if not found
911 static struct ibmvfc_target
*__ibmvfc_get_target(struct scsi_target
*starget
)
913 struct Scsi_Host
*shost
= dev_to_shost(starget
->dev
.parent
);
914 struct ibmvfc_host
*vhost
= shost_priv(shost
);
915 struct ibmvfc_target
*tgt
;
917 list_for_each_entry(tgt
, &vhost
->targets
, queue
)
918 if (tgt
->target_id
== starget
->id
) {
919 kref_get(&tgt
->kref
);
926 * ibmvfc_get_target - Find the specified scsi_target
927 * @starget: scsi target struct
930 * ibmvfc_target struct / NULL if not found
932 static struct ibmvfc_target
*ibmvfc_get_target(struct scsi_target
*starget
)
934 struct Scsi_Host
*shost
= dev_to_shost(starget
->dev
.parent
);
935 struct ibmvfc_target
*tgt
;
938 spin_lock_irqsave(shost
->host_lock
, flags
);
939 tgt
= __ibmvfc_get_target(starget
);
940 spin_unlock_irqrestore(shost
->host_lock
, flags
);
945 * ibmvfc_get_host_speed - Get host port speed
946 * @shost: scsi host struct
951 static void ibmvfc_get_host_speed(struct Scsi_Host
*shost
)
953 struct ibmvfc_host
*vhost
= shost_priv(shost
);
956 spin_lock_irqsave(shost
->host_lock
, flags
);
957 if (vhost
->state
== IBMVFC_ACTIVE
) {
958 switch (vhost
->login_buf
->resp
.link_speed
/ 100) {
960 fc_host_speed(shost
) = FC_PORTSPEED_1GBIT
;
963 fc_host_speed(shost
) = FC_PORTSPEED_2GBIT
;
966 fc_host_speed(shost
) = FC_PORTSPEED_4GBIT
;
969 fc_host_speed(shost
) = FC_PORTSPEED_8GBIT
;
972 fc_host_speed(shost
) = FC_PORTSPEED_10GBIT
;
975 fc_host_speed(shost
) = FC_PORTSPEED_16GBIT
;
978 ibmvfc_log(vhost
, 3, "Unknown port speed: %lld Gbit\n",
979 vhost
->login_buf
->resp
.link_speed
/ 100);
980 fc_host_speed(shost
) = FC_PORTSPEED_UNKNOWN
;
984 fc_host_speed(shost
) = FC_PORTSPEED_UNKNOWN
;
985 spin_unlock_irqrestore(shost
->host_lock
, flags
);
989 * ibmvfc_get_host_port_state - Get host port state
990 * @shost: scsi host struct
995 static void ibmvfc_get_host_port_state(struct Scsi_Host
*shost
)
997 struct ibmvfc_host
*vhost
= shost_priv(shost
);
1000 spin_lock_irqsave(shost
->host_lock
, flags
);
1001 switch (vhost
->state
) {
1002 case IBMVFC_INITIALIZING
:
1004 fc_host_port_state(shost
) = FC_PORTSTATE_ONLINE
;
1006 case IBMVFC_LINK_DOWN
:
1007 fc_host_port_state(shost
) = FC_PORTSTATE_LINKDOWN
;
1009 case IBMVFC_LINK_DEAD
:
1010 case IBMVFC_HOST_OFFLINE
:
1011 fc_host_port_state(shost
) = FC_PORTSTATE_OFFLINE
;
1014 fc_host_port_state(shost
) = FC_PORTSTATE_BLOCKED
;
1017 fc_host_port_state(shost
) = FC_PORTSTATE_UNKNOWN
;
1020 ibmvfc_log(vhost
, 3, "Unknown port state: %d\n", vhost
->state
);
1021 fc_host_port_state(shost
) = FC_PORTSTATE_UNKNOWN
;
1024 spin_unlock_irqrestore(shost
->host_lock
, flags
);
1028 * ibmvfc_set_rport_dev_loss_tmo - Set rport's device loss timeout
1029 * @rport: rport struct
1030 * @timeout: timeout value
1035 static void ibmvfc_set_rport_dev_loss_tmo(struct fc_rport
*rport
, u32 timeout
)
1038 rport
->dev_loss_tmo
= timeout
;
1040 rport
->dev_loss_tmo
= 1;
1044 * ibmvfc_release_tgt - Free memory allocated for a target
1045 * @kref: kref struct
1048 static void ibmvfc_release_tgt(struct kref
*kref
)
1050 struct ibmvfc_target
*tgt
= container_of(kref
, struct ibmvfc_target
, kref
);
1055 * ibmvfc_get_starget_node_name - Get SCSI target's node name
1056 * @starget: scsi target struct
1061 static void ibmvfc_get_starget_node_name(struct scsi_target
*starget
)
1063 struct ibmvfc_target
*tgt
= ibmvfc_get_target(starget
);
1064 fc_starget_port_name(starget
) = tgt
? tgt
->ids
.node_name
: 0;
1066 kref_put(&tgt
->kref
, ibmvfc_release_tgt
);
1070 * ibmvfc_get_starget_port_name - Get SCSI target's port name
1071 * @starget: scsi target struct
1076 static void ibmvfc_get_starget_port_name(struct scsi_target
*starget
)
1078 struct ibmvfc_target
*tgt
= ibmvfc_get_target(starget
);
1079 fc_starget_port_name(starget
) = tgt
? tgt
->ids
.port_name
: 0;
1081 kref_put(&tgt
->kref
, ibmvfc_release_tgt
);
1085 * ibmvfc_get_starget_port_id - Get SCSI target's port ID
1086 * @starget: scsi target struct
1091 static void ibmvfc_get_starget_port_id(struct scsi_target
*starget
)
1093 struct ibmvfc_target
*tgt
= ibmvfc_get_target(starget
);
1094 fc_starget_port_id(starget
) = tgt
? tgt
->scsi_id
: -1;
1096 kref_put(&tgt
->kref
, ibmvfc_release_tgt
);
1100 * ibmvfc_wait_while_resetting - Wait while the host resets
1101 * @vhost: ibmvfc host struct
1104 * 0 on success / other on failure
1106 static int ibmvfc_wait_while_resetting(struct ibmvfc_host
*vhost
)
1108 long timeout
= wait_event_timeout(vhost
->init_wait_q
,
1109 ((vhost
->state
== IBMVFC_ACTIVE
||
1110 vhost
->state
== IBMVFC_HOST_OFFLINE
||
1111 vhost
->state
== IBMVFC_LINK_DEAD
) &&
1112 vhost
->action
== IBMVFC_HOST_ACTION_NONE
),
1113 (init_timeout
* HZ
));
1115 return timeout
? 0 : -EIO
;
1119 * ibmvfc_issue_fc_host_lip - Re-initiate link initialization
1120 * @shost: scsi host struct
1123 * 0 on success / other on failure
1125 static int ibmvfc_issue_fc_host_lip(struct Scsi_Host
*shost
)
1127 struct ibmvfc_host
*vhost
= shost_priv(shost
);
1129 dev_err(vhost
->dev
, "Initiating host LIP. Resetting connection\n");
1130 ibmvfc_reset_host(vhost
);
1131 return ibmvfc_wait_while_resetting(vhost
);
1135 * ibmvfc_gather_partition_info - Gather info about the LPAR
1140 static void ibmvfc_gather_partition_info(struct ibmvfc_host
*vhost
)
1142 struct device_node
*rootdn
;
1144 const unsigned int *num
;
1146 rootdn
= of_find_node_by_path("/");
1150 name
= of_get_property(rootdn
, "ibm,partition-name", NULL
);
1152 strncpy(vhost
->partition_name
, name
, sizeof(vhost
->partition_name
));
1153 num
= of_get_property(rootdn
, "ibm,partition-no", NULL
);
1155 vhost
->partition_number
= *num
;
1156 of_node_put(rootdn
);
1160 * ibmvfc_set_login_info - Setup info for NPIV login
1161 * @vhost: ibmvfc host struct
1166 static void ibmvfc_set_login_info(struct ibmvfc_host
*vhost
)
1168 struct ibmvfc_npiv_login
*login_info
= &vhost
->login_info
;
1169 struct device_node
*of_node
= vhost
->dev
->of_node
;
1170 const char *location
;
1172 memset(login_info
, 0, sizeof(*login_info
));
1174 login_info
->ostype
= IBMVFC_OS_LINUX
;
1175 login_info
->max_dma_len
= IBMVFC_MAX_SECTORS
<< 9;
1176 login_info
->max_payload
= sizeof(struct ibmvfc_fcp_cmd_iu
);
1177 login_info
->max_response
= sizeof(struct ibmvfc_fcp_rsp
);
1178 login_info
->partition_num
= vhost
->partition_number
;
1179 login_info
->vfc_frame_version
= 1;
1180 login_info
->fcp_version
= 3;
1181 login_info
->flags
= IBMVFC_FLUSH_ON_HALT
;
1182 if (vhost
->client_migrated
)
1183 login_info
->flags
|= IBMVFC_CLIENT_MIGRATED
;
1185 login_info
->max_cmds
= max_requests
+ IBMVFC_NUM_INTERNAL_REQ
;
1186 login_info
->capabilities
= IBMVFC_CAN_MIGRATE
;
1187 login_info
->async
.va
= vhost
->async_crq
.msg_token
;
1188 login_info
->async
.len
= vhost
->async_crq
.size
* sizeof(*vhost
->async_crq
.msgs
);
1189 strncpy(login_info
->partition_name
, vhost
->partition_name
, IBMVFC_MAX_NAME
);
1190 strncpy(login_info
->device_name
,
1191 dev_name(&vhost
->host
->shost_gendev
), IBMVFC_MAX_NAME
);
1193 location
= of_get_property(of_node
, "ibm,loc-code", NULL
);
1194 location
= location
? location
: dev_name(vhost
->dev
);
1195 strncpy(login_info
->drc_name
, location
, IBMVFC_MAX_NAME
);
1199 * ibmvfc_init_event_pool - Allocates and initializes the event pool for a host
1200 * @vhost: ibmvfc host who owns the event pool
1202 * Returns zero on success.
1204 static int ibmvfc_init_event_pool(struct ibmvfc_host
*vhost
)
1207 struct ibmvfc_event_pool
*pool
= &vhost
->pool
;
1210 pool
->size
= max_requests
+ IBMVFC_NUM_INTERNAL_REQ
;
1211 pool
->events
= kcalloc(pool
->size
, sizeof(*pool
->events
), GFP_KERNEL
);
1215 pool
->iu_storage
= dma_alloc_coherent(vhost
->dev
,
1216 pool
->size
* sizeof(*pool
->iu_storage
),
1217 &pool
->iu_token
, 0);
1219 if (!pool
->iu_storage
) {
1220 kfree(pool
->events
);
1224 for (i
= 0; i
< pool
->size
; ++i
) {
1225 struct ibmvfc_event
*evt
= &pool
->events
[i
];
1226 atomic_set(&evt
->free
, 1);
1227 evt
->crq
.valid
= 0x80;
1228 evt
->crq
.ioba
= pool
->iu_token
+ (sizeof(*evt
->xfer_iu
) * i
);
1229 evt
->xfer_iu
= pool
->iu_storage
+ i
;
1231 evt
->ext_list
= NULL
;
1232 list_add_tail(&evt
->queue
, &vhost
->free
);
1240 * ibmvfc_free_event_pool - Frees memory of the event pool of a host
1241 * @vhost: ibmvfc host who owns the event pool
1244 static void ibmvfc_free_event_pool(struct ibmvfc_host
*vhost
)
1247 struct ibmvfc_event_pool
*pool
= &vhost
->pool
;
1250 for (i
= 0; i
< pool
->size
; ++i
) {
1251 list_del(&pool
->events
[i
].queue
);
1252 BUG_ON(atomic_read(&pool
->events
[i
].free
) != 1);
1253 if (pool
->events
[i
].ext_list
)
1254 dma_pool_free(vhost
->sg_pool
,
1255 pool
->events
[i
].ext_list
,
1256 pool
->events
[i
].ext_list_token
);
1259 kfree(pool
->events
);
1260 dma_free_coherent(vhost
->dev
,
1261 pool
->size
* sizeof(*pool
->iu_storage
),
1262 pool
->iu_storage
, pool
->iu_token
);
1267 * ibmvfc_get_event - Gets the next free event in pool
1268 * @vhost: ibmvfc host struct
1270 * Returns a free event from the pool.
1272 static struct ibmvfc_event
*ibmvfc_get_event(struct ibmvfc_host
*vhost
)
1274 struct ibmvfc_event
*evt
;
1276 BUG_ON(list_empty(&vhost
->free
));
1277 evt
= list_entry(vhost
->free
.next
, struct ibmvfc_event
, queue
);
1278 atomic_set(&evt
->free
, 0);
1279 list_del(&evt
->queue
);
1284 * ibmvfc_init_event - Initialize fields in an event struct that are always
1287 * @done: Routine to call when the event is responded to
1288 * @format: SRP or MAD format
1290 static void ibmvfc_init_event(struct ibmvfc_event
*evt
,
1291 void (*done
) (struct ibmvfc_event
*), u8 format
)
1294 evt
->sync_iu
= NULL
;
1295 evt
->crq
.format
= format
;
1297 evt
->eh_comp
= NULL
;
1301 * ibmvfc_map_sg_list - Initialize scatterlist
1302 * @scmd: scsi command struct
1303 * @nseg: number of scatterlist segments
1304 * @md: memory descriptor list to initialize
1306 static void ibmvfc_map_sg_list(struct scsi_cmnd
*scmd
, int nseg
,
1307 struct srp_direct_buf
*md
)
1310 struct scatterlist
*sg
;
1312 scsi_for_each_sg(scmd
, sg
, nseg
, i
) {
1313 md
[i
].va
= sg_dma_address(sg
);
1314 md
[i
].len
= sg_dma_len(sg
);
1320 * ibmvfc_map_sg_data - Maps dma for a scatterlist and initializes decriptor fields
1321 * @scmd: Scsi_Cmnd with the scatterlist
1322 * @evt: ibmvfc event struct
1323 * @vfc_cmd: vfc_cmd that contains the memory descriptor
1324 * @dev: device for which to map dma memory
1327 * 0 on success / non-zero on failure
1329 static int ibmvfc_map_sg_data(struct scsi_cmnd
*scmd
,
1330 struct ibmvfc_event
*evt
,
1331 struct ibmvfc_cmd
*vfc_cmd
, struct device
*dev
)
1335 struct srp_direct_buf
*data
= &vfc_cmd
->ioba
;
1336 struct ibmvfc_host
*vhost
= dev_get_drvdata(dev
);
1338 sg_mapped
= scsi_dma_map(scmd
);
1340 vfc_cmd
->flags
|= IBMVFC_NO_MEM_DESC
;
1342 } else if (unlikely(sg_mapped
< 0)) {
1343 if (vhost
->log_level
> IBMVFC_DEFAULT_LOG_LEVEL
)
1344 scmd_printk(KERN_ERR
, scmd
, "Failed to map DMA buffer for command\n");
1348 if (scmd
->sc_data_direction
== DMA_TO_DEVICE
) {
1349 vfc_cmd
->flags
|= IBMVFC_WRITE
;
1350 vfc_cmd
->iu
.add_cdb_len
|= IBMVFC_WRDATA
;
1352 vfc_cmd
->flags
|= IBMVFC_READ
;
1353 vfc_cmd
->iu
.add_cdb_len
|= IBMVFC_RDDATA
;
1356 if (sg_mapped
== 1) {
1357 ibmvfc_map_sg_list(scmd
, sg_mapped
, data
);
1361 vfc_cmd
->flags
|= IBMVFC_SCATTERLIST
;
1363 if (!evt
->ext_list
) {
1364 evt
->ext_list
= dma_pool_alloc(vhost
->sg_pool
, GFP_ATOMIC
,
1365 &evt
->ext_list_token
);
1367 if (!evt
->ext_list
) {
1368 scsi_dma_unmap(scmd
);
1369 if (vhost
->log_level
> IBMVFC_DEFAULT_LOG_LEVEL
)
1370 scmd_printk(KERN_ERR
, scmd
, "Can't allocate memory for scatterlist\n");
1375 ibmvfc_map_sg_list(scmd
, sg_mapped
, evt
->ext_list
);
1377 data
->va
= evt
->ext_list_token
;
1378 data
->len
= sg_mapped
* sizeof(struct srp_direct_buf
);
1384 * ibmvfc_timeout - Internal command timeout handler
1385 * @evt: struct ibmvfc_event that timed out
1387 * Called when an internally generated command times out
1389 static void ibmvfc_timeout(struct ibmvfc_event
*evt
)
1391 struct ibmvfc_host
*vhost
= evt
->vhost
;
1392 dev_err(vhost
->dev
, "Command timed out (%p). Resetting connection\n", evt
);
1393 ibmvfc_reset_host(vhost
);
1397 * ibmvfc_send_event - Transforms event to u64 array and calls send_crq()
1398 * @evt: event to be sent
1399 * @vhost: ibmvfc host struct
1400 * @timeout: timeout in seconds - 0 means do not time command
1402 * Returns the value returned from ibmvfc_send_crq(). (Zero for success)
1404 static int ibmvfc_send_event(struct ibmvfc_event
*evt
,
1405 struct ibmvfc_host
*vhost
, unsigned long timeout
)
1407 u64
*crq_as_u64
= (u64
*) &evt
->crq
;
1410 /* Copy the IU into the transfer area */
1411 *evt
->xfer_iu
= evt
->iu
;
1412 if (evt
->crq
.format
== IBMVFC_CMD_FORMAT
)
1413 evt
->xfer_iu
->cmd
.tag
= (u64
)evt
;
1414 else if (evt
->crq
.format
== IBMVFC_MAD_FORMAT
)
1415 evt
->xfer_iu
->mad_common
.tag
= (u64
)evt
;
1419 list_add_tail(&evt
->queue
, &vhost
->sent
);
1420 init_timer(&evt
->timer
);
1423 evt
->timer
.data
= (unsigned long) evt
;
1424 evt
->timer
.expires
= jiffies
+ (timeout
* HZ
);
1425 evt
->timer
.function
= (void (*)(unsigned long))ibmvfc_timeout
;
1426 add_timer(&evt
->timer
);
1431 if ((rc
= ibmvfc_send_crq(vhost
, crq_as_u64
[0], crq_as_u64
[1]))) {
1432 list_del(&evt
->queue
);
1433 del_timer(&evt
->timer
);
1435 /* If send_crq returns H_CLOSED, return SCSI_MLQUEUE_HOST_BUSY.
1436 * Firmware will send a CRQ with a transport event (0xFF) to
1437 * tell this client what has happened to the transport. This
1438 * will be handled in ibmvfc_handle_crq()
1440 if (rc
== H_CLOSED
) {
1441 if (printk_ratelimit())
1442 dev_warn(vhost
->dev
, "Send warning. Receive queue closed, will retry.\n");
1444 scsi_dma_unmap(evt
->cmnd
);
1445 ibmvfc_free_event(evt
);
1446 return SCSI_MLQUEUE_HOST_BUSY
;
1449 dev_err(vhost
->dev
, "Send error (rc=%d)\n", rc
);
1451 evt
->cmnd
->result
= DID_ERROR
<< 16;
1452 evt
->done
= ibmvfc_scsi_eh_done
;
1454 evt
->xfer_iu
->mad_common
.status
= IBMVFC_MAD_CRQ_ERROR
;
1458 ibmvfc_trc_start(evt
);
1464 * ibmvfc_log_error - Log an error for the failed command if appropriate
1465 * @evt: ibmvfc event to log
1468 static void ibmvfc_log_error(struct ibmvfc_event
*evt
)
1470 struct ibmvfc_cmd
*vfc_cmd
= &evt
->xfer_iu
->cmd
;
1471 struct ibmvfc_host
*vhost
= evt
->vhost
;
1472 struct ibmvfc_fcp_rsp
*rsp
= &vfc_cmd
->rsp
;
1473 struct scsi_cmnd
*cmnd
= evt
->cmnd
;
1474 const char *err
= unknown_error
;
1475 int index
= ibmvfc_get_err_index(vfc_cmd
->status
, vfc_cmd
->error
);
1480 logerr
= cmd_status
[index
].log
;
1481 err
= cmd_status
[index
].name
;
1484 if (!logerr
&& (vhost
->log_level
<= (IBMVFC_DEFAULT_LOG_LEVEL
+ 1)))
1487 if (rsp
->flags
& FCP_RSP_LEN_VALID
)
1488 rsp_code
= rsp
->data
.info
.rsp_code
;
1490 scmd_printk(KERN_ERR
, cmnd
, "Command (%02X) failed: %s (%x:%x) "
1491 "flags: %x fcp_rsp: %x, resid=%d, scsi_status: %x\n",
1492 cmnd
->cmnd
[0], err
, vfc_cmd
->status
, vfc_cmd
->error
,
1493 rsp
->flags
, rsp_code
, scsi_get_resid(cmnd
), rsp
->scsi_status
);
1497 * ibmvfc_relogin - Log back into the specified device
1498 * @sdev: scsi device struct
1501 static void ibmvfc_relogin(struct scsi_device
*sdev
)
1503 struct ibmvfc_host
*vhost
= shost_priv(sdev
->host
);
1504 struct fc_rport
*rport
= starget_to_rport(scsi_target(sdev
));
1505 struct ibmvfc_target
*tgt
;
1507 list_for_each_entry(tgt
, &vhost
->targets
, queue
) {
1508 if (rport
== tgt
->rport
) {
1509 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_DEL_RPORT
);
1514 ibmvfc_reinit_host(vhost
);
1518 * ibmvfc_scsi_done - Handle responses from commands
1519 * @evt: ibmvfc event to be handled
1521 * Used as a callback when sending scsi cmds.
1523 static void ibmvfc_scsi_done(struct ibmvfc_event
*evt
)
1525 struct ibmvfc_cmd
*vfc_cmd
= &evt
->xfer_iu
->cmd
;
1526 struct ibmvfc_fcp_rsp
*rsp
= &vfc_cmd
->rsp
;
1527 struct scsi_cmnd
*cmnd
= evt
->cmnd
;
1529 u32 sense_len
= rsp
->fcp_sense_len
;
1532 if (vfc_cmd
->response_flags
& IBMVFC_ADAPTER_RESID_VALID
)
1533 scsi_set_resid(cmnd
, vfc_cmd
->adapter_resid
);
1534 else if (rsp
->flags
& FCP_RESID_UNDER
)
1535 scsi_set_resid(cmnd
, rsp
->fcp_resid
);
1537 scsi_set_resid(cmnd
, 0);
1539 if (vfc_cmd
->status
) {
1540 cmnd
->result
= ibmvfc_get_err_result(vfc_cmd
);
1542 if (rsp
->flags
& FCP_RSP_LEN_VALID
)
1543 rsp_len
= rsp
->fcp_rsp_len
;
1544 if ((sense_len
+ rsp_len
) > SCSI_SENSE_BUFFERSIZE
)
1545 sense_len
= SCSI_SENSE_BUFFERSIZE
- rsp_len
;
1546 if ((rsp
->flags
& FCP_SNS_LEN_VALID
) && rsp
->fcp_sense_len
&& rsp_len
<= 8)
1547 memcpy(cmnd
->sense_buffer
, rsp
->data
.sense
+ rsp_len
, sense_len
);
1548 if ((vfc_cmd
->status
& IBMVFC_VIOS_FAILURE
) && (vfc_cmd
->error
== IBMVFC_PLOGI_REQUIRED
))
1549 ibmvfc_relogin(cmnd
->device
);
1551 if (!cmnd
->result
&& (!scsi_get_resid(cmnd
) || (rsp
->flags
& FCP_RESID_OVER
)))
1552 cmnd
->result
= (DID_ERROR
<< 16);
1554 ibmvfc_log_error(evt
);
1557 if (!cmnd
->result
&&
1558 (scsi_bufflen(cmnd
) - scsi_get_resid(cmnd
) < cmnd
->underflow
))
1559 cmnd
->result
= (DID_ERROR
<< 16);
1561 scsi_dma_unmap(cmnd
);
1562 cmnd
->scsi_done(cmnd
);
1566 complete(evt
->eh_comp
);
1568 ibmvfc_free_event(evt
);
1572 * ibmvfc_host_chkready - Check if the host can accept commands
1573 * @vhost: struct ibmvfc host
1576 * 1 if host can accept command / 0 if not
1578 static inline int ibmvfc_host_chkready(struct ibmvfc_host
*vhost
)
1582 switch (vhost
->state
) {
1583 case IBMVFC_LINK_DEAD
:
1584 case IBMVFC_HOST_OFFLINE
:
1585 result
= DID_NO_CONNECT
<< 16;
1588 case IBMVFC_INITIALIZING
:
1590 case IBMVFC_LINK_DOWN
:
1591 result
= DID_REQUEUE
<< 16;
1602 * ibmvfc_queuecommand - The queuecommand function of the scsi template
1603 * @cmnd: struct scsi_cmnd to be executed
1604 * @done: Callback function to be called when cmnd is completed
1607 * 0 on success / other on failure
1609 static int ibmvfc_queuecommand_lck(struct scsi_cmnd
*cmnd
,
1610 void (*done
) (struct scsi_cmnd
*))
1612 struct ibmvfc_host
*vhost
= shost_priv(cmnd
->device
->host
);
1613 struct fc_rport
*rport
= starget_to_rport(scsi_target(cmnd
->device
));
1614 struct ibmvfc_cmd
*vfc_cmd
;
1615 struct ibmvfc_event
*evt
;
1619 if (unlikely((rc
= fc_remote_port_chkready(rport
))) ||
1620 unlikely((rc
= ibmvfc_host_chkready(vhost
)))) {
1626 cmnd
->result
= (DID_OK
<< 16);
1627 evt
= ibmvfc_get_event(vhost
);
1628 ibmvfc_init_event(evt
, ibmvfc_scsi_done
, IBMVFC_CMD_FORMAT
);
1630 cmnd
->scsi_done
= done
;
1631 vfc_cmd
= &evt
->iu
.cmd
;
1632 memset(vfc_cmd
, 0, sizeof(*vfc_cmd
));
1633 vfc_cmd
->resp
.va
= (u64
)evt
->crq
.ioba
+ offsetof(struct ibmvfc_cmd
, rsp
);
1634 vfc_cmd
->resp
.len
= sizeof(vfc_cmd
->rsp
);
1635 vfc_cmd
->frame_type
= IBMVFC_SCSI_FCP_TYPE
;
1636 vfc_cmd
->payload_len
= sizeof(vfc_cmd
->iu
);
1637 vfc_cmd
->resp_len
= sizeof(vfc_cmd
->rsp
);
1638 vfc_cmd
->cancel_key
= (unsigned long)cmnd
->device
->hostdata
;
1639 vfc_cmd
->tgt_scsi_id
= rport
->port_id
;
1640 vfc_cmd
->iu
.xfer_len
= scsi_bufflen(cmnd
);
1641 int_to_scsilun(cmnd
->device
->lun
, &vfc_cmd
->iu
.lun
);
1642 memcpy(vfc_cmd
->iu
.cdb
, cmnd
->cmnd
, cmnd
->cmd_len
);
1644 if (scsi_populate_tag_msg(cmnd
, tag
)) {
1645 vfc_cmd
->task_tag
= tag
[1];
1647 case MSG_SIMPLE_TAG
:
1648 vfc_cmd
->iu
.pri_task_attr
= IBMVFC_SIMPLE_TASK
;
1651 vfc_cmd
->iu
.pri_task_attr
= IBMVFC_HEAD_OF_QUEUE
;
1653 case MSG_ORDERED_TAG
:
1654 vfc_cmd
->iu
.pri_task_attr
= IBMVFC_ORDERED_TASK
;
1659 if (likely(!(rc
= ibmvfc_map_sg_data(cmnd
, evt
, vfc_cmd
, vhost
->dev
))))
1660 return ibmvfc_send_event(evt
, vhost
, 0);
1662 ibmvfc_free_event(evt
);
1664 return SCSI_MLQUEUE_HOST_BUSY
;
1666 if (vhost
->log_level
> IBMVFC_DEFAULT_LOG_LEVEL
)
1667 scmd_printk(KERN_ERR
, cmnd
,
1668 "Failed to map DMA buffer for command. rc=%d\n", rc
);
1670 cmnd
->result
= DID_ERROR
<< 16;
1675 static DEF_SCSI_QCMD(ibmvfc_queuecommand
)
1678 * ibmvfc_sync_completion - Signal that a synchronous command has completed
1679 * @evt: ibmvfc event struct
1682 static void ibmvfc_sync_completion(struct ibmvfc_event
*evt
)
1684 /* copy the response back */
1686 *evt
->sync_iu
= *evt
->xfer_iu
;
1688 complete(&evt
->comp
);
1692 * ibmvfc_bsg_timeout_done - Completion handler for cancelling BSG commands
1693 * @evt: struct ibmvfc_event
1696 static void ibmvfc_bsg_timeout_done(struct ibmvfc_event
*evt
)
1698 struct ibmvfc_host
*vhost
= evt
->vhost
;
1700 ibmvfc_free_event(evt
);
1701 vhost
->aborting_passthru
= 0;
1702 dev_info(vhost
->dev
, "Passthru command cancelled\n");
1706 * ibmvfc_bsg_timeout - Handle a BSG timeout
1707 * @job: struct fc_bsg_job that timed out
1710 * 0 on success / other on failure
1712 static int ibmvfc_bsg_timeout(struct fc_bsg_job
*job
)
1714 struct ibmvfc_host
*vhost
= shost_priv(job
->shost
);
1715 unsigned long port_id
= (unsigned long)job
->dd_data
;
1716 struct ibmvfc_event
*evt
;
1717 struct ibmvfc_tmf
*tmf
;
1718 unsigned long flags
;
1722 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
1723 if (vhost
->aborting_passthru
|| vhost
->state
!= IBMVFC_ACTIVE
) {
1724 __ibmvfc_reset_host(vhost
);
1725 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
1729 vhost
->aborting_passthru
= 1;
1730 evt
= ibmvfc_get_event(vhost
);
1731 ibmvfc_init_event(evt
, ibmvfc_bsg_timeout_done
, IBMVFC_MAD_FORMAT
);
1734 memset(tmf
, 0, sizeof(*tmf
));
1735 tmf
->common
.version
= 1;
1736 tmf
->common
.opcode
= IBMVFC_TMF_MAD
;
1737 tmf
->common
.length
= sizeof(*tmf
);
1738 tmf
->scsi_id
= port_id
;
1739 tmf
->cancel_key
= IBMVFC_PASSTHRU_CANCEL_KEY
;
1740 tmf
->my_cancel_key
= IBMVFC_INTERNAL_CANCEL_KEY
;
1741 rc
= ibmvfc_send_event(evt
, vhost
, default_timeout
);
1744 vhost
->aborting_passthru
= 0;
1745 dev_err(vhost
->dev
, "Failed to send cancel event. rc=%d\n", rc
);
1748 dev_info(vhost
->dev
, "Cancelling passthru command to port id 0x%lx\n",
1751 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
1758 * ibmvfc_bsg_plogi - PLOGI into a target to handle a BSG command
1759 * @vhost: struct ibmvfc_host to send command
1760 * @port_id: port ID to send command
1763 * 0 on success / other on failure
1765 static int ibmvfc_bsg_plogi(struct ibmvfc_host
*vhost
, unsigned int port_id
)
1767 struct ibmvfc_port_login
*plogi
;
1768 struct ibmvfc_target
*tgt
;
1769 struct ibmvfc_event
*evt
;
1770 union ibmvfc_iu rsp_iu
;
1771 unsigned long flags
;
1772 int rc
= 0, issue_login
= 1;
1775 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
1776 list_for_each_entry(tgt
, &vhost
->targets
, queue
) {
1777 if (tgt
->scsi_id
== port_id
) {
1785 if (unlikely((rc
= ibmvfc_host_chkready(vhost
))))
1788 evt
= ibmvfc_get_event(vhost
);
1789 ibmvfc_init_event(evt
, ibmvfc_sync_completion
, IBMVFC_MAD_FORMAT
);
1790 plogi
= &evt
->iu
.plogi
;
1791 memset(plogi
, 0, sizeof(*plogi
));
1792 plogi
->common
.version
= 1;
1793 plogi
->common
.opcode
= IBMVFC_PORT_LOGIN
;
1794 plogi
->common
.length
= sizeof(*plogi
);
1795 plogi
->scsi_id
= port_id
;
1796 evt
->sync_iu
= &rsp_iu
;
1797 init_completion(&evt
->comp
);
1799 rc
= ibmvfc_send_event(evt
, vhost
, default_timeout
);
1800 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
1805 wait_for_completion(&evt
->comp
);
1807 if (rsp_iu
.plogi
.common
.status
)
1810 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
1811 ibmvfc_free_event(evt
);
1813 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
1819 * ibmvfc_bsg_request - Handle a BSG request
1820 * @job: struct fc_bsg_job to be executed
1823 * 0 on success / other on failure
1825 static int ibmvfc_bsg_request(struct fc_bsg_job
*job
)
1827 struct ibmvfc_host
*vhost
= shost_priv(job
->shost
);
1828 struct fc_rport
*rport
= job
->rport
;
1829 struct ibmvfc_passthru_mad
*mad
;
1830 struct ibmvfc_event
*evt
;
1831 union ibmvfc_iu rsp_iu
;
1832 unsigned long flags
, port_id
= -1;
1833 unsigned int code
= job
->request
->msgcode
;
1834 int rc
= 0, req_seg
, rsp_seg
, issue_login
= 0;
1835 u32 fc_flags
, rsp_len
;
1838 job
->reply
->reply_payload_rcv_len
= 0;
1840 port_id
= rport
->port_id
;
1843 case FC_BSG_HST_ELS_NOLOGIN
:
1844 port_id
= (job
->request
->rqst_data
.h_els
.port_id
[0] << 16) |
1845 (job
->request
->rqst_data
.h_els
.port_id
[1] << 8) |
1846 job
->request
->rqst_data
.h_els
.port_id
[2];
1847 case FC_BSG_RPT_ELS
:
1848 fc_flags
= IBMVFC_FC_ELS
;
1852 port_id
= (job
->request
->rqst_data
.h_ct
.port_id
[0] << 16) |
1853 (job
->request
->rqst_data
.h_ct
.port_id
[1] << 8) |
1854 job
->request
->rqst_data
.h_ct
.port_id
[2];
1856 fc_flags
= IBMVFC_FC_CT_IU
;
1864 if (!mutex_trylock(&vhost
->passthru_mutex
))
1867 job
->dd_data
= (void *)port_id
;
1868 req_seg
= dma_map_sg(vhost
->dev
, job
->request_payload
.sg_list
,
1869 job
->request_payload
.sg_cnt
, DMA_TO_DEVICE
);
1872 mutex_unlock(&vhost
->passthru_mutex
);
1876 rsp_seg
= dma_map_sg(vhost
->dev
, job
->reply_payload
.sg_list
,
1877 job
->reply_payload
.sg_cnt
, DMA_FROM_DEVICE
);
1880 dma_unmap_sg(vhost
->dev
, job
->request_payload
.sg_list
,
1881 job
->request_payload
.sg_cnt
, DMA_TO_DEVICE
);
1882 mutex_unlock(&vhost
->passthru_mutex
);
1886 if (req_seg
> 1 || rsp_seg
> 1) {
1892 rc
= ibmvfc_bsg_plogi(vhost
, port_id
);
1894 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
1896 if (unlikely(rc
|| (rport
&& (rc
= fc_remote_port_chkready(rport
)))) ||
1897 unlikely((rc
= ibmvfc_host_chkready(vhost
)))) {
1898 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
1902 evt
= ibmvfc_get_event(vhost
);
1903 ibmvfc_init_event(evt
, ibmvfc_sync_completion
, IBMVFC_MAD_FORMAT
);
1904 mad
= &evt
->iu
.passthru
;
1906 memset(mad
, 0, sizeof(*mad
));
1907 mad
->common
.version
= 1;
1908 mad
->common
.opcode
= IBMVFC_PASSTHRU
;
1909 mad
->common
.length
= sizeof(*mad
) - sizeof(mad
->fc_iu
) - sizeof(mad
->iu
);
1911 mad
->cmd_ioba
.va
= (u64
)evt
->crq
.ioba
+
1912 offsetof(struct ibmvfc_passthru_mad
, iu
);
1913 mad
->cmd_ioba
.len
= sizeof(mad
->iu
);
1915 mad
->iu
.cmd_len
= job
->request_payload
.payload_len
;
1916 mad
->iu
.rsp_len
= job
->reply_payload
.payload_len
;
1917 mad
->iu
.flags
= fc_flags
;
1918 mad
->iu
.cancel_key
= IBMVFC_PASSTHRU_CANCEL_KEY
;
1920 mad
->iu
.cmd
.va
= sg_dma_address(job
->request_payload
.sg_list
);
1921 mad
->iu
.cmd
.len
= sg_dma_len(job
->request_payload
.sg_list
);
1922 mad
->iu
.rsp
.va
= sg_dma_address(job
->reply_payload
.sg_list
);
1923 mad
->iu
.rsp
.len
= sg_dma_len(job
->reply_payload
.sg_list
);
1924 mad
->iu
.scsi_id
= port_id
;
1925 mad
->iu
.tag
= (u64
)evt
;
1926 rsp_len
= mad
->iu
.rsp
.len
;
1928 evt
->sync_iu
= &rsp_iu
;
1929 init_completion(&evt
->comp
);
1930 rc
= ibmvfc_send_event(evt
, vhost
, 0);
1931 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
1938 wait_for_completion(&evt
->comp
);
1940 if (rsp_iu
.passthru
.common
.status
)
1943 job
->reply
->reply_payload_rcv_len
= rsp_len
;
1945 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
1946 ibmvfc_free_event(evt
);
1947 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
1948 job
->reply
->result
= rc
;
1952 dma_unmap_sg(vhost
->dev
, job
->request_payload
.sg_list
,
1953 job
->request_payload
.sg_cnt
, DMA_TO_DEVICE
);
1954 dma_unmap_sg(vhost
->dev
, job
->reply_payload
.sg_list
,
1955 job
->reply_payload
.sg_cnt
, DMA_FROM_DEVICE
);
1956 mutex_unlock(&vhost
->passthru_mutex
);
1962 * ibmvfc_reset_device - Reset the device with the specified reset type
1963 * @sdev: scsi device to reset
1965 * @desc: reset type description for log messages
1968 * 0 on success / other on failure
1970 static int ibmvfc_reset_device(struct scsi_device
*sdev
, int type
, char *desc
)
1972 struct ibmvfc_host
*vhost
= shost_priv(sdev
->host
);
1973 struct fc_rport
*rport
= starget_to_rport(scsi_target(sdev
));
1974 struct ibmvfc_cmd
*tmf
;
1975 struct ibmvfc_event
*evt
= NULL
;
1976 union ibmvfc_iu rsp_iu
;
1977 struct ibmvfc_fcp_rsp
*fc_rsp
= &rsp_iu
.cmd
.rsp
;
1978 int rsp_rc
= -EBUSY
;
1979 unsigned long flags
;
1982 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
1983 if (vhost
->state
== IBMVFC_ACTIVE
) {
1984 evt
= ibmvfc_get_event(vhost
);
1985 ibmvfc_init_event(evt
, ibmvfc_sync_completion
, IBMVFC_CMD_FORMAT
);
1988 memset(tmf
, 0, sizeof(*tmf
));
1989 tmf
->resp
.va
= (u64
)evt
->crq
.ioba
+ offsetof(struct ibmvfc_cmd
, rsp
);
1990 tmf
->resp
.len
= sizeof(tmf
->rsp
);
1991 tmf
->frame_type
= IBMVFC_SCSI_FCP_TYPE
;
1992 tmf
->payload_len
= sizeof(tmf
->iu
);
1993 tmf
->resp_len
= sizeof(tmf
->rsp
);
1994 tmf
->cancel_key
= (unsigned long)sdev
->hostdata
;
1995 tmf
->tgt_scsi_id
= rport
->port_id
;
1996 int_to_scsilun(sdev
->lun
, &tmf
->iu
.lun
);
1997 tmf
->flags
= (IBMVFC_NO_MEM_DESC
| IBMVFC_TMF
);
1998 tmf
->iu
.tmf_flags
= type
;
1999 evt
->sync_iu
= &rsp_iu
;
2001 init_completion(&evt
->comp
);
2002 rsp_rc
= ibmvfc_send_event(evt
, vhost
, default_timeout
);
2004 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
2007 sdev_printk(KERN_ERR
, sdev
, "Failed to send %s reset event. rc=%d\n",
2012 sdev_printk(KERN_INFO
, sdev
, "Resetting %s\n", desc
);
2013 wait_for_completion(&evt
->comp
);
2015 if (rsp_iu
.cmd
.status
)
2016 rsp_code
= ibmvfc_get_err_result(&rsp_iu
.cmd
);
2019 if (fc_rsp
->flags
& FCP_RSP_LEN_VALID
)
2020 rsp_code
= fc_rsp
->data
.info
.rsp_code
;
2022 sdev_printk(KERN_ERR
, sdev
, "%s reset failed: %s (%x:%x) "
2023 "flags: %x fcp_rsp: %x, scsi_status: %x\n",
2024 desc
, ibmvfc_get_cmd_error(rsp_iu
.cmd
.status
, rsp_iu
.cmd
.error
),
2025 rsp_iu
.cmd
.status
, rsp_iu
.cmd
.error
, fc_rsp
->flags
, rsp_code
,
2026 fc_rsp
->scsi_status
);
2029 sdev_printk(KERN_INFO
, sdev
, "%s reset successful\n", desc
);
2031 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
2032 ibmvfc_free_event(evt
);
2033 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
2038 * ibmvfc_match_rport - Match function for specified remote port
2039 * @evt: ibmvfc event struct
2040 * @device: device to match (rport)
2043 * 1 if event matches rport / 0 if event does not match rport
2045 static int ibmvfc_match_rport(struct ibmvfc_event
*evt
, void *rport
)
2047 struct fc_rport
*cmd_rport
;
2050 cmd_rport
= starget_to_rport(scsi_target(evt
->cmnd
->device
));
2051 if (cmd_rport
== rport
)
2058 * ibmvfc_match_target - Match function for specified target
2059 * @evt: ibmvfc event struct
2060 * @device: device to match (starget)
2063 * 1 if event matches starget / 0 if event does not match starget
2065 static int ibmvfc_match_target(struct ibmvfc_event
*evt
, void *device
)
2067 if (evt
->cmnd
&& scsi_target(evt
->cmnd
->device
) == device
)
2073 * ibmvfc_match_lun - Match function for specified LUN
2074 * @evt: ibmvfc event struct
2075 * @device: device to match (sdev)
2078 * 1 if event matches sdev / 0 if event does not match sdev
2080 static int ibmvfc_match_lun(struct ibmvfc_event
*evt
, void *device
)
2082 if (evt
->cmnd
&& evt
->cmnd
->device
== device
)
2088 * ibmvfc_wait_for_ops - Wait for ops to complete
2089 * @vhost: ibmvfc host struct
2090 * @device: device to match (starget or sdev)
2091 * @match: match function
2096 static int ibmvfc_wait_for_ops(struct ibmvfc_host
*vhost
, void *device
,
2097 int (*match
) (struct ibmvfc_event
*, void *))
2099 struct ibmvfc_event
*evt
;
2100 DECLARE_COMPLETION_ONSTACK(comp
);
2102 unsigned long flags
;
2103 signed long timeout
= IBMVFC_ABORT_WAIT_TIMEOUT
* HZ
;
2108 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
2109 list_for_each_entry(evt
, &vhost
->sent
, queue
) {
2110 if (match(evt
, device
)) {
2111 evt
->eh_comp
= &comp
;
2115 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
2118 timeout
= wait_for_completion_timeout(&comp
, timeout
);
2122 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
2123 list_for_each_entry(evt
, &vhost
->sent
, queue
) {
2124 if (match(evt
, device
)) {
2125 evt
->eh_comp
= NULL
;
2129 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
2131 dev_err(vhost
->dev
, "Timed out waiting for aborted commands\n");
2133 return wait
? FAILED
: SUCCESS
;
2143 * ibmvfc_cancel_all - Cancel all outstanding commands to the device
2144 * @sdev: scsi device to cancel commands
2145 * @type: type of error recovery being performed
2147 * This sends a cancel to the VIOS for the specified device. This does
2148 * NOT send any abort to the actual device. That must be done separately.
2151 * 0 on success / other on failure
2153 static int ibmvfc_cancel_all(struct scsi_device
*sdev
, int type
)
2155 struct ibmvfc_host
*vhost
= shost_priv(sdev
->host
);
2156 struct scsi_target
*starget
= scsi_target(sdev
);
2157 struct fc_rport
*rport
= starget_to_rport(starget
);
2158 struct ibmvfc_tmf
*tmf
;
2159 struct ibmvfc_event
*evt
, *found_evt
;
2160 union ibmvfc_iu rsp
;
2161 int rsp_rc
= -EBUSY
;
2162 unsigned long flags
;
2166 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
2168 list_for_each_entry(evt
, &vhost
->sent
, queue
) {
2169 if (evt
->cmnd
&& evt
->cmnd
->device
== sdev
) {
2176 if (vhost
->log_level
> IBMVFC_DEFAULT_LOG_LEVEL
)
2177 sdev_printk(KERN_INFO
, sdev
, "No events found to cancel\n");
2178 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
2182 if (vhost
->logged_in
) {
2183 evt
= ibmvfc_get_event(vhost
);
2184 ibmvfc_init_event(evt
, ibmvfc_sync_completion
, IBMVFC_MAD_FORMAT
);
2187 memset(tmf
, 0, sizeof(*tmf
));
2188 tmf
->common
.version
= 1;
2189 tmf
->common
.opcode
= IBMVFC_TMF_MAD
;
2190 tmf
->common
.length
= sizeof(*tmf
);
2191 tmf
->scsi_id
= rport
->port_id
;
2192 int_to_scsilun(sdev
->lun
, &tmf
->lun
);
2193 if (!(vhost
->login_buf
->resp
.capabilities
& IBMVFC_CAN_SUPPRESS_ABTS
))
2194 type
&= ~IBMVFC_TMF_SUPPRESS_ABTS
;
2195 if (vhost
->state
== IBMVFC_ACTIVE
)
2196 tmf
->flags
= (type
| IBMVFC_TMF_LUA_VALID
);
2198 tmf
->flags
= ((type
& IBMVFC_TMF_SUPPRESS_ABTS
) | IBMVFC_TMF_LUA_VALID
);
2199 tmf
->cancel_key
= (unsigned long)sdev
->hostdata
;
2200 tmf
->my_cancel_key
= (unsigned long)starget
->hostdata
;
2202 evt
->sync_iu
= &rsp
;
2203 init_completion(&evt
->comp
);
2204 rsp_rc
= ibmvfc_send_event(evt
, vhost
, default_timeout
);
2207 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
2210 sdev_printk(KERN_ERR
, sdev
, "Failed to send cancel event. rc=%d\n", rsp_rc
);
2211 /* If failure is received, the host adapter is most likely going
2212 through reset, return success so the caller will wait for the command
2213 being cancelled to get returned */
2217 sdev_printk(KERN_INFO
, sdev
, "Cancelling outstanding commands.\n");
2219 wait_for_completion(&evt
->comp
);
2220 status
= rsp
.mad_common
.status
;
2221 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
2222 ibmvfc_free_event(evt
);
2223 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
2225 if (status
!= IBMVFC_MAD_SUCCESS
) {
2226 sdev_printk(KERN_WARNING
, sdev
, "Cancel failed with rc=%x\n", status
);
2228 case IBMVFC_MAD_DRIVER_FAILED
:
2229 case IBMVFC_MAD_CRQ_ERROR
:
2230 /* Host adapter most likely going through reset, return success to
2231 the caller will wait for the command being cancelled to get returned */
2238 sdev_printk(KERN_INFO
, sdev
, "Successfully cancelled outstanding commands\n");
2243 * ibmvfc_match_key - Match function for specified cancel key
2244 * @evt: ibmvfc event struct
2245 * @key: cancel key to match
2248 * 1 if event matches key / 0 if event does not match key
2250 static int ibmvfc_match_key(struct ibmvfc_event
*evt
, void *key
)
2252 unsigned long cancel_key
= (unsigned long)key
;
2254 if (evt
->crq
.format
== IBMVFC_CMD_FORMAT
&&
2255 evt
->iu
.cmd
.cancel_key
== cancel_key
)
2261 * ibmvfc_match_evt - Match function for specified event
2262 * @evt: ibmvfc event struct
2263 * @match: event to match
2266 * 1 if event matches key / 0 if event does not match key
2268 static int ibmvfc_match_evt(struct ibmvfc_event
*evt
, void *match
)
2276 * ibmvfc_abort_task_set - Abort outstanding commands to the device
2277 * @sdev: scsi device to abort commands
2279 * This sends an Abort Task Set to the VIOS for the specified device. This does
2280 * NOT send any cancel to the VIOS. That must be done separately.
2283 * 0 on success / other on failure
2285 static int ibmvfc_abort_task_set(struct scsi_device
*sdev
)
2287 struct ibmvfc_host
*vhost
= shost_priv(sdev
->host
);
2288 struct fc_rport
*rport
= starget_to_rport(scsi_target(sdev
));
2289 struct ibmvfc_cmd
*tmf
;
2290 struct ibmvfc_event
*evt
, *found_evt
;
2291 union ibmvfc_iu rsp_iu
;
2292 struct ibmvfc_fcp_rsp
*fc_rsp
= &rsp_iu
.cmd
.rsp
;
2293 int rc
, rsp_rc
= -EBUSY
;
2294 unsigned long flags
, timeout
= IBMVFC_ABORT_TIMEOUT
;
2297 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
2299 list_for_each_entry(evt
, &vhost
->sent
, queue
) {
2300 if (evt
->cmnd
&& evt
->cmnd
->device
== sdev
) {
2307 if (vhost
->log_level
> IBMVFC_DEFAULT_LOG_LEVEL
)
2308 sdev_printk(KERN_INFO
, sdev
, "No events found to abort\n");
2309 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
2313 if (vhost
->state
== IBMVFC_ACTIVE
) {
2314 evt
= ibmvfc_get_event(vhost
);
2315 ibmvfc_init_event(evt
, ibmvfc_sync_completion
, IBMVFC_CMD_FORMAT
);
2318 memset(tmf
, 0, sizeof(*tmf
));
2319 tmf
->resp
.va
= (u64
)evt
->crq
.ioba
+ offsetof(struct ibmvfc_cmd
, rsp
);
2320 tmf
->resp
.len
= sizeof(tmf
->rsp
);
2321 tmf
->frame_type
= IBMVFC_SCSI_FCP_TYPE
;
2322 tmf
->payload_len
= sizeof(tmf
->iu
);
2323 tmf
->resp_len
= sizeof(tmf
->rsp
);
2324 tmf
->cancel_key
= (unsigned long)sdev
->hostdata
;
2325 tmf
->tgt_scsi_id
= rport
->port_id
;
2326 int_to_scsilun(sdev
->lun
, &tmf
->iu
.lun
);
2327 tmf
->flags
= (IBMVFC_NO_MEM_DESC
| IBMVFC_TMF
);
2328 tmf
->iu
.tmf_flags
= IBMVFC_ABORT_TASK_SET
;
2329 evt
->sync_iu
= &rsp_iu
;
2331 init_completion(&evt
->comp
);
2332 rsp_rc
= ibmvfc_send_event(evt
, vhost
, default_timeout
);
2335 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
2338 sdev_printk(KERN_ERR
, sdev
, "Failed to send abort. rc=%d\n", rsp_rc
);
2342 sdev_printk(KERN_INFO
, sdev
, "Aborting outstanding commands\n");
2343 timeout
= wait_for_completion_timeout(&evt
->comp
, timeout
);
2346 rc
= ibmvfc_cancel_all(sdev
, 0);
2348 rc
= ibmvfc_wait_for_ops(vhost
, sdev
->hostdata
, ibmvfc_match_key
);
2354 sdev_printk(KERN_INFO
, sdev
, "Cancel failed, resetting host\n");
2355 ibmvfc_reset_host(vhost
);
2357 rc
= ibmvfc_wait_for_ops(vhost
, sdev
->hostdata
, ibmvfc_match_key
);
2362 rc
= ibmvfc_wait_for_ops(vhost
, evt
, ibmvfc_match_evt
);
2363 if (rc
!= SUCCESS
) {
2364 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
2365 ibmvfc_hard_reset_host(vhost
);
2366 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
2374 if (rsp_iu
.cmd
.status
)
2375 rsp_code
= ibmvfc_get_err_result(&rsp_iu
.cmd
);
2378 if (fc_rsp
->flags
& FCP_RSP_LEN_VALID
)
2379 rsp_code
= fc_rsp
->data
.info
.rsp_code
;
2381 sdev_printk(KERN_ERR
, sdev
, "Abort failed: %s (%x:%x) "
2382 "flags: %x fcp_rsp: %x, scsi_status: %x\n",
2383 ibmvfc_get_cmd_error(rsp_iu
.cmd
.status
, rsp_iu
.cmd
.error
),
2384 rsp_iu
.cmd
.status
, rsp_iu
.cmd
.error
, fc_rsp
->flags
, rsp_code
,
2385 fc_rsp
->scsi_status
);
2388 sdev_printk(KERN_INFO
, sdev
, "Abort successful\n");
2391 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
2392 ibmvfc_free_event(evt
);
2393 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
2398 * ibmvfc_eh_abort_handler - Abort a command
2399 * @cmd: scsi command to abort
2402 * SUCCESS / FAST_IO_FAIL / FAILED
2404 static int ibmvfc_eh_abort_handler(struct scsi_cmnd
*cmd
)
2406 struct scsi_device
*sdev
= cmd
->device
;
2407 struct ibmvfc_host
*vhost
= shost_priv(sdev
->host
);
2408 int cancel_rc
, block_rc
;
2412 block_rc
= fc_block_scsi_eh(cmd
);
2413 ibmvfc_wait_while_resetting(vhost
);
2414 if (block_rc
!= FAST_IO_FAIL
) {
2415 cancel_rc
= ibmvfc_cancel_all(sdev
, IBMVFC_TMF_ABORT_TASK_SET
);
2416 ibmvfc_abort_task_set(sdev
);
2418 cancel_rc
= ibmvfc_cancel_all(sdev
, IBMVFC_TMF_SUPPRESS_ABTS
);
2421 rc
= ibmvfc_wait_for_ops(vhost
, sdev
, ibmvfc_match_lun
);
2423 if (block_rc
== FAST_IO_FAIL
&& rc
!= FAILED
)
2431 * ibmvfc_eh_device_reset_handler - Reset a single LUN
2432 * @cmd: scsi command struct
2435 * SUCCESS / FAST_IO_FAIL / FAILED
2437 static int ibmvfc_eh_device_reset_handler(struct scsi_cmnd
*cmd
)
2439 struct scsi_device
*sdev
= cmd
->device
;
2440 struct ibmvfc_host
*vhost
= shost_priv(sdev
->host
);
2441 int cancel_rc
, block_rc
, reset_rc
= 0;
2445 block_rc
= fc_block_scsi_eh(cmd
);
2446 ibmvfc_wait_while_resetting(vhost
);
2447 if (block_rc
!= FAST_IO_FAIL
) {
2448 cancel_rc
= ibmvfc_cancel_all(sdev
, IBMVFC_TMF_LUN_RESET
);
2449 reset_rc
= ibmvfc_reset_device(sdev
, IBMVFC_LUN_RESET
, "LUN");
2451 cancel_rc
= ibmvfc_cancel_all(sdev
, IBMVFC_TMF_SUPPRESS_ABTS
);
2453 if (!cancel_rc
&& !reset_rc
)
2454 rc
= ibmvfc_wait_for_ops(vhost
, sdev
, ibmvfc_match_lun
);
2456 if (block_rc
== FAST_IO_FAIL
&& rc
!= FAILED
)
2464 * ibmvfc_dev_cancel_all_noreset - Device iterated cancel all function
2465 * @sdev: scsi device struct
2466 * @data: return code
2469 static void ibmvfc_dev_cancel_all_noreset(struct scsi_device
*sdev
, void *data
)
2471 unsigned long *rc
= data
;
2472 *rc
|= ibmvfc_cancel_all(sdev
, IBMVFC_TMF_SUPPRESS_ABTS
);
2476 * ibmvfc_dev_cancel_all_reset - Device iterated cancel all function
2477 * @sdev: scsi device struct
2478 * @data: return code
2481 static void ibmvfc_dev_cancel_all_reset(struct scsi_device
*sdev
, void *data
)
2483 unsigned long *rc
= data
;
2484 *rc
|= ibmvfc_cancel_all(sdev
, IBMVFC_TMF_TGT_RESET
);
2488 * ibmvfc_eh_target_reset_handler - Reset the target
2489 * @cmd: scsi command struct
2492 * SUCCESS / FAST_IO_FAIL / FAILED
2494 static int ibmvfc_eh_target_reset_handler(struct scsi_cmnd
*cmd
)
2496 struct scsi_device
*sdev
= cmd
->device
;
2497 struct ibmvfc_host
*vhost
= shost_priv(sdev
->host
);
2498 struct scsi_target
*starget
= scsi_target(sdev
);
2502 unsigned long cancel_rc
= 0;
2505 block_rc
= fc_block_scsi_eh(cmd
);
2506 ibmvfc_wait_while_resetting(vhost
);
2507 if (block_rc
!= FAST_IO_FAIL
) {
2508 starget_for_each_device(starget
, &cancel_rc
, ibmvfc_dev_cancel_all_reset
);
2509 reset_rc
= ibmvfc_reset_device(sdev
, IBMVFC_TARGET_RESET
, "target");
2511 starget_for_each_device(starget
, &cancel_rc
, ibmvfc_dev_cancel_all_noreset
);
2513 if (!cancel_rc
&& !reset_rc
)
2514 rc
= ibmvfc_wait_for_ops(vhost
, starget
, ibmvfc_match_target
);
2516 if (block_rc
== FAST_IO_FAIL
&& rc
!= FAILED
)
2524 * ibmvfc_eh_host_reset_handler - Reset the connection to the server
2525 * @cmd: struct scsi_cmnd having problems
2528 static int ibmvfc_eh_host_reset_handler(struct scsi_cmnd
*cmd
)
2531 struct ibmvfc_host
*vhost
= shost_priv(cmd
->device
->host
);
2533 block_rc
= fc_block_scsi_eh(cmd
);
2534 dev_err(vhost
->dev
, "Resetting connection due to error recovery\n");
2535 rc
= ibmvfc_issue_fc_host_lip(vhost
->host
);
2537 if (block_rc
== FAST_IO_FAIL
)
2538 return FAST_IO_FAIL
;
2540 return rc
? FAILED
: SUCCESS
;
2544 * ibmvfc_terminate_rport_io - Terminate all pending I/O to the rport.
2545 * @rport: rport struct
2550 static void ibmvfc_terminate_rport_io(struct fc_rport
*rport
)
2552 struct Scsi_Host
*shost
= rport_to_shost(rport
);
2553 struct ibmvfc_host
*vhost
= shost_priv(shost
);
2554 struct fc_rport
*dev_rport
;
2555 struct scsi_device
*sdev
;
2559 shost_for_each_device(sdev
, shost
) {
2560 dev_rport
= starget_to_rport(scsi_target(sdev
));
2561 if (dev_rport
!= rport
)
2563 ibmvfc_cancel_all(sdev
, IBMVFC_TMF_SUPPRESS_ABTS
);
2566 rc
= ibmvfc_wait_for_ops(vhost
, rport
, ibmvfc_match_rport
);
2569 ibmvfc_issue_fc_host_lip(shost
);
2573 static const struct ibmvfc_async_desc ae_desc
[] = {
2574 { "PLOGI", IBMVFC_AE_ELS_PLOGI
, IBMVFC_DEFAULT_LOG_LEVEL
+ 1 },
2575 { "LOGO", IBMVFC_AE_ELS_LOGO
, IBMVFC_DEFAULT_LOG_LEVEL
+ 1 },
2576 { "PRLO", IBMVFC_AE_ELS_PRLO
, IBMVFC_DEFAULT_LOG_LEVEL
+ 1 },
2577 { "N-Port SCN", IBMVFC_AE_SCN_NPORT
, IBMVFC_DEFAULT_LOG_LEVEL
+ 1 },
2578 { "Group SCN", IBMVFC_AE_SCN_GROUP
, IBMVFC_DEFAULT_LOG_LEVEL
+ 1 },
2579 { "Domain SCN", IBMVFC_AE_SCN_DOMAIN
, IBMVFC_DEFAULT_LOG_LEVEL
},
2580 { "Fabric SCN", IBMVFC_AE_SCN_FABRIC
, IBMVFC_DEFAULT_LOG_LEVEL
},
2581 { "Link Up", IBMVFC_AE_LINK_UP
, IBMVFC_DEFAULT_LOG_LEVEL
},
2582 { "Link Down", IBMVFC_AE_LINK_DOWN
, IBMVFC_DEFAULT_LOG_LEVEL
},
2583 { "Link Dead", IBMVFC_AE_LINK_DEAD
, IBMVFC_DEFAULT_LOG_LEVEL
},
2584 { "Halt", IBMVFC_AE_HALT
, IBMVFC_DEFAULT_LOG_LEVEL
},
2585 { "Resume", IBMVFC_AE_RESUME
, IBMVFC_DEFAULT_LOG_LEVEL
},
2586 { "Adapter Failed", IBMVFC_AE_ADAPTER_FAILED
, IBMVFC_DEFAULT_LOG_LEVEL
},
2589 static const struct ibmvfc_async_desc unknown_ae
= {
2590 "Unknown async", 0, IBMVFC_DEFAULT_LOG_LEVEL
2594 * ibmvfc_get_ae_desc - Get text description for async event
2598 static const struct ibmvfc_async_desc
*ibmvfc_get_ae_desc(u64 ae
)
2602 for (i
= 0; i
< ARRAY_SIZE(ae_desc
); i
++)
2603 if (ae_desc
[i
].ae
== ae
)
2609 static const struct {
2610 enum ibmvfc_ae_link_state state
;
2613 { IBMVFC_AE_LS_LINK_UP
, " link up" },
2614 { IBMVFC_AE_LS_LINK_BOUNCED
, " link bounced" },
2615 { IBMVFC_AE_LS_LINK_DOWN
, " link down" },
2616 { IBMVFC_AE_LS_LINK_DEAD
, " link dead" },
2620 * ibmvfc_get_link_state - Get text description for link state
2621 * @state: link state
2624 static const char *ibmvfc_get_link_state(enum ibmvfc_ae_link_state state
)
2628 for (i
= 0; i
< ARRAY_SIZE(link_desc
); i
++)
2629 if (link_desc
[i
].state
== state
)
2630 return link_desc
[i
].desc
;
2636 * ibmvfc_handle_async - Handle an async event from the adapter
2637 * @crq: crq to process
2638 * @vhost: ibmvfc host struct
2641 static void ibmvfc_handle_async(struct ibmvfc_async_crq
*crq
,
2642 struct ibmvfc_host
*vhost
)
2644 const struct ibmvfc_async_desc
*desc
= ibmvfc_get_ae_desc(crq
->event
);
2645 struct ibmvfc_target
*tgt
;
2647 ibmvfc_log(vhost
, desc
->log_level
, "%s event received. scsi_id: %llx, wwpn: %llx,"
2648 " node_name: %llx%s\n", desc
->desc
, crq
->scsi_id
, crq
->wwpn
, crq
->node_name
,
2649 ibmvfc_get_link_state(crq
->link_state
));
2651 switch (crq
->event
) {
2652 case IBMVFC_AE_RESUME
:
2653 switch (crq
->link_state
) {
2654 case IBMVFC_AE_LS_LINK_DOWN
:
2655 ibmvfc_link_down(vhost
, IBMVFC_LINK_DOWN
);
2657 case IBMVFC_AE_LS_LINK_DEAD
:
2658 ibmvfc_link_down(vhost
, IBMVFC_LINK_DEAD
);
2660 case IBMVFC_AE_LS_LINK_UP
:
2661 case IBMVFC_AE_LS_LINK_BOUNCED
:
2663 vhost
->events_to_log
|= IBMVFC_AE_LINKUP
;
2664 vhost
->delay_init
= 1;
2665 __ibmvfc_reset_host(vhost
);
2670 case IBMVFC_AE_LINK_UP
:
2671 vhost
->events_to_log
|= IBMVFC_AE_LINKUP
;
2672 vhost
->delay_init
= 1;
2673 __ibmvfc_reset_host(vhost
);
2675 case IBMVFC_AE_SCN_FABRIC
:
2676 case IBMVFC_AE_SCN_DOMAIN
:
2677 vhost
->events_to_log
|= IBMVFC_AE_RSCN
;
2678 if (vhost
->state
< IBMVFC_HALTED
) {
2679 vhost
->delay_init
= 1;
2680 __ibmvfc_reset_host(vhost
);
2683 case IBMVFC_AE_SCN_NPORT
:
2684 case IBMVFC_AE_SCN_GROUP
:
2685 vhost
->events_to_log
|= IBMVFC_AE_RSCN
;
2686 ibmvfc_reinit_host(vhost
);
2688 case IBMVFC_AE_ELS_LOGO
:
2689 case IBMVFC_AE_ELS_PRLO
:
2690 case IBMVFC_AE_ELS_PLOGI
:
2691 list_for_each_entry(tgt
, &vhost
->targets
, queue
) {
2692 if (!crq
->scsi_id
&& !crq
->wwpn
&& !crq
->node_name
)
2694 if (crq
->scsi_id
&& tgt
->scsi_id
!= crq
->scsi_id
)
2696 if (crq
->wwpn
&& tgt
->ids
.port_name
!= crq
->wwpn
)
2698 if (crq
->node_name
&& tgt
->ids
.node_name
!= crq
->node_name
)
2700 if (tgt
->need_login
&& crq
->event
== IBMVFC_AE_ELS_LOGO
)
2702 if (!tgt
->need_login
|| crq
->event
== IBMVFC_AE_ELS_PLOGI
) {
2703 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_DEL_RPORT
);
2704 ibmvfc_reinit_host(vhost
);
2708 case IBMVFC_AE_LINK_DOWN
:
2709 case IBMVFC_AE_ADAPTER_FAILED
:
2710 ibmvfc_link_down(vhost
, IBMVFC_LINK_DOWN
);
2712 case IBMVFC_AE_LINK_DEAD
:
2713 ibmvfc_link_down(vhost
, IBMVFC_LINK_DEAD
);
2715 case IBMVFC_AE_HALT
:
2716 ibmvfc_link_down(vhost
, IBMVFC_HALTED
);
2719 dev_err(vhost
->dev
, "Unknown async event received: %lld\n", crq
->event
);
2725 * ibmvfc_handle_crq - Handles and frees received events in the CRQ
2726 * @crq: Command/Response queue
2727 * @vhost: ibmvfc host struct
2730 static void ibmvfc_handle_crq(struct ibmvfc_crq
*crq
, struct ibmvfc_host
*vhost
)
2733 struct ibmvfc_event
*evt
= (struct ibmvfc_event
*)crq
->ioba
;
2735 switch (crq
->valid
) {
2736 case IBMVFC_CRQ_INIT_RSP
:
2737 switch (crq
->format
) {
2738 case IBMVFC_CRQ_INIT
:
2739 dev_info(vhost
->dev
, "Partner initialized\n");
2740 /* Send back a response */
2741 rc
= ibmvfc_send_crq_init_complete(vhost
);
2743 ibmvfc_init_host(vhost
);
2745 dev_err(vhost
->dev
, "Unable to send init rsp. rc=%ld\n", rc
);
2747 case IBMVFC_CRQ_INIT_COMPLETE
:
2748 dev_info(vhost
->dev
, "Partner initialization complete\n");
2749 ibmvfc_init_host(vhost
);
2752 dev_err(vhost
->dev
, "Unknown crq message type: %d\n", crq
->format
);
2755 case IBMVFC_CRQ_XPORT_EVENT
:
2756 vhost
->state
= IBMVFC_NO_CRQ
;
2757 vhost
->logged_in
= 0;
2758 ibmvfc_set_host_action(vhost
, IBMVFC_HOST_ACTION_NONE
);
2759 if (crq
->format
== IBMVFC_PARTITION_MIGRATED
) {
2760 /* We need to re-setup the interpartition connection */
2761 dev_info(vhost
->dev
, "Re-enabling adapter\n");
2762 vhost
->client_migrated
= 1;
2763 ibmvfc_purge_requests(vhost
, DID_REQUEUE
);
2764 ibmvfc_link_down(vhost
, IBMVFC_LINK_DOWN
);
2765 ibmvfc_set_host_action(vhost
, IBMVFC_HOST_ACTION_REENABLE
);
2767 dev_err(vhost
->dev
, "Virtual adapter failed (rc=%d)\n", crq
->format
);
2768 ibmvfc_purge_requests(vhost
, DID_ERROR
);
2769 ibmvfc_link_down(vhost
, IBMVFC_LINK_DOWN
);
2770 ibmvfc_set_host_action(vhost
, IBMVFC_HOST_ACTION_RESET
);
2773 case IBMVFC_CRQ_CMD_RSP
:
2776 dev_err(vhost
->dev
, "Got an invalid message type 0x%02x\n", crq
->valid
);
2780 if (crq
->format
== IBMVFC_ASYNC_EVENT
)
2783 /* The only kind of payload CRQs we should get are responses to
2784 * things we send. Make sure this response is to something we
2787 if (unlikely(!ibmvfc_valid_event(&vhost
->pool
, evt
))) {
2788 dev_err(vhost
->dev
, "Returned correlation_token 0x%08llx is invalid!\n",
2793 if (unlikely(atomic_read(&evt
->free
))) {
2794 dev_err(vhost
->dev
, "Received duplicate correlation_token 0x%08llx!\n",
2799 del_timer(&evt
->timer
);
2800 list_del(&evt
->queue
);
2801 ibmvfc_trc_end(evt
);
2806 * ibmvfc_scan_finished - Check if the device scan is done.
2807 * @shost: scsi host struct
2808 * @time: current elapsed time
2811 * 0 if scan is not done / 1 if scan is done
2813 static int ibmvfc_scan_finished(struct Scsi_Host
*shost
, unsigned long time
)
2815 unsigned long flags
;
2816 struct ibmvfc_host
*vhost
= shost_priv(shost
);
2819 spin_lock_irqsave(shost
->host_lock
, flags
);
2820 if (time
>= (init_timeout
* HZ
)) {
2821 dev_info(vhost
->dev
, "Scan taking longer than %d seconds, "
2822 "continuing initialization\n", init_timeout
);
2826 if (vhost
->scan_complete
)
2828 spin_unlock_irqrestore(shost
->host_lock
, flags
);
2833 * ibmvfc_slave_alloc - Setup the device's task set value
2834 * @sdev: struct scsi_device device to configure
2836 * Set the device's task set value so that error handling works as
2840 * 0 on success / -ENXIO if device does not exist
2842 static int ibmvfc_slave_alloc(struct scsi_device
*sdev
)
2844 struct Scsi_Host
*shost
= sdev
->host
;
2845 struct fc_rport
*rport
= starget_to_rport(scsi_target(sdev
));
2846 struct ibmvfc_host
*vhost
= shost_priv(shost
);
2847 unsigned long flags
= 0;
2849 if (!rport
|| fc_remote_port_chkready(rport
))
2852 spin_lock_irqsave(shost
->host_lock
, flags
);
2853 sdev
->hostdata
= (void *)(unsigned long)vhost
->task_set
++;
2854 spin_unlock_irqrestore(shost
->host_lock
, flags
);
2859 * ibmvfc_target_alloc - Setup the target's task set value
2860 * @starget: struct scsi_target
2862 * Set the target's task set value so that error handling works as
2866 * 0 on success / -ENXIO if device does not exist
2868 static int ibmvfc_target_alloc(struct scsi_target
*starget
)
2870 struct Scsi_Host
*shost
= dev_to_shost(starget
->dev
.parent
);
2871 struct ibmvfc_host
*vhost
= shost_priv(shost
);
2872 unsigned long flags
= 0;
2874 spin_lock_irqsave(shost
->host_lock
, flags
);
2875 starget
->hostdata
= (void *)(unsigned long)vhost
->task_set
++;
2876 spin_unlock_irqrestore(shost
->host_lock
, flags
);
2881 * ibmvfc_slave_configure - Configure the device
2882 * @sdev: struct scsi_device device to configure
2884 * Enable allow_restart for a device if it is a disk. Adjust the
2885 * queue_depth here also.
2890 static int ibmvfc_slave_configure(struct scsi_device
*sdev
)
2892 struct Scsi_Host
*shost
= sdev
->host
;
2893 unsigned long flags
= 0;
2895 spin_lock_irqsave(shost
->host_lock
, flags
);
2896 if (sdev
->type
== TYPE_DISK
)
2897 sdev
->allow_restart
= 1;
2899 if (sdev
->tagged_supported
) {
2900 scsi_set_tag_type(sdev
, MSG_SIMPLE_TAG
);
2901 scsi_activate_tcq(sdev
, sdev
->queue_depth
);
2903 scsi_deactivate_tcq(sdev
, sdev
->queue_depth
);
2904 spin_unlock_irqrestore(shost
->host_lock
, flags
);
2909 * ibmvfc_change_queue_depth - Change the device's queue depth
2910 * @sdev: scsi device struct
2911 * @qdepth: depth to set
2912 * @reason: calling context
2917 static int ibmvfc_change_queue_depth(struct scsi_device
*sdev
, int qdepth
,
2920 if (reason
!= SCSI_QDEPTH_DEFAULT
)
2923 if (qdepth
> IBMVFC_MAX_CMDS_PER_LUN
)
2924 qdepth
= IBMVFC_MAX_CMDS_PER_LUN
;
2926 scsi_adjust_queue_depth(sdev
, 0, qdepth
);
2927 return sdev
->queue_depth
;
2931 * ibmvfc_change_queue_type - Change the device's queue type
2932 * @sdev: scsi device struct
2933 * @tag_type: type of tags to use
2936 * actual queue type set
2938 static int ibmvfc_change_queue_type(struct scsi_device
*sdev
, int tag_type
)
2940 if (sdev
->tagged_supported
) {
2941 scsi_set_tag_type(sdev
, tag_type
);
2944 scsi_activate_tcq(sdev
, sdev
->queue_depth
);
2946 scsi_deactivate_tcq(sdev
, sdev
->queue_depth
);
2953 static ssize_t
ibmvfc_show_host_partition_name(struct device
*dev
,
2954 struct device_attribute
*attr
, char *buf
)
2956 struct Scsi_Host
*shost
= class_to_shost(dev
);
2957 struct ibmvfc_host
*vhost
= shost_priv(shost
);
2959 return snprintf(buf
, PAGE_SIZE
, "%s\n",
2960 vhost
->login_buf
->resp
.partition_name
);
2963 static ssize_t
ibmvfc_show_host_device_name(struct device
*dev
,
2964 struct device_attribute
*attr
, char *buf
)
2966 struct Scsi_Host
*shost
= class_to_shost(dev
);
2967 struct ibmvfc_host
*vhost
= shost_priv(shost
);
2969 return snprintf(buf
, PAGE_SIZE
, "%s\n",
2970 vhost
->login_buf
->resp
.device_name
);
2973 static ssize_t
ibmvfc_show_host_loc_code(struct device
*dev
,
2974 struct device_attribute
*attr
, char *buf
)
2976 struct Scsi_Host
*shost
= class_to_shost(dev
);
2977 struct ibmvfc_host
*vhost
= shost_priv(shost
);
2979 return snprintf(buf
, PAGE_SIZE
, "%s\n",
2980 vhost
->login_buf
->resp
.port_loc_code
);
2983 static ssize_t
ibmvfc_show_host_drc_name(struct device
*dev
,
2984 struct device_attribute
*attr
, char *buf
)
2986 struct Scsi_Host
*shost
= class_to_shost(dev
);
2987 struct ibmvfc_host
*vhost
= shost_priv(shost
);
2989 return snprintf(buf
, PAGE_SIZE
, "%s\n",
2990 vhost
->login_buf
->resp
.drc_name
);
2993 static ssize_t
ibmvfc_show_host_npiv_version(struct device
*dev
,
2994 struct device_attribute
*attr
, char *buf
)
2996 struct Scsi_Host
*shost
= class_to_shost(dev
);
2997 struct ibmvfc_host
*vhost
= shost_priv(shost
);
2998 return snprintf(buf
, PAGE_SIZE
, "%d\n", vhost
->login_buf
->resp
.version
);
3001 static ssize_t
ibmvfc_show_host_capabilities(struct device
*dev
,
3002 struct device_attribute
*attr
, char *buf
)
3004 struct Scsi_Host
*shost
= class_to_shost(dev
);
3005 struct ibmvfc_host
*vhost
= shost_priv(shost
);
3006 return snprintf(buf
, PAGE_SIZE
, "%llx\n", vhost
->login_buf
->resp
.capabilities
);
3010 * ibmvfc_show_log_level - Show the adapter's error logging level
3011 * @dev: class device struct
3015 * number of bytes printed to buffer
3017 static ssize_t
ibmvfc_show_log_level(struct device
*dev
,
3018 struct device_attribute
*attr
, char *buf
)
3020 struct Scsi_Host
*shost
= class_to_shost(dev
);
3021 struct ibmvfc_host
*vhost
= shost_priv(shost
);
3022 unsigned long flags
= 0;
3025 spin_lock_irqsave(shost
->host_lock
, flags
);
3026 len
= snprintf(buf
, PAGE_SIZE
, "%d\n", vhost
->log_level
);
3027 spin_unlock_irqrestore(shost
->host_lock
, flags
);
3032 * ibmvfc_store_log_level - Change the adapter's error logging level
3033 * @dev: class device struct
3037 * number of bytes printed to buffer
3039 static ssize_t
ibmvfc_store_log_level(struct device
*dev
,
3040 struct device_attribute
*attr
,
3041 const char *buf
, size_t count
)
3043 struct Scsi_Host
*shost
= class_to_shost(dev
);
3044 struct ibmvfc_host
*vhost
= shost_priv(shost
);
3045 unsigned long flags
= 0;
3047 spin_lock_irqsave(shost
->host_lock
, flags
);
3048 vhost
->log_level
= simple_strtoul(buf
, NULL
, 10);
3049 spin_unlock_irqrestore(shost
->host_lock
, flags
);
3053 static DEVICE_ATTR(partition_name
, S_IRUGO
, ibmvfc_show_host_partition_name
, NULL
);
3054 static DEVICE_ATTR(device_name
, S_IRUGO
, ibmvfc_show_host_device_name
, NULL
);
3055 static DEVICE_ATTR(port_loc_code
, S_IRUGO
, ibmvfc_show_host_loc_code
, NULL
);
3056 static DEVICE_ATTR(drc_name
, S_IRUGO
, ibmvfc_show_host_drc_name
, NULL
);
3057 static DEVICE_ATTR(npiv_version
, S_IRUGO
, ibmvfc_show_host_npiv_version
, NULL
);
3058 static DEVICE_ATTR(capabilities
, S_IRUGO
, ibmvfc_show_host_capabilities
, NULL
);
3059 static DEVICE_ATTR(log_level
, S_IRUGO
| S_IWUSR
,
3060 ibmvfc_show_log_level
, ibmvfc_store_log_level
);
3062 #ifdef CONFIG_SCSI_IBMVFC_TRACE
3064 * ibmvfc_read_trace - Dump the adapter trace
3065 * @filp: open sysfs file
3066 * @kobj: kobject struct
3067 * @bin_attr: bin_attribute struct
3070 * @count: buffer size
3073 * number of bytes printed to buffer
3075 static ssize_t
ibmvfc_read_trace(struct file
*filp
, struct kobject
*kobj
,
3076 struct bin_attribute
*bin_attr
,
3077 char *buf
, loff_t off
, size_t count
)
3079 struct device
*dev
= container_of(kobj
, struct device
, kobj
);
3080 struct Scsi_Host
*shost
= class_to_shost(dev
);
3081 struct ibmvfc_host
*vhost
= shost_priv(shost
);
3082 unsigned long flags
= 0;
3083 int size
= IBMVFC_TRACE_SIZE
;
3084 char *src
= (char *)vhost
->trace
;
3088 if (off
+ count
> size
) {
3093 spin_lock_irqsave(shost
->host_lock
, flags
);
3094 memcpy(buf
, &src
[off
], count
);
3095 spin_unlock_irqrestore(shost
->host_lock
, flags
);
3099 static struct bin_attribute ibmvfc_trace_attr
= {
3105 .read
= ibmvfc_read_trace
,
3109 static struct device_attribute
*ibmvfc_attrs
[] = {
3110 &dev_attr_partition_name
,
3111 &dev_attr_device_name
,
3112 &dev_attr_port_loc_code
,
3114 &dev_attr_npiv_version
,
3115 &dev_attr_capabilities
,
3116 &dev_attr_log_level
,
3120 static struct scsi_host_template driver_template
= {
3121 .module
= THIS_MODULE
,
3122 .name
= "IBM POWER Virtual FC Adapter",
3123 .proc_name
= IBMVFC_NAME
,
3124 .queuecommand
= ibmvfc_queuecommand
,
3125 .eh_abort_handler
= ibmvfc_eh_abort_handler
,
3126 .eh_device_reset_handler
= ibmvfc_eh_device_reset_handler
,
3127 .eh_target_reset_handler
= ibmvfc_eh_target_reset_handler
,
3128 .eh_host_reset_handler
= ibmvfc_eh_host_reset_handler
,
3129 .slave_alloc
= ibmvfc_slave_alloc
,
3130 .slave_configure
= ibmvfc_slave_configure
,
3131 .target_alloc
= ibmvfc_target_alloc
,
3132 .scan_finished
= ibmvfc_scan_finished
,
3133 .change_queue_depth
= ibmvfc_change_queue_depth
,
3134 .change_queue_type
= ibmvfc_change_queue_type
,
3136 .can_queue
= IBMVFC_MAX_REQUESTS_DEFAULT
,
3138 .sg_tablesize
= SG_ALL
,
3139 .max_sectors
= IBMVFC_MAX_SECTORS
,
3140 .use_clustering
= ENABLE_CLUSTERING
,
3141 .shost_attrs
= ibmvfc_attrs
,
3145 * ibmvfc_next_async_crq - Returns the next entry in async queue
3146 * @vhost: ibmvfc host struct
3149 * Pointer to next entry in queue / NULL if empty
3151 static struct ibmvfc_async_crq
*ibmvfc_next_async_crq(struct ibmvfc_host
*vhost
)
3153 struct ibmvfc_async_crq_queue
*async_crq
= &vhost
->async_crq
;
3154 struct ibmvfc_async_crq
*crq
;
3156 crq
= &async_crq
->msgs
[async_crq
->cur
];
3157 if (crq
->valid
& 0x80) {
3158 if (++async_crq
->cur
== async_crq
->size
)
3168 * ibmvfc_next_crq - Returns the next entry in message queue
3169 * @vhost: ibmvfc host struct
3172 * Pointer to next entry in queue / NULL if empty
3174 static struct ibmvfc_crq
*ibmvfc_next_crq(struct ibmvfc_host
*vhost
)
3176 struct ibmvfc_crq_queue
*queue
= &vhost
->crq
;
3177 struct ibmvfc_crq
*crq
;
3179 crq
= &queue
->msgs
[queue
->cur
];
3180 if (crq
->valid
& 0x80) {
3181 if (++queue
->cur
== queue
->size
)
3191 * ibmvfc_interrupt - Interrupt handler
3192 * @irq: number of irq to handle, not used
3193 * @dev_instance: ibmvfc_host that received interrupt
3198 static irqreturn_t
ibmvfc_interrupt(int irq
, void *dev_instance
)
3200 struct ibmvfc_host
*vhost
= (struct ibmvfc_host
*)dev_instance
;
3201 unsigned long flags
;
3203 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
3204 vio_disable_interrupts(to_vio_dev(vhost
->dev
));
3205 tasklet_schedule(&vhost
->tasklet
);
3206 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
3211 * ibmvfc_tasklet - Interrupt handler tasklet
3212 * @data: ibmvfc host struct
3217 static void ibmvfc_tasklet(void *data
)
3219 struct ibmvfc_host
*vhost
= data
;
3220 struct vio_dev
*vdev
= to_vio_dev(vhost
->dev
);
3221 struct ibmvfc_crq
*crq
;
3222 struct ibmvfc_async_crq
*async
;
3223 unsigned long flags
;
3226 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
3228 /* Pull all the valid messages off the async CRQ */
3229 while ((async
= ibmvfc_next_async_crq(vhost
)) != NULL
) {
3230 ibmvfc_handle_async(async
, vhost
);
3235 /* Pull all the valid messages off the CRQ */
3236 while ((crq
= ibmvfc_next_crq(vhost
)) != NULL
) {
3237 ibmvfc_handle_crq(crq
, vhost
);
3242 vio_enable_interrupts(vdev
);
3243 if ((async
= ibmvfc_next_async_crq(vhost
)) != NULL
) {
3244 vio_disable_interrupts(vdev
);
3245 ibmvfc_handle_async(async
, vhost
);
3248 } else if ((crq
= ibmvfc_next_crq(vhost
)) != NULL
) {
3249 vio_disable_interrupts(vdev
);
3250 ibmvfc_handle_crq(crq
, vhost
);
3257 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
3261 * ibmvfc_init_tgt - Set the next init job step for the target
3262 * @tgt: ibmvfc target struct
3263 * @job_step: job step to perform
3266 static void ibmvfc_init_tgt(struct ibmvfc_target
*tgt
,
3267 void (*job_step
) (struct ibmvfc_target
*))
3269 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_INIT
);
3270 tgt
->job_step
= job_step
;
3271 wake_up(&tgt
->vhost
->work_wait_q
);
3275 * ibmvfc_retry_tgt_init - Attempt to retry a step in target initialization
3276 * @tgt: ibmvfc target struct
3277 * @job_step: initialization job step
3279 * Returns: 1 if step will be retried / 0 if not
3282 static int ibmvfc_retry_tgt_init(struct ibmvfc_target
*tgt
,
3283 void (*job_step
) (struct ibmvfc_target
*))
3285 if (++tgt
->init_retries
> IBMVFC_MAX_TGT_INIT_RETRIES
) {
3286 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_DEL_RPORT
);
3287 wake_up(&tgt
->vhost
->work_wait_q
);
3290 ibmvfc_init_tgt(tgt
, job_step
);
3294 /* Defined in FC-LS */
3295 static const struct {
3312 * ibmvfc_get_prli_rsp - Find PRLI response index
3313 * @flags: PRLI response flags
3316 static int ibmvfc_get_prli_rsp(u16 flags
)
3319 int code
= (flags
& 0x0f00) >> 8;
3321 for (i
= 0; i
< ARRAY_SIZE(prli_rsp
); i
++)
3322 if (prli_rsp
[i
].code
== code
)
3329 * ibmvfc_tgt_prli_done - Completion handler for Process Login
3330 * @evt: ibmvfc event struct
3333 static void ibmvfc_tgt_prli_done(struct ibmvfc_event
*evt
)
3335 struct ibmvfc_target
*tgt
= evt
->tgt
;
3336 struct ibmvfc_host
*vhost
= evt
->vhost
;
3337 struct ibmvfc_process_login
*rsp
= &evt
->xfer_iu
->prli
;
3338 struct ibmvfc_prli_svc_parms
*parms
= &rsp
->parms
;
3339 u32 status
= rsp
->common
.status
;
3340 int index
, level
= IBMVFC_DEFAULT_LOG_LEVEL
;
3342 vhost
->discovery_threads
--;
3343 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_NONE
);
3345 case IBMVFC_MAD_SUCCESS
:
3346 tgt_dbg(tgt
, "Process Login succeeded: %X %02X %04X\n",
3347 parms
->type
, parms
->flags
, parms
->service_parms
);
3349 if (parms
->type
== IBMVFC_SCSI_FCP_TYPE
) {
3350 index
= ibmvfc_get_prli_rsp(parms
->flags
);
3351 if (prli_rsp
[index
].logged_in
) {
3352 if (parms
->flags
& IBMVFC_PRLI_EST_IMG_PAIR
) {
3353 tgt
->need_login
= 0;
3355 if (parms
->service_parms
& IBMVFC_PRLI_TARGET_FUNC
)
3356 tgt
->ids
.roles
|= FC_PORT_ROLE_FCP_TARGET
;
3357 if (parms
->service_parms
& IBMVFC_PRLI_INITIATOR_FUNC
)
3358 tgt
->ids
.roles
|= FC_PORT_ROLE_FCP_INITIATOR
;
3361 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_DEL_RPORT
);
3362 } else if (prli_rsp
[index
].retry
)
3363 ibmvfc_retry_tgt_init(tgt
, ibmvfc_tgt_send_prli
);
3365 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_DEL_RPORT
);
3367 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_DEL_RPORT
);
3369 case IBMVFC_MAD_DRIVER_FAILED
:
3371 case IBMVFC_MAD_CRQ_ERROR
:
3372 ibmvfc_retry_tgt_init(tgt
, ibmvfc_tgt_send_prli
);
3374 case IBMVFC_MAD_FAILED
:
3376 if ((rsp
->status
& IBMVFC_VIOS_FAILURE
) && rsp
->error
== IBMVFC_PLOGI_REQUIRED
)
3377 level
+= ibmvfc_retry_tgt_init(tgt
, ibmvfc_tgt_send_plogi
);
3378 else if (tgt
->logo_rcvd
)
3379 level
+= ibmvfc_retry_tgt_init(tgt
, ibmvfc_tgt_send_plogi
);
3380 else if (ibmvfc_retry_cmd(rsp
->status
, rsp
->error
))
3381 level
+= ibmvfc_retry_tgt_init(tgt
, ibmvfc_tgt_send_prli
);
3383 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_DEL_RPORT
);
3385 tgt_log(tgt
, level
, "Process Login failed: %s (%x:%x) rc=0x%02X\n",
3386 ibmvfc_get_cmd_error(rsp
->status
, rsp
->error
),
3387 rsp
->status
, rsp
->error
, status
);
3391 kref_put(&tgt
->kref
, ibmvfc_release_tgt
);
3392 ibmvfc_free_event(evt
);
3393 wake_up(&vhost
->work_wait_q
);
3397 * ibmvfc_tgt_send_prli - Send a process login
3398 * @tgt: ibmvfc target struct
3401 static void ibmvfc_tgt_send_prli(struct ibmvfc_target
*tgt
)
3403 struct ibmvfc_process_login
*prli
;
3404 struct ibmvfc_host
*vhost
= tgt
->vhost
;
3405 struct ibmvfc_event
*evt
;
3407 if (vhost
->discovery_threads
>= disc_threads
)
3410 kref_get(&tgt
->kref
);
3411 evt
= ibmvfc_get_event(vhost
);
3412 vhost
->discovery_threads
++;
3413 ibmvfc_init_event(evt
, ibmvfc_tgt_prli_done
, IBMVFC_MAD_FORMAT
);
3415 prli
= &evt
->iu
.prli
;
3416 memset(prli
, 0, sizeof(*prli
));
3417 prli
->common
.version
= 1;
3418 prli
->common
.opcode
= IBMVFC_PROCESS_LOGIN
;
3419 prli
->common
.length
= sizeof(*prli
);
3420 prli
->scsi_id
= tgt
->scsi_id
;
3422 prli
->parms
.type
= IBMVFC_SCSI_FCP_TYPE
;
3423 prli
->parms
.flags
= IBMVFC_PRLI_EST_IMG_PAIR
;
3424 prli
->parms
.service_parms
= IBMVFC_PRLI_INITIATOR_FUNC
;
3426 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_INIT_WAIT
);
3427 if (ibmvfc_send_event(evt
, vhost
, default_timeout
)) {
3428 vhost
->discovery_threads
--;
3429 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_NONE
);
3430 kref_put(&tgt
->kref
, ibmvfc_release_tgt
);
3432 tgt_dbg(tgt
, "Sent process login\n");
3436 * ibmvfc_tgt_plogi_done - Completion handler for Port Login
3437 * @evt: ibmvfc event struct
3440 static void ibmvfc_tgt_plogi_done(struct ibmvfc_event
*evt
)
3442 struct ibmvfc_target
*tgt
= evt
->tgt
;
3443 struct ibmvfc_host
*vhost
= evt
->vhost
;
3444 struct ibmvfc_port_login
*rsp
= &evt
->xfer_iu
->plogi
;
3445 u32 status
= rsp
->common
.status
;
3446 int level
= IBMVFC_DEFAULT_LOG_LEVEL
;
3448 vhost
->discovery_threads
--;
3449 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_NONE
);
3451 case IBMVFC_MAD_SUCCESS
:
3452 tgt_dbg(tgt
, "Port Login succeeded\n");
3453 if (tgt
->ids
.port_name
&&
3454 tgt
->ids
.port_name
!= wwn_to_u64(rsp
->service_parms
.port_name
)) {
3456 tgt_dbg(tgt
, "Port re-init required\n");
3459 tgt
->ids
.node_name
= wwn_to_u64(rsp
->service_parms
.node_name
);
3460 tgt
->ids
.port_name
= wwn_to_u64(rsp
->service_parms
.port_name
);
3461 tgt
->ids
.port_id
= tgt
->scsi_id
;
3462 memcpy(&tgt
->service_parms
, &rsp
->service_parms
,
3463 sizeof(tgt
->service_parms
));
3464 memcpy(&tgt
->service_parms_change
, &rsp
->service_parms_change
,
3465 sizeof(tgt
->service_parms_change
));
3466 ibmvfc_init_tgt(tgt
, ibmvfc_tgt_send_prli
);
3468 case IBMVFC_MAD_DRIVER_FAILED
:
3470 case IBMVFC_MAD_CRQ_ERROR
:
3471 ibmvfc_retry_tgt_init(tgt
, ibmvfc_tgt_send_plogi
);
3473 case IBMVFC_MAD_FAILED
:
3475 if (ibmvfc_retry_cmd(rsp
->status
, rsp
->error
))
3476 level
+= ibmvfc_retry_tgt_init(tgt
, ibmvfc_tgt_send_plogi
);
3478 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_DEL_RPORT
);
3480 tgt_log(tgt
, level
, "Port Login failed: %s (%x:%x) %s (%x) %s (%x) rc=0x%02X\n",
3481 ibmvfc_get_cmd_error(rsp
->status
, rsp
->error
), rsp
->status
, rsp
->error
,
3482 ibmvfc_get_fc_type(rsp
->fc_type
), rsp
->fc_type
,
3483 ibmvfc_get_ls_explain(rsp
->fc_explain
), rsp
->fc_explain
, status
);
3487 kref_put(&tgt
->kref
, ibmvfc_release_tgt
);
3488 ibmvfc_free_event(evt
);
3489 wake_up(&vhost
->work_wait_q
);
3493 * ibmvfc_tgt_send_plogi - Send PLOGI to the specified target
3494 * @tgt: ibmvfc target struct
3497 static void ibmvfc_tgt_send_plogi(struct ibmvfc_target
*tgt
)
3499 struct ibmvfc_port_login
*plogi
;
3500 struct ibmvfc_host
*vhost
= tgt
->vhost
;
3501 struct ibmvfc_event
*evt
;
3503 if (vhost
->discovery_threads
>= disc_threads
)
3506 kref_get(&tgt
->kref
);
3508 evt
= ibmvfc_get_event(vhost
);
3509 vhost
->discovery_threads
++;
3510 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_INIT_WAIT
);
3511 ibmvfc_init_event(evt
, ibmvfc_tgt_plogi_done
, IBMVFC_MAD_FORMAT
);
3513 plogi
= &evt
->iu
.plogi
;
3514 memset(plogi
, 0, sizeof(*plogi
));
3515 plogi
->common
.version
= 1;
3516 plogi
->common
.opcode
= IBMVFC_PORT_LOGIN
;
3517 plogi
->common
.length
= sizeof(*plogi
);
3518 plogi
->scsi_id
= tgt
->scsi_id
;
3520 if (ibmvfc_send_event(evt
, vhost
, default_timeout
)) {
3521 vhost
->discovery_threads
--;
3522 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_NONE
);
3523 kref_put(&tgt
->kref
, ibmvfc_release_tgt
);
3525 tgt_dbg(tgt
, "Sent port login\n");
3529 * ibmvfc_tgt_implicit_logout_done - Completion handler for Implicit Logout MAD
3530 * @evt: ibmvfc event struct
3533 static void ibmvfc_tgt_implicit_logout_done(struct ibmvfc_event
*evt
)
3535 struct ibmvfc_target
*tgt
= evt
->tgt
;
3536 struct ibmvfc_host
*vhost
= evt
->vhost
;
3537 struct ibmvfc_implicit_logout
*rsp
= &evt
->xfer_iu
->implicit_logout
;
3538 u32 status
= rsp
->common
.status
;
3540 vhost
->discovery_threads
--;
3541 ibmvfc_free_event(evt
);
3542 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_NONE
);
3545 case IBMVFC_MAD_SUCCESS
:
3546 tgt_dbg(tgt
, "Implicit Logout succeeded\n");
3548 case IBMVFC_MAD_DRIVER_FAILED
:
3549 kref_put(&tgt
->kref
, ibmvfc_release_tgt
);
3550 wake_up(&vhost
->work_wait_q
);
3552 case IBMVFC_MAD_FAILED
:
3554 tgt_err(tgt
, "Implicit Logout failed: rc=0x%02X\n", status
);
3558 if (vhost
->action
== IBMVFC_HOST_ACTION_TGT_INIT
)
3559 ibmvfc_init_tgt(tgt
, ibmvfc_tgt_send_plogi
);
3560 else if (vhost
->action
== IBMVFC_HOST_ACTION_QUERY_TGTS
&&
3561 tgt
->scsi_id
!= tgt
->new_scsi_id
)
3562 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_DEL_RPORT
);
3563 kref_put(&tgt
->kref
, ibmvfc_release_tgt
);
3564 wake_up(&vhost
->work_wait_q
);
3568 * ibmvfc_tgt_implicit_logout - Initiate an Implicit Logout for specified target
3569 * @tgt: ibmvfc target struct
3572 static void ibmvfc_tgt_implicit_logout(struct ibmvfc_target
*tgt
)
3574 struct ibmvfc_implicit_logout
*mad
;
3575 struct ibmvfc_host
*vhost
= tgt
->vhost
;
3576 struct ibmvfc_event
*evt
;
3578 if (vhost
->discovery_threads
>= disc_threads
)
3581 kref_get(&tgt
->kref
);
3582 evt
= ibmvfc_get_event(vhost
);
3583 vhost
->discovery_threads
++;
3584 ibmvfc_init_event(evt
, ibmvfc_tgt_implicit_logout_done
, IBMVFC_MAD_FORMAT
);
3586 mad
= &evt
->iu
.implicit_logout
;
3587 memset(mad
, 0, sizeof(*mad
));
3588 mad
->common
.version
= 1;
3589 mad
->common
.opcode
= IBMVFC_IMPLICIT_LOGOUT
;
3590 mad
->common
.length
= sizeof(*mad
);
3591 mad
->old_scsi_id
= tgt
->scsi_id
;
3593 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_INIT_WAIT
);
3594 if (ibmvfc_send_event(evt
, vhost
, default_timeout
)) {
3595 vhost
->discovery_threads
--;
3596 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_NONE
);
3597 kref_put(&tgt
->kref
, ibmvfc_release_tgt
);
3599 tgt_dbg(tgt
, "Sent Implicit Logout\n");
3603 * ibmvfc_adisc_needs_plogi - Does device need PLOGI?
3604 * @mad: ibmvfc passthru mad struct
3605 * @tgt: ibmvfc target struct
3608 * 1 if PLOGI needed / 0 if PLOGI not needed
3610 static int ibmvfc_adisc_needs_plogi(struct ibmvfc_passthru_mad
*mad
,
3611 struct ibmvfc_target
*tgt
)
3613 if (memcmp(&mad
->fc_iu
.response
[2], &tgt
->ids
.port_name
,
3614 sizeof(tgt
->ids
.port_name
)))
3616 if (memcmp(&mad
->fc_iu
.response
[4], &tgt
->ids
.node_name
,
3617 sizeof(tgt
->ids
.node_name
)))
3619 if (mad
->fc_iu
.response
[6] != tgt
->scsi_id
)
3625 * ibmvfc_tgt_adisc_done - Completion handler for ADISC
3626 * @evt: ibmvfc event struct
3629 static void ibmvfc_tgt_adisc_done(struct ibmvfc_event
*evt
)
3631 struct ibmvfc_target
*tgt
= evt
->tgt
;
3632 struct ibmvfc_host
*vhost
= evt
->vhost
;
3633 struct ibmvfc_passthru_mad
*mad
= &evt
->xfer_iu
->passthru
;
3634 u32 status
= mad
->common
.status
;
3635 u8 fc_reason
, fc_explain
;
3637 vhost
->discovery_threads
--;
3638 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_NONE
);
3639 del_timer(&tgt
->timer
);
3642 case IBMVFC_MAD_SUCCESS
:
3643 tgt_dbg(tgt
, "ADISC succeeded\n");
3644 if (ibmvfc_adisc_needs_plogi(mad
, tgt
))
3645 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_DEL_RPORT
);
3647 case IBMVFC_MAD_DRIVER_FAILED
:
3649 case IBMVFC_MAD_FAILED
:
3651 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_DEL_RPORT
);
3652 fc_reason
= (mad
->fc_iu
.response
[1] & 0x00ff0000) >> 16;
3653 fc_explain
= (mad
->fc_iu
.response
[1] & 0x0000ff00) >> 8;
3654 tgt_info(tgt
, "ADISC failed: %s (%x:%x) %s (%x) %s (%x) rc=0x%02X\n",
3655 ibmvfc_get_cmd_error(mad
->iu
.status
, mad
->iu
.error
),
3656 mad
->iu
.status
, mad
->iu
.error
,
3657 ibmvfc_get_fc_type(fc_reason
), fc_reason
,
3658 ibmvfc_get_ls_explain(fc_explain
), fc_explain
, status
);
3662 kref_put(&tgt
->kref
, ibmvfc_release_tgt
);
3663 ibmvfc_free_event(evt
);
3664 wake_up(&vhost
->work_wait_q
);
3668 * ibmvfc_init_passthru - Initialize an event struct for FC passthru
3669 * @evt: ibmvfc event struct
3672 static void ibmvfc_init_passthru(struct ibmvfc_event
*evt
)
3674 struct ibmvfc_passthru_mad
*mad
= &evt
->iu
.passthru
;
3676 memset(mad
, 0, sizeof(*mad
));
3677 mad
->common
.version
= 1;
3678 mad
->common
.opcode
= IBMVFC_PASSTHRU
;
3679 mad
->common
.length
= sizeof(*mad
) - sizeof(mad
->fc_iu
) - sizeof(mad
->iu
);
3680 mad
->cmd_ioba
.va
= (u64
)evt
->crq
.ioba
+
3681 offsetof(struct ibmvfc_passthru_mad
, iu
);
3682 mad
->cmd_ioba
.len
= sizeof(mad
->iu
);
3683 mad
->iu
.cmd_len
= sizeof(mad
->fc_iu
.payload
);
3684 mad
->iu
.rsp_len
= sizeof(mad
->fc_iu
.response
);
3685 mad
->iu
.cmd
.va
= (u64
)evt
->crq
.ioba
+
3686 offsetof(struct ibmvfc_passthru_mad
, fc_iu
) +
3687 offsetof(struct ibmvfc_passthru_fc_iu
, payload
);
3688 mad
->iu
.cmd
.len
= sizeof(mad
->fc_iu
.payload
);
3689 mad
->iu
.rsp
.va
= (u64
)evt
->crq
.ioba
+
3690 offsetof(struct ibmvfc_passthru_mad
, fc_iu
) +
3691 offsetof(struct ibmvfc_passthru_fc_iu
, response
);
3692 mad
->iu
.rsp
.len
= sizeof(mad
->fc_iu
.response
);
3696 * ibmvfc_tgt_adisc_cancel_done - Completion handler when cancelling an ADISC
3697 * @evt: ibmvfc event struct
3699 * Just cleanup this event struct. Everything else is handled by
3700 * the ADISC completion handler. If the ADISC never actually comes
3701 * back, we still have the timer running on the ADISC event struct
3702 * which will fire and cause the CRQ to get reset.
3705 static void ibmvfc_tgt_adisc_cancel_done(struct ibmvfc_event
*evt
)
3707 struct ibmvfc_host
*vhost
= evt
->vhost
;
3708 struct ibmvfc_target
*tgt
= evt
->tgt
;
3710 tgt_dbg(tgt
, "ADISC cancel complete\n");
3711 vhost
->abort_threads
--;
3712 ibmvfc_free_event(evt
);
3713 kref_put(&tgt
->kref
, ibmvfc_release_tgt
);
3714 wake_up(&vhost
->work_wait_q
);
3718 * ibmvfc_adisc_timeout - Handle an ADISC timeout
3719 * @tgt: ibmvfc target struct
3721 * If an ADISC times out, send a cancel. If the cancel times
3722 * out, reset the CRQ. When the ADISC comes back as cancelled,
3723 * log back into the target.
3725 static void ibmvfc_adisc_timeout(struct ibmvfc_target
*tgt
)
3727 struct ibmvfc_host
*vhost
= tgt
->vhost
;
3728 struct ibmvfc_event
*evt
;
3729 struct ibmvfc_tmf
*tmf
;
3730 unsigned long flags
;
3733 tgt_dbg(tgt
, "ADISC timeout\n");
3734 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
3735 if (vhost
->abort_threads
>= disc_threads
||
3736 tgt
->action
!= IBMVFC_TGT_ACTION_INIT_WAIT
||
3737 vhost
->state
!= IBMVFC_INITIALIZING
||
3738 vhost
->action
!= IBMVFC_HOST_ACTION_QUERY_TGTS
) {
3739 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
3743 vhost
->abort_threads
++;
3744 kref_get(&tgt
->kref
);
3745 evt
= ibmvfc_get_event(vhost
);
3746 ibmvfc_init_event(evt
, ibmvfc_tgt_adisc_cancel_done
, IBMVFC_MAD_FORMAT
);
3750 memset(tmf
, 0, sizeof(*tmf
));
3751 tmf
->common
.version
= 1;
3752 tmf
->common
.opcode
= IBMVFC_TMF_MAD
;
3753 tmf
->common
.length
= sizeof(*tmf
);
3754 tmf
->scsi_id
= tgt
->scsi_id
;
3755 tmf
->cancel_key
= tgt
->cancel_key
;
3757 rc
= ibmvfc_send_event(evt
, vhost
, default_timeout
);
3760 tgt_err(tgt
, "Failed to send cancel event for ADISC. rc=%d\n", rc
);
3761 vhost
->abort_threads
--;
3762 kref_put(&tgt
->kref
, ibmvfc_release_tgt
);
3763 __ibmvfc_reset_host(vhost
);
3765 tgt_dbg(tgt
, "Attempting to cancel ADISC\n");
3766 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
3770 * ibmvfc_tgt_adisc - Initiate an ADISC for specified target
3771 * @tgt: ibmvfc target struct
3773 * When sending an ADISC we end up with two timers running. The
3774 * first timer is the timer in the ibmvfc target struct. If this
3775 * fires, we send a cancel to the target. The second timer is the
3776 * timer on the ibmvfc event for the ADISC, which is longer. If that
3777 * fires, it means the ADISC timed out and our attempt to cancel it
3778 * also failed, so we need to reset the CRQ.
3780 static void ibmvfc_tgt_adisc(struct ibmvfc_target
*tgt
)
3782 struct ibmvfc_passthru_mad
*mad
;
3783 struct ibmvfc_host
*vhost
= tgt
->vhost
;
3784 struct ibmvfc_event
*evt
;
3786 if (vhost
->discovery_threads
>= disc_threads
)
3789 kref_get(&tgt
->kref
);
3790 evt
= ibmvfc_get_event(vhost
);
3791 vhost
->discovery_threads
++;
3792 ibmvfc_init_event(evt
, ibmvfc_tgt_adisc_done
, IBMVFC_MAD_FORMAT
);
3795 ibmvfc_init_passthru(evt
);
3796 mad
= &evt
->iu
.passthru
;
3797 mad
->iu
.flags
= IBMVFC_FC_ELS
;
3798 mad
->iu
.scsi_id
= tgt
->scsi_id
;
3799 mad
->iu
.cancel_key
= tgt
->cancel_key
;
3801 mad
->fc_iu
.payload
[0] = IBMVFC_ADISC
;
3802 memcpy(&mad
->fc_iu
.payload
[2], &vhost
->login_buf
->resp
.port_name
,
3803 sizeof(vhost
->login_buf
->resp
.port_name
));
3804 memcpy(&mad
->fc_iu
.payload
[4], &vhost
->login_buf
->resp
.node_name
,
3805 sizeof(vhost
->login_buf
->resp
.node_name
));
3806 mad
->fc_iu
.payload
[6] = vhost
->login_buf
->resp
.scsi_id
& 0x00ffffff;
3808 if (timer_pending(&tgt
->timer
))
3809 mod_timer(&tgt
->timer
, jiffies
+ (IBMVFC_ADISC_TIMEOUT
* HZ
));
3811 tgt
->timer
.data
= (unsigned long) tgt
;
3812 tgt
->timer
.expires
= jiffies
+ (IBMVFC_ADISC_TIMEOUT
* HZ
);
3813 tgt
->timer
.function
= (void (*)(unsigned long))ibmvfc_adisc_timeout
;
3814 add_timer(&tgt
->timer
);
3817 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_INIT_WAIT
);
3818 if (ibmvfc_send_event(evt
, vhost
, IBMVFC_ADISC_PLUS_CANCEL_TIMEOUT
)) {
3819 vhost
->discovery_threads
--;
3820 del_timer(&tgt
->timer
);
3821 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_NONE
);
3822 kref_put(&tgt
->kref
, ibmvfc_release_tgt
);
3824 tgt_dbg(tgt
, "Sent ADISC\n");
3828 * ibmvfc_tgt_query_target_done - Completion handler for Query Target MAD
3829 * @evt: ibmvfc event struct
3832 static void ibmvfc_tgt_query_target_done(struct ibmvfc_event
*evt
)
3834 struct ibmvfc_target
*tgt
= evt
->tgt
;
3835 struct ibmvfc_host
*vhost
= evt
->vhost
;
3836 struct ibmvfc_query_tgt
*rsp
= &evt
->xfer_iu
->query_tgt
;
3837 u32 status
= rsp
->common
.status
;
3838 int level
= IBMVFC_DEFAULT_LOG_LEVEL
;
3840 vhost
->discovery_threads
--;
3841 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_NONE
);
3843 case IBMVFC_MAD_SUCCESS
:
3844 tgt_dbg(tgt
, "Query Target succeeded\n");
3845 tgt
->new_scsi_id
= rsp
->scsi_id
;
3846 if (rsp
->scsi_id
!= tgt
->scsi_id
)
3847 ibmvfc_init_tgt(tgt
, ibmvfc_tgt_implicit_logout
);
3849 ibmvfc_init_tgt(tgt
, ibmvfc_tgt_adisc
);
3851 case IBMVFC_MAD_DRIVER_FAILED
:
3853 case IBMVFC_MAD_CRQ_ERROR
:
3854 ibmvfc_retry_tgt_init(tgt
, ibmvfc_tgt_query_target
);
3856 case IBMVFC_MAD_FAILED
:
3858 if ((rsp
->status
& IBMVFC_FABRIC_MAPPED
) == IBMVFC_FABRIC_MAPPED
&&
3859 rsp
->error
== IBMVFC_UNABLE_TO_PERFORM_REQ
&&
3860 rsp
->fc_explain
== IBMVFC_PORT_NAME_NOT_REG
)
3861 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_DEL_RPORT
);
3862 else if (ibmvfc_retry_cmd(rsp
->status
, rsp
->error
))
3863 level
+= ibmvfc_retry_tgt_init(tgt
, ibmvfc_tgt_query_target
);
3865 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_DEL_RPORT
);
3867 tgt_log(tgt
, level
, "Query Target failed: %s (%x:%x) %s (%x) %s (%x) rc=0x%02X\n",
3868 ibmvfc_get_cmd_error(rsp
->status
, rsp
->error
), rsp
->status
, rsp
->error
,
3869 ibmvfc_get_fc_type(rsp
->fc_type
), rsp
->fc_type
,
3870 ibmvfc_get_gs_explain(rsp
->fc_explain
), rsp
->fc_explain
, status
);
3874 kref_put(&tgt
->kref
, ibmvfc_release_tgt
);
3875 ibmvfc_free_event(evt
);
3876 wake_up(&vhost
->work_wait_q
);
3880 * ibmvfc_tgt_query_target - Initiate a Query Target for specified target
3881 * @tgt: ibmvfc target struct
3884 static void ibmvfc_tgt_query_target(struct ibmvfc_target
*tgt
)
3886 struct ibmvfc_query_tgt
*query_tgt
;
3887 struct ibmvfc_host
*vhost
= tgt
->vhost
;
3888 struct ibmvfc_event
*evt
;
3890 if (vhost
->discovery_threads
>= disc_threads
)
3893 kref_get(&tgt
->kref
);
3894 evt
= ibmvfc_get_event(vhost
);
3895 vhost
->discovery_threads
++;
3897 ibmvfc_init_event(evt
, ibmvfc_tgt_query_target_done
, IBMVFC_MAD_FORMAT
);
3898 query_tgt
= &evt
->iu
.query_tgt
;
3899 memset(query_tgt
, 0, sizeof(*query_tgt
));
3900 query_tgt
->common
.version
= 1;
3901 query_tgt
->common
.opcode
= IBMVFC_QUERY_TARGET
;
3902 query_tgt
->common
.length
= sizeof(*query_tgt
);
3903 query_tgt
->wwpn
= tgt
->ids
.port_name
;
3905 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_INIT_WAIT
);
3906 if (ibmvfc_send_event(evt
, vhost
, default_timeout
)) {
3907 vhost
->discovery_threads
--;
3908 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_NONE
);
3909 kref_put(&tgt
->kref
, ibmvfc_release_tgt
);
3911 tgt_dbg(tgt
, "Sent Query Target\n");
3915 * ibmvfc_alloc_target - Allocate and initialize an ibmvfc target
3916 * @vhost: ibmvfc host struct
3917 * @scsi_id: SCSI ID to allocate target for
3920 * 0 on success / other on failure
3922 static int ibmvfc_alloc_target(struct ibmvfc_host
*vhost
, u64 scsi_id
)
3924 struct ibmvfc_target
*tgt
;
3925 unsigned long flags
;
3927 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
3928 list_for_each_entry(tgt
, &vhost
->targets
, queue
) {
3929 if (tgt
->scsi_id
== scsi_id
) {
3930 if (tgt
->need_login
)
3931 ibmvfc_init_tgt(tgt
, ibmvfc_tgt_implicit_logout
);
3935 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
3937 tgt
= mempool_alloc(vhost
->tgt_pool
, GFP_NOIO
);
3939 dev_err(vhost
->dev
, "Target allocation failure for scsi id %08llx\n",
3944 memset(tgt
, 0, sizeof(*tgt
));
3945 tgt
->scsi_id
= scsi_id
;
3946 tgt
->new_scsi_id
= scsi_id
;
3948 tgt
->need_login
= 1;
3949 tgt
->cancel_key
= vhost
->task_set
++;
3950 init_timer(&tgt
->timer
);
3951 kref_init(&tgt
->kref
);
3952 ibmvfc_init_tgt(tgt
, ibmvfc_tgt_implicit_logout
);
3953 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
3954 list_add_tail(&tgt
->queue
, &vhost
->targets
);
3957 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
3962 * ibmvfc_alloc_targets - Allocate and initialize ibmvfc targets
3963 * @vhost: ibmvfc host struct
3966 * 0 on success / other on failure
3968 static int ibmvfc_alloc_targets(struct ibmvfc_host
*vhost
)
3972 for (i
= 0, rc
= 0; !rc
&& i
< vhost
->num_targets
; i
++)
3973 rc
= ibmvfc_alloc_target(vhost
,
3974 vhost
->disc_buf
->scsi_id
[i
] & IBMVFC_DISC_TGT_SCSI_ID_MASK
);
3980 * ibmvfc_discover_targets_done - Completion handler for discover targets MAD
3981 * @evt: ibmvfc event struct
3984 static void ibmvfc_discover_targets_done(struct ibmvfc_event
*evt
)
3986 struct ibmvfc_host
*vhost
= evt
->vhost
;
3987 struct ibmvfc_discover_targets
*rsp
= &evt
->xfer_iu
->discover_targets
;
3988 u32 mad_status
= rsp
->common
.status
;
3989 int level
= IBMVFC_DEFAULT_LOG_LEVEL
;
3991 switch (mad_status
) {
3992 case IBMVFC_MAD_SUCCESS
:
3993 ibmvfc_dbg(vhost
, "Discover Targets succeeded\n");
3994 vhost
->num_targets
= rsp
->num_written
;
3995 ibmvfc_set_host_action(vhost
, IBMVFC_HOST_ACTION_ALLOC_TGTS
);
3997 case IBMVFC_MAD_FAILED
:
3998 level
+= ibmvfc_retry_host_init(vhost
);
3999 ibmvfc_log(vhost
, level
, "Discover Targets failed: %s (%x:%x)\n",
4000 ibmvfc_get_cmd_error(rsp
->status
, rsp
->error
), rsp
->status
, rsp
->error
);
4002 case IBMVFC_MAD_DRIVER_FAILED
:
4005 dev_err(vhost
->dev
, "Invalid Discover Targets response: 0x%x\n", mad_status
);
4006 ibmvfc_link_down(vhost
, IBMVFC_LINK_DEAD
);
4010 ibmvfc_free_event(evt
);
4011 wake_up(&vhost
->work_wait_q
);
4015 * ibmvfc_discover_targets - Send Discover Targets MAD
4016 * @vhost: ibmvfc host struct
4019 static void ibmvfc_discover_targets(struct ibmvfc_host
*vhost
)
4021 struct ibmvfc_discover_targets
*mad
;
4022 struct ibmvfc_event
*evt
= ibmvfc_get_event(vhost
);
4024 ibmvfc_init_event(evt
, ibmvfc_discover_targets_done
, IBMVFC_MAD_FORMAT
);
4025 mad
= &evt
->iu
.discover_targets
;
4026 memset(mad
, 0, sizeof(*mad
));
4027 mad
->common
.version
= 1;
4028 mad
->common
.opcode
= IBMVFC_DISC_TARGETS
;
4029 mad
->common
.length
= sizeof(*mad
);
4030 mad
->bufflen
= vhost
->disc_buf_sz
;
4031 mad
->buffer
.va
= vhost
->disc_buf_dma
;
4032 mad
->buffer
.len
= vhost
->disc_buf_sz
;
4033 ibmvfc_set_host_action(vhost
, IBMVFC_HOST_ACTION_INIT_WAIT
);
4035 if (!ibmvfc_send_event(evt
, vhost
, default_timeout
))
4036 ibmvfc_dbg(vhost
, "Sent discover targets\n");
4038 ibmvfc_link_down(vhost
, IBMVFC_LINK_DEAD
);
4042 * ibmvfc_npiv_login_done - Completion handler for NPIV Login
4043 * @evt: ibmvfc event struct
4046 static void ibmvfc_npiv_login_done(struct ibmvfc_event
*evt
)
4048 struct ibmvfc_host
*vhost
= evt
->vhost
;
4049 u32 mad_status
= evt
->xfer_iu
->npiv_login
.common
.status
;
4050 struct ibmvfc_npiv_login_resp
*rsp
= &vhost
->login_buf
->resp
;
4051 unsigned int npiv_max_sectors
;
4052 int level
= IBMVFC_DEFAULT_LOG_LEVEL
;
4054 switch (mad_status
) {
4055 case IBMVFC_MAD_SUCCESS
:
4056 ibmvfc_free_event(evt
);
4058 case IBMVFC_MAD_FAILED
:
4059 if (ibmvfc_retry_cmd(rsp
->status
, rsp
->error
))
4060 level
+= ibmvfc_retry_host_init(vhost
);
4062 ibmvfc_link_down(vhost
, IBMVFC_LINK_DEAD
);
4063 ibmvfc_log(vhost
, level
, "NPIV Login failed: %s (%x:%x)\n",
4064 ibmvfc_get_cmd_error(rsp
->status
, rsp
->error
), rsp
->status
, rsp
->error
);
4065 ibmvfc_free_event(evt
);
4067 case IBMVFC_MAD_CRQ_ERROR
:
4068 ibmvfc_retry_host_init(vhost
);
4069 case IBMVFC_MAD_DRIVER_FAILED
:
4070 ibmvfc_free_event(evt
);
4073 dev_err(vhost
->dev
, "Invalid NPIV Login response: 0x%x\n", mad_status
);
4074 ibmvfc_link_down(vhost
, IBMVFC_LINK_DEAD
);
4075 ibmvfc_free_event(evt
);
4079 vhost
->client_migrated
= 0;
4081 if (!(rsp
->flags
& IBMVFC_NATIVE_FC
)) {
4082 dev_err(vhost
->dev
, "Virtual adapter does not support FC. %x\n",
4084 ibmvfc_link_down(vhost
, IBMVFC_LINK_DEAD
);
4085 wake_up(&vhost
->work_wait_q
);
4089 if (rsp
->max_cmds
<= IBMVFC_NUM_INTERNAL_REQ
) {
4090 dev_err(vhost
->dev
, "Virtual adapter supported queue depth too small: %d\n",
4092 ibmvfc_link_down(vhost
, IBMVFC_LINK_DEAD
);
4093 wake_up(&vhost
->work_wait_q
);
4097 vhost
->logged_in
= 1;
4098 npiv_max_sectors
= min((uint
)(rsp
->max_dma_len
>> 9), IBMVFC_MAX_SECTORS
);
4099 dev_info(vhost
->dev
, "Host partition: %s, device: %s %s %s max sectors %u\n",
4100 rsp
->partition_name
, rsp
->device_name
, rsp
->port_loc_code
,
4101 rsp
->drc_name
, npiv_max_sectors
);
4103 fc_host_fabric_name(vhost
->host
) = rsp
->node_name
;
4104 fc_host_node_name(vhost
->host
) = rsp
->node_name
;
4105 fc_host_port_name(vhost
->host
) = rsp
->port_name
;
4106 fc_host_port_id(vhost
->host
) = rsp
->scsi_id
;
4107 fc_host_port_type(vhost
->host
) = FC_PORTTYPE_NPIV
;
4108 fc_host_supported_classes(vhost
->host
) = 0;
4109 if (rsp
->service_parms
.class1_parms
[0] & 0x80000000)
4110 fc_host_supported_classes(vhost
->host
) |= FC_COS_CLASS1
;
4111 if (rsp
->service_parms
.class2_parms
[0] & 0x80000000)
4112 fc_host_supported_classes(vhost
->host
) |= FC_COS_CLASS2
;
4113 if (rsp
->service_parms
.class3_parms
[0] & 0x80000000)
4114 fc_host_supported_classes(vhost
->host
) |= FC_COS_CLASS3
;
4115 fc_host_maxframe_size(vhost
->host
) =
4116 rsp
->service_parms
.common
.bb_rcv_sz
& 0x0fff;
4118 vhost
->host
->can_queue
= rsp
->max_cmds
- IBMVFC_NUM_INTERNAL_REQ
;
4119 vhost
->host
->max_sectors
= npiv_max_sectors
;
4120 ibmvfc_set_host_action(vhost
, IBMVFC_HOST_ACTION_QUERY
);
4121 wake_up(&vhost
->work_wait_q
);
4125 * ibmvfc_npiv_login - Sends NPIV login
4126 * @vhost: ibmvfc host struct
4129 static void ibmvfc_npiv_login(struct ibmvfc_host
*vhost
)
4131 struct ibmvfc_npiv_login_mad
*mad
;
4132 struct ibmvfc_event
*evt
= ibmvfc_get_event(vhost
);
4134 ibmvfc_gather_partition_info(vhost
);
4135 ibmvfc_set_login_info(vhost
);
4136 ibmvfc_init_event(evt
, ibmvfc_npiv_login_done
, IBMVFC_MAD_FORMAT
);
4138 memcpy(vhost
->login_buf
, &vhost
->login_info
, sizeof(vhost
->login_info
));
4139 mad
= &evt
->iu
.npiv_login
;
4140 memset(mad
, 0, sizeof(struct ibmvfc_npiv_login_mad
));
4141 mad
->common
.version
= 1;
4142 mad
->common
.opcode
= IBMVFC_NPIV_LOGIN
;
4143 mad
->common
.length
= sizeof(struct ibmvfc_npiv_login_mad
);
4144 mad
->buffer
.va
= vhost
->login_buf_dma
;
4145 mad
->buffer
.len
= sizeof(*vhost
->login_buf
);
4147 ibmvfc_set_host_action(vhost
, IBMVFC_HOST_ACTION_INIT_WAIT
);
4149 if (!ibmvfc_send_event(evt
, vhost
, default_timeout
))
4150 ibmvfc_dbg(vhost
, "Sent NPIV login\n");
4152 ibmvfc_link_down(vhost
, IBMVFC_LINK_DEAD
);
4156 * ibmvfc_npiv_logout_done - Completion handler for NPIV Logout
4157 * @vhost: ibmvfc host struct
4160 static void ibmvfc_npiv_logout_done(struct ibmvfc_event
*evt
)
4162 struct ibmvfc_host
*vhost
= evt
->vhost
;
4163 u32 mad_status
= evt
->xfer_iu
->npiv_logout
.common
.status
;
4165 ibmvfc_free_event(evt
);
4167 switch (mad_status
) {
4168 case IBMVFC_MAD_SUCCESS
:
4169 if (list_empty(&vhost
->sent
) &&
4170 vhost
->action
== IBMVFC_HOST_ACTION_LOGO_WAIT
) {
4171 ibmvfc_init_host(vhost
);
4175 case IBMVFC_MAD_FAILED
:
4176 case IBMVFC_MAD_NOT_SUPPORTED
:
4177 case IBMVFC_MAD_CRQ_ERROR
:
4178 case IBMVFC_MAD_DRIVER_FAILED
:
4180 ibmvfc_dbg(vhost
, "NPIV Logout failed. 0x%X\n", mad_status
);
4184 ibmvfc_hard_reset_host(vhost
);
4188 * ibmvfc_npiv_logout - Issue an NPIV Logout
4189 * @vhost: ibmvfc host struct
4192 static void ibmvfc_npiv_logout(struct ibmvfc_host
*vhost
)
4194 struct ibmvfc_npiv_logout_mad
*mad
;
4195 struct ibmvfc_event
*evt
;
4197 evt
= ibmvfc_get_event(vhost
);
4198 ibmvfc_init_event(evt
, ibmvfc_npiv_logout_done
, IBMVFC_MAD_FORMAT
);
4200 mad
= &evt
->iu
.npiv_logout
;
4201 memset(mad
, 0, sizeof(*mad
));
4202 mad
->common
.version
= 1;
4203 mad
->common
.opcode
= IBMVFC_NPIV_LOGOUT
;
4204 mad
->common
.length
= sizeof(struct ibmvfc_npiv_logout_mad
);
4206 ibmvfc_set_host_action(vhost
, IBMVFC_HOST_ACTION_LOGO_WAIT
);
4208 if (!ibmvfc_send_event(evt
, vhost
, default_timeout
))
4209 ibmvfc_dbg(vhost
, "Sent NPIV logout\n");
4211 ibmvfc_link_down(vhost
, IBMVFC_LINK_DEAD
);
4215 * ibmvfc_dev_init_to_do - Is there target initialization work to do?
4216 * @vhost: ibmvfc host struct
4219 * 1 if work to do / 0 if not
4221 static int ibmvfc_dev_init_to_do(struct ibmvfc_host
*vhost
)
4223 struct ibmvfc_target
*tgt
;
4225 list_for_each_entry(tgt
, &vhost
->targets
, queue
) {
4226 if (tgt
->action
== IBMVFC_TGT_ACTION_INIT
||
4227 tgt
->action
== IBMVFC_TGT_ACTION_INIT_WAIT
)
4235 * __ibmvfc_work_to_do - Is there task level work to do? (no locking)
4236 * @vhost: ibmvfc host struct
4239 * 1 if work to do / 0 if not
4241 static int __ibmvfc_work_to_do(struct ibmvfc_host
*vhost
)
4243 struct ibmvfc_target
*tgt
;
4245 if (kthread_should_stop())
4247 switch (vhost
->action
) {
4248 case IBMVFC_HOST_ACTION_NONE
:
4249 case IBMVFC_HOST_ACTION_INIT_WAIT
:
4250 case IBMVFC_HOST_ACTION_LOGO_WAIT
:
4252 case IBMVFC_HOST_ACTION_TGT_INIT
:
4253 case IBMVFC_HOST_ACTION_QUERY_TGTS
:
4254 if (vhost
->discovery_threads
== disc_threads
)
4256 list_for_each_entry(tgt
, &vhost
->targets
, queue
)
4257 if (tgt
->action
== IBMVFC_TGT_ACTION_INIT
)
4259 list_for_each_entry(tgt
, &vhost
->targets
, queue
)
4260 if (tgt
->action
== IBMVFC_TGT_ACTION_INIT_WAIT
)
4263 case IBMVFC_HOST_ACTION_LOGO
:
4264 case IBMVFC_HOST_ACTION_INIT
:
4265 case IBMVFC_HOST_ACTION_ALLOC_TGTS
:
4266 case IBMVFC_HOST_ACTION_TGT_DEL
:
4267 case IBMVFC_HOST_ACTION_TGT_DEL_FAILED
:
4268 case IBMVFC_HOST_ACTION_QUERY
:
4269 case IBMVFC_HOST_ACTION_RESET
:
4270 case IBMVFC_HOST_ACTION_REENABLE
:
4279 * ibmvfc_work_to_do - Is there task level work to do?
4280 * @vhost: ibmvfc host struct
4283 * 1 if work to do / 0 if not
4285 static int ibmvfc_work_to_do(struct ibmvfc_host
*vhost
)
4287 unsigned long flags
;
4290 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
4291 rc
= __ibmvfc_work_to_do(vhost
);
4292 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
4297 * ibmvfc_log_ae - Log async events if necessary
4298 * @vhost: ibmvfc host struct
4299 * @events: events to log
4302 static void ibmvfc_log_ae(struct ibmvfc_host
*vhost
, int events
)
4304 if (events
& IBMVFC_AE_RSCN
)
4305 fc_host_post_event(vhost
->host
, fc_get_event_number(), FCH_EVT_RSCN
, 0);
4306 if ((events
& IBMVFC_AE_LINKDOWN
) &&
4307 vhost
->state
>= IBMVFC_HALTED
)
4308 fc_host_post_event(vhost
->host
, fc_get_event_number(), FCH_EVT_LINKDOWN
, 0);
4309 if ((events
& IBMVFC_AE_LINKUP
) &&
4310 vhost
->state
== IBMVFC_INITIALIZING
)
4311 fc_host_post_event(vhost
->host
, fc_get_event_number(), FCH_EVT_LINKUP
, 0);
4315 * ibmvfc_tgt_add_rport - Tell the FC transport about a new remote port
4316 * @tgt: ibmvfc target struct
4319 static void ibmvfc_tgt_add_rport(struct ibmvfc_target
*tgt
)
4321 struct ibmvfc_host
*vhost
= tgt
->vhost
;
4322 struct fc_rport
*rport
;
4323 unsigned long flags
;
4325 tgt_dbg(tgt
, "Adding rport\n");
4326 rport
= fc_remote_port_add(vhost
->host
, 0, &tgt
->ids
);
4327 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
4329 if (rport
&& tgt
->action
== IBMVFC_TGT_ACTION_DEL_RPORT
) {
4330 tgt_dbg(tgt
, "Deleting rport\n");
4331 list_del(&tgt
->queue
);
4332 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_DELETED_RPORT
);
4333 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
4334 fc_remote_port_delete(rport
);
4335 del_timer_sync(&tgt
->timer
);
4336 kref_put(&tgt
->kref
, ibmvfc_release_tgt
);
4338 } else if (rport
&& tgt
->action
== IBMVFC_TGT_ACTION_DELETED_RPORT
) {
4339 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
4344 tgt_dbg(tgt
, "rport add succeeded\n");
4346 rport
->maxframe_size
= tgt
->service_parms
.common
.bb_rcv_sz
& 0x0fff;
4347 rport
->supported_classes
= 0;
4348 tgt
->target_id
= rport
->scsi_target_id
;
4349 if (tgt
->service_parms
.class1_parms
[0] & 0x80000000)
4350 rport
->supported_classes
|= FC_COS_CLASS1
;
4351 if (tgt
->service_parms
.class2_parms
[0] & 0x80000000)
4352 rport
->supported_classes
|= FC_COS_CLASS2
;
4353 if (tgt
->service_parms
.class3_parms
[0] & 0x80000000)
4354 rport
->supported_classes
|= FC_COS_CLASS3
;
4356 blk_queue_max_segments(rport
->rqst_q
, 1);
4358 tgt_dbg(tgt
, "rport add failed\n");
4359 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
4363 * ibmvfc_do_work - Do task level work
4364 * @vhost: ibmvfc host struct
4367 static void ibmvfc_do_work(struct ibmvfc_host
*vhost
)
4369 struct ibmvfc_target
*tgt
;
4370 unsigned long flags
;
4371 struct fc_rport
*rport
;
4374 ibmvfc_log_ae(vhost
, vhost
->events_to_log
);
4375 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
4376 vhost
->events_to_log
= 0;
4377 switch (vhost
->action
) {
4378 case IBMVFC_HOST_ACTION_NONE
:
4379 case IBMVFC_HOST_ACTION_LOGO_WAIT
:
4380 case IBMVFC_HOST_ACTION_INIT_WAIT
:
4382 case IBMVFC_HOST_ACTION_RESET
:
4383 vhost
->action
= IBMVFC_HOST_ACTION_TGT_DEL
;
4384 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
4385 rc
= ibmvfc_reset_crq(vhost
);
4386 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
4388 vio_enable_interrupts(to_vio_dev(vhost
->dev
));
4389 if (rc
|| (rc
= ibmvfc_send_crq_init(vhost
)) ||
4390 (rc
= vio_enable_interrupts(to_vio_dev(vhost
->dev
)))) {
4391 ibmvfc_link_down(vhost
, IBMVFC_LINK_DEAD
);
4392 dev_err(vhost
->dev
, "Error after reset (rc=%d)\n", rc
);
4395 case IBMVFC_HOST_ACTION_REENABLE
:
4396 vhost
->action
= IBMVFC_HOST_ACTION_TGT_DEL
;
4397 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
4398 rc
= ibmvfc_reenable_crq_queue(vhost
);
4399 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
4400 if (rc
|| (rc
= ibmvfc_send_crq_init(vhost
))) {
4401 ibmvfc_link_down(vhost
, IBMVFC_LINK_DEAD
);
4402 dev_err(vhost
->dev
, "Error after enable (rc=%d)\n", rc
);
4405 case IBMVFC_HOST_ACTION_LOGO
:
4406 vhost
->job_step(vhost
);
4408 case IBMVFC_HOST_ACTION_INIT
:
4409 BUG_ON(vhost
->state
!= IBMVFC_INITIALIZING
);
4410 if (vhost
->delay_init
) {
4411 vhost
->delay_init
= 0;
4412 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
4416 vhost
->job_step(vhost
);
4418 case IBMVFC_HOST_ACTION_QUERY
:
4419 list_for_each_entry(tgt
, &vhost
->targets
, queue
)
4420 ibmvfc_init_tgt(tgt
, ibmvfc_tgt_query_target
);
4421 ibmvfc_set_host_action(vhost
, IBMVFC_HOST_ACTION_QUERY_TGTS
);
4423 case IBMVFC_HOST_ACTION_QUERY_TGTS
:
4424 list_for_each_entry(tgt
, &vhost
->targets
, queue
) {
4425 if (tgt
->action
== IBMVFC_TGT_ACTION_INIT
) {
4431 if (!ibmvfc_dev_init_to_do(vhost
))
4432 ibmvfc_set_host_action(vhost
, IBMVFC_HOST_ACTION_TGT_DEL
);
4434 case IBMVFC_HOST_ACTION_TGT_DEL
:
4435 case IBMVFC_HOST_ACTION_TGT_DEL_FAILED
:
4436 list_for_each_entry(tgt
, &vhost
->targets
, queue
) {
4437 if (tgt
->action
== IBMVFC_TGT_ACTION_DEL_RPORT
) {
4438 tgt_dbg(tgt
, "Deleting rport\n");
4441 list_del(&tgt
->queue
);
4442 ibmvfc_set_tgt_action(tgt
, IBMVFC_TGT_ACTION_DELETED_RPORT
);
4443 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
4445 fc_remote_port_delete(rport
);
4446 del_timer_sync(&tgt
->timer
);
4447 kref_put(&tgt
->kref
, ibmvfc_release_tgt
);
4452 if (vhost
->state
== IBMVFC_INITIALIZING
) {
4453 if (vhost
->action
== IBMVFC_HOST_ACTION_TGT_DEL_FAILED
) {
4454 if (vhost
->reinit
) {
4456 scsi_block_requests(vhost
->host
);
4457 ibmvfc_set_host_action(vhost
, IBMVFC_HOST_ACTION_QUERY
);
4458 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
4460 ibmvfc_set_host_state(vhost
, IBMVFC_ACTIVE
);
4461 ibmvfc_set_host_action(vhost
, IBMVFC_HOST_ACTION_NONE
);
4462 wake_up(&vhost
->init_wait_q
);
4463 schedule_work(&vhost
->rport_add_work_q
);
4464 vhost
->init_retries
= 0;
4465 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
4466 scsi_unblock_requests(vhost
->host
);
4471 ibmvfc_set_host_action(vhost
, IBMVFC_HOST_ACTION_INIT
);
4472 vhost
->job_step
= ibmvfc_discover_targets
;
4475 ibmvfc_set_host_action(vhost
, IBMVFC_HOST_ACTION_NONE
);
4476 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
4477 scsi_unblock_requests(vhost
->host
);
4478 wake_up(&vhost
->init_wait_q
);
4482 case IBMVFC_HOST_ACTION_ALLOC_TGTS
:
4483 ibmvfc_set_host_action(vhost
, IBMVFC_HOST_ACTION_TGT_INIT
);
4484 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
4485 ibmvfc_alloc_targets(vhost
);
4486 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
4488 case IBMVFC_HOST_ACTION_TGT_INIT
:
4489 list_for_each_entry(tgt
, &vhost
->targets
, queue
) {
4490 if (tgt
->action
== IBMVFC_TGT_ACTION_INIT
) {
4496 if (!ibmvfc_dev_init_to_do(vhost
))
4497 ibmvfc_set_host_action(vhost
, IBMVFC_HOST_ACTION_TGT_DEL_FAILED
);
4503 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
4507 * ibmvfc_work - Do task level work
4508 * @data: ibmvfc host struct
4513 static int ibmvfc_work(void *data
)
4515 struct ibmvfc_host
*vhost
= data
;
4518 set_user_nice(current
, -20);
4521 rc
= wait_event_interruptible(vhost
->work_wait_q
,
4522 ibmvfc_work_to_do(vhost
));
4526 if (kthread_should_stop())
4529 ibmvfc_do_work(vhost
);
4532 ibmvfc_dbg(vhost
, "ibmvfc kthread exiting...\n");
4537 * ibmvfc_init_crq - Initializes and registers CRQ with hypervisor
4538 * @vhost: ibmvfc host struct
4540 * Allocates a page for messages, maps it for dma, and registers
4541 * the crq with the hypervisor.
4544 * zero on success / other on failure
4546 static int ibmvfc_init_crq(struct ibmvfc_host
*vhost
)
4548 int rc
, retrc
= -ENOMEM
;
4549 struct device
*dev
= vhost
->dev
;
4550 struct vio_dev
*vdev
= to_vio_dev(dev
);
4551 struct ibmvfc_crq_queue
*crq
= &vhost
->crq
;
4554 crq
->msgs
= (struct ibmvfc_crq
*)get_zeroed_page(GFP_KERNEL
);
4559 crq
->size
= PAGE_SIZE
/ sizeof(*crq
->msgs
);
4560 crq
->msg_token
= dma_map_single(dev
, crq
->msgs
,
4561 PAGE_SIZE
, DMA_BIDIRECTIONAL
);
4563 if (dma_mapping_error(dev
, crq
->msg_token
))
4566 retrc
= rc
= plpar_hcall_norets(H_REG_CRQ
, vdev
->unit_address
,
4567 crq
->msg_token
, PAGE_SIZE
);
4569 if (rc
== H_RESOURCE
)
4570 /* maybe kexecing and resource is busy. try a reset */
4571 retrc
= rc
= ibmvfc_reset_crq(vhost
);
4574 dev_warn(dev
, "Partner adapter not ready\n");
4576 dev_warn(dev
, "Error %d opening adapter\n", rc
);
4577 goto reg_crq_failed
;
4582 tasklet_init(&vhost
->tasklet
, (void *)ibmvfc_tasklet
, (unsigned long)vhost
);
4584 if ((rc
= request_irq(vdev
->irq
, ibmvfc_interrupt
, 0, IBMVFC_NAME
, vhost
))) {
4585 dev_err(dev
, "Couldn't register irq 0x%x. rc=%d\n", vdev
->irq
, rc
);
4586 goto req_irq_failed
;
4589 if ((rc
= vio_enable_interrupts(vdev
))) {
4590 dev_err(dev
, "Error %d enabling interrupts\n", rc
);
4591 goto req_irq_failed
;
4599 tasklet_kill(&vhost
->tasklet
);
4601 rc
= plpar_hcall_norets(H_FREE_CRQ
, vdev
->unit_address
);
4602 } while (rc
== H_BUSY
|| H_IS_LONG_BUSY(rc
));
4604 dma_unmap_single(dev
, crq
->msg_token
, PAGE_SIZE
, DMA_BIDIRECTIONAL
);
4606 free_page((unsigned long)crq
->msgs
);
4611 * ibmvfc_free_mem - Free memory for vhost
4612 * @vhost: ibmvfc host struct
4617 static void ibmvfc_free_mem(struct ibmvfc_host
*vhost
)
4619 struct ibmvfc_async_crq_queue
*async_q
= &vhost
->async_crq
;
4622 mempool_destroy(vhost
->tgt_pool
);
4623 kfree(vhost
->trace
);
4624 dma_free_coherent(vhost
->dev
, vhost
->disc_buf_sz
, vhost
->disc_buf
,
4625 vhost
->disc_buf_dma
);
4626 dma_free_coherent(vhost
->dev
, sizeof(*vhost
->login_buf
),
4627 vhost
->login_buf
, vhost
->login_buf_dma
);
4628 dma_pool_destroy(vhost
->sg_pool
);
4629 dma_unmap_single(vhost
->dev
, async_q
->msg_token
,
4630 async_q
->size
* sizeof(*async_q
->msgs
), DMA_BIDIRECTIONAL
);
4631 free_page((unsigned long)async_q
->msgs
);
4636 * ibmvfc_alloc_mem - Allocate memory for vhost
4637 * @vhost: ibmvfc host struct
4640 * 0 on success / non-zero on failure
4642 static int ibmvfc_alloc_mem(struct ibmvfc_host
*vhost
)
4644 struct ibmvfc_async_crq_queue
*async_q
= &vhost
->async_crq
;
4645 struct device
*dev
= vhost
->dev
;
4648 async_q
->msgs
= (struct ibmvfc_async_crq
*)get_zeroed_page(GFP_KERNEL
);
4649 if (!async_q
->msgs
) {
4650 dev_err(dev
, "Couldn't allocate async queue.\n");
4654 async_q
->size
= PAGE_SIZE
/ sizeof(struct ibmvfc_async_crq
);
4655 async_q
->msg_token
= dma_map_single(dev
, async_q
->msgs
,
4656 async_q
->size
* sizeof(*async_q
->msgs
),
4659 if (dma_mapping_error(dev
, async_q
->msg_token
)) {
4660 dev_err(dev
, "Failed to map async queue\n");
4661 goto free_async_crq
;
4664 vhost
->sg_pool
= dma_pool_create(IBMVFC_NAME
, dev
,
4665 SG_ALL
* sizeof(struct srp_direct_buf
),
4666 sizeof(struct srp_direct_buf
), 0);
4668 if (!vhost
->sg_pool
) {
4669 dev_err(dev
, "Failed to allocate sg pool\n");
4670 goto unmap_async_crq
;
4673 vhost
->login_buf
= dma_alloc_coherent(dev
, sizeof(*vhost
->login_buf
),
4674 &vhost
->login_buf_dma
, GFP_KERNEL
);
4676 if (!vhost
->login_buf
) {
4677 dev_err(dev
, "Couldn't allocate NPIV login buffer\n");
4681 vhost
->disc_buf_sz
= sizeof(vhost
->disc_buf
->scsi_id
[0]) * max_targets
;
4682 vhost
->disc_buf
= dma_alloc_coherent(dev
, vhost
->disc_buf_sz
,
4683 &vhost
->disc_buf_dma
, GFP_KERNEL
);
4685 if (!vhost
->disc_buf
) {
4686 dev_err(dev
, "Couldn't allocate Discover Targets buffer\n");
4687 goto free_login_buffer
;
4690 vhost
->trace
= kcalloc(IBMVFC_NUM_TRACE_ENTRIES
,
4691 sizeof(struct ibmvfc_trace_entry
), GFP_KERNEL
);
4694 goto free_disc_buffer
;
4696 vhost
->tgt_pool
= mempool_create_kmalloc_pool(IBMVFC_TGT_MEMPOOL_SZ
,
4697 sizeof(struct ibmvfc_target
));
4699 if (!vhost
->tgt_pool
) {
4700 dev_err(dev
, "Couldn't allocate target memory pool\n");
4708 kfree(vhost
->trace
);
4710 dma_free_coherent(dev
, vhost
->disc_buf_sz
, vhost
->disc_buf
,
4711 vhost
->disc_buf_dma
);
4713 dma_free_coherent(dev
, sizeof(*vhost
->login_buf
),
4714 vhost
->login_buf
, vhost
->login_buf_dma
);
4716 dma_pool_destroy(vhost
->sg_pool
);
4718 dma_unmap_single(dev
, async_q
->msg_token
,
4719 async_q
->size
* sizeof(*async_q
->msgs
), DMA_BIDIRECTIONAL
);
4721 free_page((unsigned long)async_q
->msgs
);
4728 * ibmvfc_rport_add_thread - Worker thread for rport adds
4729 * @work: work struct
4732 static void ibmvfc_rport_add_thread(struct work_struct
*work
)
4734 struct ibmvfc_host
*vhost
= container_of(work
, struct ibmvfc_host
,
4736 struct ibmvfc_target
*tgt
;
4737 struct fc_rport
*rport
;
4738 unsigned long flags
;
4742 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
4745 if (vhost
->state
!= IBMVFC_ACTIVE
)
4748 list_for_each_entry(tgt
, &vhost
->targets
, queue
) {
4749 if (tgt
->add_rport
) {
4752 kref_get(&tgt
->kref
);
4755 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
4756 ibmvfc_tgt_add_rport(tgt
);
4757 } else if (get_device(&rport
->dev
)) {
4758 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
4759 tgt_dbg(tgt
, "Setting rport roles\n");
4760 fc_remote_port_rolechg(rport
, tgt
->ids
.roles
);
4761 put_device(&rport
->dev
);
4764 kref_put(&tgt
->kref
, ibmvfc_release_tgt
);
4765 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
4771 if (vhost
->state
== IBMVFC_ACTIVE
)
4772 vhost
->scan_complete
= 1;
4773 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
4778 * ibmvfc_probe - Adapter hot plug add entry point
4779 * @vdev: vio device struct
4780 * @id: vio device id struct
4783 * 0 on success / non-zero on failure
4785 static int ibmvfc_probe(struct vio_dev
*vdev
, const struct vio_device_id
*id
)
4787 struct ibmvfc_host
*vhost
;
4788 struct Scsi_Host
*shost
;
4789 struct device
*dev
= &vdev
->dev
;
4793 shost
= scsi_host_alloc(&driver_template
, sizeof(*vhost
));
4795 dev_err(dev
, "Couldn't allocate host data\n");
4799 shost
->transportt
= ibmvfc_transport_template
;
4800 shost
->can_queue
= max_requests
;
4801 shost
->max_lun
= max_lun
;
4802 shost
->max_id
= max_targets
;
4803 shost
->max_sectors
= IBMVFC_MAX_SECTORS
;
4804 shost
->max_cmd_len
= IBMVFC_MAX_CDB_LEN
;
4805 shost
->unique_id
= shost
->host_no
;
4807 vhost
= shost_priv(shost
);
4808 INIT_LIST_HEAD(&vhost
->sent
);
4809 INIT_LIST_HEAD(&vhost
->free
);
4810 INIT_LIST_HEAD(&vhost
->targets
);
4811 sprintf(vhost
->name
, IBMVFC_NAME
);
4812 vhost
->host
= shost
;
4814 vhost
->partition_number
= -1;
4815 vhost
->log_level
= log_level
;
4816 vhost
->task_set
= 1;
4817 strcpy(vhost
->partition_name
, "UNKNOWN");
4818 init_waitqueue_head(&vhost
->work_wait_q
);
4819 init_waitqueue_head(&vhost
->init_wait_q
);
4820 INIT_WORK(&vhost
->rport_add_work_q
, ibmvfc_rport_add_thread
);
4821 mutex_init(&vhost
->passthru_mutex
);
4823 if ((rc
= ibmvfc_alloc_mem(vhost
)))
4824 goto free_scsi_host
;
4826 vhost
->work_thread
= kthread_run(ibmvfc_work
, vhost
, "%s_%d", IBMVFC_NAME
,
4829 if (IS_ERR(vhost
->work_thread
)) {
4830 dev_err(dev
, "Couldn't create kernel thread: %ld\n",
4831 PTR_ERR(vhost
->work_thread
));
4835 if ((rc
= ibmvfc_init_crq(vhost
))) {
4836 dev_err(dev
, "Couldn't initialize crq. rc=%d\n", rc
);
4840 if ((rc
= ibmvfc_init_event_pool(vhost
))) {
4841 dev_err(dev
, "Couldn't initialize event pool. rc=%d\n", rc
);
4845 if ((rc
= scsi_add_host(shost
, dev
)))
4846 goto release_event_pool
;
4848 fc_host_dev_loss_tmo(shost
) = IBMVFC_DEV_LOSS_TMO
;
4850 if ((rc
= ibmvfc_create_trace_file(&shost
->shost_dev
.kobj
,
4851 &ibmvfc_trace_attr
))) {
4852 dev_err(dev
, "Failed to create trace file. rc=%d\n", rc
);
4856 if (shost_to_fc_host(shost
)->rqst_q
)
4857 blk_queue_max_segments(shost_to_fc_host(shost
)->rqst_q
, 1);
4858 dev_set_drvdata(dev
, vhost
);
4859 spin_lock(&ibmvfc_driver_lock
);
4860 list_add_tail(&vhost
->queue
, &ibmvfc_head
);
4861 spin_unlock(&ibmvfc_driver_lock
);
4863 ibmvfc_send_crq_init(vhost
);
4864 scsi_scan_host(shost
);
4868 scsi_remove_host(shost
);
4870 ibmvfc_free_event_pool(vhost
);
4872 ibmvfc_release_crq_queue(vhost
);
4874 kthread_stop(vhost
->work_thread
);
4876 ibmvfc_free_mem(vhost
);
4878 scsi_host_put(shost
);
4885 * ibmvfc_remove - Adapter hot plug remove entry point
4886 * @vdev: vio device struct
4891 static int ibmvfc_remove(struct vio_dev
*vdev
)
4893 struct ibmvfc_host
*vhost
= dev_get_drvdata(&vdev
->dev
);
4894 unsigned long flags
;
4897 ibmvfc_remove_trace_file(&vhost
->host
->shost_dev
.kobj
, &ibmvfc_trace_attr
);
4899 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
4900 ibmvfc_link_down(vhost
, IBMVFC_HOST_OFFLINE
);
4901 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
4903 ibmvfc_wait_while_resetting(vhost
);
4904 ibmvfc_release_crq_queue(vhost
);
4905 kthread_stop(vhost
->work_thread
);
4906 fc_remove_host(vhost
->host
);
4907 scsi_remove_host(vhost
->host
);
4909 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
4910 ibmvfc_purge_requests(vhost
, DID_ERROR
);
4911 ibmvfc_free_event_pool(vhost
);
4912 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
4914 ibmvfc_free_mem(vhost
);
4915 spin_lock(&ibmvfc_driver_lock
);
4916 list_del(&vhost
->queue
);
4917 spin_unlock(&ibmvfc_driver_lock
);
4918 scsi_host_put(vhost
->host
);
4924 * ibmvfc_resume - Resume from suspend
4925 * @dev: device struct
4927 * We may have lost an interrupt across suspend/resume, so kick the
4931 static int ibmvfc_resume(struct device
*dev
)
4933 unsigned long flags
;
4934 struct ibmvfc_host
*vhost
= dev_get_drvdata(dev
);
4935 struct vio_dev
*vdev
= to_vio_dev(dev
);
4937 spin_lock_irqsave(vhost
->host
->host_lock
, flags
);
4938 vio_disable_interrupts(vdev
);
4939 tasklet_schedule(&vhost
->tasklet
);
4940 spin_unlock_irqrestore(vhost
->host
->host_lock
, flags
);
4945 * ibmvfc_get_desired_dma - Calculate DMA resources needed by the driver
4946 * @vdev: vio device struct
4949 * Number of bytes the driver will need to DMA map at the same time in
4950 * order to perform well.
4952 static unsigned long ibmvfc_get_desired_dma(struct vio_dev
*vdev
)
4954 unsigned long pool_dma
= max_requests
* sizeof(union ibmvfc_iu
);
4955 return pool_dma
+ ((512 * 1024) * driver_template
.cmd_per_lun
);
4958 static struct vio_device_id ibmvfc_device_table
[] = {
4959 {"fcp", "IBM,vfc-client"},
4962 MODULE_DEVICE_TABLE(vio
, ibmvfc_device_table
);
4964 static struct dev_pm_ops ibmvfc_pm_ops
= {
4965 .resume
= ibmvfc_resume
4968 static struct vio_driver ibmvfc_driver
= {
4969 .id_table
= ibmvfc_device_table
,
4970 .probe
= ibmvfc_probe
,
4971 .remove
= ibmvfc_remove
,
4972 .get_desired_dma
= ibmvfc_get_desired_dma
,
4973 .name
= IBMVFC_NAME
,
4974 .pm
= &ibmvfc_pm_ops
,
4977 static struct fc_function_template ibmvfc_transport_functions
= {
4978 .show_host_fabric_name
= 1,
4979 .show_host_node_name
= 1,
4980 .show_host_port_name
= 1,
4981 .show_host_supported_classes
= 1,
4982 .show_host_port_type
= 1,
4983 .show_host_port_id
= 1,
4984 .show_host_maxframe_size
= 1,
4986 .get_host_port_state
= ibmvfc_get_host_port_state
,
4987 .show_host_port_state
= 1,
4989 .get_host_speed
= ibmvfc_get_host_speed
,
4990 .show_host_speed
= 1,
4992 .issue_fc_host_lip
= ibmvfc_issue_fc_host_lip
,
4993 .terminate_rport_io
= ibmvfc_terminate_rport_io
,
4995 .show_rport_maxframe_size
= 1,
4996 .show_rport_supported_classes
= 1,
4998 .set_rport_dev_loss_tmo
= ibmvfc_set_rport_dev_loss_tmo
,
4999 .show_rport_dev_loss_tmo
= 1,
5001 .get_starget_node_name
= ibmvfc_get_starget_node_name
,
5002 .show_starget_node_name
= 1,
5004 .get_starget_port_name
= ibmvfc_get_starget_port_name
,
5005 .show_starget_port_name
= 1,
5007 .get_starget_port_id
= ibmvfc_get_starget_port_id
,
5008 .show_starget_port_id
= 1,
5010 .bsg_request
= ibmvfc_bsg_request
,
5011 .bsg_timeout
= ibmvfc_bsg_timeout
,
5015 * ibmvfc_module_init - Initialize the ibmvfc module
5018 * 0 on success / other on failure
5020 static int __init
ibmvfc_module_init(void)
5024 if (!firmware_has_feature(FW_FEATURE_VIO
))
5027 printk(KERN_INFO IBMVFC_NAME
": IBM Virtual Fibre Channel Driver version: %s %s\n",
5028 IBMVFC_DRIVER_VERSION
, IBMVFC_DRIVER_DATE
);
5030 ibmvfc_transport_template
= fc_attach_transport(&ibmvfc_transport_functions
);
5031 if (!ibmvfc_transport_template
)
5034 rc
= vio_register_driver(&ibmvfc_driver
);
5036 fc_release_transport(ibmvfc_transport_template
);
5041 * ibmvfc_module_exit - Teardown the ibmvfc module
5046 static void __exit
ibmvfc_module_exit(void)
5048 vio_unregister_driver(&ibmvfc_driver
);
5049 fc_release_transport(ibmvfc_transport_template
);
5052 module_init(ibmvfc_module_init
);
5053 module_exit(ibmvfc_module_exit
);