blob: 56b9f452425b21960b803046f59c8d176fffc63e [file] [log] [blame]
Brian King072b91f2008-07-01 13:14:30 -05001/*
2 * ibmvfc.c -- driver for IBM Power Virtual Fibre Channel Adapter
3 *
4 * Written By: Brian King <brking@linux.vnet.ibm.com>, IBM Corporation
5 *
6 * Copyright (C) IBM Corporation, 2008
7 *
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.
12 *
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.
17 *
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
21 *
22 */
23
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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090031#include <linux/slab.h>
Brian King072b91f2008-07-01 13:14:30 -050032#include <linux/of.h>
Brian Kingb0f4d4c2010-02-21 10:37:58 -060033#include <linux/pm.h>
Brian King072b91f2008-07-01 13:14:30 -050034#include <linux/stringify.h>
35#include <asm/firmware.h>
36#include <asm/irq.h>
37#include <asm/vio.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>
Brian Kingd31429e2009-10-19 15:07:54 -050044#include <scsi/scsi_bsg_fc.h>
Brian King072b91f2008-07-01 13:14:30 -050045#include "ibmvfc.h"
46
47static unsigned int init_timeout = IBMVFC_INIT_TIMEOUT;
48static unsigned int default_timeout = IBMVFC_DEFAULT_TIMEOUT;
Hannes Reinecke1abf6352014-06-25 15:27:38 +020049static u64 max_lun = IBMVFC_MAX_LUN;
Brian King072b91f2008-07-01 13:14:30 -050050static unsigned int max_targets = IBMVFC_MAX_TARGETS;
51static unsigned int max_requests = IBMVFC_MAX_REQUESTS_DEFAULT;
52static unsigned int disc_threads = IBMVFC_MAX_DISC_THREADS;
Brian King072b91f2008-07-01 13:14:30 -050053static unsigned int ibmvfc_debug = IBMVFC_DEBUG;
54static unsigned int log_level = IBMVFC_DEFAULT_LOG_LEVEL;
Tyrel Datwylera6104b12016-08-03 16:36:53 -050055static unsigned int cls3_error = IBMVFC_CLS3_ERROR;
Brian King072b91f2008-07-01 13:14:30 -050056static LIST_HEAD(ibmvfc_head);
57static DEFINE_SPINLOCK(ibmvfc_driver_lock);
58static struct scsi_transport_template *ibmvfc_transport_template;
59
60MODULE_DESCRIPTION("IBM Virtual Fibre Channel Driver");
61MODULE_AUTHOR("Brian King <brking@linux.vnet.ibm.com>");
62MODULE_LICENSE("GPL");
63MODULE_VERSION(IBMVFC_DRIVER_VERSION);
64
65module_param_named(init_timeout, init_timeout, uint, S_IRUGO | S_IWUSR);
66MODULE_PARM_DESC(init_timeout, "Initialization timeout in seconds. "
67 "[Default=" __stringify(IBMVFC_INIT_TIMEOUT) "]");
68module_param_named(default_timeout, default_timeout, uint, S_IRUGO | S_IWUSR);
69MODULE_PARM_DESC(default_timeout,
70 "Default timeout in seconds for initialization and EH commands. "
71 "[Default=" __stringify(IBMVFC_DEFAULT_TIMEOUT) "]");
72module_param_named(max_requests, max_requests, uint, S_IRUGO);
73MODULE_PARM_DESC(max_requests, "Maximum requests for this adapter. "
74 "[Default=" __stringify(IBMVFC_MAX_REQUESTS_DEFAULT) "]");
Hannes Reinecke1abf6352014-06-25 15:27:38 +020075module_param_named(max_lun, max_lun, ullong, S_IRUGO);
Brian King072b91f2008-07-01 13:14:30 -050076MODULE_PARM_DESC(max_lun, "Maximum allowed LUN. "
77 "[Default=" __stringify(IBMVFC_MAX_LUN) "]");
78module_param_named(max_targets, max_targets, uint, S_IRUGO);
79MODULE_PARM_DESC(max_targets, "Maximum allowed targets. "
80 "[Default=" __stringify(IBMVFC_MAX_TARGETS) "]");
Brian King545ef9a2009-03-20 15:44:37 -050081module_param_named(disc_threads, disc_threads, uint, S_IRUGO);
Brian King072b91f2008-07-01 13:14:30 -050082MODULE_PARM_DESC(disc_threads, "Number of device discovery threads to use. "
83 "[Default=" __stringify(IBMVFC_MAX_DISC_THREADS) "]");
84module_param_named(debug, ibmvfc_debug, uint, S_IRUGO | S_IWUSR);
85MODULE_PARM_DESC(debug, "Enable driver debug information. "
86 "[Default=" __stringify(IBMVFC_DEBUG) "]");
Brian King072b91f2008-07-01 13:14:30 -050087module_param_named(log_level, log_level, uint, 0);
88MODULE_PARM_DESC(log_level, "Set to 0 - 4 for increasing verbosity of device driver. "
89 "[Default=" __stringify(IBMVFC_DEFAULT_LOG_LEVEL) "]");
Tyrel Datwylera6104b12016-08-03 16:36:53 -050090module_param_named(cls3_error, cls3_error, uint, 0);
Wei Yongjun6c463012016-09-08 15:04:41 +000091MODULE_PARM_DESC(cls3_error, "Enable FC Class 3 Error Recovery. "
Tyrel Datwylera6104b12016-08-03 16:36:53 -050092 "[Default=" __stringify(IBMVFC_CLS3_ERROR) "]");
Brian King072b91f2008-07-01 13:14:30 -050093
94static const struct {
95 u16 status;
96 u16 error;
97 u8 result;
98 u8 retry;
99 int log;
100 char *name;
101} cmd_status [] = {
102 { IBMVFC_FABRIC_MAPPED, IBMVFC_UNABLE_TO_ESTABLISH, DID_ERROR, 1, 1, "unable to establish" },
103 { IBMVFC_FABRIC_MAPPED, IBMVFC_XPORT_FAULT, DID_OK, 1, 0, "transport fault" },
104 { IBMVFC_FABRIC_MAPPED, IBMVFC_CMD_TIMEOUT, DID_TIME_OUT, 1, 1, "command timeout" },
Brian King752b3232008-12-15 17:09:05 -0600105 { IBMVFC_FABRIC_MAPPED, IBMVFC_ENETDOWN, DID_TRANSPORT_DISRUPTED, 1, 1, "network down" },
Brian King072b91f2008-07-01 13:14:30 -0500106 { IBMVFC_FABRIC_MAPPED, IBMVFC_HW_FAILURE, DID_ERROR, 1, 1, "hardware failure" },
107 { IBMVFC_FABRIC_MAPPED, IBMVFC_LINK_DOWN_ERR, DID_REQUEUE, 0, 0, "link down" },
108 { IBMVFC_FABRIC_MAPPED, IBMVFC_LINK_DEAD_ERR, DID_ERROR, 0, 0, "link dead" },
109 { IBMVFC_FABRIC_MAPPED, IBMVFC_UNABLE_TO_REGISTER, DID_ERROR, 1, 1, "unable to register" },
110 { IBMVFC_FABRIC_MAPPED, IBMVFC_XPORT_BUSY, DID_BUS_BUSY, 1, 0, "transport busy" },
111 { IBMVFC_FABRIC_MAPPED, IBMVFC_XPORT_DEAD, DID_ERROR, 0, 1, "transport dead" },
112 { IBMVFC_FABRIC_MAPPED, IBMVFC_CONFIG_ERROR, DID_ERROR, 1, 1, "configuration error" },
113 { IBMVFC_FABRIC_MAPPED, IBMVFC_NAME_SERVER_FAIL, DID_ERROR, 1, 1, "name server failure" },
Brian King497f9c52009-05-28 16:17:30 -0500114 { IBMVFC_FABRIC_MAPPED, IBMVFC_LINK_HALTED, DID_REQUEUE, 1, 0, "link halted" },
Brian King072b91f2008-07-01 13:14:30 -0500115 { IBMVFC_FABRIC_MAPPED, IBMVFC_XPORT_GENERAL, DID_OK, 1, 0, "general transport error" },
116
117 { IBMVFC_VIOS_FAILURE, IBMVFC_CRQ_FAILURE, DID_REQUEUE, 1, 1, "CRQ failure" },
118 { IBMVFC_VIOS_FAILURE, IBMVFC_SW_FAILURE, DID_ERROR, 0, 1, "software failure" },
Brian King752b3232008-12-15 17:09:05 -0600119 { IBMVFC_VIOS_FAILURE, IBMVFC_INVALID_PARAMETER, DID_ERROR, 0, 1, "invalid parameter" },
120 { IBMVFC_VIOS_FAILURE, IBMVFC_MISSING_PARAMETER, DID_ERROR, 0, 1, "missing parameter" },
Brian King072b91f2008-07-01 13:14:30 -0500121 { IBMVFC_VIOS_FAILURE, IBMVFC_HOST_IO_BUS, DID_ERROR, 1, 1, "host I/O bus failure" },
Brian King752b3232008-12-15 17:09:05 -0600122 { IBMVFC_VIOS_FAILURE, IBMVFC_TRANS_CANCELLED, DID_ERROR, 0, 1, "transaction cancelled" },
123 { IBMVFC_VIOS_FAILURE, IBMVFC_TRANS_CANCELLED_IMPLICIT, DID_ERROR, 0, 1, "transaction cancelled implicit" },
Brian King072b91f2008-07-01 13:14:30 -0500124 { IBMVFC_VIOS_FAILURE, IBMVFC_INSUFFICIENT_RESOURCE, DID_REQUEUE, 1, 1, "insufficient resources" },
Brian King646d3852008-11-14 13:33:53 -0600125 { IBMVFC_VIOS_FAILURE, IBMVFC_PLOGI_REQUIRED, DID_ERROR, 0, 1, "port login required" },
Brian King072b91f2008-07-01 13:14:30 -0500126 { IBMVFC_VIOS_FAILURE, IBMVFC_COMMAND_FAILED, DID_ERROR, 1, 1, "command failed" },
127
128 { IBMVFC_FC_FAILURE, IBMVFC_INVALID_ELS_CMD_CODE, DID_ERROR, 0, 1, "invalid ELS command code" },
129 { IBMVFC_FC_FAILURE, IBMVFC_INVALID_VERSION, DID_ERROR, 0, 1, "invalid version level" },
130 { IBMVFC_FC_FAILURE, IBMVFC_LOGICAL_ERROR, DID_ERROR, 1, 1, "logical error" },
131 { IBMVFC_FC_FAILURE, IBMVFC_INVALID_CT_IU_SIZE, DID_ERROR, 0, 1, "invalid CT_IU size" },
132 { IBMVFC_FC_FAILURE, IBMVFC_LOGICAL_BUSY, DID_REQUEUE, 1, 0, "logical busy" },
133 { IBMVFC_FC_FAILURE, IBMVFC_PROTOCOL_ERROR, DID_ERROR, 1, 1, "protocol error" },
134 { IBMVFC_FC_FAILURE, IBMVFC_UNABLE_TO_PERFORM_REQ, DID_ERROR, 1, 1, "unable to perform request" },
135 { IBMVFC_FC_FAILURE, IBMVFC_CMD_NOT_SUPPORTED, DID_ERROR, 0, 0, "command not supported" },
136 { IBMVFC_FC_FAILURE, IBMVFC_SERVER_NOT_AVAIL, DID_ERROR, 0, 1, "server not available" },
137 { IBMVFC_FC_FAILURE, IBMVFC_CMD_IN_PROGRESS, DID_ERROR, 0, 1, "command already in progress" },
138 { IBMVFC_FC_FAILURE, IBMVFC_VENDOR_SPECIFIC, DID_ERROR, 1, 1, "vendor specific" },
139
140 { IBMVFC_FC_SCSI_ERROR, 0, DID_OK, 1, 0, "SCSI error" },
141};
142
143static void ibmvfc_npiv_login(struct ibmvfc_host *);
144static void ibmvfc_tgt_send_prli(struct ibmvfc_target *);
145static void ibmvfc_tgt_send_plogi(struct ibmvfc_target *);
146static void ibmvfc_tgt_query_target(struct ibmvfc_target *);
Brian King79111d02009-05-28 16:17:29 -0500147static void ibmvfc_npiv_logout(struct ibmvfc_host *);
Brian King072b91f2008-07-01 13:14:30 -0500148
149static const char *unknown_error = "unknown error";
150
151#ifdef CONFIG_SCSI_IBMVFC_TRACE
152/**
153 * ibmvfc_trc_start - Log a start trace entry
154 * @evt: ibmvfc event struct
155 *
156 **/
157static void ibmvfc_trc_start(struct ibmvfc_event *evt)
158{
159 struct ibmvfc_host *vhost = evt->vhost;
160 struct ibmvfc_cmd *vfc_cmd = &evt->iu.cmd;
161 struct ibmvfc_mad_common *mad = &evt->iu.mad_common;
162 struct ibmvfc_trace_entry *entry;
163
164 entry = &vhost->trace[vhost->trace_index++];
165 entry->evt = evt;
166 entry->time = jiffies;
167 entry->fmt = evt->crq.format;
168 entry->type = IBMVFC_TRC_START;
169
170 switch (entry->fmt) {
171 case IBMVFC_CMD_FORMAT:
172 entry->op_code = vfc_cmd->iu.cdb[0];
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -0500173 entry->scsi_id = be64_to_cpu(vfc_cmd->tgt_scsi_id);
Brian King072b91f2008-07-01 13:14:30 -0500174 entry->lun = scsilun_to_int(&vfc_cmd->iu.lun);
175 entry->tmf_flags = vfc_cmd->iu.tmf_flags;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -0500176 entry->u.start.xfer_len = be32_to_cpu(vfc_cmd->iu.xfer_len);
Brian King072b91f2008-07-01 13:14:30 -0500177 break;
178 case IBMVFC_MAD_FORMAT:
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -0500179 entry->op_code = be32_to_cpu(mad->opcode);
Brian King072b91f2008-07-01 13:14:30 -0500180 break;
181 default:
182 break;
183 };
184}
185
186/**
187 * ibmvfc_trc_end - Log an end trace entry
188 * @evt: ibmvfc event struct
189 *
190 **/
191static void ibmvfc_trc_end(struct ibmvfc_event *evt)
192{
193 struct ibmvfc_host *vhost = evt->vhost;
194 struct ibmvfc_cmd *vfc_cmd = &evt->xfer_iu->cmd;
195 struct ibmvfc_mad_common *mad = &evt->xfer_iu->mad_common;
196 struct ibmvfc_trace_entry *entry = &vhost->trace[vhost->trace_index++];
197
198 entry->evt = evt;
199 entry->time = jiffies;
200 entry->fmt = evt->crq.format;
201 entry->type = IBMVFC_TRC_END;
202
203 switch (entry->fmt) {
204 case IBMVFC_CMD_FORMAT:
205 entry->op_code = vfc_cmd->iu.cdb[0];
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -0500206 entry->scsi_id = be64_to_cpu(vfc_cmd->tgt_scsi_id);
Brian King072b91f2008-07-01 13:14:30 -0500207 entry->lun = scsilun_to_int(&vfc_cmd->iu.lun);
208 entry->tmf_flags = vfc_cmd->iu.tmf_flags;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -0500209 entry->u.end.status = be16_to_cpu(vfc_cmd->status);
210 entry->u.end.error = be16_to_cpu(vfc_cmd->error);
Brian King072b91f2008-07-01 13:14:30 -0500211 entry->u.end.fcp_rsp_flags = vfc_cmd->rsp.flags;
212 entry->u.end.rsp_code = vfc_cmd->rsp.data.info.rsp_code;
213 entry->u.end.scsi_status = vfc_cmd->rsp.scsi_status;
214 break;
215 case IBMVFC_MAD_FORMAT:
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -0500216 entry->op_code = be32_to_cpu(mad->opcode);
217 entry->u.end.status = be16_to_cpu(mad->status);
Brian King072b91f2008-07-01 13:14:30 -0500218 break;
219 default:
220 break;
221
222 };
223}
224
225#else
226#define ibmvfc_trc_start(evt) do { } while (0)
227#define ibmvfc_trc_end(evt) do { } while (0)
228#endif
229
230/**
231 * ibmvfc_get_err_index - Find the index into cmd_status for the fcp response
232 * @status: status / error class
233 * @error: error
234 *
235 * Return value:
236 * index into cmd_status / -EINVAL on failure
237 **/
238static int ibmvfc_get_err_index(u16 status, u16 error)
239{
240 int i;
241
242 for (i = 0; i < ARRAY_SIZE(cmd_status); i++)
243 if ((cmd_status[i].status & status) == cmd_status[i].status &&
244 cmd_status[i].error == error)
245 return i;
246
247 return -EINVAL;
248}
249
250/**
251 * ibmvfc_get_cmd_error - Find the error description for the fcp response
252 * @status: status / error class
253 * @error: error
254 *
255 * Return value:
256 * error description string
257 **/
258static const char *ibmvfc_get_cmd_error(u16 status, u16 error)
259{
260 int rc = ibmvfc_get_err_index(status, error);
261 if (rc >= 0)
262 return cmd_status[rc].name;
263 return unknown_error;
264}
265
266/**
267 * ibmvfc_get_err_result - Find the scsi status to return for the fcp response
268 * @vfc_cmd: ibmvfc command struct
269 *
270 * Return value:
271 * SCSI result value to return for completed command
272 **/
273static int ibmvfc_get_err_result(struct ibmvfc_cmd *vfc_cmd)
274{
275 int err;
276 struct ibmvfc_fcp_rsp *rsp = &vfc_cmd->rsp;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -0500277 int fc_rsp_len = be32_to_cpu(rsp->fcp_rsp_len);
Brian King072b91f2008-07-01 13:14:30 -0500278
279 if ((rsp->flags & FCP_RSP_LEN_VALID) &&
Brian King4a2837d2009-05-28 16:17:22 -0500280 ((fc_rsp_len && fc_rsp_len != 4 && fc_rsp_len != 8) ||
Brian King072b91f2008-07-01 13:14:30 -0500281 rsp->data.info.rsp_code))
282 return DID_ERROR << 16;
283
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -0500284 err = ibmvfc_get_err_index(be16_to_cpu(vfc_cmd->status), be16_to_cpu(vfc_cmd->error));
Brian King072b91f2008-07-01 13:14:30 -0500285 if (err >= 0)
286 return rsp->scsi_status | (cmd_status[err].result << 16);
287 return rsp->scsi_status | (DID_ERROR << 16);
288}
289
290/**
291 * ibmvfc_retry_cmd - Determine if error status is retryable
292 * @status: status / error class
293 * @error: error
294 *
295 * Return value:
296 * 1 if error should be retried / 0 if it should not
297 **/
298static int ibmvfc_retry_cmd(u16 status, u16 error)
299{
300 int rc = ibmvfc_get_err_index(status, error);
301
302 if (rc >= 0)
303 return cmd_status[rc].retry;
304 return 1;
305}
306
307static const char *unknown_fc_explain = "unknown fc explain";
308
309static const struct {
310 u16 fc_explain;
311 char *name;
312} ls_explain [] = {
313 { 0x00, "no additional explanation" },
314 { 0x01, "service parameter error - options" },
315 { 0x03, "service parameter error - initiator control" },
316 { 0x05, "service parameter error - recipient control" },
317 { 0x07, "service parameter error - received data field size" },
318 { 0x09, "service parameter error - concurrent seq" },
319 { 0x0B, "service parameter error - credit" },
320 { 0x0D, "invalid N_Port/F_Port_Name" },
321 { 0x0E, "invalid node/Fabric Name" },
322 { 0x0F, "invalid common service parameters" },
323 { 0x11, "invalid association header" },
324 { 0x13, "association header required" },
325 { 0x15, "invalid originator S_ID" },
326 { 0x17, "invalid OX_ID-RX-ID combination" },
327 { 0x19, "command (request) already in progress" },
328 { 0x1E, "N_Port Login requested" },
329 { 0x1F, "Invalid N_Port_ID" },
330};
331
332static const struct {
333 u16 fc_explain;
334 char *name;
335} gs_explain [] = {
336 { 0x00, "no additional explanation" },
337 { 0x01, "port identifier not registered" },
338 { 0x02, "port name not registered" },
339 { 0x03, "node name not registered" },
340 { 0x04, "class of service not registered" },
341 { 0x06, "initial process associator not registered" },
342 { 0x07, "FC-4 TYPEs not registered" },
343 { 0x08, "symbolic port name not registered" },
344 { 0x09, "symbolic node name not registered" },
345 { 0x0A, "port type not registered" },
346 { 0xF0, "authorization exception" },
347 { 0xF1, "authentication exception" },
348 { 0xF2, "data base full" },
349 { 0xF3, "data base empty" },
350 { 0xF4, "processing request" },
351 { 0xF5, "unable to verify connection" },
352 { 0xF6, "devices not in a common zone" },
353};
354
355/**
356 * ibmvfc_get_ls_explain - Return the FC Explain description text
357 * @status: FC Explain status
358 *
359 * Returns:
360 * error string
361 **/
362static const char *ibmvfc_get_ls_explain(u16 status)
363{
364 int i;
365
366 for (i = 0; i < ARRAY_SIZE(ls_explain); i++)
367 if (ls_explain[i].fc_explain == status)
368 return ls_explain[i].name;
369
370 return unknown_fc_explain;
371}
372
373/**
374 * ibmvfc_get_gs_explain - Return the FC Explain description text
375 * @status: FC Explain status
376 *
377 * Returns:
378 * error string
379 **/
380static const char *ibmvfc_get_gs_explain(u16 status)
381{
382 int i;
383
384 for (i = 0; i < ARRAY_SIZE(gs_explain); i++)
385 if (gs_explain[i].fc_explain == status)
386 return gs_explain[i].name;
387
388 return unknown_fc_explain;
389}
390
391static const struct {
392 enum ibmvfc_fc_type fc_type;
393 char *name;
394} fc_type [] = {
395 { IBMVFC_FABRIC_REJECT, "fabric reject" },
396 { IBMVFC_PORT_REJECT, "port reject" },
397 { IBMVFC_LS_REJECT, "ELS reject" },
398 { IBMVFC_FABRIC_BUSY, "fabric busy" },
399 { IBMVFC_PORT_BUSY, "port busy" },
400 { IBMVFC_BASIC_REJECT, "basic reject" },
401};
402
403static const char *unknown_fc_type = "unknown fc type";
404
405/**
406 * ibmvfc_get_fc_type - Return the FC Type description text
407 * @status: FC Type error status
408 *
409 * Returns:
410 * error string
411 **/
412static const char *ibmvfc_get_fc_type(u16 status)
413{
414 int i;
415
416 for (i = 0; i < ARRAY_SIZE(fc_type); i++)
417 if (fc_type[i].fc_type == status)
418 return fc_type[i].name;
419
420 return unknown_fc_type;
421}
422
423/**
424 * ibmvfc_set_tgt_action - Set the next init action for the target
425 * @tgt: ibmvfc target struct
426 * @action: action to perform
427 *
428 **/
429static void ibmvfc_set_tgt_action(struct ibmvfc_target *tgt,
430 enum ibmvfc_target_action action)
431{
432 switch (tgt->action) {
433 case IBMVFC_TGT_ACTION_DEL_RPORT:
Brian Kingd5da3042010-08-05 16:38:31 -0500434 if (action == IBMVFC_TGT_ACTION_DELETED_RPORT)
435 tgt->action = action;
436 case IBMVFC_TGT_ACTION_DELETED_RPORT:
Brian King072b91f2008-07-01 13:14:30 -0500437 break;
438 default:
Brian King43c8da92009-05-28 16:17:28 -0500439 if (action == IBMVFC_TGT_ACTION_DEL_RPORT)
440 tgt->add_rport = 0;
Brian King072b91f2008-07-01 13:14:30 -0500441 tgt->action = action;
442 break;
443 }
444}
445
446/**
447 * ibmvfc_set_host_state - Set the state for the host
448 * @vhost: ibmvfc host struct
449 * @state: state to set host to
450 *
451 * Returns:
452 * 0 if state changed / non-zero if not changed
453 **/
454static int ibmvfc_set_host_state(struct ibmvfc_host *vhost,
455 enum ibmvfc_host_state state)
456{
457 int rc = 0;
458
459 switch (vhost->state) {
460 case IBMVFC_HOST_OFFLINE:
461 rc = -EINVAL;
462 break;
463 default:
464 vhost->state = state;
465 break;
466 };
467
468 return rc;
469}
470
471/**
472 * ibmvfc_set_host_action - Set the next init action for the host
473 * @vhost: ibmvfc host struct
474 * @action: action to perform
475 *
476 **/
477static void ibmvfc_set_host_action(struct ibmvfc_host *vhost,
478 enum ibmvfc_host_action action)
479{
480 switch (action) {
481 case IBMVFC_HOST_ACTION_ALLOC_TGTS:
482 if (vhost->action == IBMVFC_HOST_ACTION_INIT_WAIT)
483 vhost->action = action;
484 break;
Brian King79111d02009-05-28 16:17:29 -0500485 case IBMVFC_HOST_ACTION_LOGO_WAIT:
486 if (vhost->action == IBMVFC_HOST_ACTION_LOGO)
487 vhost->action = action;
488 break;
Brian King072b91f2008-07-01 13:14:30 -0500489 case IBMVFC_HOST_ACTION_INIT_WAIT:
490 if (vhost->action == IBMVFC_HOST_ACTION_INIT)
491 vhost->action = action;
492 break;
493 case IBMVFC_HOST_ACTION_QUERY:
494 switch (vhost->action) {
495 case IBMVFC_HOST_ACTION_INIT_WAIT:
496 case IBMVFC_HOST_ACTION_NONE:
Brian King43c8da92009-05-28 16:17:28 -0500497 case IBMVFC_HOST_ACTION_TGT_DEL_FAILED:
Brian King072b91f2008-07-01 13:14:30 -0500498 vhost->action = action;
499 break;
500 default:
501 break;
502 };
503 break;
504 case IBMVFC_HOST_ACTION_TGT_INIT:
505 if (vhost->action == IBMVFC_HOST_ACTION_ALLOC_TGTS)
506 vhost->action = action;
507 break;
508 case IBMVFC_HOST_ACTION_INIT:
509 case IBMVFC_HOST_ACTION_TGT_DEL:
Brian King73ee5d82010-06-17 13:55:13 -0500510 switch (vhost->action) {
511 case IBMVFC_HOST_ACTION_RESET:
512 case IBMVFC_HOST_ACTION_REENABLE:
513 break;
514 default:
515 vhost->action = action;
516 break;
517 };
518 break;
519 case IBMVFC_HOST_ACTION_LOGO:
Brian King072b91f2008-07-01 13:14:30 -0500520 case IBMVFC_HOST_ACTION_QUERY_TGTS:
Brian King10e79492008-10-29 08:46:45 -0500521 case IBMVFC_HOST_ACTION_TGT_DEL_FAILED:
Brian King072b91f2008-07-01 13:14:30 -0500522 case IBMVFC_HOST_ACTION_NONE:
Brian King73ee5d82010-06-17 13:55:13 -0500523 case IBMVFC_HOST_ACTION_RESET:
524 case IBMVFC_HOST_ACTION_REENABLE:
Brian King072b91f2008-07-01 13:14:30 -0500525 default:
526 vhost->action = action;
527 break;
528 };
529}
530
531/**
532 * ibmvfc_reinit_host - Re-start host initialization (no NPIV Login)
533 * @vhost: ibmvfc host struct
534 *
535 * Return value:
536 * nothing
537 **/
538static void ibmvfc_reinit_host(struct ibmvfc_host *vhost)
539{
540 if (vhost->action == IBMVFC_HOST_ACTION_NONE) {
Brian King2d0da2a2008-07-22 08:31:42 -0500541 if (!ibmvfc_set_host_state(vhost, IBMVFC_INITIALIZING)) {
542 scsi_block_requests(vhost->host);
543 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_QUERY);
544 }
Brian King072b91f2008-07-01 13:14:30 -0500545 } else
546 vhost->reinit = 1;
547
548 wake_up(&vhost->work_wait_q);
549}
550
551/**
552 * ibmvfc_link_down - Handle a link down event from the adapter
553 * @vhost: ibmvfc host struct
554 * @state: ibmvfc host state to enter
555 *
556 **/
557static void ibmvfc_link_down(struct ibmvfc_host *vhost,
558 enum ibmvfc_host_state state)
559{
560 struct ibmvfc_target *tgt;
561
562 ENTER;
563 scsi_block_requests(vhost->host);
564 list_for_each_entry(tgt, &vhost->targets, queue)
565 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DEL_RPORT);
566 ibmvfc_set_host_state(vhost, state);
567 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_TGT_DEL);
568 vhost->events_to_log |= IBMVFC_AE_LINKDOWN;
569 wake_up(&vhost->work_wait_q);
570 LEAVE;
571}
572
573/**
574 * ibmvfc_init_host - Start host initialization
575 * @vhost: ibmvfc host struct
576 *
577 * Return value:
578 * nothing
579 **/
Brian King861890c2009-10-19 15:07:49 -0500580static void ibmvfc_init_host(struct ibmvfc_host *vhost)
Brian King072b91f2008-07-01 13:14:30 -0500581{
582 struct ibmvfc_target *tgt;
583
584 if (vhost->action == IBMVFC_HOST_ACTION_INIT_WAIT) {
Brian King1c41fa822008-12-03 11:02:54 -0600585 if (++vhost->init_retries > IBMVFC_MAX_HOST_INIT_RETRIES) {
Brian King072b91f2008-07-01 13:14:30 -0500586 dev_err(vhost->dev,
587 "Host initialization retries exceeded. Taking adapter offline\n");
588 ibmvfc_link_down(vhost, IBMVFC_HOST_OFFLINE);
589 return;
590 }
591 }
592
593 if (!ibmvfc_set_host_state(vhost, IBMVFC_INITIALIZING)) {
Brian King861890c2009-10-19 15:07:49 -0500594 memset(vhost->async_crq.msgs, 0, PAGE_SIZE);
595 vhost->async_crq.cur = 0;
Brian Kingcf6f10d2008-08-15 10:59:23 -0500596
Brian King072b91f2008-07-01 13:14:30 -0500597 list_for_each_entry(tgt, &vhost->targets, queue)
Brian King5e471672009-05-28 16:17:32 -0500598 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DEL_RPORT);
Brian King072b91f2008-07-01 13:14:30 -0500599 scsi_block_requests(vhost->host);
600 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_INIT);
601 vhost->job_step = ibmvfc_npiv_login;
602 wake_up(&vhost->work_wait_q);
603 }
604}
605
606/**
607 * ibmvfc_send_crq - Send a CRQ
608 * @vhost: ibmvfc host struct
609 * @word1: the first 64 bits of the data
610 * @word2: the second 64 bits of the data
611 *
612 * Return value:
613 * 0 on success / other on failure
614 **/
615static int ibmvfc_send_crq(struct ibmvfc_host *vhost, u64 word1, u64 word2)
616{
617 struct vio_dev *vdev = to_vio_dev(vhost->dev);
618 return plpar_hcall_norets(H_SEND_CRQ, vdev->unit_address, word1, word2);
619}
620
621/**
622 * ibmvfc_send_crq_init - Send a CRQ init message
623 * @vhost: ibmvfc host struct
624 *
625 * Return value:
626 * 0 on success / other on failure
627 **/
628static int ibmvfc_send_crq_init(struct ibmvfc_host *vhost)
629{
630 ibmvfc_dbg(vhost, "Sending CRQ init\n");
631 return ibmvfc_send_crq(vhost, 0xC001000000000000LL, 0);
632}
633
634/**
635 * ibmvfc_send_crq_init_complete - Send a CRQ init complete message
636 * @vhost: ibmvfc host struct
637 *
638 * Return value:
639 * 0 on success / other on failure
640 **/
641static int ibmvfc_send_crq_init_complete(struct ibmvfc_host *vhost)
642{
643 ibmvfc_dbg(vhost, "Sending CRQ init complete\n");
644 return ibmvfc_send_crq(vhost, 0xC002000000000000LL, 0);
645}
646
647/**
648 * ibmvfc_release_crq_queue - Deallocates data and unregisters CRQ
649 * @vhost: ibmvfc host struct
650 *
651 * Frees irq, deallocates a page for messages, unmaps dma, and unregisters
652 * the crq with the hypervisor.
653 **/
654static void ibmvfc_release_crq_queue(struct ibmvfc_host *vhost)
655{
Brian King73ee5d82010-06-17 13:55:13 -0500656 long rc = 0;
Brian King072b91f2008-07-01 13:14:30 -0500657 struct vio_dev *vdev = to_vio_dev(vhost->dev);
658 struct ibmvfc_crq_queue *crq = &vhost->crq;
659
660 ibmvfc_dbg(vhost, "Releasing CRQ\n");
661 free_irq(vdev->irq, vhost);
Brian King039a0892009-03-20 15:44:35 -0500662 tasklet_kill(&vhost->tasklet);
Brian King072b91f2008-07-01 13:14:30 -0500663 do {
Brian King73ee5d82010-06-17 13:55:13 -0500664 if (rc)
665 msleep(100);
Brian King072b91f2008-07-01 13:14:30 -0500666 rc = plpar_hcall_norets(H_FREE_CRQ, vdev->unit_address);
667 } while (rc == H_BUSY || H_IS_LONG_BUSY(rc));
668
669 vhost->state = IBMVFC_NO_CRQ;
Brian King79111d02009-05-28 16:17:29 -0500670 vhost->logged_in = 0;
Brian King072b91f2008-07-01 13:14:30 -0500671 dma_unmap_single(vhost->dev, crq->msg_token, PAGE_SIZE, DMA_BIDIRECTIONAL);
672 free_page((unsigned long)crq->msgs);
673}
674
675/**
676 * ibmvfc_reenable_crq_queue - reenables the CRQ
677 * @vhost: ibmvfc host struct
678 *
679 * Return value:
680 * 0 on success / other on failure
681 **/
682static int ibmvfc_reenable_crq_queue(struct ibmvfc_host *vhost)
683{
Brian King73ee5d82010-06-17 13:55:13 -0500684 int rc = 0;
Brian King072b91f2008-07-01 13:14:30 -0500685 struct vio_dev *vdev = to_vio_dev(vhost->dev);
686
687 /* Re-enable the CRQ */
688 do {
Brian King73ee5d82010-06-17 13:55:13 -0500689 if (rc)
690 msleep(100);
Brian King072b91f2008-07-01 13:14:30 -0500691 rc = plpar_hcall_norets(H_ENABLE_CRQ, vdev->unit_address);
692 } while (rc == H_IN_PROGRESS || rc == H_BUSY || H_IS_LONG_BUSY(rc));
693
694 if (rc)
695 dev_err(vhost->dev, "Error enabling adapter (rc=%d)\n", rc);
696
697 return rc;
698}
699
700/**
701 * ibmvfc_reset_crq - resets a crq after a failure
702 * @vhost: ibmvfc host struct
703 *
704 * Return value:
705 * 0 on success / other on failure
706 **/
707static int ibmvfc_reset_crq(struct ibmvfc_host *vhost)
708{
Brian King73ee5d82010-06-17 13:55:13 -0500709 int rc = 0;
710 unsigned long flags;
Brian King072b91f2008-07-01 13:14:30 -0500711 struct vio_dev *vdev = to_vio_dev(vhost->dev);
712 struct ibmvfc_crq_queue *crq = &vhost->crq;
713
714 /* Close the CRQ */
715 do {
Brian King73ee5d82010-06-17 13:55:13 -0500716 if (rc)
717 msleep(100);
Brian King072b91f2008-07-01 13:14:30 -0500718 rc = plpar_hcall_norets(H_FREE_CRQ, vdev->unit_address);
719 } while (rc == H_BUSY || H_IS_LONG_BUSY(rc));
720
Brian King73ee5d82010-06-17 13:55:13 -0500721 spin_lock_irqsave(vhost->host->host_lock, flags);
Brian King072b91f2008-07-01 13:14:30 -0500722 vhost->state = IBMVFC_NO_CRQ;
Brian King79111d02009-05-28 16:17:29 -0500723 vhost->logged_in = 0;
Brian King072b91f2008-07-01 13:14:30 -0500724 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_NONE);
725
726 /* Clean out the queue */
727 memset(crq->msgs, 0, PAGE_SIZE);
728 crq->cur = 0;
729
730 /* And re-open it again */
731 rc = plpar_hcall_norets(H_REG_CRQ, vdev->unit_address,
732 crq->msg_token, PAGE_SIZE);
733
734 if (rc == H_CLOSED)
735 /* Adapter is good, but other end is not ready */
736 dev_warn(vhost->dev, "Partner adapter not ready\n");
737 else if (rc != 0)
738 dev_warn(vhost->dev, "Couldn't register crq (rc=%d)\n", rc);
Brian King73ee5d82010-06-17 13:55:13 -0500739 spin_unlock_irqrestore(vhost->host->host_lock, flags);
Brian King072b91f2008-07-01 13:14:30 -0500740
741 return rc;
742}
743
744/**
745 * ibmvfc_valid_event - Determines if event is valid.
746 * @pool: event_pool that contains the event
747 * @evt: ibmvfc event to be checked for validity
748 *
749 * Return value:
750 * 1 if event is valid / 0 if event is not valid
751 **/
752static int ibmvfc_valid_event(struct ibmvfc_event_pool *pool,
753 struct ibmvfc_event *evt)
754{
755 int index = evt - pool->events;
756 if (index < 0 || index >= pool->size) /* outside of bounds */
757 return 0;
758 if (evt != pool->events + index) /* unaligned */
759 return 0;
760 return 1;
761}
762
763/**
764 * ibmvfc_free_event - Free the specified event
765 * @evt: ibmvfc_event to be freed
766 *
767 **/
768static void ibmvfc_free_event(struct ibmvfc_event *evt)
769{
770 struct ibmvfc_host *vhost = evt->vhost;
771 struct ibmvfc_event_pool *pool = &vhost->pool;
772
773 BUG_ON(!ibmvfc_valid_event(pool, evt));
774 BUG_ON(atomic_inc_return(&evt->free) != 1);
775 list_add_tail(&evt->queue, &vhost->free);
776}
777
778/**
779 * ibmvfc_scsi_eh_done - EH done function for queuecommand commands
780 * @evt: ibmvfc event struct
781 *
782 * This function does not setup any error status, that must be done
783 * before this function gets called.
784 **/
785static void ibmvfc_scsi_eh_done(struct ibmvfc_event *evt)
786{
787 struct scsi_cmnd *cmnd = evt->cmnd;
788
789 if (cmnd) {
790 scsi_dma_unmap(cmnd);
791 cmnd->scsi_done(cmnd);
792 }
793
Brian Kingad8dcff2008-10-29 08:46:41 -0500794 if (evt->eh_comp)
795 complete(evt->eh_comp);
796
Brian King072b91f2008-07-01 13:14:30 -0500797 ibmvfc_free_event(evt);
798}
799
800/**
801 * ibmvfc_fail_request - Fail request with specified error code
802 * @evt: ibmvfc event struct
803 * @error_code: error code to fail request with
804 *
805 * Return value:
806 * none
807 **/
808static void ibmvfc_fail_request(struct ibmvfc_event *evt, int error_code)
809{
810 if (evt->cmnd) {
811 evt->cmnd->result = (error_code << 16);
812 evt->done = ibmvfc_scsi_eh_done;
813 } else
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -0500814 evt->xfer_iu->mad_common.status = cpu_to_be16(IBMVFC_MAD_DRIVER_FAILED);
Brian King072b91f2008-07-01 13:14:30 -0500815
816 list_del(&evt->queue);
817 del_timer(&evt->timer);
818 ibmvfc_trc_end(evt);
819 evt->done(evt);
820}
821
822/**
823 * ibmvfc_purge_requests - Our virtual adapter just shut down. Purge any sent requests
824 * @vhost: ibmvfc host struct
825 * @error_code: error code to fail requests with
826 *
827 * Return value:
828 * none
829 **/
830static void ibmvfc_purge_requests(struct ibmvfc_host *vhost, int error_code)
831{
832 struct ibmvfc_event *evt, *pos;
833
834 ibmvfc_dbg(vhost, "Purging all requests\n");
835 list_for_each_entry_safe(evt, pos, &vhost->sent, queue)
836 ibmvfc_fail_request(evt, error_code);
837}
838
839/**
Brian King79111d02009-05-28 16:17:29 -0500840 * ibmvfc_hard_reset_host - Reset the connection to the server by breaking the CRQ
Brian King072b91f2008-07-01 13:14:30 -0500841 * @vhost: struct ibmvfc host to reset
842 **/
Brian King79111d02009-05-28 16:17:29 -0500843static void ibmvfc_hard_reset_host(struct ibmvfc_host *vhost)
Brian King072b91f2008-07-01 13:14:30 -0500844{
Brian King072b91f2008-07-01 13:14:30 -0500845 ibmvfc_purge_requests(vhost, DID_ERROR);
Brian King73ee5d82010-06-17 13:55:13 -0500846 ibmvfc_link_down(vhost, IBMVFC_LINK_DOWN);
847 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_RESET);
Brian King072b91f2008-07-01 13:14:30 -0500848}
849
850/**
Brian King79111d02009-05-28 16:17:29 -0500851 * __ibmvfc_reset_host - Reset the connection to the server (no locking)
Brian King072b91f2008-07-01 13:14:30 -0500852 * @vhost: struct ibmvfc host to reset
853 **/
Brian King79111d02009-05-28 16:17:29 -0500854static void __ibmvfc_reset_host(struct ibmvfc_host *vhost)
855{
856 if (vhost->logged_in && vhost->action != IBMVFC_HOST_ACTION_LOGO_WAIT &&
857 !ibmvfc_set_host_state(vhost, IBMVFC_INITIALIZING)) {
858 scsi_block_requests(vhost->host);
859 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_LOGO);
860 vhost->job_step = ibmvfc_npiv_logout;
861 wake_up(&vhost->work_wait_q);
862 } else
863 ibmvfc_hard_reset_host(vhost);
864}
865
866/**
867 * ibmvfc_reset_host - Reset the connection to the server
868 * @vhost: ibmvfc host struct
869 **/
Brian King072b91f2008-07-01 13:14:30 -0500870static void ibmvfc_reset_host(struct ibmvfc_host *vhost)
871{
872 unsigned long flags;
873
874 spin_lock_irqsave(vhost->host->host_lock, flags);
875 __ibmvfc_reset_host(vhost);
876 spin_unlock_irqrestore(vhost->host->host_lock, flags);
877}
878
879/**
880 * ibmvfc_retry_host_init - Retry host initialization if allowed
881 * @vhost: ibmvfc host struct
882 *
Brian King7d0e4622009-05-28 16:17:26 -0500883 * Returns: 1 if init will be retried / 0 if not
884 *
Brian King072b91f2008-07-01 13:14:30 -0500885 **/
Brian King7d0e4622009-05-28 16:17:26 -0500886static int ibmvfc_retry_host_init(struct ibmvfc_host *vhost)
Brian King072b91f2008-07-01 13:14:30 -0500887{
Brian King7d0e4622009-05-28 16:17:26 -0500888 int retry = 0;
889
Brian King072b91f2008-07-01 13:14:30 -0500890 if (vhost->action == IBMVFC_HOST_ACTION_INIT_WAIT) {
Brian King1c41fa822008-12-03 11:02:54 -0600891 vhost->delay_init = 1;
892 if (++vhost->init_retries > IBMVFC_MAX_HOST_INIT_RETRIES) {
Brian King072b91f2008-07-01 13:14:30 -0500893 dev_err(vhost->dev,
894 "Host initialization retries exceeded. Taking adapter offline\n");
895 ibmvfc_link_down(vhost, IBMVFC_HOST_OFFLINE);
Brian King1c41fa822008-12-03 11:02:54 -0600896 } else if (vhost->init_retries == IBMVFC_MAX_HOST_INIT_RETRIES)
Brian King072b91f2008-07-01 13:14:30 -0500897 __ibmvfc_reset_host(vhost);
Brian King7d0e4622009-05-28 16:17:26 -0500898 else {
Brian King072b91f2008-07-01 13:14:30 -0500899 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_INIT);
Brian King7d0e4622009-05-28 16:17:26 -0500900 retry = 1;
901 }
Brian King072b91f2008-07-01 13:14:30 -0500902 }
903
904 wake_up(&vhost->work_wait_q);
Brian King7d0e4622009-05-28 16:17:26 -0500905 return retry;
Brian King072b91f2008-07-01 13:14:30 -0500906}
907
908/**
Brian Kingb3c10489c2008-07-22 08:31:41 -0500909 * __ibmvfc_get_target - Find the specified scsi_target (no locking)
Brian King072b91f2008-07-01 13:14:30 -0500910 * @starget: scsi target struct
911 *
912 * Return value:
913 * ibmvfc_target struct / NULL if not found
914 **/
Brian Kingb3c10489c2008-07-22 08:31:41 -0500915static struct ibmvfc_target *__ibmvfc_get_target(struct scsi_target *starget)
Brian King072b91f2008-07-01 13:14:30 -0500916{
917 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
918 struct ibmvfc_host *vhost = shost_priv(shost);
919 struct ibmvfc_target *tgt;
920
921 list_for_each_entry(tgt, &vhost->targets, queue)
Brian Kingb3c10489c2008-07-22 08:31:41 -0500922 if (tgt->target_id == starget->id) {
923 kref_get(&tgt->kref);
Brian King072b91f2008-07-01 13:14:30 -0500924 return tgt;
Brian Kingb3c10489c2008-07-22 08:31:41 -0500925 }
Brian King072b91f2008-07-01 13:14:30 -0500926 return NULL;
927}
928
929/**
Brian Kingb3c10489c2008-07-22 08:31:41 -0500930 * ibmvfc_get_target - Find the specified scsi_target
Brian King072b91f2008-07-01 13:14:30 -0500931 * @starget: scsi target struct
932 *
933 * Return value:
934 * ibmvfc_target struct / NULL if not found
935 **/
Brian Kingb3c10489c2008-07-22 08:31:41 -0500936static struct ibmvfc_target *ibmvfc_get_target(struct scsi_target *starget)
Brian King072b91f2008-07-01 13:14:30 -0500937{
938 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
939 struct ibmvfc_target *tgt;
940 unsigned long flags;
941
942 spin_lock_irqsave(shost->host_lock, flags);
Brian Kingb3c10489c2008-07-22 08:31:41 -0500943 tgt = __ibmvfc_get_target(starget);
Brian King072b91f2008-07-01 13:14:30 -0500944 spin_unlock_irqrestore(shost->host_lock, flags);
945 return tgt;
946}
947
948/**
949 * ibmvfc_get_host_speed - Get host port speed
950 * @shost: scsi host struct
951 *
952 * Return value:
953 * none
954 **/
955static void ibmvfc_get_host_speed(struct Scsi_Host *shost)
956{
957 struct ibmvfc_host *vhost = shost_priv(shost);
958 unsigned long flags;
959
960 spin_lock_irqsave(shost->host_lock, flags);
961 if (vhost->state == IBMVFC_ACTIVE) {
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -0500962 switch (be64_to_cpu(vhost->login_buf->resp.link_speed) / 100) {
Brian King072b91f2008-07-01 13:14:30 -0500963 case 1:
964 fc_host_speed(shost) = FC_PORTSPEED_1GBIT;
965 break;
966 case 2:
967 fc_host_speed(shost) = FC_PORTSPEED_2GBIT;
968 break;
969 case 4:
970 fc_host_speed(shost) = FC_PORTSPEED_4GBIT;
971 break;
972 case 8:
973 fc_host_speed(shost) = FC_PORTSPEED_8GBIT;
974 break;
975 case 10:
976 fc_host_speed(shost) = FC_PORTSPEED_10GBIT;
977 break;
978 case 16:
979 fc_host_speed(shost) = FC_PORTSPEED_16GBIT;
980 break;
981 default:
Stephen Rothwell775a42e2009-01-06 14:59:00 +0000982 ibmvfc_log(vhost, 3, "Unknown port speed: %lld Gbit\n",
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -0500983 be64_to_cpu(vhost->login_buf->resp.link_speed) / 100);
Brian King072b91f2008-07-01 13:14:30 -0500984 fc_host_speed(shost) = FC_PORTSPEED_UNKNOWN;
985 break;
986 }
987 } else
988 fc_host_speed(shost) = FC_PORTSPEED_UNKNOWN;
989 spin_unlock_irqrestore(shost->host_lock, flags);
990}
991
992/**
993 * ibmvfc_get_host_port_state - Get host port state
994 * @shost: scsi host struct
995 *
996 * Return value:
997 * none
998 **/
999static void ibmvfc_get_host_port_state(struct Scsi_Host *shost)
1000{
1001 struct ibmvfc_host *vhost = shost_priv(shost);
1002 unsigned long flags;
1003
1004 spin_lock_irqsave(shost->host_lock, flags);
1005 switch (vhost->state) {
1006 case IBMVFC_INITIALIZING:
1007 case IBMVFC_ACTIVE:
1008 fc_host_port_state(shost) = FC_PORTSTATE_ONLINE;
1009 break;
1010 case IBMVFC_LINK_DOWN:
1011 fc_host_port_state(shost) = FC_PORTSTATE_LINKDOWN;
1012 break;
1013 case IBMVFC_LINK_DEAD:
1014 case IBMVFC_HOST_OFFLINE:
1015 fc_host_port_state(shost) = FC_PORTSTATE_OFFLINE;
1016 break;
1017 case IBMVFC_HALTED:
1018 fc_host_port_state(shost) = FC_PORTSTATE_BLOCKED;
1019 break;
Brian King0ae808e2008-07-22 08:31:39 -05001020 case IBMVFC_NO_CRQ:
1021 fc_host_port_state(shost) = FC_PORTSTATE_UNKNOWN;
1022 break;
Brian King072b91f2008-07-01 13:14:30 -05001023 default:
1024 ibmvfc_log(vhost, 3, "Unknown port state: %d\n", vhost->state);
1025 fc_host_port_state(shost) = FC_PORTSTATE_UNKNOWN;
1026 break;
1027 }
1028 spin_unlock_irqrestore(shost->host_lock, flags);
1029}
1030
1031/**
1032 * ibmvfc_set_rport_dev_loss_tmo - Set rport's device loss timeout
1033 * @rport: rport struct
1034 * @timeout: timeout value
1035 *
1036 * Return value:
1037 * none
1038 **/
1039static void ibmvfc_set_rport_dev_loss_tmo(struct fc_rport *rport, u32 timeout)
1040{
1041 if (timeout)
1042 rport->dev_loss_tmo = timeout;
1043 else
1044 rport->dev_loss_tmo = 1;
1045}
1046
1047/**
Brian Kingb3c10489c2008-07-22 08:31:41 -05001048 * ibmvfc_release_tgt - Free memory allocated for a target
1049 * @kref: kref struct
1050 *
1051 **/
1052static void ibmvfc_release_tgt(struct kref *kref)
1053{
1054 struct ibmvfc_target *tgt = container_of(kref, struct ibmvfc_target, kref);
1055 kfree(tgt);
1056}
1057
1058/**
Brian King072b91f2008-07-01 13:14:30 -05001059 * ibmvfc_get_starget_node_name - Get SCSI target's node name
1060 * @starget: scsi target struct
1061 *
1062 * Return value:
1063 * none
1064 **/
1065static void ibmvfc_get_starget_node_name(struct scsi_target *starget)
1066{
Brian Kingb3c10489c2008-07-22 08:31:41 -05001067 struct ibmvfc_target *tgt = ibmvfc_get_target(starget);
Brian King072b91f2008-07-01 13:14:30 -05001068 fc_starget_port_name(starget) = tgt ? tgt->ids.node_name : 0;
Brian Kingb3c10489c2008-07-22 08:31:41 -05001069 if (tgt)
1070 kref_put(&tgt->kref, ibmvfc_release_tgt);
Brian King072b91f2008-07-01 13:14:30 -05001071}
1072
1073/**
1074 * ibmvfc_get_starget_port_name - Get SCSI target's port name
1075 * @starget: scsi target struct
1076 *
1077 * Return value:
1078 * none
1079 **/
1080static void ibmvfc_get_starget_port_name(struct scsi_target *starget)
1081{
Brian Kingb3c10489c2008-07-22 08:31:41 -05001082 struct ibmvfc_target *tgt = ibmvfc_get_target(starget);
Brian King072b91f2008-07-01 13:14:30 -05001083 fc_starget_port_name(starget) = tgt ? tgt->ids.port_name : 0;
Brian Kingb3c10489c2008-07-22 08:31:41 -05001084 if (tgt)
1085 kref_put(&tgt->kref, ibmvfc_release_tgt);
Brian King072b91f2008-07-01 13:14:30 -05001086}
1087
1088/**
1089 * ibmvfc_get_starget_port_id - Get SCSI target's port ID
1090 * @starget: scsi target struct
1091 *
1092 * Return value:
1093 * none
1094 **/
1095static void ibmvfc_get_starget_port_id(struct scsi_target *starget)
1096{
Brian Kingb3c10489c2008-07-22 08:31:41 -05001097 struct ibmvfc_target *tgt = ibmvfc_get_target(starget);
Brian King072b91f2008-07-01 13:14:30 -05001098 fc_starget_port_id(starget) = tgt ? tgt->scsi_id : -1;
Brian Kingb3c10489c2008-07-22 08:31:41 -05001099 if (tgt)
1100 kref_put(&tgt->kref, ibmvfc_release_tgt);
Brian King072b91f2008-07-01 13:14:30 -05001101}
1102
1103/**
1104 * ibmvfc_wait_while_resetting - Wait while the host resets
1105 * @vhost: ibmvfc host struct
1106 *
1107 * Return value:
1108 * 0 on success / other on failure
1109 **/
1110static int ibmvfc_wait_while_resetting(struct ibmvfc_host *vhost)
1111{
1112 long timeout = wait_event_timeout(vhost->init_wait_q,
Brian King3eddc562008-08-15 10:59:21 -05001113 ((vhost->state == IBMVFC_ACTIVE ||
1114 vhost->state == IBMVFC_HOST_OFFLINE ||
1115 vhost->state == IBMVFC_LINK_DEAD) &&
1116 vhost->action == IBMVFC_HOST_ACTION_NONE),
Brian King072b91f2008-07-01 13:14:30 -05001117 (init_timeout * HZ));
1118
1119 return timeout ? 0 : -EIO;
1120}
1121
1122/**
1123 * ibmvfc_issue_fc_host_lip - Re-initiate link initialization
1124 * @shost: scsi host struct
1125 *
1126 * Return value:
1127 * 0 on success / other on failure
1128 **/
1129static int ibmvfc_issue_fc_host_lip(struct Scsi_Host *shost)
1130{
1131 struct ibmvfc_host *vhost = shost_priv(shost);
1132
1133 dev_err(vhost->dev, "Initiating host LIP. Resetting connection\n");
1134 ibmvfc_reset_host(vhost);
1135 return ibmvfc_wait_while_resetting(vhost);
1136}
1137
1138/**
1139 * ibmvfc_gather_partition_info - Gather info about the LPAR
1140 *
1141 * Return value:
1142 * none
1143 **/
1144static void ibmvfc_gather_partition_info(struct ibmvfc_host *vhost)
1145{
1146 struct device_node *rootdn;
1147 const char *name;
1148 const unsigned int *num;
1149
1150 rootdn = of_find_node_by_path("/");
1151 if (!rootdn)
1152 return;
1153
1154 name = of_get_property(rootdn, "ibm,partition-name", NULL);
1155 if (name)
1156 strncpy(vhost->partition_name, name, sizeof(vhost->partition_name));
1157 num = of_get_property(rootdn, "ibm,partition-no", NULL);
1158 if (num)
1159 vhost->partition_number = *num;
1160 of_node_put(rootdn);
1161}
1162
1163/**
1164 * ibmvfc_set_login_info - Setup info for NPIV login
1165 * @vhost: ibmvfc host struct
1166 *
1167 * Return value:
1168 * none
1169 **/
1170static void ibmvfc_set_login_info(struct ibmvfc_host *vhost)
1171{
1172 struct ibmvfc_npiv_login *login_info = &vhost->login_info;
Grant Likely61c7a082010-04-13 16:12:29 -07001173 struct device_node *of_node = vhost->dev->of_node;
Brian King072b91f2008-07-01 13:14:30 -05001174 const char *location;
1175
1176 memset(login_info, 0, sizeof(*login_info));
1177
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001178 login_info->ostype = cpu_to_be32(IBMVFC_OS_LINUX);
1179 login_info->max_dma_len = cpu_to_be64(IBMVFC_MAX_SECTORS << 9);
1180 login_info->max_payload = cpu_to_be32(sizeof(struct ibmvfc_fcp_cmd_iu));
1181 login_info->max_response = cpu_to_be32(sizeof(struct ibmvfc_fcp_rsp));
1182 login_info->partition_num = cpu_to_be32(vhost->partition_number);
1183 login_info->vfc_frame_version = cpu_to_be32(1);
1184 login_info->fcp_version = cpu_to_be16(3);
1185 login_info->flags = cpu_to_be16(IBMVFC_FLUSH_ON_HALT);
Brian King072b91f2008-07-01 13:14:30 -05001186 if (vhost->client_migrated)
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001187 login_info->flags |= cpu_to_be16(IBMVFC_CLIENT_MIGRATED);
Brian King072b91f2008-07-01 13:14:30 -05001188
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001189 login_info->max_cmds = cpu_to_be32(max_requests + IBMVFC_NUM_INTERNAL_REQ);
1190 login_info->capabilities = cpu_to_be64(IBMVFC_CAN_MIGRATE);
1191 login_info->async.va = cpu_to_be64(vhost->async_crq.msg_token);
1192 login_info->async.len = cpu_to_be32(vhost->async_crq.size * sizeof(*vhost->async_crq.msgs));
Brian King072b91f2008-07-01 13:14:30 -05001193 strncpy(login_info->partition_name, vhost->partition_name, IBMVFC_MAX_NAME);
1194 strncpy(login_info->device_name,
Kay Sievers71610f52008-12-03 22:41:36 +01001195 dev_name(&vhost->host->shost_gendev), IBMVFC_MAX_NAME);
Brian King072b91f2008-07-01 13:14:30 -05001196
1197 location = of_get_property(of_node, "ibm,loc-code", NULL);
Kay Sievers71610f52008-12-03 22:41:36 +01001198 location = location ? location : dev_name(vhost->dev);
Brian King072b91f2008-07-01 13:14:30 -05001199 strncpy(login_info->drc_name, location, IBMVFC_MAX_NAME);
1200}
1201
1202/**
1203 * ibmvfc_init_event_pool - Allocates and initializes the event pool for a host
1204 * @vhost: ibmvfc host who owns the event pool
1205 *
1206 * Returns zero on success.
1207 **/
1208static int ibmvfc_init_event_pool(struct ibmvfc_host *vhost)
1209{
1210 int i;
1211 struct ibmvfc_event_pool *pool = &vhost->pool;
1212
1213 ENTER;
1214 pool->size = max_requests + IBMVFC_NUM_INTERNAL_REQ;
1215 pool->events = kcalloc(pool->size, sizeof(*pool->events), GFP_KERNEL);
1216 if (!pool->events)
1217 return -ENOMEM;
1218
1219 pool->iu_storage = dma_alloc_coherent(vhost->dev,
1220 pool->size * sizeof(*pool->iu_storage),
1221 &pool->iu_token, 0);
1222
1223 if (!pool->iu_storage) {
1224 kfree(pool->events);
1225 return -ENOMEM;
1226 }
1227
1228 for (i = 0; i < pool->size; ++i) {
1229 struct ibmvfc_event *evt = &pool->events[i];
1230 atomic_set(&evt->free, 1);
1231 evt->crq.valid = 0x80;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001232 evt->crq.ioba = cpu_to_be64(pool->iu_token + (sizeof(*evt->xfer_iu) * i));
Brian King072b91f2008-07-01 13:14:30 -05001233 evt->xfer_iu = pool->iu_storage + i;
1234 evt->vhost = vhost;
1235 evt->ext_list = NULL;
1236 list_add_tail(&evt->queue, &vhost->free);
1237 }
1238
1239 LEAVE;
1240 return 0;
1241}
1242
1243/**
1244 * ibmvfc_free_event_pool - Frees memory of the event pool of a host
1245 * @vhost: ibmvfc host who owns the event pool
1246 *
1247 **/
1248static void ibmvfc_free_event_pool(struct ibmvfc_host *vhost)
1249{
1250 int i;
1251 struct ibmvfc_event_pool *pool = &vhost->pool;
1252
1253 ENTER;
1254 for (i = 0; i < pool->size; ++i) {
1255 list_del(&pool->events[i].queue);
1256 BUG_ON(atomic_read(&pool->events[i].free) != 1);
1257 if (pool->events[i].ext_list)
1258 dma_pool_free(vhost->sg_pool,
1259 pool->events[i].ext_list,
1260 pool->events[i].ext_list_token);
1261 }
1262
1263 kfree(pool->events);
1264 dma_free_coherent(vhost->dev,
1265 pool->size * sizeof(*pool->iu_storage),
1266 pool->iu_storage, pool->iu_token);
1267 LEAVE;
1268}
1269
1270/**
1271 * ibmvfc_get_event - Gets the next free event in pool
1272 * @vhost: ibmvfc host struct
1273 *
1274 * Returns a free event from the pool.
1275 **/
1276static struct ibmvfc_event *ibmvfc_get_event(struct ibmvfc_host *vhost)
1277{
1278 struct ibmvfc_event *evt;
1279
1280 BUG_ON(list_empty(&vhost->free));
1281 evt = list_entry(vhost->free.next, struct ibmvfc_event, queue);
1282 atomic_set(&evt->free, 0);
1283 list_del(&evt->queue);
1284 return evt;
1285}
1286
1287/**
1288 * ibmvfc_init_event - Initialize fields in an event struct that are always
1289 * required.
1290 * @evt: The event
1291 * @done: Routine to call when the event is responded to
1292 * @format: SRP or MAD format
1293 **/
1294static void ibmvfc_init_event(struct ibmvfc_event *evt,
1295 void (*done) (struct ibmvfc_event *), u8 format)
1296{
1297 evt->cmnd = NULL;
1298 evt->sync_iu = NULL;
1299 evt->crq.format = format;
1300 evt->done = done;
Brian Kingad8dcff2008-10-29 08:46:41 -05001301 evt->eh_comp = NULL;
Brian King072b91f2008-07-01 13:14:30 -05001302}
1303
1304/**
1305 * ibmvfc_map_sg_list - Initialize scatterlist
1306 * @scmd: scsi command struct
1307 * @nseg: number of scatterlist segments
1308 * @md: memory descriptor list to initialize
1309 **/
1310static void ibmvfc_map_sg_list(struct scsi_cmnd *scmd, int nseg,
1311 struct srp_direct_buf *md)
1312{
1313 int i;
1314 struct scatterlist *sg;
1315
1316 scsi_for_each_sg(scmd, sg, nseg, i) {
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001317 md[i].va = cpu_to_be64(sg_dma_address(sg));
1318 md[i].len = cpu_to_be32(sg_dma_len(sg));
Brian King072b91f2008-07-01 13:14:30 -05001319 md[i].key = 0;
1320 }
1321}
1322
1323/**
1324 * ibmvfc_map_sg_data - Maps dma for a scatterlist and initializes decriptor fields
1325 * @scmd: Scsi_Cmnd with the scatterlist
1326 * @evt: ibmvfc event struct
1327 * @vfc_cmd: vfc_cmd that contains the memory descriptor
1328 * @dev: device for which to map dma memory
1329 *
1330 * Returns:
1331 * 0 on success / non-zero on failure
1332 **/
1333static int ibmvfc_map_sg_data(struct scsi_cmnd *scmd,
1334 struct ibmvfc_event *evt,
1335 struct ibmvfc_cmd *vfc_cmd, struct device *dev)
1336{
1337
1338 int sg_mapped;
1339 struct srp_direct_buf *data = &vfc_cmd->ioba;
1340 struct ibmvfc_host *vhost = dev_get_drvdata(dev);
1341
Tyrel Datwylera6104b12016-08-03 16:36:53 -05001342 if (cls3_error)
1343 vfc_cmd->flags |= cpu_to_be16(IBMVFC_CLASS_3_ERR);
1344
Brian King072b91f2008-07-01 13:14:30 -05001345 sg_mapped = scsi_dma_map(scmd);
1346 if (!sg_mapped) {
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001347 vfc_cmd->flags |= cpu_to_be16(IBMVFC_NO_MEM_DESC);
Brian King072b91f2008-07-01 13:14:30 -05001348 return 0;
1349 } else if (unlikely(sg_mapped < 0)) {
1350 if (vhost->log_level > IBMVFC_DEFAULT_LOG_LEVEL)
1351 scmd_printk(KERN_ERR, scmd, "Failed to map DMA buffer for command\n");
1352 return sg_mapped;
1353 }
1354
1355 if (scmd->sc_data_direction == DMA_TO_DEVICE) {
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001356 vfc_cmd->flags |= cpu_to_be16(IBMVFC_WRITE);
Brian King072b91f2008-07-01 13:14:30 -05001357 vfc_cmd->iu.add_cdb_len |= IBMVFC_WRDATA;
1358 } else {
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001359 vfc_cmd->flags |= cpu_to_be16(IBMVFC_READ);
Brian King072b91f2008-07-01 13:14:30 -05001360 vfc_cmd->iu.add_cdb_len |= IBMVFC_RDDATA;
1361 }
1362
1363 if (sg_mapped == 1) {
1364 ibmvfc_map_sg_list(scmd, sg_mapped, data);
1365 return 0;
1366 }
1367
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001368 vfc_cmd->flags |= cpu_to_be16(IBMVFC_SCATTERLIST);
Brian King072b91f2008-07-01 13:14:30 -05001369
1370 if (!evt->ext_list) {
1371 evt->ext_list = dma_pool_alloc(vhost->sg_pool, GFP_ATOMIC,
1372 &evt->ext_list_token);
1373
1374 if (!evt->ext_list) {
Brian King64b840d2009-01-22 15:45:38 -06001375 scsi_dma_unmap(scmd);
1376 if (vhost->log_level > IBMVFC_DEFAULT_LOG_LEVEL)
1377 scmd_printk(KERN_ERR, scmd, "Can't allocate memory for scatterlist\n");
Brian King072b91f2008-07-01 13:14:30 -05001378 return -ENOMEM;
1379 }
1380 }
1381
1382 ibmvfc_map_sg_list(scmd, sg_mapped, evt->ext_list);
1383
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001384 data->va = cpu_to_be64(evt->ext_list_token);
1385 data->len = cpu_to_be32(sg_mapped * sizeof(struct srp_direct_buf));
Brian King072b91f2008-07-01 13:14:30 -05001386 data->key = 0;
1387 return 0;
1388}
1389
1390/**
1391 * ibmvfc_timeout - Internal command timeout handler
1392 * @evt: struct ibmvfc_event that timed out
1393 *
1394 * Called when an internally generated command times out
1395 **/
1396static void ibmvfc_timeout(struct ibmvfc_event *evt)
1397{
1398 struct ibmvfc_host *vhost = evt->vhost;
1399 dev_err(vhost->dev, "Command timed out (%p). Resetting connection\n", evt);
1400 ibmvfc_reset_host(vhost);
1401}
1402
1403/**
1404 * ibmvfc_send_event - Transforms event to u64 array and calls send_crq()
1405 * @evt: event to be sent
1406 * @vhost: ibmvfc host struct
1407 * @timeout: timeout in seconds - 0 means do not time command
1408 *
1409 * Returns the value returned from ibmvfc_send_crq(). (Zero for success)
1410 **/
1411static int ibmvfc_send_event(struct ibmvfc_event *evt,
1412 struct ibmvfc_host *vhost, unsigned long timeout)
1413{
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001414 __be64 *crq_as_u64 = (__be64 *) &evt->crq;
Brian King072b91f2008-07-01 13:14:30 -05001415 int rc;
1416
1417 /* Copy the IU into the transfer area */
1418 *evt->xfer_iu = evt->iu;
1419 if (evt->crq.format == IBMVFC_CMD_FORMAT)
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001420 evt->xfer_iu->cmd.tag = cpu_to_be64((u64)evt);
Brian King072b91f2008-07-01 13:14:30 -05001421 else if (evt->crq.format == IBMVFC_MAD_FORMAT)
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001422 evt->xfer_iu->mad_common.tag = cpu_to_be64((u64)evt);
Brian King072b91f2008-07-01 13:14:30 -05001423 else
1424 BUG();
1425
1426 list_add_tail(&evt->queue, &vhost->sent);
1427 init_timer(&evt->timer);
1428
1429 if (timeout) {
1430 evt->timer.data = (unsigned long) evt;
1431 evt->timer.expires = jiffies + (timeout * HZ);
1432 evt->timer.function = (void (*)(unsigned long))ibmvfc_timeout;
1433 add_timer(&evt->timer);
1434 }
1435
Brian Kinga528ab72008-12-03 11:02:56 -06001436 mb();
1437
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001438 if ((rc = ibmvfc_send_crq(vhost, be64_to_cpu(crq_as_u64[0]),
1439 be64_to_cpu(crq_as_u64[1])))) {
Brian King072b91f2008-07-01 13:14:30 -05001440 list_del(&evt->queue);
1441 del_timer(&evt->timer);
1442
1443 /* If send_crq returns H_CLOSED, return SCSI_MLQUEUE_HOST_BUSY.
1444 * Firmware will send a CRQ with a transport event (0xFF) to
1445 * tell this client what has happened to the transport. This
1446 * will be handled in ibmvfc_handle_crq()
1447 */
1448 if (rc == H_CLOSED) {
1449 if (printk_ratelimit())
1450 dev_warn(vhost->dev, "Send warning. Receive queue closed, will retry.\n");
1451 if (evt->cmnd)
1452 scsi_dma_unmap(evt->cmnd);
1453 ibmvfc_free_event(evt);
1454 return SCSI_MLQUEUE_HOST_BUSY;
1455 }
1456
1457 dev_err(vhost->dev, "Send error (rc=%d)\n", rc);
1458 if (evt->cmnd) {
1459 evt->cmnd->result = DID_ERROR << 16;
1460 evt->done = ibmvfc_scsi_eh_done;
1461 } else
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001462 evt->xfer_iu->mad_common.status = cpu_to_be16(IBMVFC_MAD_CRQ_ERROR);
Brian King072b91f2008-07-01 13:14:30 -05001463
1464 evt->done(evt);
1465 } else
1466 ibmvfc_trc_start(evt);
1467
1468 return 0;
1469}
1470
1471/**
1472 * ibmvfc_log_error - Log an error for the failed command if appropriate
1473 * @evt: ibmvfc event to log
1474 *
1475 **/
1476static void ibmvfc_log_error(struct ibmvfc_event *evt)
1477{
1478 struct ibmvfc_cmd *vfc_cmd = &evt->xfer_iu->cmd;
1479 struct ibmvfc_host *vhost = evt->vhost;
1480 struct ibmvfc_fcp_rsp *rsp = &vfc_cmd->rsp;
1481 struct scsi_cmnd *cmnd = evt->cmnd;
1482 const char *err = unknown_error;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001483 int index = ibmvfc_get_err_index(be16_to_cpu(vfc_cmd->status), be16_to_cpu(vfc_cmd->error));
Brian King072b91f2008-07-01 13:14:30 -05001484 int logerr = 0;
1485 int rsp_code = 0;
1486
1487 if (index >= 0) {
1488 logerr = cmd_status[index].log;
1489 err = cmd_status[index].name;
1490 }
1491
Brian King0ae808e2008-07-22 08:31:39 -05001492 if (!logerr && (vhost->log_level <= (IBMVFC_DEFAULT_LOG_LEVEL + 1)))
Brian King072b91f2008-07-01 13:14:30 -05001493 return;
1494
1495 if (rsp->flags & FCP_RSP_LEN_VALID)
1496 rsp_code = rsp->data.info.rsp_code;
1497
1498 scmd_printk(KERN_ERR, cmnd, "Command (%02X) failed: %s (%x:%x) "
1499 "flags: %x fcp_rsp: %x, resid=%d, scsi_status: %x\n",
1500 cmnd->cmnd[0], err, vfc_cmd->status, vfc_cmd->error,
1501 rsp->flags, rsp_code, scsi_get_resid(cmnd), rsp->scsi_status);
1502}
1503
1504/**
Brian King6d29cc52009-05-28 16:17:33 -05001505 * ibmvfc_relogin - Log back into the specified device
1506 * @sdev: scsi device struct
1507 *
1508 **/
1509static void ibmvfc_relogin(struct scsi_device *sdev)
1510{
1511 struct ibmvfc_host *vhost = shost_priv(sdev->host);
1512 struct fc_rport *rport = starget_to_rport(scsi_target(sdev));
1513 struct ibmvfc_target *tgt;
1514
1515 list_for_each_entry(tgt, &vhost->targets, queue) {
1516 if (rport == tgt->rport) {
1517 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DEL_RPORT);
1518 break;
1519 }
1520 }
1521
1522 ibmvfc_reinit_host(vhost);
1523}
1524
1525/**
Brian King072b91f2008-07-01 13:14:30 -05001526 * ibmvfc_scsi_done - Handle responses from commands
1527 * @evt: ibmvfc event to be handled
1528 *
1529 * Used as a callback when sending scsi cmds.
1530 **/
1531static void ibmvfc_scsi_done(struct ibmvfc_event *evt)
1532{
1533 struct ibmvfc_cmd *vfc_cmd = &evt->xfer_iu->cmd;
1534 struct ibmvfc_fcp_rsp *rsp = &vfc_cmd->rsp;
1535 struct scsi_cmnd *cmnd = evt->cmnd;
Brian King2bac4062008-08-15 10:59:26 -05001536 u32 rsp_len = 0;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001537 u32 sense_len = be32_to_cpu(rsp->fcp_sense_len);
Brian King072b91f2008-07-01 13:14:30 -05001538
1539 if (cmnd) {
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001540 if (be16_to_cpu(vfc_cmd->response_flags) & IBMVFC_ADAPTER_RESID_VALID)
1541 scsi_set_resid(cmnd, be32_to_cpu(vfc_cmd->adapter_resid));
Brian King072b91f2008-07-01 13:14:30 -05001542 else if (rsp->flags & FCP_RESID_UNDER)
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001543 scsi_set_resid(cmnd, be32_to_cpu(rsp->fcp_resid));
Brian King072b91f2008-07-01 13:14:30 -05001544 else
1545 scsi_set_resid(cmnd, 0);
1546
1547 if (vfc_cmd->status) {
1548 cmnd->result = ibmvfc_get_err_result(vfc_cmd);
1549
1550 if (rsp->flags & FCP_RSP_LEN_VALID)
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001551 rsp_len = be32_to_cpu(rsp->fcp_rsp_len);
Brian King072b91f2008-07-01 13:14:30 -05001552 if ((sense_len + rsp_len) > SCSI_SENSE_BUFFERSIZE)
1553 sense_len = SCSI_SENSE_BUFFERSIZE - rsp_len;
Brian King2bac4062008-08-15 10:59:26 -05001554 if ((rsp->flags & FCP_SNS_LEN_VALID) && rsp->fcp_sense_len && rsp_len <= 8)
Brian King072b91f2008-07-01 13:14:30 -05001555 memcpy(cmnd->sense_buffer, rsp->data.sense + rsp_len, sense_len);
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001556 if ((be16_to_cpu(vfc_cmd->status) & IBMVFC_VIOS_FAILURE) &&
1557 (be16_to_cpu(vfc_cmd->error) == IBMVFC_PLOGI_REQUIRED))
Brian King6d29cc52009-05-28 16:17:33 -05001558 ibmvfc_relogin(cmnd->device);
Brian King072b91f2008-07-01 13:14:30 -05001559
Brian King50119da2008-10-29 08:46:36 -05001560 if (!cmnd->result && (!scsi_get_resid(cmnd) || (rsp->flags & FCP_RESID_OVER)))
1561 cmnd->result = (DID_ERROR << 16);
1562
Brian King072b91f2008-07-01 13:14:30 -05001563 ibmvfc_log_error(evt);
1564 }
1565
1566 if (!cmnd->result &&
1567 (scsi_bufflen(cmnd) - scsi_get_resid(cmnd) < cmnd->underflow))
1568 cmnd->result = (DID_ERROR << 16);
1569
1570 scsi_dma_unmap(cmnd);
1571 cmnd->scsi_done(cmnd);
1572 }
1573
Brian Kingad8dcff2008-10-29 08:46:41 -05001574 if (evt->eh_comp)
1575 complete(evt->eh_comp);
1576
Brian King072b91f2008-07-01 13:14:30 -05001577 ibmvfc_free_event(evt);
1578}
1579
1580/**
1581 * ibmvfc_host_chkready - Check if the host can accept commands
1582 * @vhost: struct ibmvfc host
1583 *
1584 * Returns:
1585 * 1 if host can accept command / 0 if not
1586 **/
1587static inline int ibmvfc_host_chkready(struct ibmvfc_host *vhost)
1588{
1589 int result = 0;
1590
1591 switch (vhost->state) {
1592 case IBMVFC_LINK_DEAD:
1593 case IBMVFC_HOST_OFFLINE:
1594 result = DID_NO_CONNECT << 16;
1595 break;
1596 case IBMVFC_NO_CRQ:
1597 case IBMVFC_INITIALIZING:
1598 case IBMVFC_HALTED:
1599 case IBMVFC_LINK_DOWN:
1600 result = DID_REQUEUE << 16;
1601 break;
1602 case IBMVFC_ACTIVE:
1603 result = 0;
1604 break;
1605 };
1606
1607 return result;
1608}
1609
1610/**
1611 * ibmvfc_queuecommand - The queuecommand function of the scsi template
1612 * @cmnd: struct scsi_cmnd to be executed
1613 * @done: Callback function to be called when cmnd is completed
1614 *
1615 * Returns:
1616 * 0 on success / other on failure
1617 **/
Jeff Garzikf2812332010-11-16 02:10:29 -05001618static int ibmvfc_queuecommand_lck(struct scsi_cmnd *cmnd,
Brian King072b91f2008-07-01 13:14:30 -05001619 void (*done) (struct scsi_cmnd *))
1620{
1621 struct ibmvfc_host *vhost = shost_priv(cmnd->device->host);
1622 struct fc_rport *rport = starget_to_rport(scsi_target(cmnd->device));
1623 struct ibmvfc_cmd *vfc_cmd;
1624 struct ibmvfc_event *evt;
Brian King072b91f2008-07-01 13:14:30 -05001625 int rc;
1626
1627 if (unlikely((rc = fc_remote_port_chkready(rport))) ||
1628 unlikely((rc = ibmvfc_host_chkready(vhost)))) {
1629 cmnd->result = rc;
1630 done(cmnd);
1631 return 0;
1632 }
1633
1634 cmnd->result = (DID_OK << 16);
1635 evt = ibmvfc_get_event(vhost);
1636 ibmvfc_init_event(evt, ibmvfc_scsi_done, IBMVFC_CMD_FORMAT);
1637 evt->cmnd = cmnd;
1638 cmnd->scsi_done = done;
1639 vfc_cmd = &evt->iu.cmd;
1640 memset(vfc_cmd, 0, sizeof(*vfc_cmd));
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001641 vfc_cmd->resp.va = cpu_to_be64(be64_to_cpu(evt->crq.ioba) + offsetof(struct ibmvfc_cmd, rsp));
1642 vfc_cmd->resp.len = cpu_to_be32(sizeof(vfc_cmd->rsp));
1643 vfc_cmd->frame_type = cpu_to_be32(IBMVFC_SCSI_FCP_TYPE);
1644 vfc_cmd->payload_len = cpu_to_be32(sizeof(vfc_cmd->iu));
1645 vfc_cmd->resp_len = cpu_to_be32(sizeof(vfc_cmd->rsp));
1646 vfc_cmd->cancel_key = cpu_to_be32((unsigned long)cmnd->device->hostdata);
1647 vfc_cmd->tgt_scsi_id = cpu_to_be64(rport->port_id);
1648 vfc_cmd->iu.xfer_len = cpu_to_be32(scsi_bufflen(cmnd));
Brian King072b91f2008-07-01 13:14:30 -05001649 int_to_scsilun(cmnd->device->lun, &vfc_cmd->iu.lun);
1650 memcpy(vfc_cmd->iu.cdb, cmnd->cmnd, cmnd->cmd_len);
1651
Christoph Hellwig50668632014-10-30 14:30:06 +01001652 if (cmnd->flags & SCMD_TAGGED) {
1653 vfc_cmd->task_tag = cpu_to_be64(cmnd->tag);
1654 vfc_cmd->iu.pri_task_attr = IBMVFC_SIMPLE_TASK;
Brian King072b91f2008-07-01 13:14:30 -05001655 }
1656
1657 if (likely(!(rc = ibmvfc_map_sg_data(cmnd, evt, vfc_cmd, vhost->dev))))
1658 return ibmvfc_send_event(evt, vhost, 0);
1659
1660 ibmvfc_free_event(evt);
1661 if (rc == -ENOMEM)
1662 return SCSI_MLQUEUE_HOST_BUSY;
1663
1664 if (vhost->log_level > IBMVFC_DEFAULT_LOG_LEVEL)
1665 scmd_printk(KERN_ERR, cmnd,
1666 "Failed to map DMA buffer for command. rc=%d\n", rc);
1667
1668 cmnd->result = DID_ERROR << 16;
1669 done(cmnd);
1670 return 0;
1671}
1672
Jeff Garzikf2812332010-11-16 02:10:29 -05001673static DEF_SCSI_QCMD(ibmvfc_queuecommand)
1674
Brian King072b91f2008-07-01 13:14:30 -05001675/**
1676 * ibmvfc_sync_completion - Signal that a synchronous command has completed
1677 * @evt: ibmvfc event struct
1678 *
1679 **/
1680static void ibmvfc_sync_completion(struct ibmvfc_event *evt)
1681{
1682 /* copy the response back */
1683 if (evt->sync_iu)
1684 *evt->sync_iu = *evt->xfer_iu;
1685
1686 complete(&evt->comp);
1687}
1688
1689/**
Brian Kingd31429e2009-10-19 15:07:54 -05001690 * ibmvfc_bsg_timeout_done - Completion handler for cancelling BSG commands
1691 * @evt: struct ibmvfc_event
1692 *
1693 **/
1694static void ibmvfc_bsg_timeout_done(struct ibmvfc_event *evt)
1695{
1696 struct ibmvfc_host *vhost = evt->vhost;
1697
1698 ibmvfc_free_event(evt);
1699 vhost->aborting_passthru = 0;
1700 dev_info(vhost->dev, "Passthru command cancelled\n");
1701}
1702
1703/**
1704 * ibmvfc_bsg_timeout - Handle a BSG timeout
1705 * @job: struct fc_bsg_job that timed out
1706 *
1707 * Returns:
1708 * 0 on success / other on failure
1709 **/
1710static int ibmvfc_bsg_timeout(struct fc_bsg_job *job)
1711{
1712 struct ibmvfc_host *vhost = shost_priv(job->shost);
1713 unsigned long port_id = (unsigned long)job->dd_data;
1714 struct ibmvfc_event *evt;
1715 struct ibmvfc_tmf *tmf;
1716 unsigned long flags;
1717 int rc;
1718
1719 ENTER;
1720 spin_lock_irqsave(vhost->host->host_lock, flags);
1721 if (vhost->aborting_passthru || vhost->state != IBMVFC_ACTIVE) {
1722 __ibmvfc_reset_host(vhost);
1723 spin_unlock_irqrestore(vhost->host->host_lock, flags);
1724 return 0;
1725 }
1726
1727 vhost->aborting_passthru = 1;
1728 evt = ibmvfc_get_event(vhost);
1729 ibmvfc_init_event(evt, ibmvfc_bsg_timeout_done, IBMVFC_MAD_FORMAT);
1730
1731 tmf = &evt->iu.tmf;
1732 memset(tmf, 0, sizeof(*tmf));
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001733 tmf->common.version = cpu_to_be32(1);
1734 tmf->common.opcode = cpu_to_be32(IBMVFC_TMF_MAD);
1735 tmf->common.length = cpu_to_be16(sizeof(*tmf));
1736 tmf->scsi_id = cpu_to_be64(port_id);
1737 tmf->cancel_key = cpu_to_be32(IBMVFC_PASSTHRU_CANCEL_KEY);
1738 tmf->my_cancel_key = cpu_to_be32(IBMVFC_INTERNAL_CANCEL_KEY);
Brian Kingd31429e2009-10-19 15:07:54 -05001739 rc = ibmvfc_send_event(evt, vhost, default_timeout);
1740
1741 if (rc != 0) {
1742 vhost->aborting_passthru = 0;
1743 dev_err(vhost->dev, "Failed to send cancel event. rc=%d\n", rc);
1744 rc = -EIO;
1745 } else
1746 dev_info(vhost->dev, "Cancelling passthru command to port id 0x%lx\n",
1747 port_id);
1748
1749 spin_unlock_irqrestore(vhost->host->host_lock, flags);
1750
1751 LEAVE;
1752 return rc;
1753}
1754
1755/**
1756 * ibmvfc_bsg_plogi - PLOGI into a target to handle a BSG command
1757 * @vhost: struct ibmvfc_host to send command
1758 * @port_id: port ID to send command
1759 *
1760 * Returns:
1761 * 0 on success / other on failure
1762 **/
1763static int ibmvfc_bsg_plogi(struct ibmvfc_host *vhost, unsigned int port_id)
1764{
1765 struct ibmvfc_port_login *plogi;
1766 struct ibmvfc_target *tgt;
1767 struct ibmvfc_event *evt;
1768 union ibmvfc_iu rsp_iu;
1769 unsigned long flags;
1770 int rc = 0, issue_login = 1;
1771
1772 ENTER;
1773 spin_lock_irqsave(vhost->host->host_lock, flags);
1774 list_for_each_entry(tgt, &vhost->targets, queue) {
1775 if (tgt->scsi_id == port_id) {
1776 issue_login = 0;
1777 break;
1778 }
1779 }
1780
1781 if (!issue_login)
1782 goto unlock_out;
1783 if (unlikely((rc = ibmvfc_host_chkready(vhost))))
1784 goto unlock_out;
1785
1786 evt = ibmvfc_get_event(vhost);
1787 ibmvfc_init_event(evt, ibmvfc_sync_completion, IBMVFC_MAD_FORMAT);
1788 plogi = &evt->iu.plogi;
1789 memset(plogi, 0, sizeof(*plogi));
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001790 plogi->common.version = cpu_to_be32(1);
1791 plogi->common.opcode = cpu_to_be32(IBMVFC_PORT_LOGIN);
1792 plogi->common.length = cpu_to_be16(sizeof(*plogi));
1793 plogi->scsi_id = cpu_to_be64(port_id);
Brian Kingd31429e2009-10-19 15:07:54 -05001794 evt->sync_iu = &rsp_iu;
1795 init_completion(&evt->comp);
1796
1797 rc = ibmvfc_send_event(evt, vhost, default_timeout);
1798 spin_unlock_irqrestore(vhost->host->host_lock, flags);
1799
1800 if (rc)
1801 return -EIO;
1802
1803 wait_for_completion(&evt->comp);
1804
1805 if (rsp_iu.plogi.common.status)
1806 rc = -EIO;
1807
1808 spin_lock_irqsave(vhost->host->host_lock, flags);
1809 ibmvfc_free_event(evt);
1810unlock_out:
1811 spin_unlock_irqrestore(vhost->host->host_lock, flags);
1812 LEAVE;
1813 return rc;
1814}
1815
1816/**
1817 * ibmvfc_bsg_request - Handle a BSG request
1818 * @job: struct fc_bsg_job to be executed
1819 *
1820 * Returns:
1821 * 0 on success / other on failure
1822 **/
1823static int ibmvfc_bsg_request(struct fc_bsg_job *job)
1824{
1825 struct ibmvfc_host *vhost = shost_priv(job->shost);
1826 struct fc_rport *rport = job->rport;
1827 struct ibmvfc_passthru_mad *mad;
1828 struct ibmvfc_event *evt;
1829 union ibmvfc_iu rsp_iu;
1830 unsigned long flags, port_id = -1;
1831 unsigned int code = job->request->msgcode;
1832 int rc = 0, req_seg, rsp_seg, issue_login = 0;
1833 u32 fc_flags, rsp_len;
1834
1835 ENTER;
1836 job->reply->reply_payload_rcv_len = 0;
1837 if (rport)
1838 port_id = rport->port_id;
1839
1840 switch (code) {
1841 case FC_BSG_HST_ELS_NOLOGIN:
1842 port_id = (job->request->rqst_data.h_els.port_id[0] << 16) |
1843 (job->request->rqst_data.h_els.port_id[1] << 8) |
1844 job->request->rqst_data.h_els.port_id[2];
1845 case FC_BSG_RPT_ELS:
1846 fc_flags = IBMVFC_FC_ELS;
1847 break;
1848 case FC_BSG_HST_CT:
1849 issue_login = 1;
1850 port_id = (job->request->rqst_data.h_ct.port_id[0] << 16) |
1851 (job->request->rqst_data.h_ct.port_id[1] << 8) |
1852 job->request->rqst_data.h_ct.port_id[2];
1853 case FC_BSG_RPT_CT:
1854 fc_flags = IBMVFC_FC_CT_IU;
1855 break;
1856 default:
1857 return -ENOTSUPP;
1858 };
1859
1860 if (port_id == -1)
1861 return -EINVAL;
1862 if (!mutex_trylock(&vhost->passthru_mutex))
1863 return -EBUSY;
1864
1865 job->dd_data = (void *)port_id;
1866 req_seg = dma_map_sg(vhost->dev, job->request_payload.sg_list,
1867 job->request_payload.sg_cnt, DMA_TO_DEVICE);
1868
1869 if (!req_seg) {
1870 mutex_unlock(&vhost->passthru_mutex);
1871 return -ENOMEM;
1872 }
1873
1874 rsp_seg = dma_map_sg(vhost->dev, job->reply_payload.sg_list,
1875 job->reply_payload.sg_cnt, DMA_FROM_DEVICE);
1876
1877 if (!rsp_seg) {
1878 dma_unmap_sg(vhost->dev, job->request_payload.sg_list,
1879 job->request_payload.sg_cnt, DMA_TO_DEVICE);
1880 mutex_unlock(&vhost->passthru_mutex);
1881 return -ENOMEM;
1882 }
1883
1884 if (req_seg > 1 || rsp_seg > 1) {
1885 rc = -EINVAL;
1886 goto out;
1887 }
1888
1889 if (issue_login)
1890 rc = ibmvfc_bsg_plogi(vhost, port_id);
1891
1892 spin_lock_irqsave(vhost->host->host_lock, flags);
1893
1894 if (unlikely(rc || (rport && (rc = fc_remote_port_chkready(rport)))) ||
1895 unlikely((rc = ibmvfc_host_chkready(vhost)))) {
1896 spin_unlock_irqrestore(vhost->host->host_lock, flags);
1897 goto out;
1898 }
1899
1900 evt = ibmvfc_get_event(vhost);
1901 ibmvfc_init_event(evt, ibmvfc_sync_completion, IBMVFC_MAD_FORMAT);
1902 mad = &evt->iu.passthru;
1903
1904 memset(mad, 0, sizeof(*mad));
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001905 mad->common.version = cpu_to_be32(1);
1906 mad->common.opcode = cpu_to_be32(IBMVFC_PASSTHRU);
1907 mad->common.length = cpu_to_be16(sizeof(*mad) - sizeof(mad->fc_iu) - sizeof(mad->iu));
Brian Kingd31429e2009-10-19 15:07:54 -05001908
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001909 mad->cmd_ioba.va = cpu_to_be64(be64_to_cpu(evt->crq.ioba) +
1910 offsetof(struct ibmvfc_passthru_mad, iu));
1911 mad->cmd_ioba.len = cpu_to_be32(sizeof(mad->iu));
Brian Kingd31429e2009-10-19 15:07:54 -05001912
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001913 mad->iu.cmd_len = cpu_to_be32(job->request_payload.payload_len);
1914 mad->iu.rsp_len = cpu_to_be32(job->reply_payload.payload_len);
1915 mad->iu.flags = cpu_to_be32(fc_flags);
1916 mad->iu.cancel_key = cpu_to_be32(IBMVFC_PASSTHRU_CANCEL_KEY);
Brian Kingd31429e2009-10-19 15:07:54 -05001917
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001918 mad->iu.cmd.va = cpu_to_be64(sg_dma_address(job->request_payload.sg_list));
1919 mad->iu.cmd.len = cpu_to_be32(sg_dma_len(job->request_payload.sg_list));
1920 mad->iu.rsp.va = cpu_to_be64(sg_dma_address(job->reply_payload.sg_list));
1921 mad->iu.rsp.len = cpu_to_be32(sg_dma_len(job->reply_payload.sg_list));
1922 mad->iu.scsi_id = cpu_to_be64(port_id);
1923 mad->iu.tag = cpu_to_be64((u64)evt);
1924 rsp_len = be32_to_cpu(mad->iu.rsp.len);
Brian Kingd31429e2009-10-19 15:07:54 -05001925
1926 evt->sync_iu = &rsp_iu;
1927 init_completion(&evt->comp);
1928 rc = ibmvfc_send_event(evt, vhost, 0);
1929 spin_unlock_irqrestore(vhost->host->host_lock, flags);
1930
1931 if (rc) {
1932 rc = -EIO;
1933 goto out;
1934 }
1935
1936 wait_for_completion(&evt->comp);
1937
1938 if (rsp_iu.passthru.common.status)
1939 rc = -EIO;
1940 else
1941 job->reply->reply_payload_rcv_len = rsp_len;
1942
1943 spin_lock_irqsave(vhost->host->host_lock, flags);
1944 ibmvfc_free_event(evt);
1945 spin_unlock_irqrestore(vhost->host->host_lock, flags);
1946 job->reply->result = rc;
1947 job->job_done(job);
1948 rc = 0;
1949out:
1950 dma_unmap_sg(vhost->dev, job->request_payload.sg_list,
1951 job->request_payload.sg_cnt, DMA_TO_DEVICE);
1952 dma_unmap_sg(vhost->dev, job->reply_payload.sg_list,
1953 job->reply_payload.sg_cnt, DMA_FROM_DEVICE);
1954 mutex_unlock(&vhost->passthru_mutex);
1955 LEAVE;
1956 return rc;
1957}
1958
1959/**
Brian King072b91f2008-07-01 13:14:30 -05001960 * ibmvfc_reset_device - Reset the device with the specified reset type
1961 * @sdev: scsi device to reset
1962 * @type: reset type
1963 * @desc: reset type description for log messages
1964 *
1965 * Returns:
1966 * 0 on success / other on failure
1967 **/
1968static int ibmvfc_reset_device(struct scsi_device *sdev, int type, char *desc)
1969{
1970 struct ibmvfc_host *vhost = shost_priv(sdev->host);
1971 struct fc_rport *rport = starget_to_rport(scsi_target(sdev));
1972 struct ibmvfc_cmd *tmf;
Brian King50ed9a02008-10-29 08:46:47 -05001973 struct ibmvfc_event *evt = NULL;
Brian King072b91f2008-07-01 13:14:30 -05001974 union ibmvfc_iu rsp_iu;
1975 struct ibmvfc_fcp_rsp *fc_rsp = &rsp_iu.cmd.rsp;
1976 int rsp_rc = -EBUSY;
1977 unsigned long flags;
1978 int rsp_code = 0;
1979
1980 spin_lock_irqsave(vhost->host->host_lock, flags);
1981 if (vhost->state == IBMVFC_ACTIVE) {
1982 evt = ibmvfc_get_event(vhost);
1983 ibmvfc_init_event(evt, ibmvfc_sync_completion, IBMVFC_CMD_FORMAT);
1984
1985 tmf = &evt->iu.cmd;
1986 memset(tmf, 0, sizeof(*tmf));
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001987 tmf->resp.va = cpu_to_be64(be64_to_cpu(evt->crq.ioba) + offsetof(struct ibmvfc_cmd, rsp));
1988 tmf->resp.len = cpu_to_be32(sizeof(tmf->rsp));
1989 tmf->frame_type = cpu_to_be32(IBMVFC_SCSI_FCP_TYPE);
1990 tmf->payload_len = cpu_to_be32(sizeof(tmf->iu));
1991 tmf->resp_len = cpu_to_be32(sizeof(tmf->rsp));
1992 tmf->cancel_key = cpu_to_be32((unsigned long)sdev->hostdata);
1993 tmf->tgt_scsi_id = cpu_to_be64(rport->port_id);
Brian King072b91f2008-07-01 13:14:30 -05001994 int_to_scsilun(sdev->lun, &tmf->iu.lun);
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001995 tmf->flags = cpu_to_be16((IBMVFC_NO_MEM_DESC | IBMVFC_TMF));
Brian King072b91f2008-07-01 13:14:30 -05001996 tmf->iu.tmf_flags = type;
1997 evt->sync_iu = &rsp_iu;
1998
1999 init_completion(&evt->comp);
2000 rsp_rc = ibmvfc_send_event(evt, vhost, default_timeout);
2001 }
2002 spin_unlock_irqrestore(vhost->host->host_lock, flags);
2003
2004 if (rsp_rc != 0) {
2005 sdev_printk(KERN_ERR, sdev, "Failed to send %s reset event. rc=%d\n",
2006 desc, rsp_rc);
2007 return -EIO;
2008 }
2009
2010 sdev_printk(KERN_INFO, sdev, "Resetting %s\n", desc);
2011 wait_for_completion(&evt->comp);
2012
Brian King230934a2009-10-19 15:07:47 -05002013 if (rsp_iu.cmd.status)
2014 rsp_code = ibmvfc_get_err_result(&rsp_iu.cmd);
2015
2016 if (rsp_code) {
Brian King072b91f2008-07-01 13:14:30 -05002017 if (fc_rsp->flags & FCP_RSP_LEN_VALID)
2018 rsp_code = fc_rsp->data.info.rsp_code;
2019
2020 sdev_printk(KERN_ERR, sdev, "%s reset failed: %s (%x:%x) "
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05002021 "flags: %x fcp_rsp: %x, scsi_status: %x\n", desc,
2022 ibmvfc_get_cmd_error(be16_to_cpu(rsp_iu.cmd.status), be16_to_cpu(rsp_iu.cmd.error)),
Brian King072b91f2008-07-01 13:14:30 -05002023 rsp_iu.cmd.status, rsp_iu.cmd.error, fc_rsp->flags, rsp_code,
2024 fc_rsp->scsi_status);
2025 rsp_rc = -EIO;
2026 } else
2027 sdev_printk(KERN_INFO, sdev, "%s reset successful\n", desc);
2028
2029 spin_lock_irqsave(vhost->host->host_lock, flags);
2030 ibmvfc_free_event(evt);
2031 spin_unlock_irqrestore(vhost->host->host_lock, flags);
2032 return rsp_rc;
2033}
2034
2035/**
Brian Kingd2fab5c2010-08-05 16:38:34 -05002036 * ibmvfc_match_rport - Match function for specified remote port
2037 * @evt: ibmvfc event struct
2038 * @device: device to match (rport)
Brian King072b91f2008-07-01 13:14:30 -05002039 *
2040 * Returns:
Brian Kingd2fab5c2010-08-05 16:38:34 -05002041 * 1 if event matches rport / 0 if event does not match rport
Brian King072b91f2008-07-01 13:14:30 -05002042 **/
Brian Kingd2fab5c2010-08-05 16:38:34 -05002043static int ibmvfc_match_rport(struct ibmvfc_event *evt, void *rport)
Brian King072b91f2008-07-01 13:14:30 -05002044{
Brian Kingd2fab5c2010-08-05 16:38:34 -05002045 struct fc_rport *cmd_rport;
Brian King072b91f2008-07-01 13:14:30 -05002046
Brian Kingd2fab5c2010-08-05 16:38:34 -05002047 if (evt->cmnd) {
2048 cmd_rport = starget_to_rport(scsi_target(evt->cmnd->device));
2049 if (cmd_rport == rport)
2050 return 1;
Brian King072b91f2008-07-01 13:14:30 -05002051 }
Brian King072b91f2008-07-01 13:14:30 -05002052 return 0;
2053}
2054
2055/**
Brian Kingad8dcff2008-10-29 08:46:41 -05002056 * ibmvfc_match_target - Match function for specified target
2057 * @evt: ibmvfc event struct
2058 * @device: device to match (starget)
2059 *
2060 * Returns:
2061 * 1 if event matches starget / 0 if event does not match starget
2062 **/
2063static int ibmvfc_match_target(struct ibmvfc_event *evt, void *device)
2064{
2065 if (evt->cmnd && scsi_target(evt->cmnd->device) == device)
2066 return 1;
2067 return 0;
2068}
2069
2070/**
2071 * ibmvfc_match_lun - Match function for specified LUN
2072 * @evt: ibmvfc event struct
2073 * @device: device to match (sdev)
2074 *
2075 * Returns:
2076 * 1 if event matches sdev / 0 if event does not match sdev
2077 **/
2078static int ibmvfc_match_lun(struct ibmvfc_event *evt, void *device)
2079{
2080 if (evt->cmnd && evt->cmnd->device == device)
2081 return 1;
2082 return 0;
2083}
2084
2085/**
2086 * ibmvfc_wait_for_ops - Wait for ops to complete
2087 * @vhost: ibmvfc host struct
2088 * @device: device to match (starget or sdev)
2089 * @match: match function
2090 *
2091 * Returns:
2092 * SUCCESS / FAILED
2093 **/
2094static int ibmvfc_wait_for_ops(struct ibmvfc_host *vhost, void *device,
2095 int (*match) (struct ibmvfc_event *, void *))
2096{
2097 struct ibmvfc_event *evt;
2098 DECLARE_COMPLETION_ONSTACK(comp);
2099 int wait;
2100 unsigned long flags;
Brian Kingdaa142d2010-04-20 14:21:35 -05002101 signed long timeout = IBMVFC_ABORT_WAIT_TIMEOUT * HZ;
Brian Kingad8dcff2008-10-29 08:46:41 -05002102
2103 ENTER;
2104 do {
2105 wait = 0;
2106 spin_lock_irqsave(vhost->host->host_lock, flags);
2107 list_for_each_entry(evt, &vhost->sent, queue) {
2108 if (match(evt, device)) {
2109 evt->eh_comp = &comp;
2110 wait++;
2111 }
2112 }
2113 spin_unlock_irqrestore(vhost->host->host_lock, flags);
2114
2115 if (wait) {
2116 timeout = wait_for_completion_timeout(&comp, timeout);
2117
2118 if (!timeout) {
2119 wait = 0;
2120 spin_lock_irqsave(vhost->host->host_lock, flags);
2121 list_for_each_entry(evt, &vhost->sent, queue) {
2122 if (match(evt, device)) {
2123 evt->eh_comp = NULL;
2124 wait++;
2125 }
2126 }
2127 spin_unlock_irqrestore(vhost->host->host_lock, flags);
2128 if (wait)
2129 dev_err(vhost->dev, "Timed out waiting for aborted commands\n");
2130 LEAVE;
2131 return wait ? FAILED : SUCCESS;
2132 }
2133 }
2134 } while (wait);
2135
2136 LEAVE;
2137 return SUCCESS;
2138}
2139
2140/**
Brian Kingd2fab5c2010-08-05 16:38:34 -05002141 * ibmvfc_cancel_all - Cancel all outstanding commands to the device
2142 * @sdev: scsi device to cancel commands
2143 * @type: type of error recovery being performed
2144 *
2145 * This sends a cancel to the VIOS for the specified device. This does
2146 * NOT send any abort to the actual device. That must be done separately.
2147 *
2148 * Returns:
2149 * 0 on success / other on failure
2150 **/
2151static int ibmvfc_cancel_all(struct scsi_device *sdev, int type)
2152{
2153 struct ibmvfc_host *vhost = shost_priv(sdev->host);
2154 struct scsi_target *starget = scsi_target(sdev);
2155 struct fc_rport *rport = starget_to_rport(starget);
2156 struct ibmvfc_tmf *tmf;
2157 struct ibmvfc_event *evt, *found_evt;
2158 union ibmvfc_iu rsp;
2159 int rsp_rc = -EBUSY;
2160 unsigned long flags;
2161 u16 status;
2162
2163 ENTER;
2164 spin_lock_irqsave(vhost->host->host_lock, flags);
2165 found_evt = NULL;
2166 list_for_each_entry(evt, &vhost->sent, queue) {
2167 if (evt->cmnd && evt->cmnd->device == sdev) {
2168 found_evt = evt;
2169 break;
2170 }
2171 }
2172
2173 if (!found_evt) {
2174 if (vhost->log_level > IBMVFC_DEFAULT_LOG_LEVEL)
2175 sdev_printk(KERN_INFO, sdev, "No events found to cancel\n");
2176 spin_unlock_irqrestore(vhost->host->host_lock, flags);
2177 return 0;
2178 }
2179
Brian King55d29bf2013-04-12 08:25:17 -05002180 if (vhost->logged_in) {
Brian Kingd2fab5c2010-08-05 16:38:34 -05002181 evt = ibmvfc_get_event(vhost);
2182 ibmvfc_init_event(evt, ibmvfc_sync_completion, IBMVFC_MAD_FORMAT);
2183
2184 tmf = &evt->iu.tmf;
2185 memset(tmf, 0, sizeof(*tmf));
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05002186 tmf->common.version = cpu_to_be32(1);
2187 tmf->common.opcode = cpu_to_be32(IBMVFC_TMF_MAD);
2188 tmf->common.length = cpu_to_be16(sizeof(*tmf));
2189 tmf->scsi_id = cpu_to_be64(rport->port_id);
Brian Kingd2fab5c2010-08-05 16:38:34 -05002190 int_to_scsilun(sdev->lun, &tmf->lun);
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05002191 if (!(be64_to_cpu(vhost->login_buf->resp.capabilities) & IBMVFC_CAN_SUPPRESS_ABTS))
Brian King90f725d2013-04-12 08:25:18 -05002192 type &= ~IBMVFC_TMF_SUPPRESS_ABTS;
Brian King55d29bf2013-04-12 08:25:17 -05002193 if (vhost->state == IBMVFC_ACTIVE)
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05002194 tmf->flags = cpu_to_be32((type | IBMVFC_TMF_LUA_VALID));
Brian King55d29bf2013-04-12 08:25:17 -05002195 else
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05002196 tmf->flags = cpu_to_be32(((type & IBMVFC_TMF_SUPPRESS_ABTS) | IBMVFC_TMF_LUA_VALID));
2197 tmf->cancel_key = cpu_to_be32((unsigned long)sdev->hostdata);
2198 tmf->my_cancel_key = cpu_to_be32((unsigned long)starget->hostdata);
Brian Kingd2fab5c2010-08-05 16:38:34 -05002199
2200 evt->sync_iu = &rsp;
2201 init_completion(&evt->comp);
2202 rsp_rc = ibmvfc_send_event(evt, vhost, default_timeout);
2203 }
2204
2205 spin_unlock_irqrestore(vhost->host->host_lock, flags);
2206
2207 if (rsp_rc != 0) {
2208 sdev_printk(KERN_ERR, sdev, "Failed to send cancel event. rc=%d\n", rsp_rc);
Brian Kingc281e322013-08-20 11:08:42 -05002209 /* If failure is received, the host adapter is most likely going
2210 through reset, return success so the caller will wait for the command
2211 being cancelled to get returned */
2212 return 0;
Brian Kingd2fab5c2010-08-05 16:38:34 -05002213 }
2214
2215 sdev_printk(KERN_INFO, sdev, "Cancelling outstanding commands.\n");
2216
2217 wait_for_completion(&evt->comp);
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05002218 status = be16_to_cpu(rsp.mad_common.status);
Brian Kingd2fab5c2010-08-05 16:38:34 -05002219 spin_lock_irqsave(vhost->host->host_lock, flags);
2220 ibmvfc_free_event(evt);
2221 spin_unlock_irqrestore(vhost->host->host_lock, flags);
2222
2223 if (status != IBMVFC_MAD_SUCCESS) {
2224 sdev_printk(KERN_WARNING, sdev, "Cancel failed with rc=%x\n", status);
Brian Kingc281e322013-08-20 11:08:42 -05002225 switch (status) {
2226 case IBMVFC_MAD_DRIVER_FAILED:
2227 case IBMVFC_MAD_CRQ_ERROR:
2228 /* Host adapter most likely going through reset, return success to
2229 the caller will wait for the command being cancelled to get returned */
2230 return 0;
2231 default:
2232 return -EIO;
2233 };
Brian Kingd2fab5c2010-08-05 16:38:34 -05002234 }
2235
2236 sdev_printk(KERN_INFO, sdev, "Successfully cancelled outstanding commands\n");
2237 return 0;
2238}
2239
2240/**
2241 * ibmvfc_match_key - Match function for specified cancel key
2242 * @evt: ibmvfc event struct
2243 * @key: cancel key to match
2244 *
2245 * Returns:
2246 * 1 if event matches key / 0 if event does not match key
2247 **/
2248static int ibmvfc_match_key(struct ibmvfc_event *evt, void *key)
2249{
2250 unsigned long cancel_key = (unsigned long)key;
2251
2252 if (evt->crq.format == IBMVFC_CMD_FORMAT &&
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05002253 be32_to_cpu(evt->iu.cmd.cancel_key) == cancel_key)
Brian Kingd2fab5c2010-08-05 16:38:34 -05002254 return 1;
2255 return 0;
2256}
2257
2258/**
Brian Kinga077c7f2012-08-24 16:50:59 -05002259 * ibmvfc_match_evt - Match function for specified event
2260 * @evt: ibmvfc event struct
2261 * @match: event to match
2262 *
2263 * Returns:
2264 * 1 if event matches key / 0 if event does not match key
2265 **/
2266static int ibmvfc_match_evt(struct ibmvfc_event *evt, void *match)
2267{
2268 if (evt == match)
2269 return 1;
2270 return 0;
2271}
2272
2273/**
Brian Kingd2fab5c2010-08-05 16:38:34 -05002274 * ibmvfc_abort_task_set - Abort outstanding commands to the device
2275 * @sdev: scsi device to abort commands
2276 *
2277 * This sends an Abort Task Set to the VIOS for the specified device. This does
2278 * NOT send any cancel to the VIOS. That must be done separately.
2279 *
2280 * Returns:
2281 * 0 on success / other on failure
2282 **/
2283static int ibmvfc_abort_task_set(struct scsi_device *sdev)
2284{
2285 struct ibmvfc_host *vhost = shost_priv(sdev->host);
2286 struct fc_rport *rport = starget_to_rport(scsi_target(sdev));
2287 struct ibmvfc_cmd *tmf;
2288 struct ibmvfc_event *evt, *found_evt;
2289 union ibmvfc_iu rsp_iu;
2290 struct ibmvfc_fcp_rsp *fc_rsp = &rsp_iu.cmd.rsp;
2291 int rc, rsp_rc = -EBUSY;
2292 unsigned long flags, timeout = IBMVFC_ABORT_TIMEOUT;
2293 int rsp_code = 0;
2294
2295 spin_lock_irqsave(vhost->host->host_lock, flags);
2296 found_evt = NULL;
2297 list_for_each_entry(evt, &vhost->sent, queue) {
2298 if (evt->cmnd && evt->cmnd->device == sdev) {
2299 found_evt = evt;
2300 break;
2301 }
2302 }
2303
2304 if (!found_evt) {
2305 if (vhost->log_level > IBMVFC_DEFAULT_LOG_LEVEL)
2306 sdev_printk(KERN_INFO, sdev, "No events found to abort\n");
2307 spin_unlock_irqrestore(vhost->host->host_lock, flags);
2308 return 0;
2309 }
2310
2311 if (vhost->state == IBMVFC_ACTIVE) {
2312 evt = ibmvfc_get_event(vhost);
2313 ibmvfc_init_event(evt, ibmvfc_sync_completion, IBMVFC_CMD_FORMAT);
2314
2315 tmf = &evt->iu.cmd;
2316 memset(tmf, 0, sizeof(*tmf));
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05002317 tmf->resp.va = cpu_to_be64(be64_to_cpu(evt->crq.ioba) + offsetof(struct ibmvfc_cmd, rsp));
2318 tmf->resp.len = cpu_to_be32(sizeof(tmf->rsp));
2319 tmf->frame_type = cpu_to_be32(IBMVFC_SCSI_FCP_TYPE);
2320 tmf->payload_len = cpu_to_be32(sizeof(tmf->iu));
2321 tmf->resp_len = cpu_to_be32(sizeof(tmf->rsp));
2322 tmf->cancel_key = cpu_to_be32((unsigned long)sdev->hostdata);
2323 tmf->tgt_scsi_id = cpu_to_be64(rport->port_id);
Brian Kingd2fab5c2010-08-05 16:38:34 -05002324 int_to_scsilun(sdev->lun, &tmf->iu.lun);
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05002325 tmf->flags = cpu_to_be16((IBMVFC_NO_MEM_DESC | IBMVFC_TMF));
Brian Kingd2fab5c2010-08-05 16:38:34 -05002326 tmf->iu.tmf_flags = IBMVFC_ABORT_TASK_SET;
2327 evt->sync_iu = &rsp_iu;
2328
2329 init_completion(&evt->comp);
2330 rsp_rc = ibmvfc_send_event(evt, vhost, default_timeout);
2331 }
2332
2333 spin_unlock_irqrestore(vhost->host->host_lock, flags);
2334
2335 if (rsp_rc != 0) {
2336 sdev_printk(KERN_ERR, sdev, "Failed to send abort. rc=%d\n", rsp_rc);
2337 return -EIO;
2338 }
2339
2340 sdev_printk(KERN_INFO, sdev, "Aborting outstanding commands\n");
2341 timeout = wait_for_completion_timeout(&evt->comp, timeout);
2342
2343 if (!timeout) {
Brian Kingf8804b72013-04-12 08:25:15 -05002344 rc = ibmvfc_cancel_all(sdev, 0);
Brian Kingd2fab5c2010-08-05 16:38:34 -05002345 if (!rc) {
2346 rc = ibmvfc_wait_for_ops(vhost, sdev->hostdata, ibmvfc_match_key);
2347 if (rc == SUCCESS)
2348 rc = 0;
2349 }
2350
2351 if (rc) {
2352 sdev_printk(KERN_INFO, sdev, "Cancel failed, resetting host\n");
2353 ibmvfc_reset_host(vhost);
Brian Kinga077c7f2012-08-24 16:50:59 -05002354 rsp_rc = -EIO;
2355 rc = ibmvfc_wait_for_ops(vhost, sdev->hostdata, ibmvfc_match_key);
2356
2357 if (rc == SUCCESS)
2358 rsp_rc = 0;
2359
2360 rc = ibmvfc_wait_for_ops(vhost, evt, ibmvfc_match_evt);
2361 if (rc != SUCCESS) {
2362 spin_lock_irqsave(vhost->host->host_lock, flags);
2363 ibmvfc_hard_reset_host(vhost);
2364 spin_unlock_irqrestore(vhost->host->host_lock, flags);
2365 rsp_rc = 0;
2366 }
2367
Brian Kingd2fab5c2010-08-05 16:38:34 -05002368 goto out;
2369 }
2370 }
2371
2372 if (rsp_iu.cmd.status)
2373 rsp_code = ibmvfc_get_err_result(&rsp_iu.cmd);
2374
2375 if (rsp_code) {
2376 if (fc_rsp->flags & FCP_RSP_LEN_VALID)
2377 rsp_code = fc_rsp->data.info.rsp_code;
2378
2379 sdev_printk(KERN_ERR, sdev, "Abort failed: %s (%x:%x) "
2380 "flags: %x fcp_rsp: %x, scsi_status: %x\n",
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05002381 ibmvfc_get_cmd_error(be16_to_cpu(rsp_iu.cmd.status), be16_to_cpu(rsp_iu.cmd.error)),
Brian Kingd2fab5c2010-08-05 16:38:34 -05002382 rsp_iu.cmd.status, rsp_iu.cmd.error, fc_rsp->flags, rsp_code,
2383 fc_rsp->scsi_status);
2384 rsp_rc = -EIO;
2385 } else
2386 sdev_printk(KERN_INFO, sdev, "Abort successful\n");
2387
2388out:
2389 spin_lock_irqsave(vhost->host->host_lock, flags);
2390 ibmvfc_free_event(evt);
2391 spin_unlock_irqrestore(vhost->host->host_lock, flags);
2392 return rsp_rc;
2393}
2394
2395/**
Brian King072b91f2008-07-01 13:14:30 -05002396 * ibmvfc_eh_abort_handler - Abort a command
2397 * @cmd: scsi command to abort
2398 *
2399 * Returns:
Brian King93631b42013-04-12 08:25:16 -05002400 * SUCCESS / FAST_IO_FAIL / FAILED
Brian King072b91f2008-07-01 13:14:30 -05002401 **/
2402static int ibmvfc_eh_abort_handler(struct scsi_cmnd *cmd)
2403{
Brian Kingad8dcff2008-10-29 08:46:41 -05002404 struct scsi_device *sdev = cmd->device;
2405 struct ibmvfc_host *vhost = shost_priv(sdev->host);
Brian King55d29bf2013-04-12 08:25:17 -05002406 int cancel_rc, block_rc;
Brian Kingad8dcff2008-10-29 08:46:41 -05002407 int rc = FAILED;
Brian King072b91f2008-07-01 13:14:30 -05002408
2409 ENTER;
Brian King93631b42013-04-12 08:25:16 -05002410 block_rc = fc_block_scsi_eh(cmd);
Brian King072b91f2008-07-01 13:14:30 -05002411 ibmvfc_wait_while_resetting(vhost);
Brian King93631b42013-04-12 08:25:16 -05002412 if (block_rc != FAST_IO_FAIL) {
2413 cancel_rc = ibmvfc_cancel_all(sdev, IBMVFC_TMF_ABORT_TASK_SET);
Brian King55d29bf2013-04-12 08:25:17 -05002414 ibmvfc_abort_task_set(sdev);
Brian King93631b42013-04-12 08:25:16 -05002415 } else
Brian King90f725d2013-04-12 08:25:18 -05002416 cancel_rc = ibmvfc_cancel_all(sdev, IBMVFC_TMF_SUPPRESS_ABTS);
Brian King072b91f2008-07-01 13:14:30 -05002417
Brian King55d29bf2013-04-12 08:25:17 -05002418 if (!cancel_rc)
Brian Kingad8dcff2008-10-29 08:46:41 -05002419 rc = ibmvfc_wait_for_ops(vhost, sdev, ibmvfc_match_lun);
Brian King072b91f2008-07-01 13:14:30 -05002420
Brian King93631b42013-04-12 08:25:16 -05002421 if (block_rc == FAST_IO_FAIL && rc != FAILED)
2422 rc = FAST_IO_FAIL;
2423
Brian King072b91f2008-07-01 13:14:30 -05002424 LEAVE;
Brian Kingad8dcff2008-10-29 08:46:41 -05002425 return rc;
Brian King072b91f2008-07-01 13:14:30 -05002426}
2427
2428/**
2429 * ibmvfc_eh_device_reset_handler - Reset a single LUN
2430 * @cmd: scsi command struct
2431 *
2432 * Returns:
Brian King93631b42013-04-12 08:25:16 -05002433 * SUCCESS / FAST_IO_FAIL / FAILED
Brian King072b91f2008-07-01 13:14:30 -05002434 **/
2435static int ibmvfc_eh_device_reset_handler(struct scsi_cmnd *cmd)
2436{
Brian Kingad8dcff2008-10-29 08:46:41 -05002437 struct scsi_device *sdev = cmd->device;
2438 struct ibmvfc_host *vhost = shost_priv(sdev->host);
Brian King93631b42013-04-12 08:25:16 -05002439 int cancel_rc, block_rc, reset_rc = 0;
Brian Kingad8dcff2008-10-29 08:46:41 -05002440 int rc = FAILED;
Brian King072b91f2008-07-01 13:14:30 -05002441
2442 ENTER;
Brian King93631b42013-04-12 08:25:16 -05002443 block_rc = fc_block_scsi_eh(cmd);
Brian King072b91f2008-07-01 13:14:30 -05002444 ibmvfc_wait_while_resetting(vhost);
Brian King93631b42013-04-12 08:25:16 -05002445 if (block_rc != FAST_IO_FAIL) {
2446 cancel_rc = ibmvfc_cancel_all(sdev, IBMVFC_TMF_LUN_RESET);
2447 reset_rc = ibmvfc_reset_device(sdev, IBMVFC_LUN_RESET, "LUN");
2448 } else
Brian King90f725d2013-04-12 08:25:18 -05002449 cancel_rc = ibmvfc_cancel_all(sdev, IBMVFC_TMF_SUPPRESS_ABTS);
Brian King072b91f2008-07-01 13:14:30 -05002450
Brian Kingad8dcff2008-10-29 08:46:41 -05002451 if (!cancel_rc && !reset_rc)
2452 rc = ibmvfc_wait_for_ops(vhost, sdev, ibmvfc_match_lun);
Brian King072b91f2008-07-01 13:14:30 -05002453
Brian King93631b42013-04-12 08:25:16 -05002454 if (block_rc == FAST_IO_FAIL && rc != FAILED)
2455 rc = FAST_IO_FAIL;
2456
Brian King072b91f2008-07-01 13:14:30 -05002457 LEAVE;
Brian Kingad8dcff2008-10-29 08:46:41 -05002458 return rc;
Brian King072b91f2008-07-01 13:14:30 -05002459}
2460
2461/**
Brian King93631b42013-04-12 08:25:16 -05002462 * ibmvfc_dev_cancel_all_noreset - Device iterated cancel all function
2463 * @sdev: scsi device struct
2464 * @data: return code
2465 *
2466 **/
2467static void ibmvfc_dev_cancel_all_noreset(struct scsi_device *sdev, void *data)
2468{
2469 unsigned long *rc = data;
Brian King90f725d2013-04-12 08:25:18 -05002470 *rc |= ibmvfc_cancel_all(sdev, IBMVFC_TMF_SUPPRESS_ABTS);
Brian King93631b42013-04-12 08:25:16 -05002471}
2472
2473/**
Brian King4a5c4a52009-10-19 15:07:53 -05002474 * ibmvfc_dev_cancel_all_reset - Device iterated cancel all function
2475 * @sdev: scsi device struct
2476 * @data: return code
2477 *
2478 **/
2479static void ibmvfc_dev_cancel_all_reset(struct scsi_device *sdev, void *data)
Brian King072b91f2008-07-01 13:14:30 -05002480{
2481 unsigned long *rc = data;
2482 *rc |= ibmvfc_cancel_all(sdev, IBMVFC_TMF_TGT_RESET);
2483}
2484
2485/**
Brian King072b91f2008-07-01 13:14:30 -05002486 * ibmvfc_eh_target_reset_handler - Reset the target
2487 * @cmd: scsi command struct
2488 *
2489 * Returns:
Brian King93631b42013-04-12 08:25:16 -05002490 * SUCCESS / FAST_IO_FAIL / FAILED
Brian King072b91f2008-07-01 13:14:30 -05002491 **/
2492static int ibmvfc_eh_target_reset_handler(struct scsi_cmnd *cmd)
2493{
Brian Kingad8dcff2008-10-29 08:46:41 -05002494 struct scsi_device *sdev = cmd->device;
2495 struct ibmvfc_host *vhost = shost_priv(sdev->host);
2496 struct scsi_target *starget = scsi_target(sdev);
Brian King93631b42013-04-12 08:25:16 -05002497 int block_rc;
2498 int reset_rc = 0;
Brian Kingad8dcff2008-10-29 08:46:41 -05002499 int rc = FAILED;
Brian King072b91f2008-07-01 13:14:30 -05002500 unsigned long cancel_rc = 0;
Brian King072b91f2008-07-01 13:14:30 -05002501
2502 ENTER;
Brian King93631b42013-04-12 08:25:16 -05002503 block_rc = fc_block_scsi_eh(cmd);
Brian King072b91f2008-07-01 13:14:30 -05002504 ibmvfc_wait_while_resetting(vhost);
Brian King93631b42013-04-12 08:25:16 -05002505 if (block_rc != FAST_IO_FAIL) {
2506 starget_for_each_device(starget, &cancel_rc, ibmvfc_dev_cancel_all_reset);
2507 reset_rc = ibmvfc_reset_device(sdev, IBMVFC_TARGET_RESET, "target");
2508 } else
2509 starget_for_each_device(starget, &cancel_rc, ibmvfc_dev_cancel_all_noreset);
Brian King072b91f2008-07-01 13:14:30 -05002510
Brian Kingad8dcff2008-10-29 08:46:41 -05002511 if (!cancel_rc && !reset_rc)
2512 rc = ibmvfc_wait_for_ops(vhost, starget, ibmvfc_match_target);
Brian King072b91f2008-07-01 13:14:30 -05002513
Brian King93631b42013-04-12 08:25:16 -05002514 if (block_rc == FAST_IO_FAIL && rc != FAILED)
2515 rc = FAST_IO_FAIL;
2516
Brian King072b91f2008-07-01 13:14:30 -05002517 LEAVE;
Brian Kingad8dcff2008-10-29 08:46:41 -05002518 return rc;
Brian King072b91f2008-07-01 13:14:30 -05002519}
2520
2521/**
2522 * ibmvfc_eh_host_reset_handler - Reset the connection to the server
2523 * @cmd: struct scsi_cmnd having problems
2524 *
2525 **/
2526static int ibmvfc_eh_host_reset_handler(struct scsi_cmnd *cmd)
2527{
Brian King93631b42013-04-12 08:25:16 -05002528 int rc, block_rc;
Brian King072b91f2008-07-01 13:14:30 -05002529 struct ibmvfc_host *vhost = shost_priv(cmd->device->host);
2530
Brian King93631b42013-04-12 08:25:16 -05002531 block_rc = fc_block_scsi_eh(cmd);
Brian King072b91f2008-07-01 13:14:30 -05002532 dev_err(vhost->dev, "Resetting connection due to error recovery\n");
2533 rc = ibmvfc_issue_fc_host_lip(vhost->host);
Brian King93631b42013-04-12 08:25:16 -05002534
2535 if (block_rc == FAST_IO_FAIL)
2536 return FAST_IO_FAIL;
2537
Brian King072b91f2008-07-01 13:14:30 -05002538 return rc ? FAILED : SUCCESS;
2539}
2540
2541/**
2542 * ibmvfc_terminate_rport_io - Terminate all pending I/O to the rport.
2543 * @rport: rport struct
2544 *
2545 * Return value:
2546 * none
2547 **/
2548static void ibmvfc_terminate_rport_io(struct fc_rport *rport)
2549{
Brian Kingd2fab5c2010-08-05 16:38:34 -05002550 struct Scsi_Host *shost = rport_to_shost(rport);
Brian King072b91f2008-07-01 13:14:30 -05002551 struct ibmvfc_host *vhost = shost_priv(shost);
Brian Kingd2fab5c2010-08-05 16:38:34 -05002552 struct fc_rport *dev_rport;
2553 struct scsi_device *sdev;
2554 unsigned long rc;
Brian King072b91f2008-07-01 13:14:30 -05002555
2556 ENTER;
Brian Kingd2fab5c2010-08-05 16:38:34 -05002557 shost_for_each_device(sdev, shost) {
2558 dev_rport = starget_to_rport(scsi_target(sdev));
2559 if (dev_rport != rport)
2560 continue;
Brian King90f725d2013-04-12 08:25:18 -05002561 ibmvfc_cancel_all(sdev, IBMVFC_TMF_SUPPRESS_ABTS);
Brian Kingd2fab5c2010-08-05 16:38:34 -05002562 }
Brian King072b91f2008-07-01 13:14:30 -05002563
Brian Kingd2fab5c2010-08-05 16:38:34 -05002564 rc = ibmvfc_wait_for_ops(vhost, rport, ibmvfc_match_rport);
Brian Kingad8dcff2008-10-29 08:46:41 -05002565
2566 if (rc == FAILED)
Brian King072b91f2008-07-01 13:14:30 -05002567 ibmvfc_issue_fc_host_lip(shost);
Brian King072b91f2008-07-01 13:14:30 -05002568 LEAVE;
2569}
2570
Brian Kingd99e5f42010-09-09 16:20:42 -05002571static const struct ibmvfc_async_desc ae_desc [] = {
Robert Jennings402c6ee2010-12-09 14:03:59 -06002572 { "PLOGI", IBMVFC_AE_ELS_PLOGI, IBMVFC_DEFAULT_LOG_LEVEL + 1 },
2573 { "LOGO", IBMVFC_AE_ELS_LOGO, IBMVFC_DEFAULT_LOG_LEVEL + 1 },
2574 { "PRLO", IBMVFC_AE_ELS_PRLO, IBMVFC_DEFAULT_LOG_LEVEL + 1 },
2575 { "N-Port SCN", IBMVFC_AE_SCN_NPORT, IBMVFC_DEFAULT_LOG_LEVEL + 1 },
2576 { "Group SCN", IBMVFC_AE_SCN_GROUP, IBMVFC_DEFAULT_LOG_LEVEL + 1 },
2577 { "Domain SCN", IBMVFC_AE_SCN_DOMAIN, IBMVFC_DEFAULT_LOG_LEVEL },
2578 { "Fabric SCN", IBMVFC_AE_SCN_FABRIC, IBMVFC_DEFAULT_LOG_LEVEL },
2579 { "Link Up", IBMVFC_AE_LINK_UP, IBMVFC_DEFAULT_LOG_LEVEL },
2580 { "Link Down", IBMVFC_AE_LINK_DOWN, IBMVFC_DEFAULT_LOG_LEVEL },
2581 { "Link Dead", IBMVFC_AE_LINK_DEAD, IBMVFC_DEFAULT_LOG_LEVEL },
2582 { "Halt", IBMVFC_AE_HALT, IBMVFC_DEFAULT_LOG_LEVEL },
2583 { "Resume", IBMVFC_AE_RESUME, IBMVFC_DEFAULT_LOG_LEVEL },
2584 { "Adapter Failed", IBMVFC_AE_ADAPTER_FAILED, IBMVFC_DEFAULT_LOG_LEVEL },
Brian King072b91f2008-07-01 13:14:30 -05002585};
2586
Brian Kingd99e5f42010-09-09 16:20:42 -05002587static const struct ibmvfc_async_desc unknown_ae = {
Robert Jennings402c6ee2010-12-09 14:03:59 -06002588 "Unknown async", 0, IBMVFC_DEFAULT_LOG_LEVEL
Brian Kingd99e5f42010-09-09 16:20:42 -05002589};
Brian King072b91f2008-07-01 13:14:30 -05002590
2591/**
2592 * ibmvfc_get_ae_desc - Get text description for async event
2593 * @ae: async event
2594 *
2595 **/
Brian Kingd99e5f42010-09-09 16:20:42 -05002596static const struct ibmvfc_async_desc *ibmvfc_get_ae_desc(u64 ae)
Brian King072b91f2008-07-01 13:14:30 -05002597{
2598 int i;
2599
2600 for (i = 0; i < ARRAY_SIZE(ae_desc); i++)
2601 if (ae_desc[i].ae == ae)
Brian Kingd99e5f42010-09-09 16:20:42 -05002602 return &ae_desc[i];
Brian King072b91f2008-07-01 13:14:30 -05002603
Brian Kingd99e5f42010-09-09 16:20:42 -05002604 return &unknown_ae;
2605}
2606
2607static const struct {
2608 enum ibmvfc_ae_link_state state;
2609 const char *desc;
2610} link_desc [] = {
2611 { IBMVFC_AE_LS_LINK_UP, " link up" },
2612 { IBMVFC_AE_LS_LINK_BOUNCED, " link bounced" },
2613 { IBMVFC_AE_LS_LINK_DOWN, " link down" },
2614 { IBMVFC_AE_LS_LINK_DEAD, " link dead" },
2615};
2616
2617/**
2618 * ibmvfc_get_link_state - Get text description for link state
2619 * @state: link state
2620 *
2621 **/
2622static const char *ibmvfc_get_link_state(enum ibmvfc_ae_link_state state)
2623{
2624 int i;
2625
2626 for (i = 0; i < ARRAY_SIZE(link_desc); i++)
2627 if (link_desc[i].state == state)
2628 return link_desc[i].desc;
2629
2630 return "";
Brian King072b91f2008-07-01 13:14:30 -05002631}
2632
2633/**
2634 * ibmvfc_handle_async - Handle an async event from the adapter
2635 * @crq: crq to process
2636 * @vhost: ibmvfc host struct
2637 *
2638 **/
2639static void ibmvfc_handle_async(struct ibmvfc_async_crq *crq,
2640 struct ibmvfc_host *vhost)
2641{
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05002642 const struct ibmvfc_async_desc *desc = ibmvfc_get_ae_desc(be64_to_cpu(crq->event));
Brian King6d29cc52009-05-28 16:17:33 -05002643 struct ibmvfc_target *tgt;
Brian King072b91f2008-07-01 13:14:30 -05002644
Brian Kingd99e5f42010-09-09 16:20:42 -05002645 ibmvfc_log(vhost, desc->log_level, "%s event received. scsi_id: %llx, wwpn: %llx,"
Tyrel Datwyler21367e22016-02-11 16:24:35 -06002646 " node_name: %llx%s\n", desc->desc, be64_to_cpu(crq->scsi_id),
2647 be64_to_cpu(crq->wwpn), be64_to_cpu(crq->node_name),
Brian Kingd99e5f42010-09-09 16:20:42 -05002648 ibmvfc_get_link_state(crq->link_state));
Brian King072b91f2008-07-01 13:14:30 -05002649
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05002650 switch (be64_to_cpu(crq->event)) {
Brian King072b91f2008-07-01 13:14:30 -05002651 case IBMVFC_AE_RESUME:
Brian King497f9c52009-05-28 16:17:30 -05002652 switch (crq->link_state) {
2653 case IBMVFC_AE_LS_LINK_DOWN:
2654 ibmvfc_link_down(vhost, IBMVFC_LINK_DOWN);
2655 break;
2656 case IBMVFC_AE_LS_LINK_DEAD:
2657 ibmvfc_link_down(vhost, IBMVFC_LINK_DEAD);
2658 break;
2659 case IBMVFC_AE_LS_LINK_UP:
2660 case IBMVFC_AE_LS_LINK_BOUNCED:
2661 default:
2662 vhost->events_to_log |= IBMVFC_AE_LINKUP;
2663 vhost->delay_init = 1;
2664 __ibmvfc_reset_host(vhost);
2665 break;
2666 };
2667
2668 break;
2669 case IBMVFC_AE_LINK_UP:
Brian King072b91f2008-07-01 13:14:30 -05002670 vhost->events_to_log |= IBMVFC_AE_LINKUP;
Brian Kingd2131b32008-12-18 09:26:51 -06002671 vhost->delay_init = 1;
2672 __ibmvfc_reset_host(vhost);
Brian King072b91f2008-07-01 13:14:30 -05002673 break;
2674 case IBMVFC_AE_SCN_FABRIC:
Brian Kingd2131b32008-12-18 09:26:51 -06002675 case IBMVFC_AE_SCN_DOMAIN:
Brian King072b91f2008-07-01 13:14:30 -05002676 vhost->events_to_log |= IBMVFC_AE_RSCN;
Brian King5cdf1622012-08-24 16:51:01 -05002677 if (vhost->state < IBMVFC_HALTED) {
2678 vhost->delay_init = 1;
2679 __ibmvfc_reset_host(vhost);
2680 }
Brian King072b91f2008-07-01 13:14:30 -05002681 break;
2682 case IBMVFC_AE_SCN_NPORT:
2683 case IBMVFC_AE_SCN_GROUP:
Brian King072b91f2008-07-01 13:14:30 -05002684 vhost->events_to_log |= IBMVFC_AE_RSCN;
Brian King6d29cc52009-05-28 16:17:33 -05002685 ibmvfc_reinit_host(vhost);
2686 break;
Brian King072b91f2008-07-01 13:14:30 -05002687 case IBMVFC_AE_ELS_LOGO:
2688 case IBMVFC_AE_ELS_PRLO:
2689 case IBMVFC_AE_ELS_PLOGI:
Brian King6d29cc52009-05-28 16:17:33 -05002690 list_for_each_entry(tgt, &vhost->targets, queue) {
2691 if (!crq->scsi_id && !crq->wwpn && !crq->node_name)
2692 break;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05002693 if (crq->scsi_id && cpu_to_be64(tgt->scsi_id) != crq->scsi_id)
Brian King6d29cc52009-05-28 16:17:33 -05002694 continue;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05002695 if (crq->wwpn && cpu_to_be64(tgt->ids.port_name) != crq->wwpn)
Brian King6d29cc52009-05-28 16:17:33 -05002696 continue;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05002697 if (crq->node_name && cpu_to_be64(tgt->ids.node_name) != crq->node_name)
Brian King6d29cc52009-05-28 16:17:33 -05002698 continue;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05002699 if (tgt->need_login && be64_to_cpu(crq->event) == IBMVFC_AE_ELS_LOGO)
Brian King017b2ae2009-06-18 09:06:55 -05002700 tgt->logo_rcvd = 1;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05002701 if (!tgt->need_login || be64_to_cpu(crq->event) == IBMVFC_AE_ELS_PLOGI) {
Brian King017b2ae2009-06-18 09:06:55 -05002702 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DEL_RPORT);
2703 ibmvfc_reinit_host(vhost);
2704 }
Brian King6d29cc52009-05-28 16:17:33 -05002705 }
Brian King072b91f2008-07-01 13:14:30 -05002706 break;
2707 case IBMVFC_AE_LINK_DOWN:
2708 case IBMVFC_AE_ADAPTER_FAILED:
2709 ibmvfc_link_down(vhost, IBMVFC_LINK_DOWN);
2710 break;
2711 case IBMVFC_AE_LINK_DEAD:
2712 ibmvfc_link_down(vhost, IBMVFC_LINK_DEAD);
2713 break;
2714 case IBMVFC_AE_HALT:
2715 ibmvfc_link_down(vhost, IBMVFC_HALTED);
2716 break;
2717 default:
Stephen Rothwell775a42e2009-01-06 14:59:00 +00002718 dev_err(vhost->dev, "Unknown async event received: %lld\n", crq->event);
Brian King072b91f2008-07-01 13:14:30 -05002719 break;
2720 };
2721}
2722
2723/**
2724 * ibmvfc_handle_crq - Handles and frees received events in the CRQ
2725 * @crq: Command/Response queue
2726 * @vhost: ibmvfc host struct
2727 *
2728 **/
2729static void ibmvfc_handle_crq(struct ibmvfc_crq *crq, struct ibmvfc_host *vhost)
2730{
2731 long rc;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05002732 struct ibmvfc_event *evt = (struct ibmvfc_event *)be64_to_cpu(crq->ioba);
Brian King072b91f2008-07-01 13:14:30 -05002733
2734 switch (crq->valid) {
2735 case IBMVFC_CRQ_INIT_RSP:
2736 switch (crq->format) {
2737 case IBMVFC_CRQ_INIT:
2738 dev_info(vhost->dev, "Partner initialized\n");
2739 /* Send back a response */
2740 rc = ibmvfc_send_crq_init_complete(vhost);
2741 if (rc == 0)
Brian King861890c2009-10-19 15:07:49 -05002742 ibmvfc_init_host(vhost);
Brian King072b91f2008-07-01 13:14:30 -05002743 else
2744 dev_err(vhost->dev, "Unable to send init rsp. rc=%ld\n", rc);
2745 break;
2746 case IBMVFC_CRQ_INIT_COMPLETE:
2747 dev_info(vhost->dev, "Partner initialization complete\n");
Brian King861890c2009-10-19 15:07:49 -05002748 ibmvfc_init_host(vhost);
Brian King072b91f2008-07-01 13:14:30 -05002749 break;
2750 default:
2751 dev_err(vhost->dev, "Unknown crq message type: %d\n", crq->format);
2752 }
2753 return;
2754 case IBMVFC_CRQ_XPORT_EVENT:
2755 vhost->state = IBMVFC_NO_CRQ;
Brian King79111d02009-05-28 16:17:29 -05002756 vhost->logged_in = 0;
Brian King072b91f2008-07-01 13:14:30 -05002757 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_NONE);
2758 if (crq->format == IBMVFC_PARTITION_MIGRATED) {
2759 /* We need to re-setup the interpartition connection */
2760 dev_info(vhost->dev, "Re-enabling adapter\n");
2761 vhost->client_migrated = 1;
2762 ibmvfc_purge_requests(vhost, DID_REQUEUE);
Brian King73ee5d82010-06-17 13:55:13 -05002763 ibmvfc_link_down(vhost, IBMVFC_LINK_DOWN);
2764 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_REENABLE);
Brian King072b91f2008-07-01 13:14:30 -05002765 } else {
2766 dev_err(vhost->dev, "Virtual adapter failed (rc=%d)\n", crq->format);
Brian King072b91f2008-07-01 13:14:30 -05002767 ibmvfc_purge_requests(vhost, DID_ERROR);
Brian King73ee5d82010-06-17 13:55:13 -05002768 ibmvfc_link_down(vhost, IBMVFC_LINK_DOWN);
2769 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_RESET);
Brian King072b91f2008-07-01 13:14:30 -05002770 }
2771 return;
2772 case IBMVFC_CRQ_CMD_RSP:
2773 break;
2774 default:
2775 dev_err(vhost->dev, "Got an invalid message type 0x%02x\n", crq->valid);
2776 return;
2777 }
2778
2779 if (crq->format == IBMVFC_ASYNC_EVENT)
2780 return;
2781
2782 /* The only kind of payload CRQs we should get are responses to
2783 * things we send. Make sure this response is to something we
2784 * actually sent
2785 */
2786 if (unlikely(!ibmvfc_valid_event(&vhost->pool, evt))) {
Stephen Rothwell775a42e2009-01-06 14:59:00 +00002787 dev_err(vhost->dev, "Returned correlation_token 0x%08llx is invalid!\n",
Brian King072b91f2008-07-01 13:14:30 -05002788 crq->ioba);
2789 return;
2790 }
2791
2792 if (unlikely(atomic_read(&evt->free))) {
Stephen Rothwell775a42e2009-01-06 14:59:00 +00002793 dev_err(vhost->dev, "Received duplicate correlation_token 0x%08llx!\n",
Brian King072b91f2008-07-01 13:14:30 -05002794 crq->ioba);
2795 return;
2796 }
2797
2798 del_timer(&evt->timer);
2799 list_del(&evt->queue);
2800 ibmvfc_trc_end(evt);
2801 evt->done(evt);
2802}
2803
2804/**
2805 * ibmvfc_scan_finished - Check if the device scan is done.
2806 * @shost: scsi host struct
2807 * @time: current elapsed time
2808 *
2809 * Returns:
2810 * 0 if scan is not done / 1 if scan is done
2811 **/
2812static int ibmvfc_scan_finished(struct Scsi_Host *shost, unsigned long time)
2813{
2814 unsigned long flags;
2815 struct ibmvfc_host *vhost = shost_priv(shost);
2816 int done = 0;
2817
2818 spin_lock_irqsave(shost->host_lock, flags);
2819 if (time >= (init_timeout * HZ)) {
2820 dev_info(vhost->dev, "Scan taking longer than %d seconds, "
2821 "continuing initialization\n", init_timeout);
2822 done = 1;
2823 }
2824
Brian King43c8da92009-05-28 16:17:28 -05002825 if (vhost->scan_complete)
Brian King072b91f2008-07-01 13:14:30 -05002826 done = 1;
2827 spin_unlock_irqrestore(shost->host_lock, flags);
2828 return done;
2829}
2830
2831/**
2832 * ibmvfc_slave_alloc - Setup the device's task set value
2833 * @sdev: struct scsi_device device to configure
2834 *
2835 * Set the device's task set value so that error handling works as
2836 * expected.
2837 *
2838 * Returns:
2839 * 0 on success / -ENXIO if device does not exist
2840 **/
2841static int ibmvfc_slave_alloc(struct scsi_device *sdev)
2842{
2843 struct Scsi_Host *shost = sdev->host;
2844 struct fc_rport *rport = starget_to_rport(scsi_target(sdev));
2845 struct ibmvfc_host *vhost = shost_priv(shost);
2846 unsigned long flags = 0;
2847
2848 if (!rport || fc_remote_port_chkready(rport))
2849 return -ENXIO;
2850
2851 spin_lock_irqsave(shost->host_lock, flags);
2852 sdev->hostdata = (void *)(unsigned long)vhost->task_set++;
2853 spin_unlock_irqrestore(shost->host_lock, flags);
2854 return 0;
2855}
2856
2857/**
Brian Kingad8dcff2008-10-29 08:46:41 -05002858 * ibmvfc_target_alloc - Setup the target's task set value
2859 * @starget: struct scsi_target
2860 *
2861 * Set the target's task set value so that error handling works as
2862 * expected.
2863 *
2864 * Returns:
2865 * 0 on success / -ENXIO if device does not exist
2866 **/
2867static int ibmvfc_target_alloc(struct scsi_target *starget)
2868{
2869 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
2870 struct ibmvfc_host *vhost = shost_priv(shost);
2871 unsigned long flags = 0;
2872
2873 spin_lock_irqsave(shost->host_lock, flags);
2874 starget->hostdata = (void *)(unsigned long)vhost->task_set++;
2875 spin_unlock_irqrestore(shost->host_lock, flags);
2876 return 0;
2877}
2878
2879/**
Brian King072b91f2008-07-01 13:14:30 -05002880 * ibmvfc_slave_configure - Configure the device
2881 * @sdev: struct scsi_device device to configure
2882 *
2883 * Enable allow_restart for a device if it is a disk. Adjust the
2884 * queue_depth here also.
2885 *
2886 * Returns:
2887 * 0
2888 **/
2889static int ibmvfc_slave_configure(struct scsi_device *sdev)
2890{
2891 struct Scsi_Host *shost = sdev->host;
Brian King072b91f2008-07-01 13:14:30 -05002892 unsigned long flags = 0;
2893
2894 spin_lock_irqsave(shost->host_lock, flags);
2895 if (sdev->type == TYPE_DISK)
2896 sdev->allow_restart = 1;
Brian King072b91f2008-07-01 13:14:30 -05002897 spin_unlock_irqrestore(shost->host_lock, flags);
2898 return 0;
2899}
2900
2901/**
2902 * ibmvfc_change_queue_depth - Change the device's queue depth
2903 * @sdev: scsi device struct
2904 * @qdepth: depth to set
Mike Christiee881a172009-10-15 17:46:39 -07002905 * @reason: calling context
Brian King072b91f2008-07-01 13:14:30 -05002906 *
2907 * Return value:
2908 * actual depth set
2909 **/
Christoph Hellwigdb5ed4d2014-11-13 15:08:42 +01002910static int ibmvfc_change_queue_depth(struct scsi_device *sdev, int qdepth)
Brian King072b91f2008-07-01 13:14:30 -05002911{
2912 if (qdepth > IBMVFC_MAX_CMDS_PER_LUN)
2913 qdepth = IBMVFC_MAX_CMDS_PER_LUN;
2914
Christoph Hellwigdb5ed4d2014-11-13 15:08:42 +01002915 return scsi_change_queue_depth(sdev, qdepth);
Brian King072b91f2008-07-01 13:14:30 -05002916}
2917
Brian King072b91f2008-07-01 13:14:30 -05002918static ssize_t ibmvfc_show_host_partition_name(struct device *dev,
2919 struct device_attribute *attr, char *buf)
2920{
2921 struct Scsi_Host *shost = class_to_shost(dev);
2922 struct ibmvfc_host *vhost = shost_priv(shost);
2923
2924 return snprintf(buf, PAGE_SIZE, "%s\n",
2925 vhost->login_buf->resp.partition_name);
2926}
2927
Brian King072b91f2008-07-01 13:14:30 -05002928static ssize_t ibmvfc_show_host_device_name(struct device *dev,
2929 struct device_attribute *attr, char *buf)
2930{
2931 struct Scsi_Host *shost = class_to_shost(dev);
2932 struct ibmvfc_host *vhost = shost_priv(shost);
2933
2934 return snprintf(buf, PAGE_SIZE, "%s\n",
2935 vhost->login_buf->resp.device_name);
2936}
2937
Brian King072b91f2008-07-01 13:14:30 -05002938static ssize_t ibmvfc_show_host_loc_code(struct device *dev,
2939 struct device_attribute *attr, char *buf)
2940{
2941 struct Scsi_Host *shost = class_to_shost(dev);
2942 struct ibmvfc_host *vhost = shost_priv(shost);
2943
2944 return snprintf(buf, PAGE_SIZE, "%s\n",
2945 vhost->login_buf->resp.port_loc_code);
2946}
2947
Brian King072b91f2008-07-01 13:14:30 -05002948static ssize_t ibmvfc_show_host_drc_name(struct device *dev,
2949 struct device_attribute *attr, char *buf)
2950{
2951 struct Scsi_Host *shost = class_to_shost(dev);
2952 struct ibmvfc_host *vhost = shost_priv(shost);
2953
2954 return snprintf(buf, PAGE_SIZE, "%s\n",
2955 vhost->login_buf->resp.drc_name);
2956}
2957
Brian King072b91f2008-07-01 13:14:30 -05002958static ssize_t ibmvfc_show_host_npiv_version(struct device *dev,
2959 struct device_attribute *attr, char *buf)
2960{
2961 struct Scsi_Host *shost = class_to_shost(dev);
2962 struct ibmvfc_host *vhost = shost_priv(shost);
2963 return snprintf(buf, PAGE_SIZE, "%d\n", vhost->login_buf->resp.version);
2964}
2965
Brian King497f9c52009-05-28 16:17:30 -05002966static ssize_t ibmvfc_show_host_capabilities(struct device *dev,
2967 struct device_attribute *attr, char *buf)
2968{
2969 struct Scsi_Host *shost = class_to_shost(dev);
2970 struct ibmvfc_host *vhost = shost_priv(shost);
2971 return snprintf(buf, PAGE_SIZE, "%llx\n", vhost->login_buf->resp.capabilities);
2972}
2973
Brian King072b91f2008-07-01 13:14:30 -05002974/**
2975 * ibmvfc_show_log_level - Show the adapter's error logging level
2976 * @dev: class device struct
2977 * @buf: buffer
2978 *
2979 * Return value:
2980 * number of bytes printed to buffer
2981 **/
2982static ssize_t ibmvfc_show_log_level(struct device *dev,
2983 struct device_attribute *attr, char *buf)
2984{
2985 struct Scsi_Host *shost = class_to_shost(dev);
2986 struct ibmvfc_host *vhost = shost_priv(shost);
2987 unsigned long flags = 0;
2988 int len;
2989
2990 spin_lock_irqsave(shost->host_lock, flags);
2991 len = snprintf(buf, PAGE_SIZE, "%d\n", vhost->log_level);
2992 spin_unlock_irqrestore(shost->host_lock, flags);
2993 return len;
2994}
2995
2996/**
2997 * ibmvfc_store_log_level - Change the adapter's error logging level
2998 * @dev: class device struct
2999 * @buf: buffer
3000 *
3001 * Return value:
3002 * number of bytes printed to buffer
3003 **/
3004static ssize_t ibmvfc_store_log_level(struct device *dev,
3005 struct device_attribute *attr,
3006 const char *buf, size_t count)
3007{
3008 struct Scsi_Host *shost = class_to_shost(dev);
3009 struct ibmvfc_host *vhost = shost_priv(shost);
3010 unsigned long flags = 0;
3011
3012 spin_lock_irqsave(shost->host_lock, flags);
3013 vhost->log_level = simple_strtoul(buf, NULL, 10);
3014 spin_unlock_irqrestore(shost->host_lock, flags);
3015 return strlen(buf);
3016}
3017
Brian King85e23992009-05-28 16:17:25 -05003018static DEVICE_ATTR(partition_name, S_IRUGO, ibmvfc_show_host_partition_name, NULL);
3019static DEVICE_ATTR(device_name, S_IRUGO, ibmvfc_show_host_device_name, NULL);
3020static DEVICE_ATTR(port_loc_code, S_IRUGO, ibmvfc_show_host_loc_code, NULL);
3021static DEVICE_ATTR(drc_name, S_IRUGO, ibmvfc_show_host_drc_name, NULL);
3022static DEVICE_ATTR(npiv_version, S_IRUGO, ibmvfc_show_host_npiv_version, NULL);
Brian King497f9c52009-05-28 16:17:30 -05003023static DEVICE_ATTR(capabilities, S_IRUGO, ibmvfc_show_host_capabilities, NULL);
Brian King85e23992009-05-28 16:17:25 -05003024static DEVICE_ATTR(log_level, S_IRUGO | S_IWUSR,
3025 ibmvfc_show_log_level, ibmvfc_store_log_level);
Brian King072b91f2008-07-01 13:14:30 -05003026
3027#ifdef CONFIG_SCSI_IBMVFC_TRACE
3028/**
3029 * ibmvfc_read_trace - Dump the adapter trace
Chris Wright2c3c8be2010-05-12 18:28:57 -07003030 * @filp: open sysfs file
Brian King072b91f2008-07-01 13:14:30 -05003031 * @kobj: kobject struct
3032 * @bin_attr: bin_attribute struct
3033 * @buf: buffer
3034 * @off: offset
3035 * @count: buffer size
3036 *
3037 * Return value:
3038 * number of bytes printed to buffer
3039 **/
Chris Wright2c3c8be2010-05-12 18:28:57 -07003040static ssize_t ibmvfc_read_trace(struct file *filp, struct kobject *kobj,
Brian King072b91f2008-07-01 13:14:30 -05003041 struct bin_attribute *bin_attr,
3042 char *buf, loff_t off, size_t count)
3043{
3044 struct device *dev = container_of(kobj, struct device, kobj);
3045 struct Scsi_Host *shost = class_to_shost(dev);
3046 struct ibmvfc_host *vhost = shost_priv(shost);
3047 unsigned long flags = 0;
3048 int size = IBMVFC_TRACE_SIZE;
3049 char *src = (char *)vhost->trace;
3050
3051 if (off > size)
3052 return 0;
3053 if (off + count > size) {
3054 size -= off;
3055 count = size;
3056 }
3057
3058 spin_lock_irqsave(shost->host_lock, flags);
3059 memcpy(buf, &src[off], count);
3060 spin_unlock_irqrestore(shost->host_lock, flags);
3061 return count;
3062}
3063
3064static struct bin_attribute ibmvfc_trace_attr = {
3065 .attr = {
3066 .name = "trace",
3067 .mode = S_IRUGO,
3068 },
3069 .size = 0,
3070 .read = ibmvfc_read_trace,
3071};
3072#endif
3073
3074static struct device_attribute *ibmvfc_attrs[] = {
Brian King85e23992009-05-28 16:17:25 -05003075 &dev_attr_partition_name,
3076 &dev_attr_device_name,
3077 &dev_attr_port_loc_code,
3078 &dev_attr_drc_name,
3079 &dev_attr_npiv_version,
Brian King497f9c52009-05-28 16:17:30 -05003080 &dev_attr_capabilities,
Brian King85e23992009-05-28 16:17:25 -05003081 &dev_attr_log_level,
Brian King072b91f2008-07-01 13:14:30 -05003082 NULL
3083};
3084
3085static struct scsi_host_template driver_template = {
3086 .module = THIS_MODULE,
3087 .name = "IBM POWER Virtual FC Adapter",
3088 .proc_name = IBMVFC_NAME,
3089 .queuecommand = ibmvfc_queuecommand,
3090 .eh_abort_handler = ibmvfc_eh_abort_handler,
3091 .eh_device_reset_handler = ibmvfc_eh_device_reset_handler,
3092 .eh_target_reset_handler = ibmvfc_eh_target_reset_handler,
3093 .eh_host_reset_handler = ibmvfc_eh_host_reset_handler,
3094 .slave_alloc = ibmvfc_slave_alloc,
3095 .slave_configure = ibmvfc_slave_configure,
Brian Kingad8dcff2008-10-29 08:46:41 -05003096 .target_alloc = ibmvfc_target_alloc,
Brian King072b91f2008-07-01 13:14:30 -05003097 .scan_finished = ibmvfc_scan_finished,
3098 .change_queue_depth = ibmvfc_change_queue_depth,
Brian King072b91f2008-07-01 13:14:30 -05003099 .cmd_per_lun = 16,
3100 .can_queue = IBMVFC_MAX_REQUESTS_DEFAULT,
3101 .this_id = -1,
3102 .sg_tablesize = SG_ALL,
3103 .max_sectors = IBMVFC_MAX_SECTORS,
3104 .use_clustering = ENABLE_CLUSTERING,
3105 .shost_attrs = ibmvfc_attrs,
Christoph Hellwigc40ecc12014-11-13 14:25:11 +01003106 .track_queue_depth = 1,
Brian King072b91f2008-07-01 13:14:30 -05003107};
3108
3109/**
3110 * ibmvfc_next_async_crq - Returns the next entry in async queue
3111 * @vhost: ibmvfc host struct
3112 *
3113 * Returns:
3114 * Pointer to next entry in queue / NULL if empty
3115 **/
3116static struct ibmvfc_async_crq *ibmvfc_next_async_crq(struct ibmvfc_host *vhost)
3117{
3118 struct ibmvfc_async_crq_queue *async_crq = &vhost->async_crq;
3119 struct ibmvfc_async_crq *crq;
3120
3121 crq = &async_crq->msgs[async_crq->cur];
3122 if (crq->valid & 0x80) {
3123 if (++async_crq->cur == async_crq->size)
3124 async_crq->cur = 0;
Brian Kingf5832fa2010-04-20 14:21:33 -05003125 rmb();
Brian King072b91f2008-07-01 13:14:30 -05003126 } else
3127 crq = NULL;
3128
3129 return crq;
3130}
3131
3132/**
3133 * ibmvfc_next_crq - Returns the next entry in message queue
3134 * @vhost: ibmvfc host struct
3135 *
3136 * Returns:
3137 * Pointer to next entry in queue / NULL if empty
3138 **/
3139static struct ibmvfc_crq *ibmvfc_next_crq(struct ibmvfc_host *vhost)
3140{
3141 struct ibmvfc_crq_queue *queue = &vhost->crq;
3142 struct ibmvfc_crq *crq;
3143
3144 crq = &queue->msgs[queue->cur];
3145 if (crq->valid & 0x80) {
3146 if (++queue->cur == queue->size)
3147 queue->cur = 0;
Brian Kingf5832fa2010-04-20 14:21:33 -05003148 rmb();
Brian King072b91f2008-07-01 13:14:30 -05003149 } else
3150 crq = NULL;
3151
3152 return crq;
3153}
3154
3155/**
3156 * ibmvfc_interrupt - Interrupt handler
3157 * @irq: number of irq to handle, not used
3158 * @dev_instance: ibmvfc_host that received interrupt
3159 *
3160 * Returns:
3161 * IRQ_HANDLED
3162 **/
3163static irqreturn_t ibmvfc_interrupt(int irq, void *dev_instance)
3164{
3165 struct ibmvfc_host *vhost = (struct ibmvfc_host *)dev_instance;
Brian King039a0892009-03-20 15:44:35 -05003166 unsigned long flags;
3167
3168 spin_lock_irqsave(vhost->host->host_lock, flags);
3169 vio_disable_interrupts(to_vio_dev(vhost->dev));
3170 tasklet_schedule(&vhost->tasklet);
3171 spin_unlock_irqrestore(vhost->host->host_lock, flags);
3172 return IRQ_HANDLED;
3173}
3174
3175/**
3176 * ibmvfc_tasklet - Interrupt handler tasklet
3177 * @data: ibmvfc host struct
3178 *
3179 * Returns:
3180 * Nothing
3181 **/
3182static void ibmvfc_tasklet(void *data)
3183{
3184 struct ibmvfc_host *vhost = data;
Brian King072b91f2008-07-01 13:14:30 -05003185 struct vio_dev *vdev = to_vio_dev(vhost->dev);
3186 struct ibmvfc_crq *crq;
3187 struct ibmvfc_async_crq *async;
3188 unsigned long flags;
3189 int done = 0;
3190
3191 spin_lock_irqsave(vhost->host->host_lock, flags);
Brian King072b91f2008-07-01 13:14:30 -05003192 while (!done) {
Brian King072b91f2008-07-01 13:14:30 -05003193 /* Pull all the valid messages off the async CRQ */
3194 while ((async = ibmvfc_next_async_crq(vhost)) != NULL) {
3195 ibmvfc_handle_async(async, vhost);
3196 async->valid = 0;
Brian Kingf5832fa2010-04-20 14:21:33 -05003197 wmb();
Brian King072b91f2008-07-01 13:14:30 -05003198 }
3199
Brian Kingf1d7fb72009-06-18 09:06:52 -05003200 /* Pull all the valid messages off the CRQ */
3201 while ((crq = ibmvfc_next_crq(vhost)) != NULL) {
Brian King072b91f2008-07-01 13:14:30 -05003202 ibmvfc_handle_crq(crq, vhost);
3203 crq->valid = 0;
Brian Kingf5832fa2010-04-20 14:21:33 -05003204 wmb();
Brian Kingf1d7fb72009-06-18 09:06:52 -05003205 }
3206
3207 vio_enable_interrupts(vdev);
3208 if ((async = ibmvfc_next_async_crq(vhost)) != NULL) {
Brian King072b91f2008-07-01 13:14:30 -05003209 vio_disable_interrupts(vdev);
3210 ibmvfc_handle_async(async, vhost);
Brian King4081b772008-11-14 13:33:50 -06003211 async->valid = 0;
Brian Kingf5832fa2010-04-20 14:21:33 -05003212 wmb();
Brian Kingf1d7fb72009-06-18 09:06:52 -05003213 } else if ((crq = ibmvfc_next_crq(vhost)) != NULL) {
3214 vio_disable_interrupts(vdev);
3215 ibmvfc_handle_crq(crq, vhost);
3216 crq->valid = 0;
Brian Kingf5832fa2010-04-20 14:21:33 -05003217 wmb();
Brian King072b91f2008-07-01 13:14:30 -05003218 } else
3219 done = 1;
3220 }
3221
3222 spin_unlock_irqrestore(vhost->host->host_lock, flags);
Brian King072b91f2008-07-01 13:14:30 -05003223}
3224
3225/**
3226 * ibmvfc_init_tgt - Set the next init job step for the target
3227 * @tgt: ibmvfc target struct
3228 * @job_step: job step to perform
3229 *
3230 **/
3231static void ibmvfc_init_tgt(struct ibmvfc_target *tgt,
3232 void (*job_step) (struct ibmvfc_target *))
3233{
3234 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_INIT);
3235 tgt->job_step = job_step;
3236 wake_up(&tgt->vhost->work_wait_q);
3237}
3238
3239/**
3240 * ibmvfc_retry_tgt_init - Attempt to retry a step in target initialization
3241 * @tgt: ibmvfc target struct
3242 * @job_step: initialization job step
3243 *
Brian King7d0e4622009-05-28 16:17:26 -05003244 * Returns: 1 if step will be retried / 0 if not
3245 *
Brian King072b91f2008-07-01 13:14:30 -05003246 **/
Brian King7d0e4622009-05-28 16:17:26 -05003247static int ibmvfc_retry_tgt_init(struct ibmvfc_target *tgt,
Brian King072b91f2008-07-01 13:14:30 -05003248 void (*job_step) (struct ibmvfc_target *))
3249{
Brian King1c41fa822008-12-03 11:02:54 -06003250 if (++tgt->init_retries > IBMVFC_MAX_TGT_INIT_RETRIES) {
Brian King072b91f2008-07-01 13:14:30 -05003251 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DEL_RPORT);
3252 wake_up(&tgt->vhost->work_wait_q);
Brian King7d0e4622009-05-28 16:17:26 -05003253 return 0;
Brian King072b91f2008-07-01 13:14:30 -05003254 } else
3255 ibmvfc_init_tgt(tgt, job_step);
Brian King7d0e4622009-05-28 16:17:26 -05003256 return 1;
Brian King072b91f2008-07-01 13:14:30 -05003257}
3258
Brian Kinga3b7aea2009-02-02 18:39:40 -06003259/* Defined in FC-LS */
3260static const struct {
3261 int code;
3262 int retry;
3263 int logged_in;
3264} prli_rsp [] = {
3265 { 0, 1, 0 },
3266 { 1, 0, 1 },
3267 { 2, 1, 0 },
3268 { 3, 1, 0 },
3269 { 4, 0, 0 },
3270 { 5, 0, 0 },
3271 { 6, 0, 1 },
3272 { 7, 0, 0 },
3273 { 8, 1, 0 },
3274};
3275
3276/**
3277 * ibmvfc_get_prli_rsp - Find PRLI response index
3278 * @flags: PRLI response flags
3279 *
3280 **/
3281static int ibmvfc_get_prli_rsp(u16 flags)
3282{
3283 int i;
3284 int code = (flags & 0x0f00) >> 8;
3285
3286 for (i = 0; i < ARRAY_SIZE(prli_rsp); i++)
3287 if (prli_rsp[i].code == code)
3288 return i;
3289
3290 return 0;
3291}
3292
Brian King072b91f2008-07-01 13:14:30 -05003293/**
Brian King072b91f2008-07-01 13:14:30 -05003294 * ibmvfc_tgt_prli_done - Completion handler for Process Login
3295 * @evt: ibmvfc event struct
3296 *
3297 **/
3298static void ibmvfc_tgt_prli_done(struct ibmvfc_event *evt)
3299{
3300 struct ibmvfc_target *tgt = evt->tgt;
3301 struct ibmvfc_host *vhost = evt->vhost;
3302 struct ibmvfc_process_login *rsp = &evt->xfer_iu->prli;
Brian Kinga3b7aea2009-02-02 18:39:40 -06003303 struct ibmvfc_prli_svc_parms *parms = &rsp->parms;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003304 u32 status = be16_to_cpu(rsp->common.status);
Brian King7d0e4622009-05-28 16:17:26 -05003305 int index, level = IBMVFC_DEFAULT_LOG_LEVEL;
Brian King072b91f2008-07-01 13:14:30 -05003306
3307 vhost->discovery_threads--;
3308 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_NONE);
3309 switch (status) {
3310 case IBMVFC_MAD_SUCCESS:
Brian Kinga3b7aea2009-02-02 18:39:40 -06003311 tgt_dbg(tgt, "Process Login succeeded: %X %02X %04X\n",
3312 parms->type, parms->flags, parms->service_parms);
3313
3314 if (parms->type == IBMVFC_SCSI_FCP_TYPE) {
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003315 index = ibmvfc_get_prli_rsp(be16_to_cpu(parms->flags));
Brian Kinga3b7aea2009-02-02 18:39:40 -06003316 if (prli_rsp[index].logged_in) {
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003317 if (be16_to_cpu(parms->flags) & IBMVFC_PRLI_EST_IMG_PAIR) {
Brian Kinga3b7aea2009-02-02 18:39:40 -06003318 tgt->need_login = 0;
3319 tgt->ids.roles = 0;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003320 if (be32_to_cpu(parms->service_parms) & IBMVFC_PRLI_TARGET_FUNC)
Brian Kinga3b7aea2009-02-02 18:39:40 -06003321 tgt->ids.roles |= FC_PORT_ROLE_FCP_TARGET;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003322 if (be32_to_cpu(parms->service_parms) & IBMVFC_PRLI_INITIATOR_FUNC)
Brian Kinga3b7aea2009-02-02 18:39:40 -06003323 tgt->ids.roles |= FC_PORT_ROLE_FCP_INITIATOR;
Brian King43c8da92009-05-28 16:17:28 -05003324 tgt->add_rport = 1;
Brian Kinga3b7aea2009-02-02 18:39:40 -06003325 } else
3326 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DEL_RPORT);
3327 } else if (prli_rsp[index].retry)
3328 ibmvfc_retry_tgt_init(tgt, ibmvfc_tgt_send_prli);
3329 else
3330 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DEL_RPORT);
3331 } else
3332 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DEL_RPORT);
Brian King072b91f2008-07-01 13:14:30 -05003333 break;
3334 case IBMVFC_MAD_DRIVER_FAILED:
3335 break;
3336 case IBMVFC_MAD_CRQ_ERROR:
3337 ibmvfc_retry_tgt_init(tgt, ibmvfc_tgt_send_prli);
3338 break;
3339 case IBMVFC_MAD_FAILED:
3340 default:
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003341 if ((be16_to_cpu(rsp->status) & IBMVFC_VIOS_FAILURE) &&
3342 be16_to_cpu(rsp->error) == IBMVFC_PLOGI_REQUIRED)
Brian King017b2ae2009-06-18 09:06:55 -05003343 level += ibmvfc_retry_tgt_init(tgt, ibmvfc_tgt_send_plogi);
3344 else if (tgt->logo_rcvd)
3345 level += ibmvfc_retry_tgt_init(tgt, ibmvfc_tgt_send_plogi);
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003346 else if (ibmvfc_retry_cmd(be16_to_cpu(rsp->status), be16_to_cpu(rsp->error)))
Brian King7d0e4622009-05-28 16:17:26 -05003347 level += ibmvfc_retry_tgt_init(tgt, ibmvfc_tgt_send_prli);
Brian King10e79492008-10-29 08:46:45 -05003348 else
3349 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DEL_RPORT);
Brian King7d0e4622009-05-28 16:17:26 -05003350
3351 tgt_log(tgt, level, "Process Login failed: %s (%x:%x) rc=0x%02X\n",
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003352 ibmvfc_get_cmd_error(be16_to_cpu(rsp->status), be16_to_cpu(rsp->error)),
Brian King7d0e4622009-05-28 16:17:26 -05003353 rsp->status, rsp->error, status);
Brian King072b91f2008-07-01 13:14:30 -05003354 break;
3355 };
3356
3357 kref_put(&tgt->kref, ibmvfc_release_tgt);
3358 ibmvfc_free_event(evt);
3359 wake_up(&vhost->work_wait_q);
3360}
3361
3362/**
3363 * ibmvfc_tgt_send_prli - Send a process login
3364 * @tgt: ibmvfc target struct
3365 *
3366 **/
3367static void ibmvfc_tgt_send_prli(struct ibmvfc_target *tgt)
3368{
3369 struct ibmvfc_process_login *prli;
3370 struct ibmvfc_host *vhost = tgt->vhost;
3371 struct ibmvfc_event *evt;
3372
3373 if (vhost->discovery_threads >= disc_threads)
3374 return;
3375
3376 kref_get(&tgt->kref);
3377 evt = ibmvfc_get_event(vhost);
3378 vhost->discovery_threads++;
3379 ibmvfc_init_event(evt, ibmvfc_tgt_prli_done, IBMVFC_MAD_FORMAT);
3380 evt->tgt = tgt;
3381 prli = &evt->iu.prli;
3382 memset(prli, 0, sizeof(*prli));
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003383 prli->common.version = cpu_to_be32(1);
3384 prli->common.opcode = cpu_to_be32(IBMVFC_PROCESS_LOGIN);
3385 prli->common.length = cpu_to_be16(sizeof(*prli));
3386 prli->scsi_id = cpu_to_be64(tgt->scsi_id);
Brian King072b91f2008-07-01 13:14:30 -05003387
3388 prli->parms.type = IBMVFC_SCSI_FCP_TYPE;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003389 prli->parms.flags = cpu_to_be16(IBMVFC_PRLI_EST_IMG_PAIR);
3390 prli->parms.service_parms = cpu_to_be32(IBMVFC_PRLI_INITIATOR_FUNC);
Tyrel Datwylerbb5a5052016-08-03 16:36:52 -05003391 prli->parms.service_parms |= cpu_to_be32(IBMVFC_PRLI_READ_FCP_XFER_RDY_DISABLED);
Brian King072b91f2008-07-01 13:14:30 -05003392
Tyrel Datwylera6104b12016-08-03 16:36:53 -05003393 if (cls3_error)
3394 prli->parms.service_parms |= cpu_to_be32(IBMVFC_PRLI_RETRY);
3395
Brian King072b91f2008-07-01 13:14:30 -05003396 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_INIT_WAIT);
3397 if (ibmvfc_send_event(evt, vhost, default_timeout)) {
3398 vhost->discovery_threads--;
3399 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_NONE);
3400 kref_put(&tgt->kref, ibmvfc_release_tgt);
3401 } else
3402 tgt_dbg(tgt, "Sent process login\n");
3403}
3404
3405/**
3406 * ibmvfc_tgt_plogi_done - Completion handler for Port Login
3407 * @evt: ibmvfc event struct
3408 *
3409 **/
3410static void ibmvfc_tgt_plogi_done(struct ibmvfc_event *evt)
3411{
3412 struct ibmvfc_target *tgt = evt->tgt;
3413 struct ibmvfc_host *vhost = evt->vhost;
3414 struct ibmvfc_port_login *rsp = &evt->xfer_iu->plogi;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003415 u32 status = be16_to_cpu(rsp->common.status);
Brian King7d0e4622009-05-28 16:17:26 -05003416 int level = IBMVFC_DEFAULT_LOG_LEVEL;
Brian King072b91f2008-07-01 13:14:30 -05003417
3418 vhost->discovery_threads--;
3419 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_NONE);
3420 switch (status) {
3421 case IBMVFC_MAD_SUCCESS:
3422 tgt_dbg(tgt, "Port Login succeeded\n");
3423 if (tgt->ids.port_name &&
3424 tgt->ids.port_name != wwn_to_u64(rsp->service_parms.port_name)) {
3425 vhost->reinit = 1;
3426 tgt_dbg(tgt, "Port re-init required\n");
3427 break;
3428 }
3429 tgt->ids.node_name = wwn_to_u64(rsp->service_parms.node_name);
3430 tgt->ids.port_name = wwn_to_u64(rsp->service_parms.port_name);
3431 tgt->ids.port_id = tgt->scsi_id;
Brian King072b91f2008-07-01 13:14:30 -05003432 memcpy(&tgt->service_parms, &rsp->service_parms,
3433 sizeof(tgt->service_parms));
3434 memcpy(&tgt->service_parms_change, &rsp->service_parms_change,
3435 sizeof(tgt->service_parms_change));
3436 ibmvfc_init_tgt(tgt, ibmvfc_tgt_send_prli);
3437 break;
3438 case IBMVFC_MAD_DRIVER_FAILED:
3439 break;
3440 case IBMVFC_MAD_CRQ_ERROR:
3441 ibmvfc_retry_tgt_init(tgt, ibmvfc_tgt_send_plogi);
3442 break;
3443 case IBMVFC_MAD_FAILED:
3444 default:
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003445 if (ibmvfc_retry_cmd(be16_to_cpu(rsp->status), be16_to_cpu(rsp->error)))
Brian King7d0e4622009-05-28 16:17:26 -05003446 level += ibmvfc_retry_tgt_init(tgt, ibmvfc_tgt_send_plogi);
3447 else
3448 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DEL_RPORT);
3449
3450 tgt_log(tgt, level, "Port Login failed: %s (%x:%x) %s (%x) %s (%x) rc=0x%02X\n",
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003451 ibmvfc_get_cmd_error(be16_to_cpu(rsp->status), be16_to_cpu(rsp->error)), rsp->status, rsp->error,
3452 ibmvfc_get_fc_type(be16_to_cpu(rsp->fc_type)), rsp->fc_type,
3453 ibmvfc_get_ls_explain(be16_to_cpu(rsp->fc_explain)), rsp->fc_explain, status);
Brian King072b91f2008-07-01 13:14:30 -05003454 break;
3455 };
3456
3457 kref_put(&tgt->kref, ibmvfc_release_tgt);
3458 ibmvfc_free_event(evt);
3459 wake_up(&vhost->work_wait_q);
3460}
3461
3462/**
3463 * ibmvfc_tgt_send_plogi - Send PLOGI to the specified target
3464 * @tgt: ibmvfc target struct
3465 *
3466 **/
3467static void ibmvfc_tgt_send_plogi(struct ibmvfc_target *tgt)
3468{
3469 struct ibmvfc_port_login *plogi;
3470 struct ibmvfc_host *vhost = tgt->vhost;
3471 struct ibmvfc_event *evt;
3472
3473 if (vhost->discovery_threads >= disc_threads)
3474 return;
3475
3476 kref_get(&tgt->kref);
Brian King017b2ae2009-06-18 09:06:55 -05003477 tgt->logo_rcvd = 0;
Brian King072b91f2008-07-01 13:14:30 -05003478 evt = ibmvfc_get_event(vhost);
3479 vhost->discovery_threads++;
3480 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_INIT_WAIT);
3481 ibmvfc_init_event(evt, ibmvfc_tgt_plogi_done, IBMVFC_MAD_FORMAT);
3482 evt->tgt = tgt;
3483 plogi = &evt->iu.plogi;
3484 memset(plogi, 0, sizeof(*plogi));
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003485 plogi->common.version = cpu_to_be32(1);
3486 plogi->common.opcode = cpu_to_be32(IBMVFC_PORT_LOGIN);
3487 plogi->common.length = cpu_to_be16(sizeof(*plogi));
3488 plogi->scsi_id = cpu_to_be64(tgt->scsi_id);
Brian King072b91f2008-07-01 13:14:30 -05003489
3490 if (ibmvfc_send_event(evt, vhost, default_timeout)) {
3491 vhost->discovery_threads--;
3492 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_NONE);
3493 kref_put(&tgt->kref, ibmvfc_release_tgt);
3494 } else
3495 tgt_dbg(tgt, "Sent port login\n");
3496}
3497
3498/**
3499 * ibmvfc_tgt_implicit_logout_done - Completion handler for Implicit Logout MAD
3500 * @evt: ibmvfc event struct
3501 *
3502 **/
3503static void ibmvfc_tgt_implicit_logout_done(struct ibmvfc_event *evt)
3504{
3505 struct ibmvfc_target *tgt = evt->tgt;
3506 struct ibmvfc_host *vhost = evt->vhost;
3507 struct ibmvfc_implicit_logout *rsp = &evt->xfer_iu->implicit_logout;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003508 u32 status = be16_to_cpu(rsp->common.status);
Brian King072b91f2008-07-01 13:14:30 -05003509
3510 vhost->discovery_threads--;
3511 ibmvfc_free_event(evt);
3512 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_NONE);
3513
3514 switch (status) {
3515 case IBMVFC_MAD_SUCCESS:
3516 tgt_dbg(tgt, "Implicit Logout succeeded\n");
3517 break;
3518 case IBMVFC_MAD_DRIVER_FAILED:
3519 kref_put(&tgt->kref, ibmvfc_release_tgt);
3520 wake_up(&vhost->work_wait_q);
3521 return;
3522 case IBMVFC_MAD_FAILED:
3523 default:
3524 tgt_err(tgt, "Implicit Logout failed: rc=0x%02X\n", status);
3525 break;
3526 };
3527
3528 if (vhost->action == IBMVFC_HOST_ACTION_TGT_INIT)
3529 ibmvfc_init_tgt(tgt, ibmvfc_tgt_send_plogi);
3530 else if (vhost->action == IBMVFC_HOST_ACTION_QUERY_TGTS &&
3531 tgt->scsi_id != tgt->new_scsi_id)
3532 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DEL_RPORT);
3533 kref_put(&tgt->kref, ibmvfc_release_tgt);
3534 wake_up(&vhost->work_wait_q);
3535}
3536
3537/**
3538 * ibmvfc_tgt_implicit_logout - Initiate an Implicit Logout for specified target
3539 * @tgt: ibmvfc target struct
3540 *
3541 **/
3542static void ibmvfc_tgt_implicit_logout(struct ibmvfc_target *tgt)
3543{
3544 struct ibmvfc_implicit_logout *mad;
3545 struct ibmvfc_host *vhost = tgt->vhost;
3546 struct ibmvfc_event *evt;
3547
3548 if (vhost->discovery_threads >= disc_threads)
3549 return;
3550
3551 kref_get(&tgt->kref);
3552 evt = ibmvfc_get_event(vhost);
3553 vhost->discovery_threads++;
3554 ibmvfc_init_event(evt, ibmvfc_tgt_implicit_logout_done, IBMVFC_MAD_FORMAT);
3555 evt->tgt = tgt;
3556 mad = &evt->iu.implicit_logout;
3557 memset(mad, 0, sizeof(*mad));
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003558 mad->common.version = cpu_to_be32(1);
3559 mad->common.opcode = cpu_to_be32(IBMVFC_IMPLICIT_LOGOUT);
3560 mad->common.length = cpu_to_be16(sizeof(*mad));
3561 mad->old_scsi_id = cpu_to_be64(tgt->scsi_id);
Brian King072b91f2008-07-01 13:14:30 -05003562
3563 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_INIT_WAIT);
3564 if (ibmvfc_send_event(evt, vhost, default_timeout)) {
3565 vhost->discovery_threads--;
3566 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_NONE);
3567 kref_put(&tgt->kref, ibmvfc_release_tgt);
3568 } else
3569 tgt_dbg(tgt, "Sent Implicit Logout\n");
3570}
3571
3572/**
Brian King989b8542008-07-22 08:31:47 -05003573 * ibmvfc_adisc_needs_plogi - Does device need PLOGI?
3574 * @mad: ibmvfc passthru mad struct
3575 * @tgt: ibmvfc target struct
3576 *
3577 * Returns:
3578 * 1 if PLOGI needed / 0 if PLOGI not needed
3579 **/
3580static int ibmvfc_adisc_needs_plogi(struct ibmvfc_passthru_mad *mad,
3581 struct ibmvfc_target *tgt)
3582{
3583 if (memcmp(&mad->fc_iu.response[2], &tgt->ids.port_name,
3584 sizeof(tgt->ids.port_name)))
3585 return 1;
3586 if (memcmp(&mad->fc_iu.response[4], &tgt->ids.node_name,
3587 sizeof(tgt->ids.node_name)))
3588 return 1;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003589 if (be32_to_cpu(mad->fc_iu.response[6]) != tgt->scsi_id)
Brian King989b8542008-07-22 08:31:47 -05003590 return 1;
3591 return 0;
3592}
3593
3594/**
3595 * ibmvfc_tgt_adisc_done - Completion handler for ADISC
3596 * @evt: ibmvfc event struct
3597 *
3598 **/
3599static void ibmvfc_tgt_adisc_done(struct ibmvfc_event *evt)
3600{
3601 struct ibmvfc_target *tgt = evt->tgt;
3602 struct ibmvfc_host *vhost = evt->vhost;
3603 struct ibmvfc_passthru_mad *mad = &evt->xfer_iu->passthru;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003604 u32 status = be16_to_cpu(mad->common.status);
Brian King989b8542008-07-22 08:31:47 -05003605 u8 fc_reason, fc_explain;
3606
3607 vhost->discovery_threads--;
3608 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_NONE);
Brian King10501e12009-03-20 15:44:39 -05003609 del_timer(&tgt->timer);
Brian King989b8542008-07-22 08:31:47 -05003610
3611 switch (status) {
3612 case IBMVFC_MAD_SUCCESS:
3613 tgt_dbg(tgt, "ADISC succeeded\n");
3614 if (ibmvfc_adisc_needs_plogi(mad, tgt))
Brian King5e471672009-05-28 16:17:32 -05003615 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DEL_RPORT);
Brian King989b8542008-07-22 08:31:47 -05003616 break;
3617 case IBMVFC_MAD_DRIVER_FAILED:
3618 break;
3619 case IBMVFC_MAD_FAILED:
3620 default:
Brian King5e471672009-05-28 16:17:32 -05003621 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DEL_RPORT);
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003622 fc_reason = (be32_to_cpu(mad->fc_iu.response[1]) & 0x00ff0000) >> 16;
3623 fc_explain = (be32_to_cpu(mad->fc_iu.response[1]) & 0x0000ff00) >> 8;
Brian King989b8542008-07-22 08:31:47 -05003624 tgt_info(tgt, "ADISC failed: %s (%x:%x) %s (%x) %s (%x) rc=0x%02X\n",
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003625 ibmvfc_get_cmd_error(be16_to_cpu(mad->iu.status), be16_to_cpu(mad->iu.error)),
Brian King989b8542008-07-22 08:31:47 -05003626 mad->iu.status, mad->iu.error,
3627 ibmvfc_get_fc_type(fc_reason), fc_reason,
3628 ibmvfc_get_ls_explain(fc_explain), fc_explain, status);
3629 break;
3630 };
3631
3632 kref_put(&tgt->kref, ibmvfc_release_tgt);
3633 ibmvfc_free_event(evt);
3634 wake_up(&vhost->work_wait_q);
3635}
3636
3637/**
3638 * ibmvfc_init_passthru - Initialize an event struct for FC passthru
3639 * @evt: ibmvfc event struct
3640 *
3641 **/
3642static void ibmvfc_init_passthru(struct ibmvfc_event *evt)
3643{
3644 struct ibmvfc_passthru_mad *mad = &evt->iu.passthru;
3645
3646 memset(mad, 0, sizeof(*mad));
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003647 mad->common.version = cpu_to_be32(1);
3648 mad->common.opcode = cpu_to_be32(IBMVFC_PASSTHRU);
3649 mad->common.length = cpu_to_be16(sizeof(*mad) - sizeof(mad->fc_iu) - sizeof(mad->iu));
3650 mad->cmd_ioba.va = cpu_to_be64((u64)be64_to_cpu(evt->crq.ioba) +
3651 offsetof(struct ibmvfc_passthru_mad, iu));
3652 mad->cmd_ioba.len = cpu_to_be32(sizeof(mad->iu));
3653 mad->iu.cmd_len = cpu_to_be32(sizeof(mad->fc_iu.payload));
3654 mad->iu.rsp_len = cpu_to_be32(sizeof(mad->fc_iu.response));
3655 mad->iu.cmd.va = cpu_to_be64((u64)be64_to_cpu(evt->crq.ioba) +
Brian King989b8542008-07-22 08:31:47 -05003656 offsetof(struct ibmvfc_passthru_mad, fc_iu) +
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003657 offsetof(struct ibmvfc_passthru_fc_iu, payload));
3658 mad->iu.cmd.len = cpu_to_be32(sizeof(mad->fc_iu.payload));
3659 mad->iu.rsp.va = cpu_to_be64((u64)be64_to_cpu(evt->crq.ioba) +
Brian King989b8542008-07-22 08:31:47 -05003660 offsetof(struct ibmvfc_passthru_mad, fc_iu) +
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003661 offsetof(struct ibmvfc_passthru_fc_iu, response));
3662 mad->iu.rsp.len = cpu_to_be32(sizeof(mad->fc_iu.response));
Brian King989b8542008-07-22 08:31:47 -05003663}
3664
3665/**
Brian King10501e12009-03-20 15:44:39 -05003666 * ibmvfc_tgt_adisc_cancel_done - Completion handler when cancelling an ADISC
3667 * @evt: ibmvfc event struct
3668 *
3669 * Just cleanup this event struct. Everything else is handled by
3670 * the ADISC completion handler. If the ADISC never actually comes
3671 * back, we still have the timer running on the ADISC event struct
3672 * which will fire and cause the CRQ to get reset.
3673 *
3674 **/
3675static void ibmvfc_tgt_adisc_cancel_done(struct ibmvfc_event *evt)
3676{
3677 struct ibmvfc_host *vhost = evt->vhost;
3678 struct ibmvfc_target *tgt = evt->tgt;
3679
3680 tgt_dbg(tgt, "ADISC cancel complete\n");
3681 vhost->abort_threads--;
3682 ibmvfc_free_event(evt);
3683 kref_put(&tgt->kref, ibmvfc_release_tgt);
3684 wake_up(&vhost->work_wait_q);
3685}
3686
3687/**
3688 * ibmvfc_adisc_timeout - Handle an ADISC timeout
3689 * @tgt: ibmvfc target struct
3690 *
3691 * If an ADISC times out, send a cancel. If the cancel times
3692 * out, reset the CRQ. When the ADISC comes back as cancelled,
3693 * log back into the target.
3694 **/
3695static void ibmvfc_adisc_timeout(struct ibmvfc_target *tgt)
3696{
3697 struct ibmvfc_host *vhost = tgt->vhost;
3698 struct ibmvfc_event *evt;
3699 struct ibmvfc_tmf *tmf;
3700 unsigned long flags;
3701 int rc;
3702
3703 tgt_dbg(tgt, "ADISC timeout\n");
3704 spin_lock_irqsave(vhost->host->host_lock, flags);
3705 if (vhost->abort_threads >= disc_threads ||
3706 tgt->action != IBMVFC_TGT_ACTION_INIT_WAIT ||
3707 vhost->state != IBMVFC_INITIALIZING ||
3708 vhost->action != IBMVFC_HOST_ACTION_QUERY_TGTS) {
3709 spin_unlock_irqrestore(vhost->host->host_lock, flags);
3710 return;
3711 }
3712
3713 vhost->abort_threads++;
3714 kref_get(&tgt->kref);
3715 evt = ibmvfc_get_event(vhost);
3716 ibmvfc_init_event(evt, ibmvfc_tgt_adisc_cancel_done, IBMVFC_MAD_FORMAT);
3717
3718 evt->tgt = tgt;
3719 tmf = &evt->iu.tmf;
3720 memset(tmf, 0, sizeof(*tmf));
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003721 tmf->common.version = cpu_to_be32(1);
3722 tmf->common.opcode = cpu_to_be32(IBMVFC_TMF_MAD);
3723 tmf->common.length = cpu_to_be16(sizeof(*tmf));
3724 tmf->scsi_id = cpu_to_be64(tgt->scsi_id);
3725 tmf->cancel_key = cpu_to_be32(tgt->cancel_key);
Brian King10501e12009-03-20 15:44:39 -05003726
3727 rc = ibmvfc_send_event(evt, vhost, default_timeout);
3728
3729 if (rc) {
3730 tgt_err(tgt, "Failed to send cancel event for ADISC. rc=%d\n", rc);
3731 vhost->abort_threads--;
3732 kref_put(&tgt->kref, ibmvfc_release_tgt);
3733 __ibmvfc_reset_host(vhost);
3734 } else
3735 tgt_dbg(tgt, "Attempting to cancel ADISC\n");
3736 spin_unlock_irqrestore(vhost->host->host_lock, flags);
3737}
3738
3739/**
Brian King989b8542008-07-22 08:31:47 -05003740 * ibmvfc_tgt_adisc - Initiate an ADISC for specified target
3741 * @tgt: ibmvfc target struct
3742 *
Brian King10501e12009-03-20 15:44:39 -05003743 * When sending an ADISC we end up with two timers running. The
3744 * first timer is the timer in the ibmvfc target struct. If this
3745 * fires, we send a cancel to the target. The second timer is the
3746 * timer on the ibmvfc event for the ADISC, which is longer. If that
3747 * fires, it means the ADISC timed out and our attempt to cancel it
3748 * also failed, so we need to reset the CRQ.
Brian King989b8542008-07-22 08:31:47 -05003749 **/
3750static void ibmvfc_tgt_adisc(struct ibmvfc_target *tgt)
3751{
3752 struct ibmvfc_passthru_mad *mad;
3753 struct ibmvfc_host *vhost = tgt->vhost;
3754 struct ibmvfc_event *evt;
3755
3756 if (vhost->discovery_threads >= disc_threads)
3757 return;
3758
3759 kref_get(&tgt->kref);
3760 evt = ibmvfc_get_event(vhost);
3761 vhost->discovery_threads++;
3762 ibmvfc_init_event(evt, ibmvfc_tgt_adisc_done, IBMVFC_MAD_FORMAT);
3763 evt->tgt = tgt;
3764
3765 ibmvfc_init_passthru(evt);
3766 mad = &evt->iu.passthru;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003767 mad->iu.flags = cpu_to_be32(IBMVFC_FC_ELS);
3768 mad->iu.scsi_id = cpu_to_be64(tgt->scsi_id);
3769 mad->iu.cancel_key = cpu_to_be32(tgt->cancel_key);
Brian King989b8542008-07-22 08:31:47 -05003770
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003771 mad->fc_iu.payload[0] = cpu_to_be32(IBMVFC_ADISC);
Brian King989b8542008-07-22 08:31:47 -05003772 memcpy(&mad->fc_iu.payload[2], &vhost->login_buf->resp.port_name,
3773 sizeof(vhost->login_buf->resp.port_name));
3774 memcpy(&mad->fc_iu.payload[4], &vhost->login_buf->resp.node_name,
3775 sizeof(vhost->login_buf->resp.node_name));
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003776 mad->fc_iu.payload[6] = cpu_to_be32(be64_to_cpu(vhost->login_buf->resp.scsi_id) & 0x00ffffff);
Brian King989b8542008-07-22 08:31:47 -05003777
Brian King10501e12009-03-20 15:44:39 -05003778 if (timer_pending(&tgt->timer))
3779 mod_timer(&tgt->timer, jiffies + (IBMVFC_ADISC_TIMEOUT * HZ));
3780 else {
3781 tgt->timer.data = (unsigned long) tgt;
3782 tgt->timer.expires = jiffies + (IBMVFC_ADISC_TIMEOUT * HZ);
3783 tgt->timer.function = (void (*)(unsigned long))ibmvfc_adisc_timeout;
3784 add_timer(&tgt->timer);
3785 }
3786
Brian King989b8542008-07-22 08:31:47 -05003787 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_INIT_WAIT);
Brian King10501e12009-03-20 15:44:39 -05003788 if (ibmvfc_send_event(evt, vhost, IBMVFC_ADISC_PLUS_CANCEL_TIMEOUT)) {
Brian King989b8542008-07-22 08:31:47 -05003789 vhost->discovery_threads--;
Brian King10501e12009-03-20 15:44:39 -05003790 del_timer(&tgt->timer);
Brian King989b8542008-07-22 08:31:47 -05003791 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_NONE);
3792 kref_put(&tgt->kref, ibmvfc_release_tgt);
3793 } else
3794 tgt_dbg(tgt, "Sent ADISC\n");
3795}
3796
3797/**
Brian King072b91f2008-07-01 13:14:30 -05003798 * ibmvfc_tgt_query_target_done - Completion handler for Query Target MAD
3799 * @evt: ibmvfc event struct
3800 *
3801 **/
3802static void ibmvfc_tgt_query_target_done(struct ibmvfc_event *evt)
3803{
3804 struct ibmvfc_target *tgt = evt->tgt;
3805 struct ibmvfc_host *vhost = evt->vhost;
3806 struct ibmvfc_query_tgt *rsp = &evt->xfer_iu->query_tgt;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003807 u32 status = be16_to_cpu(rsp->common.status);
Brian King7d0e4622009-05-28 16:17:26 -05003808 int level = IBMVFC_DEFAULT_LOG_LEVEL;
Brian King072b91f2008-07-01 13:14:30 -05003809
3810 vhost->discovery_threads--;
3811 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_NONE);
3812 switch (status) {
3813 case IBMVFC_MAD_SUCCESS:
3814 tgt_dbg(tgt, "Query Target succeeded\n");
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003815 tgt->new_scsi_id = be64_to_cpu(rsp->scsi_id);
3816 if (be64_to_cpu(rsp->scsi_id) != tgt->scsi_id)
Brian King072b91f2008-07-01 13:14:30 -05003817 ibmvfc_init_tgt(tgt, ibmvfc_tgt_implicit_logout);
Brian King989b8542008-07-22 08:31:47 -05003818 else
3819 ibmvfc_init_tgt(tgt, ibmvfc_tgt_adisc);
Brian King072b91f2008-07-01 13:14:30 -05003820 break;
3821 case IBMVFC_MAD_DRIVER_FAILED:
3822 break;
3823 case IBMVFC_MAD_CRQ_ERROR:
3824 ibmvfc_retry_tgt_init(tgt, ibmvfc_tgt_query_target);
3825 break;
3826 case IBMVFC_MAD_FAILED:
3827 default:
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003828 if ((be16_to_cpu(rsp->status) & IBMVFC_FABRIC_MAPPED) == IBMVFC_FABRIC_MAPPED &&
3829 be16_to_cpu(rsp->error) == IBMVFC_UNABLE_TO_PERFORM_REQ &&
3830 be16_to_cpu(rsp->fc_explain) == IBMVFC_PORT_NAME_NOT_REG)
Brian King072b91f2008-07-01 13:14:30 -05003831 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DEL_RPORT);
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003832 else if (ibmvfc_retry_cmd(be16_to_cpu(rsp->status), be16_to_cpu(rsp->error)))
Brian King7d0e4622009-05-28 16:17:26 -05003833 level += ibmvfc_retry_tgt_init(tgt, ibmvfc_tgt_query_target);
Brian King10e79492008-10-29 08:46:45 -05003834 else
3835 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DEL_RPORT);
Brian King7d0e4622009-05-28 16:17:26 -05003836
3837 tgt_log(tgt, level, "Query Target failed: %s (%x:%x) %s (%x) %s (%x) rc=0x%02X\n",
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003838 ibmvfc_get_cmd_error(be16_to_cpu(rsp->status), be16_to_cpu(rsp->error)),
3839 rsp->status, rsp->error, ibmvfc_get_fc_type(be16_to_cpu(rsp->fc_type)),
3840 rsp->fc_type, ibmvfc_get_gs_explain(be16_to_cpu(rsp->fc_explain)),
3841 rsp->fc_explain, status);
Brian King072b91f2008-07-01 13:14:30 -05003842 break;
3843 };
3844
3845 kref_put(&tgt->kref, ibmvfc_release_tgt);
3846 ibmvfc_free_event(evt);
3847 wake_up(&vhost->work_wait_q);
3848}
3849
3850/**
3851 * ibmvfc_tgt_query_target - Initiate a Query Target for specified target
3852 * @tgt: ibmvfc target struct
3853 *
3854 **/
3855static void ibmvfc_tgt_query_target(struct ibmvfc_target *tgt)
3856{
3857 struct ibmvfc_query_tgt *query_tgt;
3858 struct ibmvfc_host *vhost = tgt->vhost;
3859 struct ibmvfc_event *evt;
3860
3861 if (vhost->discovery_threads >= disc_threads)
3862 return;
3863
3864 kref_get(&tgt->kref);
3865 evt = ibmvfc_get_event(vhost);
3866 vhost->discovery_threads++;
3867 evt->tgt = tgt;
3868 ibmvfc_init_event(evt, ibmvfc_tgt_query_target_done, IBMVFC_MAD_FORMAT);
3869 query_tgt = &evt->iu.query_tgt;
3870 memset(query_tgt, 0, sizeof(*query_tgt));
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003871 query_tgt->common.version = cpu_to_be32(1);
3872 query_tgt->common.opcode = cpu_to_be32(IBMVFC_QUERY_TARGET);
3873 query_tgt->common.length = cpu_to_be16(sizeof(*query_tgt));
3874 query_tgt->wwpn = cpu_to_be64(tgt->ids.port_name);
Brian King072b91f2008-07-01 13:14:30 -05003875
3876 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_INIT_WAIT);
3877 if (ibmvfc_send_event(evt, vhost, default_timeout)) {
3878 vhost->discovery_threads--;
3879 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_NONE);
3880 kref_put(&tgt->kref, ibmvfc_release_tgt);
3881 } else
3882 tgt_dbg(tgt, "Sent Query Target\n");
3883}
3884
3885/**
3886 * ibmvfc_alloc_target - Allocate and initialize an ibmvfc target
3887 * @vhost: ibmvfc host struct
3888 * @scsi_id: SCSI ID to allocate target for
3889 *
3890 * Returns:
3891 * 0 on success / other on failure
3892 **/
3893static int ibmvfc_alloc_target(struct ibmvfc_host *vhost, u64 scsi_id)
3894{
3895 struct ibmvfc_target *tgt;
3896 unsigned long flags;
3897
3898 spin_lock_irqsave(vhost->host->host_lock, flags);
3899 list_for_each_entry(tgt, &vhost->targets, queue) {
3900 if (tgt->scsi_id == scsi_id) {
3901 if (tgt->need_login)
3902 ibmvfc_init_tgt(tgt, ibmvfc_tgt_implicit_logout);
3903 goto unlock_out;
3904 }
3905 }
3906 spin_unlock_irqrestore(vhost->host->host_lock, flags);
3907
Brian King7270b9b2009-05-28 16:17:24 -05003908 tgt = mempool_alloc(vhost->tgt_pool, GFP_NOIO);
Brian King072b91f2008-07-01 13:14:30 -05003909 if (!tgt) {
Stephen Rothwell775a42e2009-01-06 14:59:00 +00003910 dev_err(vhost->dev, "Target allocation failure for scsi id %08llx\n",
Brian King072b91f2008-07-01 13:14:30 -05003911 scsi_id);
3912 return -ENOMEM;
3913 }
3914
Brian King0883e3b2009-02-04 16:13:12 -06003915 memset(tgt, 0, sizeof(*tgt));
Brian King072b91f2008-07-01 13:14:30 -05003916 tgt->scsi_id = scsi_id;
3917 tgt->new_scsi_id = scsi_id;
3918 tgt->vhost = vhost;
3919 tgt->need_login = 1;
Brian King10501e12009-03-20 15:44:39 -05003920 tgt->cancel_key = vhost->task_set++;
3921 init_timer(&tgt->timer);
Brian King072b91f2008-07-01 13:14:30 -05003922 kref_init(&tgt->kref);
3923 ibmvfc_init_tgt(tgt, ibmvfc_tgt_implicit_logout);
3924 spin_lock_irqsave(vhost->host->host_lock, flags);
3925 list_add_tail(&tgt->queue, &vhost->targets);
3926
3927unlock_out:
3928 spin_unlock_irqrestore(vhost->host->host_lock, flags);
3929 return 0;
3930}
3931
3932/**
3933 * ibmvfc_alloc_targets - Allocate and initialize ibmvfc targets
3934 * @vhost: ibmvfc host struct
3935 *
3936 * Returns:
3937 * 0 on success / other on failure
3938 **/
3939static int ibmvfc_alloc_targets(struct ibmvfc_host *vhost)
3940{
3941 int i, rc;
3942
3943 for (i = 0, rc = 0; !rc && i < vhost->num_targets; i++)
3944 rc = ibmvfc_alloc_target(vhost,
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003945 be32_to_cpu(vhost->disc_buf->scsi_id[i]) &
3946 IBMVFC_DISC_TGT_SCSI_ID_MASK);
Brian King072b91f2008-07-01 13:14:30 -05003947
3948 return rc;
3949}
3950
3951/**
3952 * ibmvfc_discover_targets_done - Completion handler for discover targets MAD
3953 * @evt: ibmvfc event struct
3954 *
3955 **/
3956static void ibmvfc_discover_targets_done(struct ibmvfc_event *evt)
3957{
3958 struct ibmvfc_host *vhost = evt->vhost;
3959 struct ibmvfc_discover_targets *rsp = &evt->xfer_iu->discover_targets;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003960 u32 mad_status = be16_to_cpu(rsp->common.status);
Brian King7d0e4622009-05-28 16:17:26 -05003961 int level = IBMVFC_DEFAULT_LOG_LEVEL;
Brian King072b91f2008-07-01 13:14:30 -05003962
3963 switch (mad_status) {
3964 case IBMVFC_MAD_SUCCESS:
3965 ibmvfc_dbg(vhost, "Discover Targets succeeded\n");
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003966 vhost->num_targets = be32_to_cpu(rsp->num_written);
Brian King072b91f2008-07-01 13:14:30 -05003967 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_ALLOC_TGTS);
3968 break;
3969 case IBMVFC_MAD_FAILED:
Brian King7d0e4622009-05-28 16:17:26 -05003970 level += ibmvfc_retry_host_init(vhost);
3971 ibmvfc_log(vhost, level, "Discover Targets failed: %s (%x:%x)\n",
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003972 ibmvfc_get_cmd_error(be16_to_cpu(rsp->status), be16_to_cpu(rsp->error)),
3973 rsp->status, rsp->error);
Brian King072b91f2008-07-01 13:14:30 -05003974 break;
3975 case IBMVFC_MAD_DRIVER_FAILED:
3976 break;
3977 default:
3978 dev_err(vhost->dev, "Invalid Discover Targets response: 0x%x\n", mad_status);
3979 ibmvfc_link_down(vhost, IBMVFC_LINK_DEAD);
3980 break;
3981 }
3982
3983 ibmvfc_free_event(evt);
3984 wake_up(&vhost->work_wait_q);
3985}
3986
3987/**
3988 * ibmvfc_discover_targets - Send Discover Targets MAD
3989 * @vhost: ibmvfc host struct
3990 *
3991 **/
3992static void ibmvfc_discover_targets(struct ibmvfc_host *vhost)
3993{
3994 struct ibmvfc_discover_targets *mad;
3995 struct ibmvfc_event *evt = ibmvfc_get_event(vhost);
3996
3997 ibmvfc_init_event(evt, ibmvfc_discover_targets_done, IBMVFC_MAD_FORMAT);
3998 mad = &evt->iu.discover_targets;
3999 memset(mad, 0, sizeof(*mad));
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05004000 mad->common.version = cpu_to_be32(1);
4001 mad->common.opcode = cpu_to_be32(IBMVFC_DISC_TARGETS);
4002 mad->common.length = cpu_to_be16(sizeof(*mad));
4003 mad->bufflen = cpu_to_be32(vhost->disc_buf_sz);
4004 mad->buffer.va = cpu_to_be64(vhost->disc_buf_dma);
4005 mad->buffer.len = cpu_to_be32(vhost->disc_buf_sz);
Brian King072b91f2008-07-01 13:14:30 -05004006 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_INIT_WAIT);
4007
4008 if (!ibmvfc_send_event(evt, vhost, default_timeout))
4009 ibmvfc_dbg(vhost, "Sent discover targets\n");
4010 else
4011 ibmvfc_link_down(vhost, IBMVFC_LINK_DEAD);
4012}
4013
4014/**
4015 * ibmvfc_npiv_login_done - Completion handler for NPIV Login
4016 * @evt: ibmvfc event struct
4017 *
4018 **/
4019static void ibmvfc_npiv_login_done(struct ibmvfc_event *evt)
4020{
4021 struct ibmvfc_host *vhost = evt->vhost;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05004022 u32 mad_status = be16_to_cpu(evt->xfer_iu->npiv_login.common.status);
Brian King072b91f2008-07-01 13:14:30 -05004023 struct ibmvfc_npiv_login_resp *rsp = &vhost->login_buf->resp;
4024 unsigned int npiv_max_sectors;
Brian King7d0e4622009-05-28 16:17:26 -05004025 int level = IBMVFC_DEFAULT_LOG_LEVEL;
Brian King072b91f2008-07-01 13:14:30 -05004026
4027 switch (mad_status) {
4028 case IBMVFC_MAD_SUCCESS:
4029 ibmvfc_free_event(evt);
4030 break;
4031 case IBMVFC_MAD_FAILED:
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05004032 if (ibmvfc_retry_cmd(be16_to_cpu(rsp->status), be16_to_cpu(rsp->error)))
Brian King7d0e4622009-05-28 16:17:26 -05004033 level += ibmvfc_retry_host_init(vhost);
Brian King072b91f2008-07-01 13:14:30 -05004034 else
4035 ibmvfc_link_down(vhost, IBMVFC_LINK_DEAD);
Brian King7d0e4622009-05-28 16:17:26 -05004036 ibmvfc_log(vhost, level, "NPIV Login failed: %s (%x:%x)\n",
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05004037 ibmvfc_get_cmd_error(be16_to_cpu(rsp->status), be16_to_cpu(rsp->error)),
4038 rsp->status, rsp->error);
Brian King072b91f2008-07-01 13:14:30 -05004039 ibmvfc_free_event(evt);
4040 return;
4041 case IBMVFC_MAD_CRQ_ERROR:
4042 ibmvfc_retry_host_init(vhost);
4043 case IBMVFC_MAD_DRIVER_FAILED:
4044 ibmvfc_free_event(evt);
4045 return;
4046 default:
4047 dev_err(vhost->dev, "Invalid NPIV Login response: 0x%x\n", mad_status);
4048 ibmvfc_link_down(vhost, IBMVFC_LINK_DEAD);
4049 ibmvfc_free_event(evt);
4050 return;
4051 }
4052
4053 vhost->client_migrated = 0;
4054
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05004055 if (!(be32_to_cpu(rsp->flags) & IBMVFC_NATIVE_FC)) {
Brian King072b91f2008-07-01 13:14:30 -05004056 dev_err(vhost->dev, "Virtual adapter does not support FC. %x\n",
4057 rsp->flags);
4058 ibmvfc_link_down(vhost, IBMVFC_LINK_DEAD);
4059 wake_up(&vhost->work_wait_q);
4060 return;
4061 }
4062
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05004063 if (be32_to_cpu(rsp->max_cmds) <= IBMVFC_NUM_INTERNAL_REQ) {
Brian King072b91f2008-07-01 13:14:30 -05004064 dev_err(vhost->dev, "Virtual adapter supported queue depth too small: %d\n",
4065 rsp->max_cmds);
4066 ibmvfc_link_down(vhost, IBMVFC_LINK_DEAD);
4067 wake_up(&vhost->work_wait_q);
4068 return;
4069 }
4070
Brian King79111d02009-05-28 16:17:29 -05004071 vhost->logged_in = 1;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05004072 npiv_max_sectors = min((uint)(be64_to_cpu(rsp->max_dma_len) >> 9), IBMVFC_MAX_SECTORS);
Brian King072b91f2008-07-01 13:14:30 -05004073 dev_info(vhost->dev, "Host partition: %s, device: %s %s %s max sectors %u\n",
4074 rsp->partition_name, rsp->device_name, rsp->port_loc_code,
4075 rsp->drc_name, npiv_max_sectors);
4076
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05004077 fc_host_fabric_name(vhost->host) = be64_to_cpu(rsp->node_name);
4078 fc_host_node_name(vhost->host) = be64_to_cpu(rsp->node_name);
4079 fc_host_port_name(vhost->host) = be64_to_cpu(rsp->port_name);
4080 fc_host_port_id(vhost->host) = be64_to_cpu(rsp->scsi_id);
Brian King072b91f2008-07-01 13:14:30 -05004081 fc_host_port_type(vhost->host) = FC_PORTTYPE_NPIV;
4082 fc_host_supported_classes(vhost->host) = 0;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05004083 if (be32_to_cpu(rsp->service_parms.class1_parms[0]) & 0x80000000)
Brian King072b91f2008-07-01 13:14:30 -05004084 fc_host_supported_classes(vhost->host) |= FC_COS_CLASS1;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05004085 if (be32_to_cpu(rsp->service_parms.class2_parms[0]) & 0x80000000)
Brian King072b91f2008-07-01 13:14:30 -05004086 fc_host_supported_classes(vhost->host) |= FC_COS_CLASS2;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05004087 if (be32_to_cpu(rsp->service_parms.class3_parms[0]) & 0x80000000)
Brian King072b91f2008-07-01 13:14:30 -05004088 fc_host_supported_classes(vhost->host) |= FC_COS_CLASS3;
4089 fc_host_maxframe_size(vhost->host) =
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05004090 be16_to_cpu(rsp->service_parms.common.bb_rcv_sz) & 0x0fff;
Brian King072b91f2008-07-01 13:14:30 -05004091
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05004092 vhost->host->can_queue = be32_to_cpu(rsp->max_cmds) - IBMVFC_NUM_INTERNAL_REQ;
Brian King072b91f2008-07-01 13:14:30 -05004093 vhost->host->max_sectors = npiv_max_sectors;
4094 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_QUERY);
4095 wake_up(&vhost->work_wait_q);
4096}
4097
4098/**
4099 * ibmvfc_npiv_login - Sends NPIV login
4100 * @vhost: ibmvfc host struct
4101 *
4102 **/
4103static void ibmvfc_npiv_login(struct ibmvfc_host *vhost)
4104{
4105 struct ibmvfc_npiv_login_mad *mad;
4106 struct ibmvfc_event *evt = ibmvfc_get_event(vhost);
4107
4108 ibmvfc_gather_partition_info(vhost);
4109 ibmvfc_set_login_info(vhost);
4110 ibmvfc_init_event(evt, ibmvfc_npiv_login_done, IBMVFC_MAD_FORMAT);
4111
4112 memcpy(vhost->login_buf, &vhost->login_info, sizeof(vhost->login_info));
4113 mad = &evt->iu.npiv_login;
4114 memset(mad, 0, sizeof(struct ibmvfc_npiv_login_mad));
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05004115 mad->common.version = cpu_to_be32(1);
4116 mad->common.opcode = cpu_to_be32(IBMVFC_NPIV_LOGIN);
4117 mad->common.length = cpu_to_be16(sizeof(struct ibmvfc_npiv_login_mad));
4118 mad->buffer.va = cpu_to_be64(vhost->login_buf_dma);
4119 mad->buffer.len = cpu_to_be32(sizeof(*vhost->login_buf));
Brian King072b91f2008-07-01 13:14:30 -05004120
Brian King072b91f2008-07-01 13:14:30 -05004121 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_INIT_WAIT);
4122
4123 if (!ibmvfc_send_event(evt, vhost, default_timeout))
4124 ibmvfc_dbg(vhost, "Sent NPIV login\n");
4125 else
4126 ibmvfc_link_down(vhost, IBMVFC_LINK_DEAD);
4127};
4128
4129/**
Brian King79111d02009-05-28 16:17:29 -05004130 * ibmvfc_npiv_logout_done - Completion handler for NPIV Logout
4131 * @vhost: ibmvfc host struct
4132 *
4133 **/
4134static void ibmvfc_npiv_logout_done(struct ibmvfc_event *evt)
4135{
4136 struct ibmvfc_host *vhost = evt->vhost;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05004137 u32 mad_status = be16_to_cpu(evt->xfer_iu->npiv_logout.common.status);
Brian King79111d02009-05-28 16:17:29 -05004138
4139 ibmvfc_free_event(evt);
4140
4141 switch (mad_status) {
4142 case IBMVFC_MAD_SUCCESS:
4143 if (list_empty(&vhost->sent) &&
4144 vhost->action == IBMVFC_HOST_ACTION_LOGO_WAIT) {
Brian King861890c2009-10-19 15:07:49 -05004145 ibmvfc_init_host(vhost);
Brian King79111d02009-05-28 16:17:29 -05004146 return;
4147 }
4148 break;
4149 case IBMVFC_MAD_FAILED:
4150 case IBMVFC_MAD_NOT_SUPPORTED:
4151 case IBMVFC_MAD_CRQ_ERROR:
4152 case IBMVFC_MAD_DRIVER_FAILED:
4153 default:
4154 ibmvfc_dbg(vhost, "NPIV Logout failed. 0x%X\n", mad_status);
4155 break;
4156 }
4157
4158 ibmvfc_hard_reset_host(vhost);
4159}
4160
4161/**
4162 * ibmvfc_npiv_logout - Issue an NPIV Logout
4163 * @vhost: ibmvfc host struct
4164 *
4165 **/
4166static void ibmvfc_npiv_logout(struct ibmvfc_host *vhost)
4167{
4168 struct ibmvfc_npiv_logout_mad *mad;
4169 struct ibmvfc_event *evt;
4170
4171 evt = ibmvfc_get_event(vhost);
4172 ibmvfc_init_event(evt, ibmvfc_npiv_logout_done, IBMVFC_MAD_FORMAT);
4173
4174 mad = &evt->iu.npiv_logout;
4175 memset(mad, 0, sizeof(*mad));
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05004176 mad->common.version = cpu_to_be32(1);
4177 mad->common.opcode = cpu_to_be32(IBMVFC_NPIV_LOGOUT);
4178 mad->common.length = cpu_to_be16(sizeof(struct ibmvfc_npiv_logout_mad));
Brian King79111d02009-05-28 16:17:29 -05004179
4180 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_LOGO_WAIT);
4181
4182 if (!ibmvfc_send_event(evt, vhost, default_timeout))
4183 ibmvfc_dbg(vhost, "Sent NPIV logout\n");
4184 else
4185 ibmvfc_link_down(vhost, IBMVFC_LINK_DEAD);
4186}
4187
4188/**
Brian King072b91f2008-07-01 13:14:30 -05004189 * ibmvfc_dev_init_to_do - Is there target initialization work to do?
4190 * @vhost: ibmvfc host struct
4191 *
4192 * Returns:
4193 * 1 if work to do / 0 if not
4194 **/
4195static int ibmvfc_dev_init_to_do(struct ibmvfc_host *vhost)
4196{
4197 struct ibmvfc_target *tgt;
4198
4199 list_for_each_entry(tgt, &vhost->targets, queue) {
4200 if (tgt->action == IBMVFC_TGT_ACTION_INIT ||
4201 tgt->action == IBMVFC_TGT_ACTION_INIT_WAIT)
4202 return 1;
4203 }
4204
4205 return 0;
4206}
4207
4208/**
4209 * __ibmvfc_work_to_do - Is there task level work to do? (no locking)
4210 * @vhost: ibmvfc host struct
4211 *
4212 * Returns:
4213 * 1 if work to do / 0 if not
4214 **/
4215static int __ibmvfc_work_to_do(struct ibmvfc_host *vhost)
4216{
4217 struct ibmvfc_target *tgt;
4218
4219 if (kthread_should_stop())
4220 return 1;
4221 switch (vhost->action) {
4222 case IBMVFC_HOST_ACTION_NONE:
4223 case IBMVFC_HOST_ACTION_INIT_WAIT:
Brian King79111d02009-05-28 16:17:29 -05004224 case IBMVFC_HOST_ACTION_LOGO_WAIT:
Brian King072b91f2008-07-01 13:14:30 -05004225 return 0;
4226 case IBMVFC_HOST_ACTION_TGT_INIT:
4227 case IBMVFC_HOST_ACTION_QUERY_TGTS:
4228 if (vhost->discovery_threads == disc_threads)
4229 return 0;
4230 list_for_each_entry(tgt, &vhost->targets, queue)
4231 if (tgt->action == IBMVFC_TGT_ACTION_INIT)
4232 return 1;
4233 list_for_each_entry(tgt, &vhost->targets, queue)
4234 if (tgt->action == IBMVFC_TGT_ACTION_INIT_WAIT)
4235 return 0;
4236 return 1;
Brian King79111d02009-05-28 16:17:29 -05004237 case IBMVFC_HOST_ACTION_LOGO:
Brian King072b91f2008-07-01 13:14:30 -05004238 case IBMVFC_HOST_ACTION_INIT:
4239 case IBMVFC_HOST_ACTION_ALLOC_TGTS:
Brian King072b91f2008-07-01 13:14:30 -05004240 case IBMVFC_HOST_ACTION_TGT_DEL:
Brian King10e79492008-10-29 08:46:45 -05004241 case IBMVFC_HOST_ACTION_TGT_DEL_FAILED:
Brian King072b91f2008-07-01 13:14:30 -05004242 case IBMVFC_HOST_ACTION_QUERY:
Brian King73ee5d82010-06-17 13:55:13 -05004243 case IBMVFC_HOST_ACTION_RESET:
4244 case IBMVFC_HOST_ACTION_REENABLE:
Brian King072b91f2008-07-01 13:14:30 -05004245 default:
4246 break;
4247 };
4248
4249 return 1;
4250}
4251
4252/**
4253 * ibmvfc_work_to_do - Is there task level work to do?
4254 * @vhost: ibmvfc host struct
4255 *
4256 * Returns:
4257 * 1 if work to do / 0 if not
4258 **/
4259static int ibmvfc_work_to_do(struct ibmvfc_host *vhost)
4260{
4261 unsigned long flags;
4262 int rc;
4263
4264 spin_lock_irqsave(vhost->host->host_lock, flags);
4265 rc = __ibmvfc_work_to_do(vhost);
4266 spin_unlock_irqrestore(vhost->host->host_lock, flags);
4267 return rc;
4268}
4269
4270/**
4271 * ibmvfc_log_ae - Log async events if necessary
4272 * @vhost: ibmvfc host struct
4273 * @events: events to log
4274 *
4275 **/
4276static void ibmvfc_log_ae(struct ibmvfc_host *vhost, int events)
4277{
4278 if (events & IBMVFC_AE_RSCN)
4279 fc_host_post_event(vhost->host, fc_get_event_number(), FCH_EVT_RSCN, 0);
4280 if ((events & IBMVFC_AE_LINKDOWN) &&
4281 vhost->state >= IBMVFC_HALTED)
4282 fc_host_post_event(vhost->host, fc_get_event_number(), FCH_EVT_LINKDOWN, 0);
4283 if ((events & IBMVFC_AE_LINKUP) &&
4284 vhost->state == IBMVFC_INITIALIZING)
4285 fc_host_post_event(vhost->host, fc_get_event_number(), FCH_EVT_LINKUP, 0);
4286}
4287
4288/**
4289 * ibmvfc_tgt_add_rport - Tell the FC transport about a new remote port
4290 * @tgt: ibmvfc target struct
4291 *
4292 **/
4293static void ibmvfc_tgt_add_rport(struct ibmvfc_target *tgt)
4294{
4295 struct ibmvfc_host *vhost = tgt->vhost;
Brian King43c8da92009-05-28 16:17:28 -05004296 struct fc_rport *rport;
Brian King072b91f2008-07-01 13:14:30 -05004297 unsigned long flags;
4298
4299 tgt_dbg(tgt, "Adding rport\n");
4300 rport = fc_remote_port_add(vhost->host, 0, &tgt->ids);
4301 spin_lock_irqsave(vhost->host->host_lock, flags);
Brian King43c8da92009-05-28 16:17:28 -05004302
4303 if (rport && tgt->action == IBMVFC_TGT_ACTION_DEL_RPORT) {
4304 tgt_dbg(tgt, "Deleting rport\n");
4305 list_del(&tgt->queue);
Brian Kingd5da3042010-08-05 16:38:31 -05004306 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DELETED_RPORT);
Brian King43c8da92009-05-28 16:17:28 -05004307 spin_unlock_irqrestore(vhost->host->host_lock, flags);
4308 fc_remote_port_delete(rport);
4309 del_timer_sync(&tgt->timer);
4310 kref_put(&tgt->kref, ibmvfc_release_tgt);
4311 return;
Brian Kingd5da3042010-08-05 16:38:31 -05004312 } else if (rport && tgt->action == IBMVFC_TGT_ACTION_DELETED_RPORT) {
4313 spin_unlock_irqrestore(vhost->host->host_lock, flags);
4314 return;
Brian King43c8da92009-05-28 16:17:28 -05004315 }
4316
Brian King072b91f2008-07-01 13:14:30 -05004317 if (rport) {
4318 tgt_dbg(tgt, "rport add succeeded\n");
Brian King43c8da92009-05-28 16:17:28 -05004319 tgt->rport = rport;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05004320 rport->maxframe_size = be16_to_cpu(tgt->service_parms.common.bb_rcv_sz) & 0x0fff;
Brian King072b91f2008-07-01 13:14:30 -05004321 rport->supported_classes = 0;
Brian King52d7e862008-07-22 08:31:46 -05004322 tgt->target_id = rport->scsi_target_id;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05004323 if (be32_to_cpu(tgt->service_parms.class1_parms[0]) & 0x80000000)
Brian King072b91f2008-07-01 13:14:30 -05004324 rport->supported_classes |= FC_COS_CLASS1;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05004325 if (be32_to_cpu(tgt->service_parms.class2_parms[0]) & 0x80000000)
Brian King072b91f2008-07-01 13:14:30 -05004326 rport->supported_classes |= FC_COS_CLASS2;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05004327 if (be32_to_cpu(tgt->service_parms.class3_parms[0]) & 0x80000000)
Brian King072b91f2008-07-01 13:14:30 -05004328 rport->supported_classes |= FC_COS_CLASS3;
Brian Kingd31429e2009-10-19 15:07:54 -05004329 if (rport->rqst_q)
Martin K. Petersen8a783622010-02-26 00:20:39 -05004330 blk_queue_max_segments(rport->rqst_q, 1);
Brian King072b91f2008-07-01 13:14:30 -05004331 } else
4332 tgt_dbg(tgt, "rport add failed\n");
4333 spin_unlock_irqrestore(vhost->host->host_lock, flags);
4334}
4335
4336/**
4337 * ibmvfc_do_work - Do task level work
4338 * @vhost: ibmvfc host struct
4339 *
4340 **/
4341static void ibmvfc_do_work(struct ibmvfc_host *vhost)
4342{
4343 struct ibmvfc_target *tgt;
4344 unsigned long flags;
4345 struct fc_rport *rport;
Brian King73ee5d82010-06-17 13:55:13 -05004346 int rc;
Brian King072b91f2008-07-01 13:14:30 -05004347
4348 ibmvfc_log_ae(vhost, vhost->events_to_log);
4349 spin_lock_irqsave(vhost->host->host_lock, flags);
4350 vhost->events_to_log = 0;
4351 switch (vhost->action) {
4352 case IBMVFC_HOST_ACTION_NONE:
Brian King79111d02009-05-28 16:17:29 -05004353 case IBMVFC_HOST_ACTION_LOGO_WAIT:
Brian King072b91f2008-07-01 13:14:30 -05004354 case IBMVFC_HOST_ACTION_INIT_WAIT:
4355 break;
Brian King73ee5d82010-06-17 13:55:13 -05004356 case IBMVFC_HOST_ACTION_RESET:
4357 vhost->action = IBMVFC_HOST_ACTION_TGT_DEL;
4358 spin_unlock_irqrestore(vhost->host->host_lock, flags);
4359 rc = ibmvfc_reset_crq(vhost);
4360 spin_lock_irqsave(vhost->host->host_lock, flags);
Brian Kingd24099d2010-09-21 10:17:11 -05004361 if (rc == H_CLOSED)
4362 vio_enable_interrupts(to_vio_dev(vhost->dev));
Brian King38553562011-06-03 08:23:20 -05004363 if (rc || (rc = ibmvfc_send_crq_init(vhost)) ||
4364 (rc = vio_enable_interrupts(to_vio_dev(vhost->dev)))) {
Brian King73ee5d82010-06-17 13:55:13 -05004365 ibmvfc_link_down(vhost, IBMVFC_LINK_DEAD);
4366 dev_err(vhost->dev, "Error after reset (rc=%d)\n", rc);
4367 }
4368 break;
4369 case IBMVFC_HOST_ACTION_REENABLE:
4370 vhost->action = IBMVFC_HOST_ACTION_TGT_DEL;
4371 spin_unlock_irqrestore(vhost->host->host_lock, flags);
4372 rc = ibmvfc_reenable_crq_queue(vhost);
4373 spin_lock_irqsave(vhost->host->host_lock, flags);
4374 if (rc || (rc = ibmvfc_send_crq_init(vhost))) {
4375 ibmvfc_link_down(vhost, IBMVFC_LINK_DEAD);
4376 dev_err(vhost->dev, "Error after enable (rc=%d)\n", rc);
4377 }
4378 break;
Brian King79111d02009-05-28 16:17:29 -05004379 case IBMVFC_HOST_ACTION_LOGO:
4380 vhost->job_step(vhost);
4381 break;
Brian King072b91f2008-07-01 13:14:30 -05004382 case IBMVFC_HOST_ACTION_INIT:
4383 BUG_ON(vhost->state != IBMVFC_INITIALIZING);
Brian King1c41fa822008-12-03 11:02:54 -06004384 if (vhost->delay_init) {
4385 vhost->delay_init = 0;
4386 spin_unlock_irqrestore(vhost->host->host_lock, flags);
Brian Kingd2131b32008-12-18 09:26:51 -06004387 ssleep(15);
Brian King1c41fa822008-12-03 11:02:54 -06004388 return;
4389 } else
4390 vhost->job_step(vhost);
Brian King072b91f2008-07-01 13:14:30 -05004391 break;
4392 case IBMVFC_HOST_ACTION_QUERY:
4393 list_for_each_entry(tgt, &vhost->targets, queue)
4394 ibmvfc_init_tgt(tgt, ibmvfc_tgt_query_target);
4395 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_QUERY_TGTS);
4396 break;
4397 case IBMVFC_HOST_ACTION_QUERY_TGTS:
4398 list_for_each_entry(tgt, &vhost->targets, queue) {
4399 if (tgt->action == IBMVFC_TGT_ACTION_INIT) {
4400 tgt->job_step(tgt);
4401 break;
4402 }
4403 }
4404
4405 if (!ibmvfc_dev_init_to_do(vhost))
4406 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_TGT_DEL);
4407 break;
4408 case IBMVFC_HOST_ACTION_TGT_DEL:
Brian King10e79492008-10-29 08:46:45 -05004409 case IBMVFC_HOST_ACTION_TGT_DEL_FAILED:
Brian King072b91f2008-07-01 13:14:30 -05004410 list_for_each_entry(tgt, &vhost->targets, queue) {
4411 if (tgt->action == IBMVFC_TGT_ACTION_DEL_RPORT) {
4412 tgt_dbg(tgt, "Deleting rport\n");
4413 rport = tgt->rport;
4414 tgt->rport = NULL;
4415 list_del(&tgt->queue);
Brian Kingd5da3042010-08-05 16:38:31 -05004416 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DELETED_RPORT);
Brian King072b91f2008-07-01 13:14:30 -05004417 spin_unlock_irqrestore(vhost->host->host_lock, flags);
4418 if (rport)
4419 fc_remote_port_delete(rport);
Brian King10501e12009-03-20 15:44:39 -05004420 del_timer_sync(&tgt->timer);
Brian King072b91f2008-07-01 13:14:30 -05004421 kref_put(&tgt->kref, ibmvfc_release_tgt);
4422 return;
4423 }
4424 }
4425
4426 if (vhost->state == IBMVFC_INITIALIZING) {
Brian King10e79492008-10-29 08:46:45 -05004427 if (vhost->action == IBMVFC_HOST_ACTION_TGT_DEL_FAILED) {
Brian King43c8da92009-05-28 16:17:28 -05004428 if (vhost->reinit) {
4429 vhost->reinit = 0;
4430 scsi_block_requests(vhost->host);
4431 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_QUERY);
4432 spin_unlock_irqrestore(vhost->host->host_lock, flags);
4433 } else {
4434 ibmvfc_set_host_state(vhost, IBMVFC_ACTIVE);
4435 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_NONE);
4436 wake_up(&vhost->init_wait_q);
4437 schedule_work(&vhost->rport_add_work_q);
4438 vhost->init_retries = 0;
4439 spin_unlock_irqrestore(vhost->host->host_lock, flags);
4440 scsi_unblock_requests(vhost->host);
4441 }
4442
Brian King10e79492008-10-29 08:46:45 -05004443 return;
4444 } else {
4445 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_INIT);
4446 vhost->job_step = ibmvfc_discover_targets;
4447 }
Brian King072b91f2008-07-01 13:14:30 -05004448 } else {
4449 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_NONE);
4450 spin_unlock_irqrestore(vhost->host->host_lock, flags);
4451 scsi_unblock_requests(vhost->host);
4452 wake_up(&vhost->init_wait_q);
4453 return;
4454 }
4455 break;
4456 case IBMVFC_HOST_ACTION_ALLOC_TGTS:
4457 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_TGT_INIT);
4458 spin_unlock_irqrestore(vhost->host->host_lock, flags);
4459 ibmvfc_alloc_targets(vhost);
4460 spin_lock_irqsave(vhost->host->host_lock, flags);
4461 break;
4462 case IBMVFC_HOST_ACTION_TGT_INIT:
4463 list_for_each_entry(tgt, &vhost->targets, queue) {
4464 if (tgt->action == IBMVFC_TGT_ACTION_INIT) {
4465 tgt->job_step(tgt);
4466 break;
4467 }
4468 }
4469
Brian King10e79492008-10-29 08:46:45 -05004470 if (!ibmvfc_dev_init_to_do(vhost))
4471 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_TGT_DEL_FAILED);
Brian King072b91f2008-07-01 13:14:30 -05004472 break;
Brian King072b91f2008-07-01 13:14:30 -05004473 default:
4474 break;
4475 };
4476
4477 spin_unlock_irqrestore(vhost->host->host_lock, flags);
4478}
4479
4480/**
4481 * ibmvfc_work - Do task level work
4482 * @data: ibmvfc host struct
4483 *
4484 * Returns:
4485 * zero
4486 **/
4487static int ibmvfc_work(void *data)
4488{
4489 struct ibmvfc_host *vhost = data;
4490 int rc;
4491
Dongsheng Yang8698a742014-03-11 18:09:12 +08004492 set_user_nice(current, MIN_NICE);
Brian King072b91f2008-07-01 13:14:30 -05004493
4494 while (1) {
4495 rc = wait_event_interruptible(vhost->work_wait_q,
4496 ibmvfc_work_to_do(vhost));
4497
4498 BUG_ON(rc);
4499
4500 if (kthread_should_stop())
4501 break;
4502
4503 ibmvfc_do_work(vhost);
4504 }
4505
4506 ibmvfc_dbg(vhost, "ibmvfc kthread exiting...\n");
4507 return 0;
4508}
4509
4510/**
4511 * ibmvfc_init_crq - Initializes and registers CRQ with hypervisor
4512 * @vhost: ibmvfc host struct
4513 *
4514 * Allocates a page for messages, maps it for dma, and registers
4515 * the crq with the hypervisor.
4516 *
4517 * Return value:
4518 * zero on success / other on failure
4519 **/
4520static int ibmvfc_init_crq(struct ibmvfc_host *vhost)
4521{
4522 int rc, retrc = -ENOMEM;
4523 struct device *dev = vhost->dev;
4524 struct vio_dev *vdev = to_vio_dev(dev);
4525 struct ibmvfc_crq_queue *crq = &vhost->crq;
4526
4527 ENTER;
4528 crq->msgs = (struct ibmvfc_crq *)get_zeroed_page(GFP_KERNEL);
4529
4530 if (!crq->msgs)
4531 return -ENOMEM;
4532
4533 crq->size = PAGE_SIZE / sizeof(*crq->msgs);
4534 crq->msg_token = dma_map_single(dev, crq->msgs,
4535 PAGE_SIZE, DMA_BIDIRECTIONAL);
4536
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -07004537 if (dma_mapping_error(dev, crq->msg_token))
Brian King072b91f2008-07-01 13:14:30 -05004538 goto map_failed;
4539
4540 retrc = rc = plpar_hcall_norets(H_REG_CRQ, vdev->unit_address,
4541 crq->msg_token, PAGE_SIZE);
4542
4543 if (rc == H_RESOURCE)
4544 /* maybe kexecing and resource is busy. try a reset */
4545 retrc = rc = ibmvfc_reset_crq(vhost);
4546
4547 if (rc == H_CLOSED)
4548 dev_warn(dev, "Partner adapter not ready\n");
4549 else if (rc) {
4550 dev_warn(dev, "Error %d opening adapter\n", rc);
4551 goto reg_crq_failed;
4552 }
4553
4554 retrc = 0;
4555
Brian King039a0892009-03-20 15:44:35 -05004556 tasklet_init(&vhost->tasklet, (void *)ibmvfc_tasklet, (unsigned long)vhost);
4557
Brian King072b91f2008-07-01 13:14:30 -05004558 if ((rc = request_irq(vdev->irq, ibmvfc_interrupt, 0, IBMVFC_NAME, vhost))) {
4559 dev_err(dev, "Couldn't register irq 0x%x. rc=%d\n", vdev->irq, rc);
4560 goto req_irq_failed;
4561 }
4562
4563 if ((rc = vio_enable_interrupts(vdev))) {
4564 dev_err(dev, "Error %d enabling interrupts\n", rc);
4565 goto req_irq_failed;
4566 }
4567
4568 crq->cur = 0;
4569 LEAVE;
4570 return retrc;
4571
4572req_irq_failed:
Brian King039a0892009-03-20 15:44:35 -05004573 tasklet_kill(&vhost->tasklet);
Brian King072b91f2008-07-01 13:14:30 -05004574 do {
4575 rc = plpar_hcall_norets(H_FREE_CRQ, vdev->unit_address);
4576 } while (rc == H_BUSY || H_IS_LONG_BUSY(rc));
4577reg_crq_failed:
4578 dma_unmap_single(dev, crq->msg_token, PAGE_SIZE, DMA_BIDIRECTIONAL);
4579map_failed:
4580 free_page((unsigned long)crq->msgs);
4581 return retrc;
4582}
4583
4584/**
4585 * ibmvfc_free_mem - Free memory for vhost
4586 * @vhost: ibmvfc host struct
4587 *
4588 * Return value:
4589 * none
4590 **/
4591static void ibmvfc_free_mem(struct ibmvfc_host *vhost)
4592{
4593 struct ibmvfc_async_crq_queue *async_q = &vhost->async_crq;
4594
4595 ENTER;
4596 mempool_destroy(vhost->tgt_pool);
4597 kfree(vhost->trace);
4598 dma_free_coherent(vhost->dev, vhost->disc_buf_sz, vhost->disc_buf,
4599 vhost->disc_buf_dma);
4600 dma_free_coherent(vhost->dev, sizeof(*vhost->login_buf),
4601 vhost->login_buf, vhost->login_buf_dma);
4602 dma_pool_destroy(vhost->sg_pool);
4603 dma_unmap_single(vhost->dev, async_q->msg_token,
4604 async_q->size * sizeof(*async_q->msgs), DMA_BIDIRECTIONAL);
4605 free_page((unsigned long)async_q->msgs);
4606 LEAVE;
4607}
4608
4609/**
4610 * ibmvfc_alloc_mem - Allocate memory for vhost
4611 * @vhost: ibmvfc host struct
4612 *
4613 * Return value:
4614 * 0 on success / non-zero on failure
4615 **/
4616static int ibmvfc_alloc_mem(struct ibmvfc_host *vhost)
4617{
4618 struct ibmvfc_async_crq_queue *async_q = &vhost->async_crq;
4619 struct device *dev = vhost->dev;
4620
4621 ENTER;
4622 async_q->msgs = (struct ibmvfc_async_crq *)get_zeroed_page(GFP_KERNEL);
4623 if (!async_q->msgs) {
4624 dev_err(dev, "Couldn't allocate async queue.\n");
4625 goto nomem;
4626 }
4627
4628 async_q->size = PAGE_SIZE / sizeof(struct ibmvfc_async_crq);
4629 async_q->msg_token = dma_map_single(dev, async_q->msgs,
4630 async_q->size * sizeof(*async_q->msgs),
4631 DMA_BIDIRECTIONAL);
4632
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -07004633 if (dma_mapping_error(dev, async_q->msg_token)) {
Brian King072b91f2008-07-01 13:14:30 -05004634 dev_err(dev, "Failed to map async queue\n");
4635 goto free_async_crq;
4636 }
4637
4638 vhost->sg_pool = dma_pool_create(IBMVFC_NAME, dev,
4639 SG_ALL * sizeof(struct srp_direct_buf),
4640 sizeof(struct srp_direct_buf), 0);
4641
4642 if (!vhost->sg_pool) {
4643 dev_err(dev, "Failed to allocate sg pool\n");
4644 goto unmap_async_crq;
4645 }
4646
4647 vhost->login_buf = dma_alloc_coherent(dev, sizeof(*vhost->login_buf),
4648 &vhost->login_buf_dma, GFP_KERNEL);
4649
4650 if (!vhost->login_buf) {
4651 dev_err(dev, "Couldn't allocate NPIV login buffer\n");
4652 goto free_sg_pool;
4653 }
4654
4655 vhost->disc_buf_sz = sizeof(vhost->disc_buf->scsi_id[0]) * max_targets;
4656 vhost->disc_buf = dma_alloc_coherent(dev, vhost->disc_buf_sz,
4657 &vhost->disc_buf_dma, GFP_KERNEL);
4658
4659 if (!vhost->disc_buf) {
4660 dev_err(dev, "Couldn't allocate Discover Targets buffer\n");
4661 goto free_login_buffer;
4662 }
4663
4664 vhost->trace = kcalloc(IBMVFC_NUM_TRACE_ENTRIES,
4665 sizeof(struct ibmvfc_trace_entry), GFP_KERNEL);
4666
4667 if (!vhost->trace)
4668 goto free_disc_buffer;
4669
Sage Weild6886692009-08-03 13:54:47 -07004670 vhost->tgt_pool = mempool_create_kmalloc_pool(IBMVFC_TGT_MEMPOOL_SZ,
Brian King072b91f2008-07-01 13:14:30 -05004671 sizeof(struct ibmvfc_target));
4672
4673 if (!vhost->tgt_pool) {
4674 dev_err(dev, "Couldn't allocate target memory pool\n");
4675 goto free_trace;
4676 }
4677
4678 LEAVE;
4679 return 0;
4680
4681free_trace:
4682 kfree(vhost->trace);
4683free_disc_buffer:
4684 dma_free_coherent(dev, vhost->disc_buf_sz, vhost->disc_buf,
4685 vhost->disc_buf_dma);
4686free_login_buffer:
4687 dma_free_coherent(dev, sizeof(*vhost->login_buf),
4688 vhost->login_buf, vhost->login_buf_dma);
4689free_sg_pool:
4690 dma_pool_destroy(vhost->sg_pool);
4691unmap_async_crq:
4692 dma_unmap_single(dev, async_q->msg_token,
4693 async_q->size * sizeof(*async_q->msgs), DMA_BIDIRECTIONAL);
4694free_async_crq:
4695 free_page((unsigned long)async_q->msgs);
4696nomem:
4697 LEAVE;
4698 return -ENOMEM;
4699}
4700
4701/**
Brian King43c8da92009-05-28 16:17:28 -05004702 * ibmvfc_rport_add_thread - Worker thread for rport adds
4703 * @work: work struct
4704 *
4705 **/
4706static void ibmvfc_rport_add_thread(struct work_struct *work)
4707{
4708 struct ibmvfc_host *vhost = container_of(work, struct ibmvfc_host,
4709 rport_add_work_q);
4710 struct ibmvfc_target *tgt;
4711 struct fc_rport *rport;
4712 unsigned long flags;
4713 int did_work;
4714
4715 ENTER;
4716 spin_lock_irqsave(vhost->host->host_lock, flags);
4717 do {
4718 did_work = 0;
4719 if (vhost->state != IBMVFC_ACTIVE)
4720 break;
4721
4722 list_for_each_entry(tgt, &vhost->targets, queue) {
4723 if (tgt->add_rport) {
4724 did_work = 1;
4725 tgt->add_rport = 0;
4726 kref_get(&tgt->kref);
4727 rport = tgt->rport;
4728 if (!rport) {
4729 spin_unlock_irqrestore(vhost->host->host_lock, flags);
4730 ibmvfc_tgt_add_rport(tgt);
4731 } else if (get_device(&rport->dev)) {
4732 spin_unlock_irqrestore(vhost->host->host_lock, flags);
4733 tgt_dbg(tgt, "Setting rport roles\n");
4734 fc_remote_port_rolechg(rport, tgt->ids.roles);
4735 put_device(&rport->dev);
Dan Carpenter00738872016-07-15 14:18:57 +03004736 } else {
4737 spin_unlock_irqrestore(vhost->host->host_lock, flags);
Brian King43c8da92009-05-28 16:17:28 -05004738 }
4739
4740 kref_put(&tgt->kref, ibmvfc_release_tgt);
4741 spin_lock_irqsave(vhost->host->host_lock, flags);
4742 break;
4743 }
4744 }
4745 } while(did_work);
4746
4747 if (vhost->state == IBMVFC_ACTIVE)
4748 vhost->scan_complete = 1;
4749 spin_unlock_irqrestore(vhost->host->host_lock, flags);
4750 LEAVE;
4751}
4752
4753/**
Brian King072b91f2008-07-01 13:14:30 -05004754 * ibmvfc_probe - Adapter hot plug add entry point
4755 * @vdev: vio device struct
4756 * @id: vio device id struct
4757 *
4758 * Return value:
4759 * 0 on success / non-zero on failure
4760 **/
4761static int ibmvfc_probe(struct vio_dev *vdev, const struct vio_device_id *id)
4762{
4763 struct ibmvfc_host *vhost;
4764 struct Scsi_Host *shost;
4765 struct device *dev = &vdev->dev;
4766 int rc = -ENOMEM;
4767
4768 ENTER;
4769 shost = scsi_host_alloc(&driver_template, sizeof(*vhost));
4770 if (!shost) {
4771 dev_err(dev, "Couldn't allocate host data\n");
4772 goto out;
4773 }
4774
4775 shost->transportt = ibmvfc_transport_template;
4776 shost->can_queue = max_requests;
4777 shost->max_lun = max_lun;
4778 shost->max_id = max_targets;
4779 shost->max_sectors = IBMVFC_MAX_SECTORS;
4780 shost->max_cmd_len = IBMVFC_MAX_CDB_LEN;
4781 shost->unique_id = shost->host_no;
4782
4783 vhost = shost_priv(shost);
4784 INIT_LIST_HEAD(&vhost->sent);
4785 INIT_LIST_HEAD(&vhost->free);
4786 INIT_LIST_HEAD(&vhost->targets);
4787 sprintf(vhost->name, IBMVFC_NAME);
4788 vhost->host = shost;
4789 vhost->dev = dev;
4790 vhost->partition_number = -1;
4791 vhost->log_level = log_level;
Brian King10501e12009-03-20 15:44:39 -05004792 vhost->task_set = 1;
Brian King072b91f2008-07-01 13:14:30 -05004793 strcpy(vhost->partition_name, "UNKNOWN");
4794 init_waitqueue_head(&vhost->work_wait_q);
4795 init_waitqueue_head(&vhost->init_wait_q);
Brian King43c8da92009-05-28 16:17:28 -05004796 INIT_WORK(&vhost->rport_add_work_q, ibmvfc_rport_add_thread);
Brian Kingd31429e2009-10-19 15:07:54 -05004797 mutex_init(&vhost->passthru_mutex);
Brian King072b91f2008-07-01 13:14:30 -05004798
4799 if ((rc = ibmvfc_alloc_mem(vhost)))
4800 goto free_scsi_host;
4801
4802 vhost->work_thread = kthread_run(ibmvfc_work, vhost, "%s_%d", IBMVFC_NAME,
4803 shost->host_no);
4804
4805 if (IS_ERR(vhost->work_thread)) {
4806 dev_err(dev, "Couldn't create kernel thread: %ld\n",
4807 PTR_ERR(vhost->work_thread));
4808 goto free_host_mem;
4809 }
4810
4811 if ((rc = ibmvfc_init_crq(vhost))) {
4812 dev_err(dev, "Couldn't initialize crq. rc=%d\n", rc);
4813 goto kill_kthread;
4814 }
4815
4816 if ((rc = ibmvfc_init_event_pool(vhost))) {
4817 dev_err(dev, "Couldn't initialize event pool. rc=%d\n", rc);
4818 goto release_crq;
4819 }
4820
4821 if ((rc = scsi_add_host(shost, dev)))
4822 goto release_event_pool;
4823
Mike Christiea5110f22010-09-15 16:52:29 -05004824 fc_host_dev_loss_tmo(shost) = IBMVFC_DEV_LOSS_TMO;
4825
Brian King072b91f2008-07-01 13:14:30 -05004826 if ((rc = ibmvfc_create_trace_file(&shost->shost_dev.kobj,
4827 &ibmvfc_trace_attr))) {
4828 dev_err(dev, "Failed to create trace file. rc=%d\n", rc);
4829 goto remove_shost;
4830 }
4831
Brian Kingd31429e2009-10-19 15:07:54 -05004832 if (shost_to_fc_host(shost)->rqst_q)
Martin K. Petersen8a783622010-02-26 00:20:39 -05004833 blk_queue_max_segments(shost_to_fc_host(shost)->rqst_q, 1);
Brian King072b91f2008-07-01 13:14:30 -05004834 dev_set_drvdata(dev, vhost);
4835 spin_lock(&ibmvfc_driver_lock);
4836 list_add_tail(&vhost->queue, &ibmvfc_head);
4837 spin_unlock(&ibmvfc_driver_lock);
4838
4839 ibmvfc_send_crq_init(vhost);
4840 scsi_scan_host(shost);
4841 return 0;
4842
4843remove_shost:
4844 scsi_remove_host(shost);
4845release_event_pool:
4846 ibmvfc_free_event_pool(vhost);
4847release_crq:
4848 ibmvfc_release_crq_queue(vhost);
4849kill_kthread:
4850 kthread_stop(vhost->work_thread);
4851free_host_mem:
4852 ibmvfc_free_mem(vhost);
4853free_scsi_host:
4854 scsi_host_put(shost);
4855out:
4856 LEAVE;
4857 return rc;
4858}
4859
4860/**
4861 * ibmvfc_remove - Adapter hot plug remove entry point
4862 * @vdev: vio device struct
4863 *
4864 * Return value:
4865 * 0
4866 **/
4867static int ibmvfc_remove(struct vio_dev *vdev)
4868{
4869 struct ibmvfc_host *vhost = dev_get_drvdata(&vdev->dev);
4870 unsigned long flags;
4871
4872 ENTER;
4873 ibmvfc_remove_trace_file(&vhost->host->shost_dev.kobj, &ibmvfc_trace_attr);
Brian King70431102009-10-19 15:07:48 -05004874
4875 spin_lock_irqsave(vhost->host->host_lock, flags);
Brian King2d0da2a2008-07-22 08:31:42 -05004876 ibmvfc_link_down(vhost, IBMVFC_HOST_OFFLINE);
Brian King70431102009-10-19 15:07:48 -05004877 spin_unlock_irqrestore(vhost->host->host_lock, flags);
4878
Brian King2d0da2a2008-07-22 08:31:42 -05004879 ibmvfc_wait_while_resetting(vhost);
4880 ibmvfc_release_crq_queue(vhost);
Brian King072b91f2008-07-01 13:14:30 -05004881 kthread_stop(vhost->work_thread);
4882 fc_remove_host(vhost->host);
4883 scsi_remove_host(vhost->host);
Brian King072b91f2008-07-01 13:14:30 -05004884
4885 spin_lock_irqsave(vhost->host->host_lock, flags);
4886 ibmvfc_purge_requests(vhost, DID_ERROR);
4887 ibmvfc_free_event_pool(vhost);
4888 spin_unlock_irqrestore(vhost->host->host_lock, flags);
4889
4890 ibmvfc_free_mem(vhost);
4891 spin_lock(&ibmvfc_driver_lock);
4892 list_del(&vhost->queue);
4893 spin_unlock(&ibmvfc_driver_lock);
4894 scsi_host_put(vhost->host);
4895 LEAVE;
4896 return 0;
4897}
4898
Brian King39c1ffe2008-07-24 04:35:48 +10004899/**
Brian Kingb0f4d4c2010-02-21 10:37:58 -06004900 * ibmvfc_resume - Resume from suspend
4901 * @dev: device struct
4902 *
4903 * We may have lost an interrupt across suspend/resume, so kick the
4904 * interrupt handler
4905 *
4906 */
4907static int ibmvfc_resume(struct device *dev)
4908{
4909 unsigned long flags;
4910 struct ibmvfc_host *vhost = dev_get_drvdata(dev);
4911 struct vio_dev *vdev = to_vio_dev(dev);
4912
4913 spin_lock_irqsave(vhost->host->host_lock, flags);
4914 vio_disable_interrupts(vdev);
4915 tasklet_schedule(&vhost->tasklet);
4916 spin_unlock_irqrestore(vhost->host->host_lock, flags);
4917 return 0;
4918}
4919
4920/**
Brian King39c1ffe2008-07-24 04:35:48 +10004921 * ibmvfc_get_desired_dma - Calculate DMA resources needed by the driver
4922 * @vdev: vio device struct
4923 *
4924 * Return value:
4925 * Number of bytes the driver will need to DMA map at the same time in
4926 * order to perform well.
4927 */
4928static unsigned long ibmvfc_get_desired_dma(struct vio_dev *vdev)
4929{
4930 unsigned long pool_dma = max_requests * sizeof(union ibmvfc_iu);
4931 return pool_dma + ((512 * 1024) * driver_template.cmd_per_lun);
4932}
4933
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08004934static struct vio_device_id ibmvfc_device_table[] = {
Brian King072b91f2008-07-01 13:14:30 -05004935 {"fcp", "IBM,vfc-client"},
4936 { "", "" }
4937};
4938MODULE_DEVICE_TABLE(vio, ibmvfc_device_table);
4939
Brian Kingb0f4d4c2010-02-21 10:37:58 -06004940static struct dev_pm_ops ibmvfc_pm_ops = {
4941 .resume = ibmvfc_resume
4942};
4943
Brian King072b91f2008-07-01 13:14:30 -05004944static struct vio_driver ibmvfc_driver = {
4945 .id_table = ibmvfc_device_table,
4946 .probe = ibmvfc_probe,
4947 .remove = ibmvfc_remove,
Brian King39c1ffe2008-07-24 04:35:48 +10004948 .get_desired_dma = ibmvfc_get_desired_dma,
Benjamin Herrenschmidtcb52d892012-03-26 19:06:30 +00004949 .name = IBMVFC_NAME,
4950 .pm = &ibmvfc_pm_ops,
Brian King072b91f2008-07-01 13:14:30 -05004951};
4952
4953static struct fc_function_template ibmvfc_transport_functions = {
4954 .show_host_fabric_name = 1,
4955 .show_host_node_name = 1,
4956 .show_host_port_name = 1,
4957 .show_host_supported_classes = 1,
4958 .show_host_port_type = 1,
4959 .show_host_port_id = 1,
Brian King9ab36102009-03-20 15:44:38 -05004960 .show_host_maxframe_size = 1,
Brian King072b91f2008-07-01 13:14:30 -05004961
4962 .get_host_port_state = ibmvfc_get_host_port_state,
4963 .show_host_port_state = 1,
4964
4965 .get_host_speed = ibmvfc_get_host_speed,
4966 .show_host_speed = 1,
4967
4968 .issue_fc_host_lip = ibmvfc_issue_fc_host_lip,
4969 .terminate_rport_io = ibmvfc_terminate_rport_io,
4970
4971 .show_rport_maxframe_size = 1,
4972 .show_rport_supported_classes = 1,
4973
4974 .set_rport_dev_loss_tmo = ibmvfc_set_rport_dev_loss_tmo,
4975 .show_rport_dev_loss_tmo = 1,
4976
4977 .get_starget_node_name = ibmvfc_get_starget_node_name,
4978 .show_starget_node_name = 1,
4979
4980 .get_starget_port_name = ibmvfc_get_starget_port_name,
4981 .show_starget_port_name = 1,
4982
4983 .get_starget_port_id = ibmvfc_get_starget_port_id,
4984 .show_starget_port_id = 1,
Brian Kingd31429e2009-10-19 15:07:54 -05004985
4986 .bsg_request = ibmvfc_bsg_request,
4987 .bsg_timeout = ibmvfc_bsg_timeout,
Brian King072b91f2008-07-01 13:14:30 -05004988};
4989
4990/**
4991 * ibmvfc_module_init - Initialize the ibmvfc module
4992 *
4993 * Return value:
4994 * 0 on success / other on failure
4995 **/
4996static int __init ibmvfc_module_init(void)
4997{
4998 int rc;
4999
5000 if (!firmware_has_feature(FW_FEATURE_VIO))
5001 return -ENODEV;
5002
5003 printk(KERN_INFO IBMVFC_NAME": IBM Virtual Fibre Channel Driver version: %s %s\n",
5004 IBMVFC_DRIVER_VERSION, IBMVFC_DRIVER_DATE);
5005
5006 ibmvfc_transport_template = fc_attach_transport(&ibmvfc_transport_functions);
5007 if (!ibmvfc_transport_template)
5008 return -ENOMEM;
5009
5010 rc = vio_register_driver(&ibmvfc_driver);
5011 if (rc)
5012 fc_release_transport(ibmvfc_transport_template);
5013 return rc;
5014}
5015
5016/**
5017 * ibmvfc_module_exit - Teardown the ibmvfc module
5018 *
5019 * Return value:
5020 * nothing
5021 **/
5022static void __exit ibmvfc_module_exit(void)
5023{
5024 vio_unregister_driver(&ibmvfc_driver);
5025 fc_release_transport(ibmvfc_transport_template);
5026}
5027
5028module_init(ibmvfc_module_init);
5029module_exit(ibmvfc_module_exit);