blob: 02df1f156f1ba163394644c7086fc9f31d9ec142 [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
725 /* Clean out the queue */
726 memset(crq->msgs, 0, PAGE_SIZE);
727 crq->cur = 0;
728
729 /* And re-open it again */
730 rc = plpar_hcall_norets(H_REG_CRQ, vdev->unit_address,
731 crq->msg_token, PAGE_SIZE);
732
733 if (rc == H_CLOSED)
734 /* Adapter is good, but other end is not ready */
735 dev_warn(vhost->dev, "Partner adapter not ready\n");
736 else if (rc != 0)
737 dev_warn(vhost->dev, "Couldn't register crq (rc=%d)\n", rc);
Brian King73ee5d82010-06-17 13:55:13 -0500738 spin_unlock_irqrestore(vhost->host->host_lock, flags);
Brian King072b91f2008-07-01 13:14:30 -0500739
740 return rc;
741}
742
743/**
744 * ibmvfc_valid_event - Determines if event is valid.
745 * @pool: event_pool that contains the event
746 * @evt: ibmvfc event to be checked for validity
747 *
748 * Return value:
749 * 1 if event is valid / 0 if event is not valid
750 **/
751static int ibmvfc_valid_event(struct ibmvfc_event_pool *pool,
752 struct ibmvfc_event *evt)
753{
754 int index = evt - pool->events;
755 if (index < 0 || index >= pool->size) /* outside of bounds */
756 return 0;
757 if (evt != pool->events + index) /* unaligned */
758 return 0;
759 return 1;
760}
761
762/**
763 * ibmvfc_free_event - Free the specified event
764 * @evt: ibmvfc_event to be freed
765 *
766 **/
767static void ibmvfc_free_event(struct ibmvfc_event *evt)
768{
769 struct ibmvfc_host *vhost = evt->vhost;
770 struct ibmvfc_event_pool *pool = &vhost->pool;
771
772 BUG_ON(!ibmvfc_valid_event(pool, evt));
773 BUG_ON(atomic_inc_return(&evt->free) != 1);
774 list_add_tail(&evt->queue, &vhost->free);
775}
776
777/**
778 * ibmvfc_scsi_eh_done - EH done function for queuecommand commands
779 * @evt: ibmvfc event struct
780 *
781 * This function does not setup any error status, that must be done
782 * before this function gets called.
783 **/
784static void ibmvfc_scsi_eh_done(struct ibmvfc_event *evt)
785{
786 struct scsi_cmnd *cmnd = evt->cmnd;
787
788 if (cmnd) {
789 scsi_dma_unmap(cmnd);
790 cmnd->scsi_done(cmnd);
791 }
792
Brian Kingad8dcff2008-10-29 08:46:41 -0500793 if (evt->eh_comp)
794 complete(evt->eh_comp);
795
Brian King072b91f2008-07-01 13:14:30 -0500796 ibmvfc_free_event(evt);
797}
798
799/**
800 * ibmvfc_fail_request - Fail request with specified error code
801 * @evt: ibmvfc event struct
802 * @error_code: error code to fail request with
803 *
804 * Return value:
805 * none
806 **/
807static void ibmvfc_fail_request(struct ibmvfc_event *evt, int error_code)
808{
809 if (evt->cmnd) {
810 evt->cmnd->result = (error_code << 16);
811 evt->done = ibmvfc_scsi_eh_done;
812 } else
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -0500813 evt->xfer_iu->mad_common.status = cpu_to_be16(IBMVFC_MAD_DRIVER_FAILED);
Brian King072b91f2008-07-01 13:14:30 -0500814
815 list_del(&evt->queue);
816 del_timer(&evt->timer);
817 ibmvfc_trc_end(evt);
818 evt->done(evt);
819}
820
821/**
822 * ibmvfc_purge_requests - Our virtual adapter just shut down. Purge any sent requests
823 * @vhost: ibmvfc host struct
824 * @error_code: error code to fail requests with
825 *
826 * Return value:
827 * none
828 **/
829static void ibmvfc_purge_requests(struct ibmvfc_host *vhost, int error_code)
830{
831 struct ibmvfc_event *evt, *pos;
832
833 ibmvfc_dbg(vhost, "Purging all requests\n");
834 list_for_each_entry_safe(evt, pos, &vhost->sent, queue)
835 ibmvfc_fail_request(evt, error_code);
836}
837
838/**
Brian King79111d02009-05-28 16:17:29 -0500839 * ibmvfc_hard_reset_host - Reset the connection to the server by breaking the CRQ
Brian King072b91f2008-07-01 13:14:30 -0500840 * @vhost: struct ibmvfc host to reset
841 **/
Brian King79111d02009-05-28 16:17:29 -0500842static void ibmvfc_hard_reset_host(struct ibmvfc_host *vhost)
Brian King072b91f2008-07-01 13:14:30 -0500843{
Brian King072b91f2008-07-01 13:14:30 -0500844 ibmvfc_purge_requests(vhost, DID_ERROR);
Brian King73ee5d82010-06-17 13:55:13 -0500845 ibmvfc_link_down(vhost, IBMVFC_LINK_DOWN);
846 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_RESET);
Brian King072b91f2008-07-01 13:14:30 -0500847}
848
849/**
Brian King79111d02009-05-28 16:17:29 -0500850 * __ibmvfc_reset_host - Reset the connection to the server (no locking)
Brian King072b91f2008-07-01 13:14:30 -0500851 * @vhost: struct ibmvfc host to reset
852 **/
Brian King79111d02009-05-28 16:17:29 -0500853static void __ibmvfc_reset_host(struct ibmvfc_host *vhost)
854{
855 if (vhost->logged_in && vhost->action != IBMVFC_HOST_ACTION_LOGO_WAIT &&
856 !ibmvfc_set_host_state(vhost, IBMVFC_INITIALIZING)) {
857 scsi_block_requests(vhost->host);
858 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_LOGO);
859 vhost->job_step = ibmvfc_npiv_logout;
860 wake_up(&vhost->work_wait_q);
861 } else
862 ibmvfc_hard_reset_host(vhost);
863}
864
865/**
866 * ibmvfc_reset_host - Reset the connection to the server
867 * @vhost: ibmvfc host struct
868 **/
Brian King072b91f2008-07-01 13:14:30 -0500869static void ibmvfc_reset_host(struct ibmvfc_host *vhost)
870{
871 unsigned long flags;
872
873 spin_lock_irqsave(vhost->host->host_lock, flags);
874 __ibmvfc_reset_host(vhost);
875 spin_unlock_irqrestore(vhost->host->host_lock, flags);
876}
877
878/**
879 * ibmvfc_retry_host_init - Retry host initialization if allowed
880 * @vhost: ibmvfc host struct
881 *
Brian King7d0e4622009-05-28 16:17:26 -0500882 * Returns: 1 if init will be retried / 0 if not
883 *
Brian King072b91f2008-07-01 13:14:30 -0500884 **/
Brian King7d0e4622009-05-28 16:17:26 -0500885static int ibmvfc_retry_host_init(struct ibmvfc_host *vhost)
Brian King072b91f2008-07-01 13:14:30 -0500886{
Brian King7d0e4622009-05-28 16:17:26 -0500887 int retry = 0;
888
Brian King072b91f2008-07-01 13:14:30 -0500889 if (vhost->action == IBMVFC_HOST_ACTION_INIT_WAIT) {
Brian King1c41fa822008-12-03 11:02:54 -0600890 vhost->delay_init = 1;
891 if (++vhost->init_retries > IBMVFC_MAX_HOST_INIT_RETRIES) {
Brian King072b91f2008-07-01 13:14:30 -0500892 dev_err(vhost->dev,
893 "Host initialization retries exceeded. Taking adapter offline\n");
894 ibmvfc_link_down(vhost, IBMVFC_HOST_OFFLINE);
Brian King1c41fa822008-12-03 11:02:54 -0600895 } else if (vhost->init_retries == IBMVFC_MAX_HOST_INIT_RETRIES)
Brian King072b91f2008-07-01 13:14:30 -0500896 __ibmvfc_reset_host(vhost);
Brian King7d0e4622009-05-28 16:17:26 -0500897 else {
Brian King072b91f2008-07-01 13:14:30 -0500898 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_INIT);
Brian King7d0e4622009-05-28 16:17:26 -0500899 retry = 1;
900 }
Brian King072b91f2008-07-01 13:14:30 -0500901 }
902
903 wake_up(&vhost->work_wait_q);
Brian King7d0e4622009-05-28 16:17:26 -0500904 return retry;
Brian King072b91f2008-07-01 13:14:30 -0500905}
906
907/**
Brian Kingb3c10489c2008-07-22 08:31:41 -0500908 * __ibmvfc_get_target - Find the specified scsi_target (no locking)
Brian King072b91f2008-07-01 13:14:30 -0500909 * @starget: scsi target struct
910 *
911 * Return value:
912 * ibmvfc_target struct / NULL if not found
913 **/
Brian Kingb3c10489c2008-07-22 08:31:41 -0500914static struct ibmvfc_target *__ibmvfc_get_target(struct scsi_target *starget)
Brian King072b91f2008-07-01 13:14:30 -0500915{
916 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
917 struct ibmvfc_host *vhost = shost_priv(shost);
918 struct ibmvfc_target *tgt;
919
920 list_for_each_entry(tgt, &vhost->targets, queue)
Brian Kingb3c10489c2008-07-22 08:31:41 -0500921 if (tgt->target_id == starget->id) {
922 kref_get(&tgt->kref);
Brian King072b91f2008-07-01 13:14:30 -0500923 return tgt;
Brian Kingb3c10489c2008-07-22 08:31:41 -0500924 }
Brian King072b91f2008-07-01 13:14:30 -0500925 return NULL;
926}
927
928/**
Brian Kingb3c10489c2008-07-22 08:31:41 -0500929 * ibmvfc_get_target - Find the specified scsi_target
Brian King072b91f2008-07-01 13:14:30 -0500930 * @starget: scsi target struct
931 *
932 * Return value:
933 * ibmvfc_target struct / NULL if not found
934 **/
Brian Kingb3c10489c2008-07-22 08:31:41 -0500935static struct ibmvfc_target *ibmvfc_get_target(struct scsi_target *starget)
Brian King072b91f2008-07-01 13:14:30 -0500936{
937 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
938 struct ibmvfc_target *tgt;
939 unsigned long flags;
940
941 spin_lock_irqsave(shost->host_lock, flags);
Brian Kingb3c10489c2008-07-22 08:31:41 -0500942 tgt = __ibmvfc_get_target(starget);
Brian King072b91f2008-07-01 13:14:30 -0500943 spin_unlock_irqrestore(shost->host_lock, flags);
944 return tgt;
945}
946
947/**
948 * ibmvfc_get_host_speed - Get host port speed
949 * @shost: scsi host struct
950 *
951 * Return value:
952 * none
953 **/
954static void ibmvfc_get_host_speed(struct Scsi_Host *shost)
955{
956 struct ibmvfc_host *vhost = shost_priv(shost);
957 unsigned long flags;
958
959 spin_lock_irqsave(shost->host_lock, flags);
960 if (vhost->state == IBMVFC_ACTIVE) {
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -0500961 switch (be64_to_cpu(vhost->login_buf->resp.link_speed) / 100) {
Brian King072b91f2008-07-01 13:14:30 -0500962 case 1:
963 fc_host_speed(shost) = FC_PORTSPEED_1GBIT;
964 break;
965 case 2:
966 fc_host_speed(shost) = FC_PORTSPEED_2GBIT;
967 break;
968 case 4:
969 fc_host_speed(shost) = FC_PORTSPEED_4GBIT;
970 break;
971 case 8:
972 fc_host_speed(shost) = FC_PORTSPEED_8GBIT;
973 break;
974 case 10:
975 fc_host_speed(shost) = FC_PORTSPEED_10GBIT;
976 break;
977 case 16:
978 fc_host_speed(shost) = FC_PORTSPEED_16GBIT;
979 break;
980 default:
Stephen Rothwell775a42e2009-01-06 14:59:00 +0000981 ibmvfc_log(vhost, 3, "Unknown port speed: %lld Gbit\n",
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -0500982 be64_to_cpu(vhost->login_buf->resp.link_speed) / 100);
Brian King072b91f2008-07-01 13:14:30 -0500983 fc_host_speed(shost) = FC_PORTSPEED_UNKNOWN;
984 break;
985 }
986 } else
987 fc_host_speed(shost) = FC_PORTSPEED_UNKNOWN;
988 spin_unlock_irqrestore(shost->host_lock, flags);
989}
990
991/**
992 * ibmvfc_get_host_port_state - Get host port state
993 * @shost: scsi host struct
994 *
995 * Return value:
996 * none
997 **/
998static void ibmvfc_get_host_port_state(struct Scsi_Host *shost)
999{
1000 struct ibmvfc_host *vhost = shost_priv(shost);
1001 unsigned long flags;
1002
1003 spin_lock_irqsave(shost->host_lock, flags);
1004 switch (vhost->state) {
1005 case IBMVFC_INITIALIZING:
1006 case IBMVFC_ACTIVE:
1007 fc_host_port_state(shost) = FC_PORTSTATE_ONLINE;
1008 break;
1009 case IBMVFC_LINK_DOWN:
1010 fc_host_port_state(shost) = FC_PORTSTATE_LINKDOWN;
1011 break;
1012 case IBMVFC_LINK_DEAD:
1013 case IBMVFC_HOST_OFFLINE:
1014 fc_host_port_state(shost) = FC_PORTSTATE_OFFLINE;
1015 break;
1016 case IBMVFC_HALTED:
1017 fc_host_port_state(shost) = FC_PORTSTATE_BLOCKED;
1018 break;
Brian King0ae808e2008-07-22 08:31:39 -05001019 case IBMVFC_NO_CRQ:
1020 fc_host_port_state(shost) = FC_PORTSTATE_UNKNOWN;
1021 break;
Brian King072b91f2008-07-01 13:14:30 -05001022 default:
1023 ibmvfc_log(vhost, 3, "Unknown port state: %d\n", vhost->state);
1024 fc_host_port_state(shost) = FC_PORTSTATE_UNKNOWN;
1025 break;
1026 }
1027 spin_unlock_irqrestore(shost->host_lock, flags);
1028}
1029
1030/**
1031 * ibmvfc_set_rport_dev_loss_tmo - Set rport's device loss timeout
1032 * @rport: rport struct
1033 * @timeout: timeout value
1034 *
1035 * Return value:
1036 * none
1037 **/
1038static void ibmvfc_set_rport_dev_loss_tmo(struct fc_rport *rport, u32 timeout)
1039{
1040 if (timeout)
1041 rport->dev_loss_tmo = timeout;
1042 else
1043 rport->dev_loss_tmo = 1;
1044}
1045
1046/**
Brian Kingb3c10489c2008-07-22 08:31:41 -05001047 * ibmvfc_release_tgt - Free memory allocated for a target
1048 * @kref: kref struct
1049 *
1050 **/
1051static void ibmvfc_release_tgt(struct kref *kref)
1052{
1053 struct ibmvfc_target *tgt = container_of(kref, struct ibmvfc_target, kref);
1054 kfree(tgt);
1055}
1056
1057/**
Brian King072b91f2008-07-01 13:14:30 -05001058 * ibmvfc_get_starget_node_name - Get SCSI target's node name
1059 * @starget: scsi target struct
1060 *
1061 * Return value:
1062 * none
1063 **/
1064static void ibmvfc_get_starget_node_name(struct scsi_target *starget)
1065{
Brian Kingb3c10489c2008-07-22 08:31:41 -05001066 struct ibmvfc_target *tgt = ibmvfc_get_target(starget);
Brian King072b91f2008-07-01 13:14:30 -05001067 fc_starget_port_name(starget) = tgt ? tgt->ids.node_name : 0;
Brian Kingb3c10489c2008-07-22 08:31:41 -05001068 if (tgt)
1069 kref_put(&tgt->kref, ibmvfc_release_tgt);
Brian King072b91f2008-07-01 13:14:30 -05001070}
1071
1072/**
1073 * ibmvfc_get_starget_port_name - Get SCSI target's port name
1074 * @starget: scsi target struct
1075 *
1076 * Return value:
1077 * none
1078 **/
1079static void ibmvfc_get_starget_port_name(struct scsi_target *starget)
1080{
Brian Kingb3c10489c2008-07-22 08:31:41 -05001081 struct ibmvfc_target *tgt = ibmvfc_get_target(starget);
Brian King072b91f2008-07-01 13:14:30 -05001082 fc_starget_port_name(starget) = tgt ? tgt->ids.port_name : 0;
Brian Kingb3c10489c2008-07-22 08:31:41 -05001083 if (tgt)
1084 kref_put(&tgt->kref, ibmvfc_release_tgt);
Brian King072b91f2008-07-01 13:14:30 -05001085}
1086
1087/**
1088 * ibmvfc_get_starget_port_id - Get SCSI target's port ID
1089 * @starget: scsi target struct
1090 *
1091 * Return value:
1092 * none
1093 **/
1094static void ibmvfc_get_starget_port_id(struct scsi_target *starget)
1095{
Brian Kingb3c10489c2008-07-22 08:31:41 -05001096 struct ibmvfc_target *tgt = ibmvfc_get_target(starget);
Brian King072b91f2008-07-01 13:14:30 -05001097 fc_starget_port_id(starget) = tgt ? tgt->scsi_id : -1;
Brian Kingb3c10489c2008-07-22 08:31:41 -05001098 if (tgt)
1099 kref_put(&tgt->kref, ibmvfc_release_tgt);
Brian King072b91f2008-07-01 13:14:30 -05001100}
1101
1102/**
1103 * ibmvfc_wait_while_resetting - Wait while the host resets
1104 * @vhost: ibmvfc host struct
1105 *
1106 * Return value:
1107 * 0 on success / other on failure
1108 **/
1109static int ibmvfc_wait_while_resetting(struct ibmvfc_host *vhost)
1110{
1111 long timeout = wait_event_timeout(vhost->init_wait_q,
Brian King3eddc562008-08-15 10:59:21 -05001112 ((vhost->state == IBMVFC_ACTIVE ||
1113 vhost->state == IBMVFC_HOST_OFFLINE ||
1114 vhost->state == IBMVFC_LINK_DEAD) &&
1115 vhost->action == IBMVFC_HOST_ACTION_NONE),
Brian King072b91f2008-07-01 13:14:30 -05001116 (init_timeout * HZ));
1117
1118 return timeout ? 0 : -EIO;
1119}
1120
1121/**
1122 * ibmvfc_issue_fc_host_lip - Re-initiate link initialization
1123 * @shost: scsi host struct
1124 *
1125 * Return value:
1126 * 0 on success / other on failure
1127 **/
1128static int ibmvfc_issue_fc_host_lip(struct Scsi_Host *shost)
1129{
1130 struct ibmvfc_host *vhost = shost_priv(shost);
1131
1132 dev_err(vhost->dev, "Initiating host LIP. Resetting connection\n");
1133 ibmvfc_reset_host(vhost);
1134 return ibmvfc_wait_while_resetting(vhost);
1135}
1136
1137/**
1138 * ibmvfc_gather_partition_info - Gather info about the LPAR
1139 *
1140 * Return value:
1141 * none
1142 **/
1143static void ibmvfc_gather_partition_info(struct ibmvfc_host *vhost)
1144{
1145 struct device_node *rootdn;
1146 const char *name;
1147 const unsigned int *num;
1148
1149 rootdn = of_find_node_by_path("/");
1150 if (!rootdn)
1151 return;
1152
1153 name = of_get_property(rootdn, "ibm,partition-name", NULL);
1154 if (name)
1155 strncpy(vhost->partition_name, name, sizeof(vhost->partition_name));
1156 num = of_get_property(rootdn, "ibm,partition-no", NULL);
1157 if (num)
1158 vhost->partition_number = *num;
1159 of_node_put(rootdn);
1160}
1161
1162/**
1163 * ibmvfc_set_login_info - Setup info for NPIV login
1164 * @vhost: ibmvfc host struct
1165 *
1166 * Return value:
1167 * none
1168 **/
1169static void ibmvfc_set_login_info(struct ibmvfc_host *vhost)
1170{
1171 struct ibmvfc_npiv_login *login_info = &vhost->login_info;
Grant Likely61c7a082010-04-13 16:12:29 -07001172 struct device_node *of_node = vhost->dev->of_node;
Brian King072b91f2008-07-01 13:14:30 -05001173 const char *location;
1174
1175 memset(login_info, 0, sizeof(*login_info));
1176
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001177 login_info->ostype = cpu_to_be32(IBMVFC_OS_LINUX);
1178 login_info->max_dma_len = cpu_to_be64(IBMVFC_MAX_SECTORS << 9);
1179 login_info->max_payload = cpu_to_be32(sizeof(struct ibmvfc_fcp_cmd_iu));
1180 login_info->max_response = cpu_to_be32(sizeof(struct ibmvfc_fcp_rsp));
1181 login_info->partition_num = cpu_to_be32(vhost->partition_number);
1182 login_info->vfc_frame_version = cpu_to_be32(1);
1183 login_info->fcp_version = cpu_to_be16(3);
1184 login_info->flags = cpu_to_be16(IBMVFC_FLUSH_ON_HALT);
Brian King072b91f2008-07-01 13:14:30 -05001185 if (vhost->client_migrated)
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001186 login_info->flags |= cpu_to_be16(IBMVFC_CLIENT_MIGRATED);
Brian King072b91f2008-07-01 13:14:30 -05001187
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001188 login_info->max_cmds = cpu_to_be32(max_requests + IBMVFC_NUM_INTERNAL_REQ);
1189 login_info->capabilities = cpu_to_be64(IBMVFC_CAN_MIGRATE);
1190 login_info->async.va = cpu_to_be64(vhost->async_crq.msg_token);
1191 login_info->async.len = cpu_to_be32(vhost->async_crq.size * sizeof(*vhost->async_crq.msgs));
Brian King072b91f2008-07-01 13:14:30 -05001192 strncpy(login_info->partition_name, vhost->partition_name, IBMVFC_MAX_NAME);
1193 strncpy(login_info->device_name,
Kay Sievers71610f52008-12-03 22:41:36 +01001194 dev_name(&vhost->host->shost_gendev), IBMVFC_MAX_NAME);
Brian King072b91f2008-07-01 13:14:30 -05001195
1196 location = of_get_property(of_node, "ibm,loc-code", NULL);
Kay Sievers71610f52008-12-03 22:41:36 +01001197 location = location ? location : dev_name(vhost->dev);
Brian King072b91f2008-07-01 13:14:30 -05001198 strncpy(login_info->drc_name, location, IBMVFC_MAX_NAME);
1199}
1200
1201/**
1202 * ibmvfc_init_event_pool - Allocates and initializes the event pool for a host
1203 * @vhost: ibmvfc host who owns the event pool
1204 *
1205 * Returns zero on success.
1206 **/
1207static int ibmvfc_init_event_pool(struct ibmvfc_host *vhost)
1208{
1209 int i;
1210 struct ibmvfc_event_pool *pool = &vhost->pool;
1211
1212 ENTER;
1213 pool->size = max_requests + IBMVFC_NUM_INTERNAL_REQ;
1214 pool->events = kcalloc(pool->size, sizeof(*pool->events), GFP_KERNEL);
1215 if (!pool->events)
1216 return -ENOMEM;
1217
1218 pool->iu_storage = dma_alloc_coherent(vhost->dev,
1219 pool->size * sizeof(*pool->iu_storage),
1220 &pool->iu_token, 0);
1221
1222 if (!pool->iu_storage) {
1223 kfree(pool->events);
1224 return -ENOMEM;
1225 }
1226
1227 for (i = 0; i < pool->size; ++i) {
1228 struct ibmvfc_event *evt = &pool->events[i];
1229 atomic_set(&evt->free, 1);
1230 evt->crq.valid = 0x80;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001231 evt->crq.ioba = cpu_to_be64(pool->iu_token + (sizeof(*evt->xfer_iu) * i));
Brian King072b91f2008-07-01 13:14:30 -05001232 evt->xfer_iu = pool->iu_storage + i;
1233 evt->vhost = vhost;
1234 evt->ext_list = NULL;
1235 list_add_tail(&evt->queue, &vhost->free);
1236 }
1237
1238 LEAVE;
1239 return 0;
1240}
1241
1242/**
1243 * ibmvfc_free_event_pool - Frees memory of the event pool of a host
1244 * @vhost: ibmvfc host who owns the event pool
1245 *
1246 **/
1247static void ibmvfc_free_event_pool(struct ibmvfc_host *vhost)
1248{
1249 int i;
1250 struct ibmvfc_event_pool *pool = &vhost->pool;
1251
1252 ENTER;
1253 for (i = 0; i < pool->size; ++i) {
1254 list_del(&pool->events[i].queue);
1255 BUG_ON(atomic_read(&pool->events[i].free) != 1);
1256 if (pool->events[i].ext_list)
1257 dma_pool_free(vhost->sg_pool,
1258 pool->events[i].ext_list,
1259 pool->events[i].ext_list_token);
1260 }
1261
1262 kfree(pool->events);
1263 dma_free_coherent(vhost->dev,
1264 pool->size * sizeof(*pool->iu_storage),
1265 pool->iu_storage, pool->iu_token);
1266 LEAVE;
1267}
1268
1269/**
1270 * ibmvfc_get_event - Gets the next free event in pool
1271 * @vhost: ibmvfc host struct
1272 *
1273 * Returns a free event from the pool.
1274 **/
1275static struct ibmvfc_event *ibmvfc_get_event(struct ibmvfc_host *vhost)
1276{
1277 struct ibmvfc_event *evt;
1278
1279 BUG_ON(list_empty(&vhost->free));
1280 evt = list_entry(vhost->free.next, struct ibmvfc_event, queue);
1281 atomic_set(&evt->free, 0);
1282 list_del(&evt->queue);
1283 return evt;
1284}
1285
1286/**
1287 * ibmvfc_init_event - Initialize fields in an event struct that are always
1288 * required.
1289 * @evt: The event
1290 * @done: Routine to call when the event is responded to
1291 * @format: SRP or MAD format
1292 **/
1293static void ibmvfc_init_event(struct ibmvfc_event *evt,
1294 void (*done) (struct ibmvfc_event *), u8 format)
1295{
1296 evt->cmnd = NULL;
1297 evt->sync_iu = NULL;
1298 evt->crq.format = format;
1299 evt->done = done;
Brian Kingad8dcff2008-10-29 08:46:41 -05001300 evt->eh_comp = NULL;
Brian King072b91f2008-07-01 13:14:30 -05001301}
1302
1303/**
1304 * ibmvfc_map_sg_list - Initialize scatterlist
1305 * @scmd: scsi command struct
1306 * @nseg: number of scatterlist segments
1307 * @md: memory descriptor list to initialize
1308 **/
1309static void ibmvfc_map_sg_list(struct scsi_cmnd *scmd, int nseg,
1310 struct srp_direct_buf *md)
1311{
1312 int i;
1313 struct scatterlist *sg;
1314
1315 scsi_for_each_sg(scmd, sg, nseg, i) {
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001316 md[i].va = cpu_to_be64(sg_dma_address(sg));
1317 md[i].len = cpu_to_be32(sg_dma_len(sg));
Brian King072b91f2008-07-01 13:14:30 -05001318 md[i].key = 0;
1319 }
1320}
1321
1322/**
1323 * ibmvfc_map_sg_data - Maps dma for a scatterlist and initializes decriptor fields
1324 * @scmd: Scsi_Cmnd with the scatterlist
1325 * @evt: ibmvfc event struct
1326 * @vfc_cmd: vfc_cmd that contains the memory descriptor
1327 * @dev: device for which to map dma memory
1328 *
1329 * Returns:
1330 * 0 on success / non-zero on failure
1331 **/
1332static int ibmvfc_map_sg_data(struct scsi_cmnd *scmd,
1333 struct ibmvfc_event *evt,
1334 struct ibmvfc_cmd *vfc_cmd, struct device *dev)
1335{
1336
1337 int sg_mapped;
1338 struct srp_direct_buf *data = &vfc_cmd->ioba;
1339 struct ibmvfc_host *vhost = dev_get_drvdata(dev);
1340
Tyrel Datwylera6104b12016-08-03 16:36:53 -05001341 if (cls3_error)
1342 vfc_cmd->flags |= cpu_to_be16(IBMVFC_CLASS_3_ERR);
1343
Brian King072b91f2008-07-01 13:14:30 -05001344 sg_mapped = scsi_dma_map(scmd);
1345 if (!sg_mapped) {
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001346 vfc_cmd->flags |= cpu_to_be16(IBMVFC_NO_MEM_DESC);
Brian King072b91f2008-07-01 13:14:30 -05001347 return 0;
1348 } else if (unlikely(sg_mapped < 0)) {
1349 if (vhost->log_level > IBMVFC_DEFAULT_LOG_LEVEL)
1350 scmd_printk(KERN_ERR, scmd, "Failed to map DMA buffer for command\n");
1351 return sg_mapped;
1352 }
1353
1354 if (scmd->sc_data_direction == DMA_TO_DEVICE) {
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001355 vfc_cmd->flags |= cpu_to_be16(IBMVFC_WRITE);
Brian King072b91f2008-07-01 13:14:30 -05001356 vfc_cmd->iu.add_cdb_len |= IBMVFC_WRDATA;
1357 } else {
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001358 vfc_cmd->flags |= cpu_to_be16(IBMVFC_READ);
Brian King072b91f2008-07-01 13:14:30 -05001359 vfc_cmd->iu.add_cdb_len |= IBMVFC_RDDATA;
1360 }
1361
1362 if (sg_mapped == 1) {
1363 ibmvfc_map_sg_list(scmd, sg_mapped, data);
1364 return 0;
1365 }
1366
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001367 vfc_cmd->flags |= cpu_to_be16(IBMVFC_SCATTERLIST);
Brian King072b91f2008-07-01 13:14:30 -05001368
1369 if (!evt->ext_list) {
1370 evt->ext_list = dma_pool_alloc(vhost->sg_pool, GFP_ATOMIC,
1371 &evt->ext_list_token);
1372
1373 if (!evt->ext_list) {
Brian King64b840d2009-01-22 15:45:38 -06001374 scsi_dma_unmap(scmd);
1375 if (vhost->log_level > IBMVFC_DEFAULT_LOG_LEVEL)
1376 scmd_printk(KERN_ERR, scmd, "Can't allocate memory for scatterlist\n");
Brian King072b91f2008-07-01 13:14:30 -05001377 return -ENOMEM;
1378 }
1379 }
1380
1381 ibmvfc_map_sg_list(scmd, sg_mapped, evt->ext_list);
1382
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001383 data->va = cpu_to_be64(evt->ext_list_token);
1384 data->len = cpu_to_be32(sg_mapped * sizeof(struct srp_direct_buf));
Brian King072b91f2008-07-01 13:14:30 -05001385 data->key = 0;
1386 return 0;
1387}
1388
1389/**
1390 * ibmvfc_timeout - Internal command timeout handler
1391 * @evt: struct ibmvfc_event that timed out
1392 *
1393 * Called when an internally generated command times out
1394 **/
1395static void ibmvfc_timeout(struct ibmvfc_event *evt)
1396{
1397 struct ibmvfc_host *vhost = evt->vhost;
1398 dev_err(vhost->dev, "Command timed out (%p). Resetting connection\n", evt);
1399 ibmvfc_reset_host(vhost);
1400}
1401
1402/**
1403 * ibmvfc_send_event - Transforms event to u64 array and calls send_crq()
1404 * @evt: event to be sent
1405 * @vhost: ibmvfc host struct
1406 * @timeout: timeout in seconds - 0 means do not time command
1407 *
1408 * Returns the value returned from ibmvfc_send_crq(). (Zero for success)
1409 **/
1410static int ibmvfc_send_event(struct ibmvfc_event *evt,
1411 struct ibmvfc_host *vhost, unsigned long timeout)
1412{
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001413 __be64 *crq_as_u64 = (__be64 *) &evt->crq;
Brian King072b91f2008-07-01 13:14:30 -05001414 int rc;
1415
1416 /* Copy the IU into the transfer area */
1417 *evt->xfer_iu = evt->iu;
1418 if (evt->crq.format == IBMVFC_CMD_FORMAT)
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001419 evt->xfer_iu->cmd.tag = cpu_to_be64((u64)evt);
Brian King072b91f2008-07-01 13:14:30 -05001420 else if (evt->crq.format == IBMVFC_MAD_FORMAT)
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001421 evt->xfer_iu->mad_common.tag = cpu_to_be64((u64)evt);
Brian King072b91f2008-07-01 13:14:30 -05001422 else
1423 BUG();
1424
1425 list_add_tail(&evt->queue, &vhost->sent);
1426 init_timer(&evt->timer);
1427
1428 if (timeout) {
1429 evt->timer.data = (unsigned long) evt;
1430 evt->timer.expires = jiffies + (timeout * HZ);
1431 evt->timer.function = (void (*)(unsigned long))ibmvfc_timeout;
1432 add_timer(&evt->timer);
1433 }
1434
Brian Kinga528ab72008-12-03 11:02:56 -06001435 mb();
1436
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001437 if ((rc = ibmvfc_send_crq(vhost, be64_to_cpu(crq_as_u64[0]),
1438 be64_to_cpu(crq_as_u64[1])))) {
Brian King072b91f2008-07-01 13:14:30 -05001439 list_del(&evt->queue);
1440 del_timer(&evt->timer);
1441
1442 /* If send_crq returns H_CLOSED, return SCSI_MLQUEUE_HOST_BUSY.
1443 * Firmware will send a CRQ with a transport event (0xFF) to
1444 * tell this client what has happened to the transport. This
1445 * will be handled in ibmvfc_handle_crq()
1446 */
1447 if (rc == H_CLOSED) {
1448 if (printk_ratelimit())
1449 dev_warn(vhost->dev, "Send warning. Receive queue closed, will retry.\n");
1450 if (evt->cmnd)
1451 scsi_dma_unmap(evt->cmnd);
1452 ibmvfc_free_event(evt);
1453 return SCSI_MLQUEUE_HOST_BUSY;
1454 }
1455
1456 dev_err(vhost->dev, "Send error (rc=%d)\n", rc);
1457 if (evt->cmnd) {
1458 evt->cmnd->result = DID_ERROR << 16;
1459 evt->done = ibmvfc_scsi_eh_done;
1460 } else
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001461 evt->xfer_iu->mad_common.status = cpu_to_be16(IBMVFC_MAD_CRQ_ERROR);
Brian King072b91f2008-07-01 13:14:30 -05001462
1463 evt->done(evt);
1464 } else
1465 ibmvfc_trc_start(evt);
1466
1467 return 0;
1468}
1469
1470/**
1471 * ibmvfc_log_error - Log an error for the failed command if appropriate
1472 * @evt: ibmvfc event to log
1473 *
1474 **/
1475static void ibmvfc_log_error(struct ibmvfc_event *evt)
1476{
1477 struct ibmvfc_cmd *vfc_cmd = &evt->xfer_iu->cmd;
1478 struct ibmvfc_host *vhost = evt->vhost;
1479 struct ibmvfc_fcp_rsp *rsp = &vfc_cmd->rsp;
1480 struct scsi_cmnd *cmnd = evt->cmnd;
1481 const char *err = unknown_error;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001482 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 -05001483 int logerr = 0;
1484 int rsp_code = 0;
1485
1486 if (index >= 0) {
1487 logerr = cmd_status[index].log;
1488 err = cmd_status[index].name;
1489 }
1490
Brian King0ae808e2008-07-22 08:31:39 -05001491 if (!logerr && (vhost->log_level <= (IBMVFC_DEFAULT_LOG_LEVEL + 1)))
Brian King072b91f2008-07-01 13:14:30 -05001492 return;
1493
1494 if (rsp->flags & FCP_RSP_LEN_VALID)
1495 rsp_code = rsp->data.info.rsp_code;
1496
1497 scmd_printk(KERN_ERR, cmnd, "Command (%02X) failed: %s (%x:%x) "
1498 "flags: %x fcp_rsp: %x, resid=%d, scsi_status: %x\n",
1499 cmnd->cmnd[0], err, vfc_cmd->status, vfc_cmd->error,
1500 rsp->flags, rsp_code, scsi_get_resid(cmnd), rsp->scsi_status);
1501}
1502
1503/**
Brian King6d29cc52009-05-28 16:17:33 -05001504 * ibmvfc_relogin - Log back into the specified device
1505 * @sdev: scsi device struct
1506 *
1507 **/
1508static void ibmvfc_relogin(struct scsi_device *sdev)
1509{
1510 struct ibmvfc_host *vhost = shost_priv(sdev->host);
1511 struct fc_rport *rport = starget_to_rport(scsi_target(sdev));
1512 struct ibmvfc_target *tgt;
1513
1514 list_for_each_entry(tgt, &vhost->targets, queue) {
1515 if (rport == tgt->rport) {
1516 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DEL_RPORT);
1517 break;
1518 }
1519 }
1520
1521 ibmvfc_reinit_host(vhost);
1522}
1523
1524/**
Brian King072b91f2008-07-01 13:14:30 -05001525 * ibmvfc_scsi_done - Handle responses from commands
1526 * @evt: ibmvfc event to be handled
1527 *
1528 * Used as a callback when sending scsi cmds.
1529 **/
1530static void ibmvfc_scsi_done(struct ibmvfc_event *evt)
1531{
1532 struct ibmvfc_cmd *vfc_cmd = &evt->xfer_iu->cmd;
1533 struct ibmvfc_fcp_rsp *rsp = &vfc_cmd->rsp;
1534 struct scsi_cmnd *cmnd = evt->cmnd;
Brian King2bac4062008-08-15 10:59:26 -05001535 u32 rsp_len = 0;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001536 u32 sense_len = be32_to_cpu(rsp->fcp_sense_len);
Brian King072b91f2008-07-01 13:14:30 -05001537
1538 if (cmnd) {
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001539 if (be16_to_cpu(vfc_cmd->response_flags) & IBMVFC_ADAPTER_RESID_VALID)
1540 scsi_set_resid(cmnd, be32_to_cpu(vfc_cmd->adapter_resid));
Brian King072b91f2008-07-01 13:14:30 -05001541 else if (rsp->flags & FCP_RESID_UNDER)
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001542 scsi_set_resid(cmnd, be32_to_cpu(rsp->fcp_resid));
Brian King072b91f2008-07-01 13:14:30 -05001543 else
1544 scsi_set_resid(cmnd, 0);
1545
1546 if (vfc_cmd->status) {
1547 cmnd->result = ibmvfc_get_err_result(vfc_cmd);
1548
1549 if (rsp->flags & FCP_RSP_LEN_VALID)
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001550 rsp_len = be32_to_cpu(rsp->fcp_rsp_len);
Brian King072b91f2008-07-01 13:14:30 -05001551 if ((sense_len + rsp_len) > SCSI_SENSE_BUFFERSIZE)
1552 sense_len = SCSI_SENSE_BUFFERSIZE - rsp_len;
Brian King2bac4062008-08-15 10:59:26 -05001553 if ((rsp->flags & FCP_SNS_LEN_VALID) && rsp->fcp_sense_len && rsp_len <= 8)
Brian King072b91f2008-07-01 13:14:30 -05001554 memcpy(cmnd->sense_buffer, rsp->data.sense + rsp_len, sense_len);
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001555 if ((be16_to_cpu(vfc_cmd->status) & IBMVFC_VIOS_FAILURE) &&
1556 (be16_to_cpu(vfc_cmd->error) == IBMVFC_PLOGI_REQUIRED))
Brian King6d29cc52009-05-28 16:17:33 -05001557 ibmvfc_relogin(cmnd->device);
Brian King072b91f2008-07-01 13:14:30 -05001558
Brian King50119da2008-10-29 08:46:36 -05001559 if (!cmnd->result && (!scsi_get_resid(cmnd) || (rsp->flags & FCP_RESID_OVER)))
1560 cmnd->result = (DID_ERROR << 16);
1561
Brian King072b91f2008-07-01 13:14:30 -05001562 ibmvfc_log_error(evt);
1563 }
1564
1565 if (!cmnd->result &&
1566 (scsi_bufflen(cmnd) - scsi_get_resid(cmnd) < cmnd->underflow))
1567 cmnd->result = (DID_ERROR << 16);
1568
1569 scsi_dma_unmap(cmnd);
1570 cmnd->scsi_done(cmnd);
1571 }
1572
Brian Kingad8dcff2008-10-29 08:46:41 -05001573 if (evt->eh_comp)
1574 complete(evt->eh_comp);
1575
Brian King072b91f2008-07-01 13:14:30 -05001576 ibmvfc_free_event(evt);
1577}
1578
1579/**
1580 * ibmvfc_host_chkready - Check if the host can accept commands
1581 * @vhost: struct ibmvfc host
1582 *
1583 * Returns:
1584 * 1 if host can accept command / 0 if not
1585 **/
1586static inline int ibmvfc_host_chkready(struct ibmvfc_host *vhost)
1587{
1588 int result = 0;
1589
1590 switch (vhost->state) {
1591 case IBMVFC_LINK_DEAD:
1592 case IBMVFC_HOST_OFFLINE:
1593 result = DID_NO_CONNECT << 16;
1594 break;
1595 case IBMVFC_NO_CRQ:
1596 case IBMVFC_INITIALIZING:
1597 case IBMVFC_HALTED:
1598 case IBMVFC_LINK_DOWN:
1599 result = DID_REQUEUE << 16;
1600 break;
1601 case IBMVFC_ACTIVE:
1602 result = 0;
1603 break;
1604 };
1605
1606 return result;
1607}
1608
1609/**
1610 * ibmvfc_queuecommand - The queuecommand function of the scsi template
1611 * @cmnd: struct scsi_cmnd to be executed
1612 * @done: Callback function to be called when cmnd is completed
1613 *
1614 * Returns:
1615 * 0 on success / other on failure
1616 **/
Jeff Garzikf2812332010-11-16 02:10:29 -05001617static int ibmvfc_queuecommand_lck(struct scsi_cmnd *cmnd,
Brian King072b91f2008-07-01 13:14:30 -05001618 void (*done) (struct scsi_cmnd *))
1619{
1620 struct ibmvfc_host *vhost = shost_priv(cmnd->device->host);
1621 struct fc_rport *rport = starget_to_rport(scsi_target(cmnd->device));
1622 struct ibmvfc_cmd *vfc_cmd;
1623 struct ibmvfc_event *evt;
Brian King072b91f2008-07-01 13:14:30 -05001624 int rc;
1625
1626 if (unlikely((rc = fc_remote_port_chkready(rport))) ||
1627 unlikely((rc = ibmvfc_host_chkready(vhost)))) {
1628 cmnd->result = rc;
1629 done(cmnd);
1630 return 0;
1631 }
1632
1633 cmnd->result = (DID_OK << 16);
1634 evt = ibmvfc_get_event(vhost);
1635 ibmvfc_init_event(evt, ibmvfc_scsi_done, IBMVFC_CMD_FORMAT);
1636 evt->cmnd = cmnd;
1637 cmnd->scsi_done = done;
1638 vfc_cmd = &evt->iu.cmd;
1639 memset(vfc_cmd, 0, sizeof(*vfc_cmd));
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001640 vfc_cmd->resp.va = cpu_to_be64(be64_to_cpu(evt->crq.ioba) + offsetof(struct ibmvfc_cmd, rsp));
1641 vfc_cmd->resp.len = cpu_to_be32(sizeof(vfc_cmd->rsp));
1642 vfc_cmd->frame_type = cpu_to_be32(IBMVFC_SCSI_FCP_TYPE);
1643 vfc_cmd->payload_len = cpu_to_be32(sizeof(vfc_cmd->iu));
1644 vfc_cmd->resp_len = cpu_to_be32(sizeof(vfc_cmd->rsp));
1645 vfc_cmd->cancel_key = cpu_to_be32((unsigned long)cmnd->device->hostdata);
1646 vfc_cmd->tgt_scsi_id = cpu_to_be64(rport->port_id);
1647 vfc_cmd->iu.xfer_len = cpu_to_be32(scsi_bufflen(cmnd));
Brian King072b91f2008-07-01 13:14:30 -05001648 int_to_scsilun(cmnd->device->lun, &vfc_cmd->iu.lun);
1649 memcpy(vfc_cmd->iu.cdb, cmnd->cmnd, cmnd->cmd_len);
1650
Christoph Hellwig50668632014-10-30 14:30:06 +01001651 if (cmnd->flags & SCMD_TAGGED) {
1652 vfc_cmd->task_tag = cpu_to_be64(cmnd->tag);
1653 vfc_cmd->iu.pri_task_attr = IBMVFC_SIMPLE_TASK;
Brian King072b91f2008-07-01 13:14:30 -05001654 }
1655
1656 if (likely(!(rc = ibmvfc_map_sg_data(cmnd, evt, vfc_cmd, vhost->dev))))
1657 return ibmvfc_send_event(evt, vhost, 0);
1658
1659 ibmvfc_free_event(evt);
1660 if (rc == -ENOMEM)
1661 return SCSI_MLQUEUE_HOST_BUSY;
1662
1663 if (vhost->log_level > IBMVFC_DEFAULT_LOG_LEVEL)
1664 scmd_printk(KERN_ERR, cmnd,
1665 "Failed to map DMA buffer for command. rc=%d\n", rc);
1666
1667 cmnd->result = DID_ERROR << 16;
1668 done(cmnd);
1669 return 0;
1670}
1671
Jeff Garzikf2812332010-11-16 02:10:29 -05001672static DEF_SCSI_QCMD(ibmvfc_queuecommand)
1673
Brian King072b91f2008-07-01 13:14:30 -05001674/**
1675 * ibmvfc_sync_completion - Signal that a synchronous command has completed
1676 * @evt: ibmvfc event struct
1677 *
1678 **/
1679static void ibmvfc_sync_completion(struct ibmvfc_event *evt)
1680{
1681 /* copy the response back */
1682 if (evt->sync_iu)
1683 *evt->sync_iu = *evt->xfer_iu;
1684
1685 complete(&evt->comp);
1686}
1687
1688/**
Brian Kingd31429e2009-10-19 15:07:54 -05001689 * ibmvfc_bsg_timeout_done - Completion handler for cancelling BSG commands
1690 * @evt: struct ibmvfc_event
1691 *
1692 **/
1693static void ibmvfc_bsg_timeout_done(struct ibmvfc_event *evt)
1694{
1695 struct ibmvfc_host *vhost = evt->vhost;
1696
1697 ibmvfc_free_event(evt);
1698 vhost->aborting_passthru = 0;
1699 dev_info(vhost->dev, "Passthru command cancelled\n");
1700}
1701
1702/**
1703 * ibmvfc_bsg_timeout - Handle a BSG timeout
1704 * @job: struct fc_bsg_job that timed out
1705 *
1706 * Returns:
1707 * 0 on success / other on failure
1708 **/
1709static int ibmvfc_bsg_timeout(struct fc_bsg_job *job)
1710{
Johannes Thumshirncd21c602016-11-17 10:31:14 +01001711 struct ibmvfc_host *vhost = shost_priv(fc_bsg_to_shost(job));
Brian Kingd31429e2009-10-19 15:07:54 -05001712 unsigned long port_id = (unsigned long)job->dd_data;
1713 struct ibmvfc_event *evt;
1714 struct ibmvfc_tmf *tmf;
1715 unsigned long flags;
1716 int rc;
1717
1718 ENTER;
1719 spin_lock_irqsave(vhost->host->host_lock, flags);
1720 if (vhost->aborting_passthru || vhost->state != IBMVFC_ACTIVE) {
1721 __ibmvfc_reset_host(vhost);
1722 spin_unlock_irqrestore(vhost->host->host_lock, flags);
1723 return 0;
1724 }
1725
1726 vhost->aborting_passthru = 1;
1727 evt = ibmvfc_get_event(vhost);
1728 ibmvfc_init_event(evt, ibmvfc_bsg_timeout_done, IBMVFC_MAD_FORMAT);
1729
1730 tmf = &evt->iu.tmf;
1731 memset(tmf, 0, sizeof(*tmf));
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001732 tmf->common.version = cpu_to_be32(1);
1733 tmf->common.opcode = cpu_to_be32(IBMVFC_TMF_MAD);
1734 tmf->common.length = cpu_to_be16(sizeof(*tmf));
1735 tmf->scsi_id = cpu_to_be64(port_id);
1736 tmf->cancel_key = cpu_to_be32(IBMVFC_PASSTHRU_CANCEL_KEY);
1737 tmf->my_cancel_key = cpu_to_be32(IBMVFC_INTERNAL_CANCEL_KEY);
Brian Kingd31429e2009-10-19 15:07:54 -05001738 rc = ibmvfc_send_event(evt, vhost, default_timeout);
1739
1740 if (rc != 0) {
1741 vhost->aborting_passthru = 0;
1742 dev_err(vhost->dev, "Failed to send cancel event. rc=%d\n", rc);
1743 rc = -EIO;
1744 } else
1745 dev_info(vhost->dev, "Cancelling passthru command to port id 0x%lx\n",
1746 port_id);
1747
1748 spin_unlock_irqrestore(vhost->host->host_lock, flags);
1749
1750 LEAVE;
1751 return rc;
1752}
1753
1754/**
1755 * ibmvfc_bsg_plogi - PLOGI into a target to handle a BSG command
1756 * @vhost: struct ibmvfc_host to send command
1757 * @port_id: port ID to send command
1758 *
1759 * Returns:
1760 * 0 on success / other on failure
1761 **/
1762static int ibmvfc_bsg_plogi(struct ibmvfc_host *vhost, unsigned int port_id)
1763{
1764 struct ibmvfc_port_login *plogi;
1765 struct ibmvfc_target *tgt;
1766 struct ibmvfc_event *evt;
1767 union ibmvfc_iu rsp_iu;
1768 unsigned long flags;
1769 int rc = 0, issue_login = 1;
1770
1771 ENTER;
1772 spin_lock_irqsave(vhost->host->host_lock, flags);
1773 list_for_each_entry(tgt, &vhost->targets, queue) {
1774 if (tgt->scsi_id == port_id) {
1775 issue_login = 0;
1776 break;
1777 }
1778 }
1779
1780 if (!issue_login)
1781 goto unlock_out;
1782 if (unlikely((rc = ibmvfc_host_chkready(vhost))))
1783 goto unlock_out;
1784
1785 evt = ibmvfc_get_event(vhost);
1786 ibmvfc_init_event(evt, ibmvfc_sync_completion, IBMVFC_MAD_FORMAT);
1787 plogi = &evt->iu.plogi;
1788 memset(plogi, 0, sizeof(*plogi));
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001789 plogi->common.version = cpu_to_be32(1);
1790 plogi->common.opcode = cpu_to_be32(IBMVFC_PORT_LOGIN);
1791 plogi->common.length = cpu_to_be16(sizeof(*plogi));
1792 plogi->scsi_id = cpu_to_be64(port_id);
Brian Kingd31429e2009-10-19 15:07:54 -05001793 evt->sync_iu = &rsp_iu;
1794 init_completion(&evt->comp);
1795
1796 rc = ibmvfc_send_event(evt, vhost, default_timeout);
1797 spin_unlock_irqrestore(vhost->host->host_lock, flags);
1798
1799 if (rc)
1800 return -EIO;
1801
1802 wait_for_completion(&evt->comp);
1803
1804 if (rsp_iu.plogi.common.status)
1805 rc = -EIO;
1806
1807 spin_lock_irqsave(vhost->host->host_lock, flags);
1808 ibmvfc_free_event(evt);
1809unlock_out:
1810 spin_unlock_irqrestore(vhost->host->host_lock, flags);
1811 LEAVE;
1812 return rc;
1813}
1814
1815/**
1816 * ibmvfc_bsg_request - Handle a BSG request
1817 * @job: struct fc_bsg_job to be executed
1818 *
1819 * Returns:
1820 * 0 on success / other on failure
1821 **/
1822static int ibmvfc_bsg_request(struct fc_bsg_job *job)
1823{
Johannes Thumshirncd21c602016-11-17 10:31:14 +01001824 struct ibmvfc_host *vhost = shost_priv(fc_bsg_to_shost(job));
Brian Kingd31429e2009-10-19 15:07:54 -05001825 struct fc_rport *rport = job->rport;
1826 struct ibmvfc_passthru_mad *mad;
1827 struct ibmvfc_event *evt;
1828 union ibmvfc_iu rsp_iu;
1829 unsigned long flags, port_id = -1;
Johannes Thumshirn01e0e152016-11-17 10:31:12 +01001830 struct fc_bsg_request *bsg_request = job->request;
1831 struct fc_bsg_reply *bsg_reply = job->reply;
1832 unsigned int code = bsg_request->msgcode;
Brian Kingd31429e2009-10-19 15:07:54 -05001833 int rc = 0, req_seg, rsp_seg, issue_login = 0;
1834 u32 fc_flags, rsp_len;
1835
1836 ENTER;
Johannes Thumshirn01e0e152016-11-17 10:31:12 +01001837 bsg_reply->reply_payload_rcv_len = 0;
Brian Kingd31429e2009-10-19 15:07:54 -05001838 if (rport)
1839 port_id = rport->port_id;
1840
1841 switch (code) {
1842 case FC_BSG_HST_ELS_NOLOGIN:
Johannes Thumshirn01e0e152016-11-17 10:31:12 +01001843 port_id = (bsg_request->rqst_data.h_els.port_id[0] << 16) |
1844 (bsg_request->rqst_data.h_els.port_id[1] << 8) |
1845 bsg_request->rqst_data.h_els.port_id[2];
Brian Kingd31429e2009-10-19 15:07:54 -05001846 case FC_BSG_RPT_ELS:
1847 fc_flags = IBMVFC_FC_ELS;
1848 break;
1849 case FC_BSG_HST_CT:
1850 issue_login = 1;
Johannes Thumshirn01e0e152016-11-17 10:31:12 +01001851 port_id = (bsg_request->rqst_data.h_ct.port_id[0] << 16) |
1852 (bsg_request->rqst_data.h_ct.port_id[1] << 8) |
1853 bsg_request->rqst_data.h_ct.port_id[2];
Brian Kingd31429e2009-10-19 15:07:54 -05001854 case FC_BSG_RPT_CT:
1855 fc_flags = IBMVFC_FC_CT_IU;
1856 break;
1857 default:
1858 return -ENOTSUPP;
1859 };
1860
1861 if (port_id == -1)
1862 return -EINVAL;
1863 if (!mutex_trylock(&vhost->passthru_mutex))
1864 return -EBUSY;
1865
1866 job->dd_data = (void *)port_id;
1867 req_seg = dma_map_sg(vhost->dev, job->request_payload.sg_list,
1868 job->request_payload.sg_cnt, DMA_TO_DEVICE);
1869
1870 if (!req_seg) {
1871 mutex_unlock(&vhost->passthru_mutex);
1872 return -ENOMEM;
1873 }
1874
1875 rsp_seg = dma_map_sg(vhost->dev, job->reply_payload.sg_list,
1876 job->reply_payload.sg_cnt, DMA_FROM_DEVICE);
1877
1878 if (!rsp_seg) {
1879 dma_unmap_sg(vhost->dev, job->request_payload.sg_list,
1880 job->request_payload.sg_cnt, DMA_TO_DEVICE);
1881 mutex_unlock(&vhost->passthru_mutex);
1882 return -ENOMEM;
1883 }
1884
1885 if (req_seg > 1 || rsp_seg > 1) {
1886 rc = -EINVAL;
1887 goto out;
1888 }
1889
1890 if (issue_login)
1891 rc = ibmvfc_bsg_plogi(vhost, port_id);
1892
1893 spin_lock_irqsave(vhost->host->host_lock, flags);
1894
1895 if (unlikely(rc || (rport && (rc = fc_remote_port_chkready(rport)))) ||
1896 unlikely((rc = ibmvfc_host_chkready(vhost)))) {
1897 spin_unlock_irqrestore(vhost->host->host_lock, flags);
1898 goto out;
1899 }
1900
1901 evt = ibmvfc_get_event(vhost);
1902 ibmvfc_init_event(evt, ibmvfc_sync_completion, IBMVFC_MAD_FORMAT);
1903 mad = &evt->iu.passthru;
1904
1905 memset(mad, 0, sizeof(*mad));
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001906 mad->common.version = cpu_to_be32(1);
1907 mad->common.opcode = cpu_to_be32(IBMVFC_PASSTHRU);
1908 mad->common.length = cpu_to_be16(sizeof(*mad) - sizeof(mad->fc_iu) - sizeof(mad->iu));
Brian Kingd31429e2009-10-19 15:07:54 -05001909
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001910 mad->cmd_ioba.va = cpu_to_be64(be64_to_cpu(evt->crq.ioba) +
1911 offsetof(struct ibmvfc_passthru_mad, iu));
1912 mad->cmd_ioba.len = cpu_to_be32(sizeof(mad->iu));
Brian Kingd31429e2009-10-19 15:07:54 -05001913
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001914 mad->iu.cmd_len = cpu_to_be32(job->request_payload.payload_len);
1915 mad->iu.rsp_len = cpu_to_be32(job->reply_payload.payload_len);
1916 mad->iu.flags = cpu_to_be32(fc_flags);
1917 mad->iu.cancel_key = cpu_to_be32(IBMVFC_PASSTHRU_CANCEL_KEY);
Brian Kingd31429e2009-10-19 15:07:54 -05001918
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001919 mad->iu.cmd.va = cpu_to_be64(sg_dma_address(job->request_payload.sg_list));
1920 mad->iu.cmd.len = cpu_to_be32(sg_dma_len(job->request_payload.sg_list));
1921 mad->iu.rsp.va = cpu_to_be64(sg_dma_address(job->reply_payload.sg_list));
1922 mad->iu.rsp.len = cpu_to_be32(sg_dma_len(job->reply_payload.sg_list));
1923 mad->iu.scsi_id = cpu_to_be64(port_id);
1924 mad->iu.tag = cpu_to_be64((u64)evt);
1925 rsp_len = be32_to_cpu(mad->iu.rsp.len);
Brian Kingd31429e2009-10-19 15:07:54 -05001926
1927 evt->sync_iu = &rsp_iu;
1928 init_completion(&evt->comp);
1929 rc = ibmvfc_send_event(evt, vhost, 0);
1930 spin_unlock_irqrestore(vhost->host->host_lock, flags);
1931
1932 if (rc) {
1933 rc = -EIO;
1934 goto out;
1935 }
1936
1937 wait_for_completion(&evt->comp);
1938
1939 if (rsp_iu.passthru.common.status)
1940 rc = -EIO;
1941 else
Johannes Thumshirn01e0e152016-11-17 10:31:12 +01001942 bsg_reply->reply_payload_rcv_len = rsp_len;
Brian Kingd31429e2009-10-19 15:07:54 -05001943
1944 spin_lock_irqsave(vhost->host->host_lock, flags);
1945 ibmvfc_free_event(evt);
1946 spin_unlock_irqrestore(vhost->host->host_lock, flags);
Johannes Thumshirn01e0e152016-11-17 10:31:12 +01001947 bsg_reply->result = rc;
Johannes Thumshirn1abaede2016-11-17 10:31:13 +01001948 fc_bsg_jobdone(job, bsg_reply->result,
1949 bsg_reply->reply_payload_rcv_len);
Brian Kingd31429e2009-10-19 15:07:54 -05001950 rc = 0;
1951out:
1952 dma_unmap_sg(vhost->dev, job->request_payload.sg_list,
1953 job->request_payload.sg_cnt, DMA_TO_DEVICE);
1954 dma_unmap_sg(vhost->dev, job->reply_payload.sg_list,
1955 job->reply_payload.sg_cnt, DMA_FROM_DEVICE);
1956 mutex_unlock(&vhost->passthru_mutex);
1957 LEAVE;
1958 return rc;
1959}
1960
1961/**
Brian King072b91f2008-07-01 13:14:30 -05001962 * ibmvfc_reset_device - Reset the device with the specified reset type
1963 * @sdev: scsi device to reset
1964 * @type: reset type
1965 * @desc: reset type description for log messages
1966 *
1967 * Returns:
1968 * 0 on success / other on failure
1969 **/
1970static int ibmvfc_reset_device(struct scsi_device *sdev, int type, char *desc)
1971{
1972 struct ibmvfc_host *vhost = shost_priv(sdev->host);
1973 struct fc_rport *rport = starget_to_rport(scsi_target(sdev));
1974 struct ibmvfc_cmd *tmf;
Brian King50ed9a02008-10-29 08:46:47 -05001975 struct ibmvfc_event *evt = NULL;
Brian King072b91f2008-07-01 13:14:30 -05001976 union ibmvfc_iu rsp_iu;
1977 struct ibmvfc_fcp_rsp *fc_rsp = &rsp_iu.cmd.rsp;
1978 int rsp_rc = -EBUSY;
1979 unsigned long flags;
1980 int rsp_code = 0;
1981
1982 spin_lock_irqsave(vhost->host->host_lock, flags);
1983 if (vhost->state == IBMVFC_ACTIVE) {
1984 evt = ibmvfc_get_event(vhost);
1985 ibmvfc_init_event(evt, ibmvfc_sync_completion, IBMVFC_CMD_FORMAT);
1986
1987 tmf = &evt->iu.cmd;
1988 memset(tmf, 0, sizeof(*tmf));
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001989 tmf->resp.va = cpu_to_be64(be64_to_cpu(evt->crq.ioba) + offsetof(struct ibmvfc_cmd, rsp));
1990 tmf->resp.len = cpu_to_be32(sizeof(tmf->rsp));
1991 tmf->frame_type = cpu_to_be32(IBMVFC_SCSI_FCP_TYPE);
1992 tmf->payload_len = cpu_to_be32(sizeof(tmf->iu));
1993 tmf->resp_len = cpu_to_be32(sizeof(tmf->rsp));
1994 tmf->cancel_key = cpu_to_be32((unsigned long)sdev->hostdata);
1995 tmf->tgt_scsi_id = cpu_to_be64(rport->port_id);
Brian King072b91f2008-07-01 13:14:30 -05001996 int_to_scsilun(sdev->lun, &tmf->iu.lun);
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05001997 tmf->flags = cpu_to_be16((IBMVFC_NO_MEM_DESC | IBMVFC_TMF));
Brian King072b91f2008-07-01 13:14:30 -05001998 tmf->iu.tmf_flags = type;
1999 evt->sync_iu = &rsp_iu;
2000
2001 init_completion(&evt->comp);
2002 rsp_rc = ibmvfc_send_event(evt, vhost, default_timeout);
2003 }
2004 spin_unlock_irqrestore(vhost->host->host_lock, flags);
2005
2006 if (rsp_rc != 0) {
2007 sdev_printk(KERN_ERR, sdev, "Failed to send %s reset event. rc=%d\n",
2008 desc, rsp_rc);
2009 return -EIO;
2010 }
2011
2012 sdev_printk(KERN_INFO, sdev, "Resetting %s\n", desc);
2013 wait_for_completion(&evt->comp);
2014
Brian King230934a2009-10-19 15:07:47 -05002015 if (rsp_iu.cmd.status)
2016 rsp_code = ibmvfc_get_err_result(&rsp_iu.cmd);
2017
2018 if (rsp_code) {
Brian King072b91f2008-07-01 13:14:30 -05002019 if (fc_rsp->flags & FCP_RSP_LEN_VALID)
2020 rsp_code = fc_rsp->data.info.rsp_code;
2021
2022 sdev_printk(KERN_ERR, sdev, "%s reset failed: %s (%x:%x) "
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05002023 "flags: %x fcp_rsp: %x, scsi_status: %x\n", desc,
2024 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 -05002025 rsp_iu.cmd.status, rsp_iu.cmd.error, fc_rsp->flags, rsp_code,
2026 fc_rsp->scsi_status);
2027 rsp_rc = -EIO;
2028 } else
2029 sdev_printk(KERN_INFO, sdev, "%s reset successful\n", desc);
2030
2031 spin_lock_irqsave(vhost->host->host_lock, flags);
2032 ibmvfc_free_event(evt);
2033 spin_unlock_irqrestore(vhost->host->host_lock, flags);
2034 return rsp_rc;
2035}
2036
2037/**
Brian Kingd2fab5c2010-08-05 16:38:34 -05002038 * ibmvfc_match_rport - Match function for specified remote port
2039 * @evt: ibmvfc event struct
2040 * @device: device to match (rport)
Brian King072b91f2008-07-01 13:14:30 -05002041 *
2042 * Returns:
Brian Kingd2fab5c2010-08-05 16:38:34 -05002043 * 1 if event matches rport / 0 if event does not match rport
Brian King072b91f2008-07-01 13:14:30 -05002044 **/
Brian Kingd2fab5c2010-08-05 16:38:34 -05002045static int ibmvfc_match_rport(struct ibmvfc_event *evt, void *rport)
Brian King072b91f2008-07-01 13:14:30 -05002046{
Brian Kingd2fab5c2010-08-05 16:38:34 -05002047 struct fc_rport *cmd_rport;
Brian King072b91f2008-07-01 13:14:30 -05002048
Brian Kingd2fab5c2010-08-05 16:38:34 -05002049 if (evt->cmnd) {
2050 cmd_rport = starget_to_rport(scsi_target(evt->cmnd->device));
2051 if (cmd_rport == rport)
2052 return 1;
Brian King072b91f2008-07-01 13:14:30 -05002053 }
Brian King072b91f2008-07-01 13:14:30 -05002054 return 0;
2055}
2056
2057/**
Brian Kingad8dcff2008-10-29 08:46:41 -05002058 * ibmvfc_match_target - Match function for specified target
2059 * @evt: ibmvfc event struct
2060 * @device: device to match (starget)
2061 *
2062 * Returns:
2063 * 1 if event matches starget / 0 if event does not match starget
2064 **/
2065static int ibmvfc_match_target(struct ibmvfc_event *evt, void *device)
2066{
2067 if (evt->cmnd && scsi_target(evt->cmnd->device) == device)
2068 return 1;
2069 return 0;
2070}
2071
2072/**
2073 * ibmvfc_match_lun - Match function for specified LUN
2074 * @evt: ibmvfc event struct
2075 * @device: device to match (sdev)
2076 *
2077 * Returns:
2078 * 1 if event matches sdev / 0 if event does not match sdev
2079 **/
2080static int ibmvfc_match_lun(struct ibmvfc_event *evt, void *device)
2081{
2082 if (evt->cmnd && evt->cmnd->device == device)
2083 return 1;
2084 return 0;
2085}
2086
2087/**
2088 * ibmvfc_wait_for_ops - Wait for ops to complete
2089 * @vhost: ibmvfc host struct
2090 * @device: device to match (starget or sdev)
2091 * @match: match function
2092 *
2093 * Returns:
2094 * SUCCESS / FAILED
2095 **/
2096static int ibmvfc_wait_for_ops(struct ibmvfc_host *vhost, void *device,
2097 int (*match) (struct ibmvfc_event *, void *))
2098{
2099 struct ibmvfc_event *evt;
2100 DECLARE_COMPLETION_ONSTACK(comp);
2101 int wait;
2102 unsigned long flags;
Brian Kingdaa142d2010-04-20 14:21:35 -05002103 signed long timeout = IBMVFC_ABORT_WAIT_TIMEOUT * HZ;
Brian Kingad8dcff2008-10-29 08:46:41 -05002104
2105 ENTER;
2106 do {
2107 wait = 0;
2108 spin_lock_irqsave(vhost->host->host_lock, flags);
2109 list_for_each_entry(evt, &vhost->sent, queue) {
2110 if (match(evt, device)) {
2111 evt->eh_comp = &comp;
2112 wait++;
2113 }
2114 }
2115 spin_unlock_irqrestore(vhost->host->host_lock, flags);
2116
2117 if (wait) {
2118 timeout = wait_for_completion_timeout(&comp, timeout);
2119
2120 if (!timeout) {
2121 wait = 0;
2122 spin_lock_irqsave(vhost->host->host_lock, flags);
2123 list_for_each_entry(evt, &vhost->sent, queue) {
2124 if (match(evt, device)) {
2125 evt->eh_comp = NULL;
2126 wait++;
2127 }
2128 }
2129 spin_unlock_irqrestore(vhost->host->host_lock, flags);
2130 if (wait)
2131 dev_err(vhost->dev, "Timed out waiting for aborted commands\n");
2132 LEAVE;
2133 return wait ? FAILED : SUCCESS;
2134 }
2135 }
2136 } while (wait);
2137
2138 LEAVE;
2139 return SUCCESS;
2140}
2141
2142/**
Brian Kingd2fab5c2010-08-05 16:38:34 -05002143 * ibmvfc_cancel_all - Cancel all outstanding commands to the device
2144 * @sdev: scsi device to cancel commands
2145 * @type: type of error recovery being performed
2146 *
2147 * This sends a cancel to the VIOS for the specified device. This does
2148 * NOT send any abort to the actual device. That must be done separately.
2149 *
2150 * Returns:
2151 * 0 on success / other on failure
2152 **/
2153static int ibmvfc_cancel_all(struct scsi_device *sdev, int type)
2154{
2155 struct ibmvfc_host *vhost = shost_priv(sdev->host);
2156 struct scsi_target *starget = scsi_target(sdev);
2157 struct fc_rport *rport = starget_to_rport(starget);
2158 struct ibmvfc_tmf *tmf;
2159 struct ibmvfc_event *evt, *found_evt;
2160 union ibmvfc_iu rsp;
2161 int rsp_rc = -EBUSY;
2162 unsigned long flags;
2163 u16 status;
2164
2165 ENTER;
2166 spin_lock_irqsave(vhost->host->host_lock, flags);
2167 found_evt = NULL;
2168 list_for_each_entry(evt, &vhost->sent, queue) {
2169 if (evt->cmnd && evt->cmnd->device == sdev) {
2170 found_evt = evt;
2171 break;
2172 }
2173 }
2174
2175 if (!found_evt) {
2176 if (vhost->log_level > IBMVFC_DEFAULT_LOG_LEVEL)
2177 sdev_printk(KERN_INFO, sdev, "No events found to cancel\n");
2178 spin_unlock_irqrestore(vhost->host->host_lock, flags);
2179 return 0;
2180 }
2181
Brian King55d29bf2013-04-12 08:25:17 -05002182 if (vhost->logged_in) {
Brian Kingd2fab5c2010-08-05 16:38:34 -05002183 evt = ibmvfc_get_event(vhost);
2184 ibmvfc_init_event(evt, ibmvfc_sync_completion, IBMVFC_MAD_FORMAT);
2185
2186 tmf = &evt->iu.tmf;
2187 memset(tmf, 0, sizeof(*tmf));
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05002188 tmf->common.version = cpu_to_be32(1);
2189 tmf->common.opcode = cpu_to_be32(IBMVFC_TMF_MAD);
2190 tmf->common.length = cpu_to_be16(sizeof(*tmf));
2191 tmf->scsi_id = cpu_to_be64(rport->port_id);
Brian Kingd2fab5c2010-08-05 16:38:34 -05002192 int_to_scsilun(sdev->lun, &tmf->lun);
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05002193 if (!(be64_to_cpu(vhost->login_buf->resp.capabilities) & IBMVFC_CAN_SUPPRESS_ABTS))
Brian King90f725d2013-04-12 08:25:18 -05002194 type &= ~IBMVFC_TMF_SUPPRESS_ABTS;
Brian King55d29bf2013-04-12 08:25:17 -05002195 if (vhost->state == IBMVFC_ACTIVE)
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05002196 tmf->flags = cpu_to_be32((type | IBMVFC_TMF_LUA_VALID));
Brian King55d29bf2013-04-12 08:25:17 -05002197 else
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05002198 tmf->flags = cpu_to_be32(((type & IBMVFC_TMF_SUPPRESS_ABTS) | IBMVFC_TMF_LUA_VALID));
2199 tmf->cancel_key = cpu_to_be32((unsigned long)sdev->hostdata);
2200 tmf->my_cancel_key = cpu_to_be32((unsigned long)starget->hostdata);
Brian Kingd2fab5c2010-08-05 16:38:34 -05002201
2202 evt->sync_iu = &rsp;
2203 init_completion(&evt->comp);
2204 rsp_rc = ibmvfc_send_event(evt, vhost, default_timeout);
2205 }
2206
2207 spin_unlock_irqrestore(vhost->host->host_lock, flags);
2208
2209 if (rsp_rc != 0) {
2210 sdev_printk(KERN_ERR, sdev, "Failed to send cancel event. rc=%d\n", rsp_rc);
Brian Kingc281e322013-08-20 11:08:42 -05002211 /* If failure is received, the host adapter is most likely going
2212 through reset, return success so the caller will wait for the command
2213 being cancelled to get returned */
2214 return 0;
Brian Kingd2fab5c2010-08-05 16:38:34 -05002215 }
2216
2217 sdev_printk(KERN_INFO, sdev, "Cancelling outstanding commands.\n");
2218
2219 wait_for_completion(&evt->comp);
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05002220 status = be16_to_cpu(rsp.mad_common.status);
Brian Kingd2fab5c2010-08-05 16:38:34 -05002221 spin_lock_irqsave(vhost->host->host_lock, flags);
2222 ibmvfc_free_event(evt);
2223 spin_unlock_irqrestore(vhost->host->host_lock, flags);
2224
2225 if (status != IBMVFC_MAD_SUCCESS) {
2226 sdev_printk(KERN_WARNING, sdev, "Cancel failed with rc=%x\n", status);
Brian Kingc281e322013-08-20 11:08:42 -05002227 switch (status) {
2228 case IBMVFC_MAD_DRIVER_FAILED:
2229 case IBMVFC_MAD_CRQ_ERROR:
2230 /* Host adapter most likely going through reset, return success to
2231 the caller will wait for the command being cancelled to get returned */
2232 return 0;
2233 default:
2234 return -EIO;
2235 };
Brian Kingd2fab5c2010-08-05 16:38:34 -05002236 }
2237
2238 sdev_printk(KERN_INFO, sdev, "Successfully cancelled outstanding commands\n");
2239 return 0;
2240}
2241
2242/**
2243 * ibmvfc_match_key - Match function for specified cancel key
2244 * @evt: ibmvfc event struct
2245 * @key: cancel key to match
2246 *
2247 * Returns:
2248 * 1 if event matches key / 0 if event does not match key
2249 **/
2250static int ibmvfc_match_key(struct ibmvfc_event *evt, void *key)
2251{
2252 unsigned long cancel_key = (unsigned long)key;
2253
2254 if (evt->crq.format == IBMVFC_CMD_FORMAT &&
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05002255 be32_to_cpu(evt->iu.cmd.cancel_key) == cancel_key)
Brian Kingd2fab5c2010-08-05 16:38:34 -05002256 return 1;
2257 return 0;
2258}
2259
2260/**
Brian Kinga077c7f2012-08-24 16:50:59 -05002261 * ibmvfc_match_evt - Match function for specified event
2262 * @evt: ibmvfc event struct
2263 * @match: event to match
2264 *
2265 * Returns:
2266 * 1 if event matches key / 0 if event does not match key
2267 **/
2268static int ibmvfc_match_evt(struct ibmvfc_event *evt, void *match)
2269{
2270 if (evt == match)
2271 return 1;
2272 return 0;
2273}
2274
2275/**
Brian Kingd2fab5c2010-08-05 16:38:34 -05002276 * ibmvfc_abort_task_set - Abort outstanding commands to the device
2277 * @sdev: scsi device to abort commands
2278 *
2279 * This sends an Abort Task Set to the VIOS for the specified device. This does
2280 * NOT send any cancel to the VIOS. That must be done separately.
2281 *
2282 * Returns:
2283 * 0 on success / other on failure
2284 **/
2285static int ibmvfc_abort_task_set(struct scsi_device *sdev)
2286{
2287 struct ibmvfc_host *vhost = shost_priv(sdev->host);
2288 struct fc_rport *rport = starget_to_rport(scsi_target(sdev));
2289 struct ibmvfc_cmd *tmf;
2290 struct ibmvfc_event *evt, *found_evt;
2291 union ibmvfc_iu rsp_iu;
2292 struct ibmvfc_fcp_rsp *fc_rsp = &rsp_iu.cmd.rsp;
2293 int rc, rsp_rc = -EBUSY;
2294 unsigned long flags, timeout = IBMVFC_ABORT_TIMEOUT;
2295 int rsp_code = 0;
2296
2297 spin_lock_irqsave(vhost->host->host_lock, flags);
2298 found_evt = NULL;
2299 list_for_each_entry(evt, &vhost->sent, queue) {
2300 if (evt->cmnd && evt->cmnd->device == sdev) {
2301 found_evt = evt;
2302 break;
2303 }
2304 }
2305
2306 if (!found_evt) {
2307 if (vhost->log_level > IBMVFC_DEFAULT_LOG_LEVEL)
2308 sdev_printk(KERN_INFO, sdev, "No events found to abort\n");
2309 spin_unlock_irqrestore(vhost->host->host_lock, flags);
2310 return 0;
2311 }
2312
2313 if (vhost->state == IBMVFC_ACTIVE) {
2314 evt = ibmvfc_get_event(vhost);
2315 ibmvfc_init_event(evt, ibmvfc_sync_completion, IBMVFC_CMD_FORMAT);
2316
2317 tmf = &evt->iu.cmd;
2318 memset(tmf, 0, sizeof(*tmf));
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05002319 tmf->resp.va = cpu_to_be64(be64_to_cpu(evt->crq.ioba) + offsetof(struct ibmvfc_cmd, rsp));
2320 tmf->resp.len = cpu_to_be32(sizeof(tmf->rsp));
2321 tmf->frame_type = cpu_to_be32(IBMVFC_SCSI_FCP_TYPE);
2322 tmf->payload_len = cpu_to_be32(sizeof(tmf->iu));
2323 tmf->resp_len = cpu_to_be32(sizeof(tmf->rsp));
2324 tmf->cancel_key = cpu_to_be32((unsigned long)sdev->hostdata);
2325 tmf->tgt_scsi_id = cpu_to_be64(rport->port_id);
Brian Kingd2fab5c2010-08-05 16:38:34 -05002326 int_to_scsilun(sdev->lun, &tmf->iu.lun);
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05002327 tmf->flags = cpu_to_be16((IBMVFC_NO_MEM_DESC | IBMVFC_TMF));
Brian Kingd2fab5c2010-08-05 16:38:34 -05002328 tmf->iu.tmf_flags = IBMVFC_ABORT_TASK_SET;
2329 evt->sync_iu = &rsp_iu;
2330
2331 init_completion(&evt->comp);
2332 rsp_rc = ibmvfc_send_event(evt, vhost, default_timeout);
2333 }
2334
2335 spin_unlock_irqrestore(vhost->host->host_lock, flags);
2336
2337 if (rsp_rc != 0) {
2338 sdev_printk(KERN_ERR, sdev, "Failed to send abort. rc=%d\n", rsp_rc);
2339 return -EIO;
2340 }
2341
2342 sdev_printk(KERN_INFO, sdev, "Aborting outstanding commands\n");
2343 timeout = wait_for_completion_timeout(&evt->comp, timeout);
2344
2345 if (!timeout) {
Brian Kingf8804b72013-04-12 08:25:15 -05002346 rc = ibmvfc_cancel_all(sdev, 0);
Brian Kingd2fab5c2010-08-05 16:38:34 -05002347 if (!rc) {
2348 rc = ibmvfc_wait_for_ops(vhost, sdev->hostdata, ibmvfc_match_key);
2349 if (rc == SUCCESS)
2350 rc = 0;
2351 }
2352
2353 if (rc) {
2354 sdev_printk(KERN_INFO, sdev, "Cancel failed, resetting host\n");
2355 ibmvfc_reset_host(vhost);
Brian Kinga077c7f2012-08-24 16:50:59 -05002356 rsp_rc = -EIO;
2357 rc = ibmvfc_wait_for_ops(vhost, sdev->hostdata, ibmvfc_match_key);
2358
2359 if (rc == SUCCESS)
2360 rsp_rc = 0;
2361
2362 rc = ibmvfc_wait_for_ops(vhost, evt, ibmvfc_match_evt);
2363 if (rc != SUCCESS) {
2364 spin_lock_irqsave(vhost->host->host_lock, flags);
2365 ibmvfc_hard_reset_host(vhost);
2366 spin_unlock_irqrestore(vhost->host->host_lock, flags);
2367 rsp_rc = 0;
2368 }
2369
Brian Kingd2fab5c2010-08-05 16:38:34 -05002370 goto out;
2371 }
2372 }
2373
2374 if (rsp_iu.cmd.status)
2375 rsp_code = ibmvfc_get_err_result(&rsp_iu.cmd);
2376
2377 if (rsp_code) {
2378 if (fc_rsp->flags & FCP_RSP_LEN_VALID)
2379 rsp_code = fc_rsp->data.info.rsp_code;
2380
2381 sdev_printk(KERN_ERR, sdev, "Abort failed: %s (%x:%x) "
2382 "flags: %x fcp_rsp: %x, scsi_status: %x\n",
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05002383 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 -05002384 rsp_iu.cmd.status, rsp_iu.cmd.error, fc_rsp->flags, rsp_code,
2385 fc_rsp->scsi_status);
2386 rsp_rc = -EIO;
2387 } else
2388 sdev_printk(KERN_INFO, sdev, "Abort successful\n");
2389
2390out:
2391 spin_lock_irqsave(vhost->host->host_lock, flags);
2392 ibmvfc_free_event(evt);
2393 spin_unlock_irqrestore(vhost->host->host_lock, flags);
2394 return rsp_rc;
2395}
2396
2397/**
Brian King072b91f2008-07-01 13:14:30 -05002398 * ibmvfc_eh_abort_handler - Abort a command
2399 * @cmd: scsi command to abort
2400 *
2401 * Returns:
Brian King93631b42013-04-12 08:25:16 -05002402 * SUCCESS / FAST_IO_FAIL / FAILED
Brian King072b91f2008-07-01 13:14:30 -05002403 **/
2404static int ibmvfc_eh_abort_handler(struct scsi_cmnd *cmd)
2405{
Brian Kingad8dcff2008-10-29 08:46:41 -05002406 struct scsi_device *sdev = cmd->device;
2407 struct ibmvfc_host *vhost = shost_priv(sdev->host);
Brian King55d29bf2013-04-12 08:25:17 -05002408 int cancel_rc, block_rc;
Brian Kingad8dcff2008-10-29 08:46:41 -05002409 int rc = FAILED;
Brian King072b91f2008-07-01 13:14:30 -05002410
2411 ENTER;
Brian King93631b42013-04-12 08:25:16 -05002412 block_rc = fc_block_scsi_eh(cmd);
Brian King072b91f2008-07-01 13:14:30 -05002413 ibmvfc_wait_while_resetting(vhost);
Brian King93631b42013-04-12 08:25:16 -05002414 if (block_rc != FAST_IO_FAIL) {
2415 cancel_rc = ibmvfc_cancel_all(sdev, IBMVFC_TMF_ABORT_TASK_SET);
Brian King55d29bf2013-04-12 08:25:17 -05002416 ibmvfc_abort_task_set(sdev);
Brian King93631b42013-04-12 08:25:16 -05002417 } else
Brian King90f725d2013-04-12 08:25:18 -05002418 cancel_rc = ibmvfc_cancel_all(sdev, IBMVFC_TMF_SUPPRESS_ABTS);
Brian King072b91f2008-07-01 13:14:30 -05002419
Brian King55d29bf2013-04-12 08:25:17 -05002420 if (!cancel_rc)
Brian Kingad8dcff2008-10-29 08:46:41 -05002421 rc = ibmvfc_wait_for_ops(vhost, sdev, ibmvfc_match_lun);
Brian King072b91f2008-07-01 13:14:30 -05002422
Brian King93631b42013-04-12 08:25:16 -05002423 if (block_rc == FAST_IO_FAIL && rc != FAILED)
2424 rc = FAST_IO_FAIL;
2425
Brian King072b91f2008-07-01 13:14:30 -05002426 LEAVE;
Brian Kingad8dcff2008-10-29 08:46:41 -05002427 return rc;
Brian King072b91f2008-07-01 13:14:30 -05002428}
2429
2430/**
2431 * ibmvfc_eh_device_reset_handler - Reset a single LUN
2432 * @cmd: scsi command struct
2433 *
2434 * Returns:
Brian King93631b42013-04-12 08:25:16 -05002435 * SUCCESS / FAST_IO_FAIL / FAILED
Brian King072b91f2008-07-01 13:14:30 -05002436 **/
2437static int ibmvfc_eh_device_reset_handler(struct scsi_cmnd *cmd)
2438{
Brian Kingad8dcff2008-10-29 08:46:41 -05002439 struct scsi_device *sdev = cmd->device;
2440 struct ibmvfc_host *vhost = shost_priv(sdev->host);
Brian King93631b42013-04-12 08:25:16 -05002441 int cancel_rc, block_rc, reset_rc = 0;
Brian Kingad8dcff2008-10-29 08:46:41 -05002442 int rc = FAILED;
Brian King072b91f2008-07-01 13:14:30 -05002443
2444 ENTER;
Brian King93631b42013-04-12 08:25:16 -05002445 block_rc = fc_block_scsi_eh(cmd);
Brian King072b91f2008-07-01 13:14:30 -05002446 ibmvfc_wait_while_resetting(vhost);
Brian King93631b42013-04-12 08:25:16 -05002447 if (block_rc != FAST_IO_FAIL) {
2448 cancel_rc = ibmvfc_cancel_all(sdev, IBMVFC_TMF_LUN_RESET);
2449 reset_rc = ibmvfc_reset_device(sdev, IBMVFC_LUN_RESET, "LUN");
2450 } else
Brian King90f725d2013-04-12 08:25:18 -05002451 cancel_rc = ibmvfc_cancel_all(sdev, IBMVFC_TMF_SUPPRESS_ABTS);
Brian King072b91f2008-07-01 13:14:30 -05002452
Brian Kingad8dcff2008-10-29 08:46:41 -05002453 if (!cancel_rc && !reset_rc)
2454 rc = ibmvfc_wait_for_ops(vhost, sdev, ibmvfc_match_lun);
Brian King072b91f2008-07-01 13:14:30 -05002455
Brian King93631b42013-04-12 08:25:16 -05002456 if (block_rc == FAST_IO_FAIL && rc != FAILED)
2457 rc = FAST_IO_FAIL;
2458
Brian King072b91f2008-07-01 13:14:30 -05002459 LEAVE;
Brian Kingad8dcff2008-10-29 08:46:41 -05002460 return rc;
Brian King072b91f2008-07-01 13:14:30 -05002461}
2462
2463/**
Brian King93631b42013-04-12 08:25:16 -05002464 * ibmvfc_dev_cancel_all_noreset - Device iterated cancel all function
2465 * @sdev: scsi device struct
2466 * @data: return code
2467 *
2468 **/
2469static void ibmvfc_dev_cancel_all_noreset(struct scsi_device *sdev, void *data)
2470{
2471 unsigned long *rc = data;
Brian King90f725d2013-04-12 08:25:18 -05002472 *rc |= ibmvfc_cancel_all(sdev, IBMVFC_TMF_SUPPRESS_ABTS);
Brian King93631b42013-04-12 08:25:16 -05002473}
2474
2475/**
Brian King4a5c4a52009-10-19 15:07:53 -05002476 * ibmvfc_dev_cancel_all_reset - Device iterated cancel all function
2477 * @sdev: scsi device struct
2478 * @data: return code
2479 *
2480 **/
2481static void ibmvfc_dev_cancel_all_reset(struct scsi_device *sdev, void *data)
Brian King072b91f2008-07-01 13:14:30 -05002482{
2483 unsigned long *rc = data;
2484 *rc |= ibmvfc_cancel_all(sdev, IBMVFC_TMF_TGT_RESET);
2485}
2486
2487/**
Brian King072b91f2008-07-01 13:14:30 -05002488 * ibmvfc_eh_target_reset_handler - Reset the target
2489 * @cmd: scsi command struct
2490 *
2491 * Returns:
Brian King93631b42013-04-12 08:25:16 -05002492 * SUCCESS / FAST_IO_FAIL / FAILED
Brian King072b91f2008-07-01 13:14:30 -05002493 **/
2494static int ibmvfc_eh_target_reset_handler(struct scsi_cmnd *cmd)
2495{
Brian Kingad8dcff2008-10-29 08:46:41 -05002496 struct scsi_device *sdev = cmd->device;
2497 struct ibmvfc_host *vhost = shost_priv(sdev->host);
2498 struct scsi_target *starget = scsi_target(sdev);
Brian King93631b42013-04-12 08:25:16 -05002499 int block_rc;
2500 int reset_rc = 0;
Brian Kingad8dcff2008-10-29 08:46:41 -05002501 int rc = FAILED;
Brian King072b91f2008-07-01 13:14:30 -05002502 unsigned long cancel_rc = 0;
Brian King072b91f2008-07-01 13:14:30 -05002503
2504 ENTER;
Brian King93631b42013-04-12 08:25:16 -05002505 block_rc = fc_block_scsi_eh(cmd);
Brian King072b91f2008-07-01 13:14:30 -05002506 ibmvfc_wait_while_resetting(vhost);
Brian King93631b42013-04-12 08:25:16 -05002507 if (block_rc != FAST_IO_FAIL) {
2508 starget_for_each_device(starget, &cancel_rc, ibmvfc_dev_cancel_all_reset);
2509 reset_rc = ibmvfc_reset_device(sdev, IBMVFC_TARGET_RESET, "target");
2510 } else
2511 starget_for_each_device(starget, &cancel_rc, ibmvfc_dev_cancel_all_noreset);
Brian King072b91f2008-07-01 13:14:30 -05002512
Brian Kingad8dcff2008-10-29 08:46:41 -05002513 if (!cancel_rc && !reset_rc)
2514 rc = ibmvfc_wait_for_ops(vhost, starget, ibmvfc_match_target);
Brian King072b91f2008-07-01 13:14:30 -05002515
Brian King93631b42013-04-12 08:25:16 -05002516 if (block_rc == FAST_IO_FAIL && rc != FAILED)
2517 rc = FAST_IO_FAIL;
2518
Brian King072b91f2008-07-01 13:14:30 -05002519 LEAVE;
Brian Kingad8dcff2008-10-29 08:46:41 -05002520 return rc;
Brian King072b91f2008-07-01 13:14:30 -05002521}
2522
2523/**
2524 * ibmvfc_eh_host_reset_handler - Reset the connection to the server
2525 * @cmd: struct scsi_cmnd having problems
2526 *
2527 **/
2528static int ibmvfc_eh_host_reset_handler(struct scsi_cmnd *cmd)
2529{
Brian King93631b42013-04-12 08:25:16 -05002530 int rc, block_rc;
Brian King072b91f2008-07-01 13:14:30 -05002531 struct ibmvfc_host *vhost = shost_priv(cmd->device->host);
2532
Brian King93631b42013-04-12 08:25:16 -05002533 block_rc = fc_block_scsi_eh(cmd);
Brian King072b91f2008-07-01 13:14:30 -05002534 dev_err(vhost->dev, "Resetting connection due to error recovery\n");
2535 rc = ibmvfc_issue_fc_host_lip(vhost->host);
Brian King93631b42013-04-12 08:25:16 -05002536
2537 if (block_rc == FAST_IO_FAIL)
2538 return FAST_IO_FAIL;
2539
Brian King072b91f2008-07-01 13:14:30 -05002540 return rc ? FAILED : SUCCESS;
2541}
2542
2543/**
2544 * ibmvfc_terminate_rport_io - Terminate all pending I/O to the rport.
2545 * @rport: rport struct
2546 *
2547 * Return value:
2548 * none
2549 **/
2550static void ibmvfc_terminate_rport_io(struct fc_rport *rport)
2551{
Brian Kingd2fab5c2010-08-05 16:38:34 -05002552 struct Scsi_Host *shost = rport_to_shost(rport);
Brian King072b91f2008-07-01 13:14:30 -05002553 struct ibmvfc_host *vhost = shost_priv(shost);
Brian Kingd2fab5c2010-08-05 16:38:34 -05002554 struct fc_rport *dev_rport;
2555 struct scsi_device *sdev;
2556 unsigned long rc;
Brian King072b91f2008-07-01 13:14:30 -05002557
2558 ENTER;
Brian Kingd2fab5c2010-08-05 16:38:34 -05002559 shost_for_each_device(sdev, shost) {
2560 dev_rport = starget_to_rport(scsi_target(sdev));
2561 if (dev_rport != rport)
2562 continue;
Brian King90f725d2013-04-12 08:25:18 -05002563 ibmvfc_cancel_all(sdev, IBMVFC_TMF_SUPPRESS_ABTS);
Brian Kingd2fab5c2010-08-05 16:38:34 -05002564 }
Brian King072b91f2008-07-01 13:14:30 -05002565
Brian Kingd2fab5c2010-08-05 16:38:34 -05002566 rc = ibmvfc_wait_for_ops(vhost, rport, ibmvfc_match_rport);
Brian Kingad8dcff2008-10-29 08:46:41 -05002567
2568 if (rc == FAILED)
Brian King072b91f2008-07-01 13:14:30 -05002569 ibmvfc_issue_fc_host_lip(shost);
Brian King072b91f2008-07-01 13:14:30 -05002570 LEAVE;
2571}
2572
Brian Kingd99e5f42010-09-09 16:20:42 -05002573static const struct ibmvfc_async_desc ae_desc [] = {
Robert Jennings402c6ee2010-12-09 14:03:59 -06002574 { "PLOGI", IBMVFC_AE_ELS_PLOGI, IBMVFC_DEFAULT_LOG_LEVEL + 1 },
2575 { "LOGO", IBMVFC_AE_ELS_LOGO, IBMVFC_DEFAULT_LOG_LEVEL + 1 },
2576 { "PRLO", IBMVFC_AE_ELS_PRLO, IBMVFC_DEFAULT_LOG_LEVEL + 1 },
2577 { "N-Port SCN", IBMVFC_AE_SCN_NPORT, IBMVFC_DEFAULT_LOG_LEVEL + 1 },
2578 { "Group SCN", IBMVFC_AE_SCN_GROUP, IBMVFC_DEFAULT_LOG_LEVEL + 1 },
2579 { "Domain SCN", IBMVFC_AE_SCN_DOMAIN, IBMVFC_DEFAULT_LOG_LEVEL },
2580 { "Fabric SCN", IBMVFC_AE_SCN_FABRIC, IBMVFC_DEFAULT_LOG_LEVEL },
2581 { "Link Up", IBMVFC_AE_LINK_UP, IBMVFC_DEFAULT_LOG_LEVEL },
2582 { "Link Down", IBMVFC_AE_LINK_DOWN, IBMVFC_DEFAULT_LOG_LEVEL },
2583 { "Link Dead", IBMVFC_AE_LINK_DEAD, IBMVFC_DEFAULT_LOG_LEVEL },
2584 { "Halt", IBMVFC_AE_HALT, IBMVFC_DEFAULT_LOG_LEVEL },
2585 { "Resume", IBMVFC_AE_RESUME, IBMVFC_DEFAULT_LOG_LEVEL },
2586 { "Adapter Failed", IBMVFC_AE_ADAPTER_FAILED, IBMVFC_DEFAULT_LOG_LEVEL },
Brian King072b91f2008-07-01 13:14:30 -05002587};
2588
Brian Kingd99e5f42010-09-09 16:20:42 -05002589static const struct ibmvfc_async_desc unknown_ae = {
Robert Jennings402c6ee2010-12-09 14:03:59 -06002590 "Unknown async", 0, IBMVFC_DEFAULT_LOG_LEVEL
Brian Kingd99e5f42010-09-09 16:20:42 -05002591};
Brian King072b91f2008-07-01 13:14:30 -05002592
2593/**
2594 * ibmvfc_get_ae_desc - Get text description for async event
2595 * @ae: async event
2596 *
2597 **/
Brian Kingd99e5f42010-09-09 16:20:42 -05002598static const struct ibmvfc_async_desc *ibmvfc_get_ae_desc(u64 ae)
Brian King072b91f2008-07-01 13:14:30 -05002599{
2600 int i;
2601
2602 for (i = 0; i < ARRAY_SIZE(ae_desc); i++)
2603 if (ae_desc[i].ae == ae)
Brian Kingd99e5f42010-09-09 16:20:42 -05002604 return &ae_desc[i];
Brian King072b91f2008-07-01 13:14:30 -05002605
Brian Kingd99e5f42010-09-09 16:20:42 -05002606 return &unknown_ae;
2607}
2608
2609static const struct {
2610 enum ibmvfc_ae_link_state state;
2611 const char *desc;
2612} link_desc [] = {
2613 { IBMVFC_AE_LS_LINK_UP, " link up" },
2614 { IBMVFC_AE_LS_LINK_BOUNCED, " link bounced" },
2615 { IBMVFC_AE_LS_LINK_DOWN, " link down" },
2616 { IBMVFC_AE_LS_LINK_DEAD, " link dead" },
2617};
2618
2619/**
2620 * ibmvfc_get_link_state - Get text description for link state
2621 * @state: link state
2622 *
2623 **/
2624static const char *ibmvfc_get_link_state(enum ibmvfc_ae_link_state state)
2625{
2626 int i;
2627
2628 for (i = 0; i < ARRAY_SIZE(link_desc); i++)
2629 if (link_desc[i].state == state)
2630 return link_desc[i].desc;
2631
2632 return "";
Brian King072b91f2008-07-01 13:14:30 -05002633}
2634
2635/**
2636 * ibmvfc_handle_async - Handle an async event from the adapter
2637 * @crq: crq to process
2638 * @vhost: ibmvfc host struct
2639 *
2640 **/
2641static void ibmvfc_handle_async(struct ibmvfc_async_crq *crq,
2642 struct ibmvfc_host *vhost)
2643{
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05002644 const struct ibmvfc_async_desc *desc = ibmvfc_get_ae_desc(be64_to_cpu(crq->event));
Brian King6d29cc52009-05-28 16:17:33 -05002645 struct ibmvfc_target *tgt;
Brian King072b91f2008-07-01 13:14:30 -05002646
Brian Kingd99e5f42010-09-09 16:20:42 -05002647 ibmvfc_log(vhost, desc->log_level, "%s event received. scsi_id: %llx, wwpn: %llx,"
Tyrel Datwyler21367e22016-02-11 16:24:35 -06002648 " node_name: %llx%s\n", desc->desc, be64_to_cpu(crq->scsi_id),
2649 be64_to_cpu(crq->wwpn), be64_to_cpu(crq->node_name),
Brian Kingd99e5f42010-09-09 16:20:42 -05002650 ibmvfc_get_link_state(crq->link_state));
Brian King072b91f2008-07-01 13:14:30 -05002651
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05002652 switch (be64_to_cpu(crq->event)) {
Brian King072b91f2008-07-01 13:14:30 -05002653 case IBMVFC_AE_RESUME:
Brian King497f9c52009-05-28 16:17:30 -05002654 switch (crq->link_state) {
2655 case IBMVFC_AE_LS_LINK_DOWN:
2656 ibmvfc_link_down(vhost, IBMVFC_LINK_DOWN);
2657 break;
2658 case IBMVFC_AE_LS_LINK_DEAD:
2659 ibmvfc_link_down(vhost, IBMVFC_LINK_DEAD);
2660 break;
2661 case IBMVFC_AE_LS_LINK_UP:
2662 case IBMVFC_AE_LS_LINK_BOUNCED:
2663 default:
2664 vhost->events_to_log |= IBMVFC_AE_LINKUP;
2665 vhost->delay_init = 1;
2666 __ibmvfc_reset_host(vhost);
2667 break;
2668 };
2669
2670 break;
2671 case IBMVFC_AE_LINK_UP:
Brian King072b91f2008-07-01 13:14:30 -05002672 vhost->events_to_log |= IBMVFC_AE_LINKUP;
Brian Kingd2131b32008-12-18 09:26:51 -06002673 vhost->delay_init = 1;
2674 __ibmvfc_reset_host(vhost);
Brian King072b91f2008-07-01 13:14:30 -05002675 break;
2676 case IBMVFC_AE_SCN_FABRIC:
Brian Kingd2131b32008-12-18 09:26:51 -06002677 case IBMVFC_AE_SCN_DOMAIN:
Brian King072b91f2008-07-01 13:14:30 -05002678 vhost->events_to_log |= IBMVFC_AE_RSCN;
Brian King5cdf1622012-08-24 16:51:01 -05002679 if (vhost->state < IBMVFC_HALTED) {
2680 vhost->delay_init = 1;
2681 __ibmvfc_reset_host(vhost);
2682 }
Brian King072b91f2008-07-01 13:14:30 -05002683 break;
2684 case IBMVFC_AE_SCN_NPORT:
2685 case IBMVFC_AE_SCN_GROUP:
Brian King072b91f2008-07-01 13:14:30 -05002686 vhost->events_to_log |= IBMVFC_AE_RSCN;
Brian King6d29cc52009-05-28 16:17:33 -05002687 ibmvfc_reinit_host(vhost);
2688 break;
Brian King072b91f2008-07-01 13:14:30 -05002689 case IBMVFC_AE_ELS_LOGO:
2690 case IBMVFC_AE_ELS_PRLO:
2691 case IBMVFC_AE_ELS_PLOGI:
Brian King6d29cc52009-05-28 16:17:33 -05002692 list_for_each_entry(tgt, &vhost->targets, queue) {
2693 if (!crq->scsi_id && !crq->wwpn && !crq->node_name)
2694 break;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05002695 if (crq->scsi_id && cpu_to_be64(tgt->scsi_id) != crq->scsi_id)
Brian King6d29cc52009-05-28 16:17:33 -05002696 continue;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05002697 if (crq->wwpn && cpu_to_be64(tgt->ids.port_name) != crq->wwpn)
Brian King6d29cc52009-05-28 16:17:33 -05002698 continue;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05002699 if (crq->node_name && cpu_to_be64(tgt->ids.node_name) != crq->node_name)
Brian King6d29cc52009-05-28 16:17:33 -05002700 continue;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05002701 if (tgt->need_login && be64_to_cpu(crq->event) == IBMVFC_AE_ELS_LOGO)
Brian King017b2ae2009-06-18 09:06:55 -05002702 tgt->logo_rcvd = 1;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05002703 if (!tgt->need_login || be64_to_cpu(crq->event) == IBMVFC_AE_ELS_PLOGI) {
Brian King017b2ae2009-06-18 09:06:55 -05002704 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DEL_RPORT);
2705 ibmvfc_reinit_host(vhost);
2706 }
Brian King6d29cc52009-05-28 16:17:33 -05002707 }
Brian King072b91f2008-07-01 13:14:30 -05002708 break;
2709 case IBMVFC_AE_LINK_DOWN:
2710 case IBMVFC_AE_ADAPTER_FAILED:
2711 ibmvfc_link_down(vhost, IBMVFC_LINK_DOWN);
2712 break;
2713 case IBMVFC_AE_LINK_DEAD:
2714 ibmvfc_link_down(vhost, IBMVFC_LINK_DEAD);
2715 break;
2716 case IBMVFC_AE_HALT:
2717 ibmvfc_link_down(vhost, IBMVFC_HALTED);
2718 break;
2719 default:
Stephen Rothwell775a42e2009-01-06 14:59:00 +00002720 dev_err(vhost->dev, "Unknown async event received: %lld\n", crq->event);
Brian King072b91f2008-07-01 13:14:30 -05002721 break;
2722 };
2723}
2724
2725/**
2726 * ibmvfc_handle_crq - Handles and frees received events in the CRQ
2727 * @crq: Command/Response queue
2728 * @vhost: ibmvfc host struct
2729 *
2730 **/
2731static void ibmvfc_handle_crq(struct ibmvfc_crq *crq, struct ibmvfc_host *vhost)
2732{
2733 long rc;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05002734 struct ibmvfc_event *evt = (struct ibmvfc_event *)be64_to_cpu(crq->ioba);
Brian King072b91f2008-07-01 13:14:30 -05002735
2736 switch (crq->valid) {
2737 case IBMVFC_CRQ_INIT_RSP:
2738 switch (crq->format) {
2739 case IBMVFC_CRQ_INIT:
2740 dev_info(vhost->dev, "Partner initialized\n");
2741 /* Send back a response */
2742 rc = ibmvfc_send_crq_init_complete(vhost);
2743 if (rc == 0)
Brian King861890c2009-10-19 15:07:49 -05002744 ibmvfc_init_host(vhost);
Brian King072b91f2008-07-01 13:14:30 -05002745 else
2746 dev_err(vhost->dev, "Unable to send init rsp. rc=%ld\n", rc);
2747 break;
2748 case IBMVFC_CRQ_INIT_COMPLETE:
2749 dev_info(vhost->dev, "Partner initialization complete\n");
Brian King861890c2009-10-19 15:07:49 -05002750 ibmvfc_init_host(vhost);
Brian King072b91f2008-07-01 13:14:30 -05002751 break;
2752 default:
2753 dev_err(vhost->dev, "Unknown crq message type: %d\n", crq->format);
2754 }
2755 return;
2756 case IBMVFC_CRQ_XPORT_EVENT:
2757 vhost->state = IBMVFC_NO_CRQ;
Brian King79111d02009-05-28 16:17:29 -05002758 vhost->logged_in = 0;
Brian King072b91f2008-07-01 13:14:30 -05002759 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_NONE);
2760 if (crq->format == IBMVFC_PARTITION_MIGRATED) {
2761 /* We need to re-setup the interpartition connection */
2762 dev_info(vhost->dev, "Re-enabling adapter\n");
2763 vhost->client_migrated = 1;
2764 ibmvfc_purge_requests(vhost, DID_REQUEUE);
Brian King73ee5d82010-06-17 13:55:13 -05002765 ibmvfc_link_down(vhost, IBMVFC_LINK_DOWN);
2766 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_REENABLE);
Brian King072b91f2008-07-01 13:14:30 -05002767 } else {
2768 dev_err(vhost->dev, "Virtual adapter failed (rc=%d)\n", crq->format);
Brian King072b91f2008-07-01 13:14:30 -05002769 ibmvfc_purge_requests(vhost, DID_ERROR);
Brian King73ee5d82010-06-17 13:55:13 -05002770 ibmvfc_link_down(vhost, IBMVFC_LINK_DOWN);
2771 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_RESET);
Brian King072b91f2008-07-01 13:14:30 -05002772 }
2773 return;
2774 case IBMVFC_CRQ_CMD_RSP:
2775 break;
2776 default:
2777 dev_err(vhost->dev, "Got an invalid message type 0x%02x\n", crq->valid);
2778 return;
2779 }
2780
2781 if (crq->format == IBMVFC_ASYNC_EVENT)
2782 return;
2783
2784 /* The only kind of payload CRQs we should get are responses to
2785 * things we send. Make sure this response is to something we
2786 * actually sent
2787 */
2788 if (unlikely(!ibmvfc_valid_event(&vhost->pool, evt))) {
Stephen Rothwell775a42e2009-01-06 14:59:00 +00002789 dev_err(vhost->dev, "Returned correlation_token 0x%08llx is invalid!\n",
Brian King072b91f2008-07-01 13:14:30 -05002790 crq->ioba);
2791 return;
2792 }
2793
2794 if (unlikely(atomic_read(&evt->free))) {
Stephen Rothwell775a42e2009-01-06 14:59:00 +00002795 dev_err(vhost->dev, "Received duplicate correlation_token 0x%08llx!\n",
Brian King072b91f2008-07-01 13:14:30 -05002796 crq->ioba);
2797 return;
2798 }
2799
2800 del_timer(&evt->timer);
2801 list_del(&evt->queue);
2802 ibmvfc_trc_end(evt);
2803 evt->done(evt);
2804}
2805
2806/**
2807 * ibmvfc_scan_finished - Check if the device scan is done.
2808 * @shost: scsi host struct
2809 * @time: current elapsed time
2810 *
2811 * Returns:
2812 * 0 if scan is not done / 1 if scan is done
2813 **/
2814static int ibmvfc_scan_finished(struct Scsi_Host *shost, unsigned long time)
2815{
2816 unsigned long flags;
2817 struct ibmvfc_host *vhost = shost_priv(shost);
2818 int done = 0;
2819
2820 spin_lock_irqsave(shost->host_lock, flags);
2821 if (time >= (init_timeout * HZ)) {
2822 dev_info(vhost->dev, "Scan taking longer than %d seconds, "
2823 "continuing initialization\n", init_timeout);
2824 done = 1;
2825 }
2826
Brian King43c8da92009-05-28 16:17:28 -05002827 if (vhost->scan_complete)
Brian King072b91f2008-07-01 13:14:30 -05002828 done = 1;
2829 spin_unlock_irqrestore(shost->host_lock, flags);
2830 return done;
2831}
2832
2833/**
2834 * ibmvfc_slave_alloc - Setup the device's task set value
2835 * @sdev: struct scsi_device device to configure
2836 *
2837 * Set the device's task set value so that error handling works as
2838 * expected.
2839 *
2840 * Returns:
2841 * 0 on success / -ENXIO if device does not exist
2842 **/
2843static int ibmvfc_slave_alloc(struct scsi_device *sdev)
2844{
2845 struct Scsi_Host *shost = sdev->host;
2846 struct fc_rport *rport = starget_to_rport(scsi_target(sdev));
2847 struct ibmvfc_host *vhost = shost_priv(shost);
2848 unsigned long flags = 0;
2849
2850 if (!rport || fc_remote_port_chkready(rport))
2851 return -ENXIO;
2852
2853 spin_lock_irqsave(shost->host_lock, flags);
2854 sdev->hostdata = (void *)(unsigned long)vhost->task_set++;
2855 spin_unlock_irqrestore(shost->host_lock, flags);
2856 return 0;
2857}
2858
2859/**
Brian Kingad8dcff2008-10-29 08:46:41 -05002860 * ibmvfc_target_alloc - Setup the target's task set value
2861 * @starget: struct scsi_target
2862 *
2863 * Set the target's task set value so that error handling works as
2864 * expected.
2865 *
2866 * Returns:
2867 * 0 on success / -ENXIO if device does not exist
2868 **/
2869static int ibmvfc_target_alloc(struct scsi_target *starget)
2870{
2871 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
2872 struct ibmvfc_host *vhost = shost_priv(shost);
2873 unsigned long flags = 0;
2874
2875 spin_lock_irqsave(shost->host_lock, flags);
2876 starget->hostdata = (void *)(unsigned long)vhost->task_set++;
2877 spin_unlock_irqrestore(shost->host_lock, flags);
2878 return 0;
2879}
2880
2881/**
Brian King072b91f2008-07-01 13:14:30 -05002882 * ibmvfc_slave_configure - Configure the device
2883 * @sdev: struct scsi_device device to configure
2884 *
2885 * Enable allow_restart for a device if it is a disk. Adjust the
2886 * queue_depth here also.
2887 *
2888 * Returns:
2889 * 0
2890 **/
2891static int ibmvfc_slave_configure(struct scsi_device *sdev)
2892{
2893 struct Scsi_Host *shost = sdev->host;
Brian King072b91f2008-07-01 13:14:30 -05002894 unsigned long flags = 0;
2895
2896 spin_lock_irqsave(shost->host_lock, flags);
2897 if (sdev->type == TYPE_DISK)
2898 sdev->allow_restart = 1;
Brian King072b91f2008-07-01 13:14:30 -05002899 spin_unlock_irqrestore(shost->host_lock, flags);
2900 return 0;
2901}
2902
2903/**
2904 * ibmvfc_change_queue_depth - Change the device's queue depth
2905 * @sdev: scsi device struct
2906 * @qdepth: depth to set
Mike Christiee881a172009-10-15 17:46:39 -07002907 * @reason: calling context
Brian King072b91f2008-07-01 13:14:30 -05002908 *
2909 * Return value:
2910 * actual depth set
2911 **/
Christoph Hellwigdb5ed4d2014-11-13 15:08:42 +01002912static int ibmvfc_change_queue_depth(struct scsi_device *sdev, int qdepth)
Brian King072b91f2008-07-01 13:14:30 -05002913{
2914 if (qdepth > IBMVFC_MAX_CMDS_PER_LUN)
2915 qdepth = IBMVFC_MAX_CMDS_PER_LUN;
2916
Christoph Hellwigdb5ed4d2014-11-13 15:08:42 +01002917 return scsi_change_queue_depth(sdev, qdepth);
Brian King072b91f2008-07-01 13:14:30 -05002918}
2919
Brian King072b91f2008-07-01 13:14:30 -05002920static ssize_t ibmvfc_show_host_partition_name(struct device *dev,
2921 struct device_attribute *attr, char *buf)
2922{
2923 struct Scsi_Host *shost = class_to_shost(dev);
2924 struct ibmvfc_host *vhost = shost_priv(shost);
2925
2926 return snprintf(buf, PAGE_SIZE, "%s\n",
2927 vhost->login_buf->resp.partition_name);
2928}
2929
Brian King072b91f2008-07-01 13:14:30 -05002930static ssize_t ibmvfc_show_host_device_name(struct device *dev,
2931 struct device_attribute *attr, char *buf)
2932{
2933 struct Scsi_Host *shost = class_to_shost(dev);
2934 struct ibmvfc_host *vhost = shost_priv(shost);
2935
2936 return snprintf(buf, PAGE_SIZE, "%s\n",
2937 vhost->login_buf->resp.device_name);
2938}
2939
Brian King072b91f2008-07-01 13:14:30 -05002940static ssize_t ibmvfc_show_host_loc_code(struct device *dev,
2941 struct device_attribute *attr, char *buf)
2942{
2943 struct Scsi_Host *shost = class_to_shost(dev);
2944 struct ibmvfc_host *vhost = shost_priv(shost);
2945
2946 return snprintf(buf, PAGE_SIZE, "%s\n",
2947 vhost->login_buf->resp.port_loc_code);
2948}
2949
Brian King072b91f2008-07-01 13:14:30 -05002950static ssize_t ibmvfc_show_host_drc_name(struct device *dev,
2951 struct device_attribute *attr, char *buf)
2952{
2953 struct Scsi_Host *shost = class_to_shost(dev);
2954 struct ibmvfc_host *vhost = shost_priv(shost);
2955
2956 return snprintf(buf, PAGE_SIZE, "%s\n",
2957 vhost->login_buf->resp.drc_name);
2958}
2959
Brian King072b91f2008-07-01 13:14:30 -05002960static ssize_t ibmvfc_show_host_npiv_version(struct device *dev,
2961 struct device_attribute *attr, char *buf)
2962{
2963 struct Scsi_Host *shost = class_to_shost(dev);
2964 struct ibmvfc_host *vhost = shost_priv(shost);
2965 return snprintf(buf, PAGE_SIZE, "%d\n", vhost->login_buf->resp.version);
2966}
2967
Brian King497f9c52009-05-28 16:17:30 -05002968static ssize_t ibmvfc_show_host_capabilities(struct device *dev,
2969 struct device_attribute *attr, char *buf)
2970{
2971 struct Scsi_Host *shost = class_to_shost(dev);
2972 struct ibmvfc_host *vhost = shost_priv(shost);
2973 return snprintf(buf, PAGE_SIZE, "%llx\n", vhost->login_buf->resp.capabilities);
2974}
2975
Brian King072b91f2008-07-01 13:14:30 -05002976/**
2977 * ibmvfc_show_log_level - Show the adapter's error logging level
2978 * @dev: class device struct
2979 * @buf: buffer
2980 *
2981 * Return value:
2982 * number of bytes printed to buffer
2983 **/
2984static ssize_t ibmvfc_show_log_level(struct device *dev,
2985 struct device_attribute *attr, char *buf)
2986{
2987 struct Scsi_Host *shost = class_to_shost(dev);
2988 struct ibmvfc_host *vhost = shost_priv(shost);
2989 unsigned long flags = 0;
2990 int len;
2991
2992 spin_lock_irqsave(shost->host_lock, flags);
2993 len = snprintf(buf, PAGE_SIZE, "%d\n", vhost->log_level);
2994 spin_unlock_irqrestore(shost->host_lock, flags);
2995 return len;
2996}
2997
2998/**
2999 * ibmvfc_store_log_level - Change the adapter's error logging level
3000 * @dev: class device struct
3001 * @buf: buffer
3002 *
3003 * Return value:
3004 * number of bytes printed to buffer
3005 **/
3006static ssize_t ibmvfc_store_log_level(struct device *dev,
3007 struct device_attribute *attr,
3008 const char *buf, size_t count)
3009{
3010 struct Scsi_Host *shost = class_to_shost(dev);
3011 struct ibmvfc_host *vhost = shost_priv(shost);
3012 unsigned long flags = 0;
3013
3014 spin_lock_irqsave(shost->host_lock, flags);
3015 vhost->log_level = simple_strtoul(buf, NULL, 10);
3016 spin_unlock_irqrestore(shost->host_lock, flags);
3017 return strlen(buf);
3018}
3019
Brian King85e23992009-05-28 16:17:25 -05003020static DEVICE_ATTR(partition_name, S_IRUGO, ibmvfc_show_host_partition_name, NULL);
3021static DEVICE_ATTR(device_name, S_IRUGO, ibmvfc_show_host_device_name, NULL);
3022static DEVICE_ATTR(port_loc_code, S_IRUGO, ibmvfc_show_host_loc_code, NULL);
3023static DEVICE_ATTR(drc_name, S_IRUGO, ibmvfc_show_host_drc_name, NULL);
3024static DEVICE_ATTR(npiv_version, S_IRUGO, ibmvfc_show_host_npiv_version, NULL);
Brian King497f9c52009-05-28 16:17:30 -05003025static DEVICE_ATTR(capabilities, S_IRUGO, ibmvfc_show_host_capabilities, NULL);
Brian King85e23992009-05-28 16:17:25 -05003026static DEVICE_ATTR(log_level, S_IRUGO | S_IWUSR,
3027 ibmvfc_show_log_level, ibmvfc_store_log_level);
Brian King072b91f2008-07-01 13:14:30 -05003028
3029#ifdef CONFIG_SCSI_IBMVFC_TRACE
3030/**
3031 * ibmvfc_read_trace - Dump the adapter trace
Chris Wright2c3c8be2010-05-12 18:28:57 -07003032 * @filp: open sysfs file
Brian King072b91f2008-07-01 13:14:30 -05003033 * @kobj: kobject struct
3034 * @bin_attr: bin_attribute struct
3035 * @buf: buffer
3036 * @off: offset
3037 * @count: buffer size
3038 *
3039 * Return value:
3040 * number of bytes printed to buffer
3041 **/
Chris Wright2c3c8be2010-05-12 18:28:57 -07003042static ssize_t ibmvfc_read_trace(struct file *filp, struct kobject *kobj,
Brian King072b91f2008-07-01 13:14:30 -05003043 struct bin_attribute *bin_attr,
3044 char *buf, loff_t off, size_t count)
3045{
3046 struct device *dev = container_of(kobj, struct device, kobj);
3047 struct Scsi_Host *shost = class_to_shost(dev);
3048 struct ibmvfc_host *vhost = shost_priv(shost);
3049 unsigned long flags = 0;
3050 int size = IBMVFC_TRACE_SIZE;
3051 char *src = (char *)vhost->trace;
3052
3053 if (off > size)
3054 return 0;
3055 if (off + count > size) {
3056 size -= off;
3057 count = size;
3058 }
3059
3060 spin_lock_irqsave(shost->host_lock, flags);
3061 memcpy(buf, &src[off], count);
3062 spin_unlock_irqrestore(shost->host_lock, flags);
3063 return count;
3064}
3065
3066static struct bin_attribute ibmvfc_trace_attr = {
3067 .attr = {
3068 .name = "trace",
3069 .mode = S_IRUGO,
3070 },
3071 .size = 0,
3072 .read = ibmvfc_read_trace,
3073};
3074#endif
3075
3076static struct device_attribute *ibmvfc_attrs[] = {
Brian King85e23992009-05-28 16:17:25 -05003077 &dev_attr_partition_name,
3078 &dev_attr_device_name,
3079 &dev_attr_port_loc_code,
3080 &dev_attr_drc_name,
3081 &dev_attr_npiv_version,
Brian King497f9c52009-05-28 16:17:30 -05003082 &dev_attr_capabilities,
Brian King85e23992009-05-28 16:17:25 -05003083 &dev_attr_log_level,
Brian King072b91f2008-07-01 13:14:30 -05003084 NULL
3085};
3086
3087static struct scsi_host_template driver_template = {
3088 .module = THIS_MODULE,
3089 .name = "IBM POWER Virtual FC Adapter",
3090 .proc_name = IBMVFC_NAME,
3091 .queuecommand = ibmvfc_queuecommand,
3092 .eh_abort_handler = ibmvfc_eh_abort_handler,
3093 .eh_device_reset_handler = ibmvfc_eh_device_reset_handler,
3094 .eh_target_reset_handler = ibmvfc_eh_target_reset_handler,
3095 .eh_host_reset_handler = ibmvfc_eh_host_reset_handler,
3096 .slave_alloc = ibmvfc_slave_alloc,
3097 .slave_configure = ibmvfc_slave_configure,
Brian Kingad8dcff2008-10-29 08:46:41 -05003098 .target_alloc = ibmvfc_target_alloc,
Brian King072b91f2008-07-01 13:14:30 -05003099 .scan_finished = ibmvfc_scan_finished,
3100 .change_queue_depth = ibmvfc_change_queue_depth,
Brian King072b91f2008-07-01 13:14:30 -05003101 .cmd_per_lun = 16,
3102 .can_queue = IBMVFC_MAX_REQUESTS_DEFAULT,
3103 .this_id = -1,
3104 .sg_tablesize = SG_ALL,
3105 .max_sectors = IBMVFC_MAX_SECTORS,
3106 .use_clustering = ENABLE_CLUSTERING,
3107 .shost_attrs = ibmvfc_attrs,
Christoph Hellwigc40ecc12014-11-13 14:25:11 +01003108 .track_queue_depth = 1,
Brian King072b91f2008-07-01 13:14:30 -05003109};
3110
3111/**
3112 * ibmvfc_next_async_crq - Returns the next entry in async queue
3113 * @vhost: ibmvfc host struct
3114 *
3115 * Returns:
3116 * Pointer to next entry in queue / NULL if empty
3117 **/
3118static struct ibmvfc_async_crq *ibmvfc_next_async_crq(struct ibmvfc_host *vhost)
3119{
3120 struct ibmvfc_async_crq_queue *async_crq = &vhost->async_crq;
3121 struct ibmvfc_async_crq *crq;
3122
3123 crq = &async_crq->msgs[async_crq->cur];
3124 if (crq->valid & 0x80) {
3125 if (++async_crq->cur == async_crq->size)
3126 async_crq->cur = 0;
Brian Kingf5832fa2010-04-20 14:21:33 -05003127 rmb();
Brian King072b91f2008-07-01 13:14:30 -05003128 } else
3129 crq = NULL;
3130
3131 return crq;
3132}
3133
3134/**
3135 * ibmvfc_next_crq - Returns the next entry in message queue
3136 * @vhost: ibmvfc host struct
3137 *
3138 * Returns:
3139 * Pointer to next entry in queue / NULL if empty
3140 **/
3141static struct ibmvfc_crq *ibmvfc_next_crq(struct ibmvfc_host *vhost)
3142{
3143 struct ibmvfc_crq_queue *queue = &vhost->crq;
3144 struct ibmvfc_crq *crq;
3145
3146 crq = &queue->msgs[queue->cur];
3147 if (crq->valid & 0x80) {
3148 if (++queue->cur == queue->size)
3149 queue->cur = 0;
Brian Kingf5832fa2010-04-20 14:21:33 -05003150 rmb();
Brian King072b91f2008-07-01 13:14:30 -05003151 } else
3152 crq = NULL;
3153
3154 return crq;
3155}
3156
3157/**
3158 * ibmvfc_interrupt - Interrupt handler
3159 * @irq: number of irq to handle, not used
3160 * @dev_instance: ibmvfc_host that received interrupt
3161 *
3162 * Returns:
3163 * IRQ_HANDLED
3164 **/
3165static irqreturn_t ibmvfc_interrupt(int irq, void *dev_instance)
3166{
3167 struct ibmvfc_host *vhost = (struct ibmvfc_host *)dev_instance;
Brian King039a0892009-03-20 15:44:35 -05003168 unsigned long flags;
3169
3170 spin_lock_irqsave(vhost->host->host_lock, flags);
3171 vio_disable_interrupts(to_vio_dev(vhost->dev));
3172 tasklet_schedule(&vhost->tasklet);
3173 spin_unlock_irqrestore(vhost->host->host_lock, flags);
3174 return IRQ_HANDLED;
3175}
3176
3177/**
3178 * ibmvfc_tasklet - Interrupt handler tasklet
3179 * @data: ibmvfc host struct
3180 *
3181 * Returns:
3182 * Nothing
3183 **/
3184static void ibmvfc_tasklet(void *data)
3185{
3186 struct ibmvfc_host *vhost = data;
Brian King072b91f2008-07-01 13:14:30 -05003187 struct vio_dev *vdev = to_vio_dev(vhost->dev);
3188 struct ibmvfc_crq *crq;
3189 struct ibmvfc_async_crq *async;
3190 unsigned long flags;
3191 int done = 0;
3192
3193 spin_lock_irqsave(vhost->host->host_lock, flags);
Brian King072b91f2008-07-01 13:14:30 -05003194 while (!done) {
Brian King072b91f2008-07-01 13:14:30 -05003195 /* Pull all the valid messages off the async CRQ */
3196 while ((async = ibmvfc_next_async_crq(vhost)) != NULL) {
3197 ibmvfc_handle_async(async, vhost);
3198 async->valid = 0;
Brian Kingf5832fa2010-04-20 14:21:33 -05003199 wmb();
Brian King072b91f2008-07-01 13:14:30 -05003200 }
3201
Brian Kingf1d7fb72009-06-18 09:06:52 -05003202 /* Pull all the valid messages off the CRQ */
3203 while ((crq = ibmvfc_next_crq(vhost)) != NULL) {
Brian King072b91f2008-07-01 13:14:30 -05003204 ibmvfc_handle_crq(crq, vhost);
3205 crq->valid = 0;
Brian Kingf5832fa2010-04-20 14:21:33 -05003206 wmb();
Brian Kingf1d7fb72009-06-18 09:06:52 -05003207 }
3208
3209 vio_enable_interrupts(vdev);
3210 if ((async = ibmvfc_next_async_crq(vhost)) != NULL) {
Brian King072b91f2008-07-01 13:14:30 -05003211 vio_disable_interrupts(vdev);
3212 ibmvfc_handle_async(async, vhost);
Brian King4081b772008-11-14 13:33:50 -06003213 async->valid = 0;
Brian Kingf5832fa2010-04-20 14:21:33 -05003214 wmb();
Brian Kingf1d7fb72009-06-18 09:06:52 -05003215 } else if ((crq = ibmvfc_next_crq(vhost)) != NULL) {
3216 vio_disable_interrupts(vdev);
3217 ibmvfc_handle_crq(crq, vhost);
3218 crq->valid = 0;
Brian Kingf5832fa2010-04-20 14:21:33 -05003219 wmb();
Brian King072b91f2008-07-01 13:14:30 -05003220 } else
3221 done = 1;
3222 }
3223
3224 spin_unlock_irqrestore(vhost->host->host_lock, flags);
Brian King072b91f2008-07-01 13:14:30 -05003225}
3226
3227/**
3228 * ibmvfc_init_tgt - Set the next init job step for the target
3229 * @tgt: ibmvfc target struct
3230 * @job_step: job step to perform
3231 *
3232 **/
3233static void ibmvfc_init_tgt(struct ibmvfc_target *tgt,
3234 void (*job_step) (struct ibmvfc_target *))
3235{
3236 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_INIT);
3237 tgt->job_step = job_step;
3238 wake_up(&tgt->vhost->work_wait_q);
3239}
3240
3241/**
3242 * ibmvfc_retry_tgt_init - Attempt to retry a step in target initialization
3243 * @tgt: ibmvfc target struct
3244 * @job_step: initialization job step
3245 *
Brian King7d0e4622009-05-28 16:17:26 -05003246 * Returns: 1 if step will be retried / 0 if not
3247 *
Brian King072b91f2008-07-01 13:14:30 -05003248 **/
Brian King7d0e4622009-05-28 16:17:26 -05003249static int ibmvfc_retry_tgt_init(struct ibmvfc_target *tgt,
Brian King072b91f2008-07-01 13:14:30 -05003250 void (*job_step) (struct ibmvfc_target *))
3251{
Brian King1c41fa822008-12-03 11:02:54 -06003252 if (++tgt->init_retries > IBMVFC_MAX_TGT_INIT_RETRIES) {
Brian King072b91f2008-07-01 13:14:30 -05003253 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DEL_RPORT);
3254 wake_up(&tgt->vhost->work_wait_q);
Brian King7d0e4622009-05-28 16:17:26 -05003255 return 0;
Brian King072b91f2008-07-01 13:14:30 -05003256 } else
3257 ibmvfc_init_tgt(tgt, job_step);
Brian King7d0e4622009-05-28 16:17:26 -05003258 return 1;
Brian King072b91f2008-07-01 13:14:30 -05003259}
3260
Brian Kinga3b7aea2009-02-02 18:39:40 -06003261/* Defined in FC-LS */
3262static const struct {
3263 int code;
3264 int retry;
3265 int logged_in;
3266} prli_rsp [] = {
3267 { 0, 1, 0 },
3268 { 1, 0, 1 },
3269 { 2, 1, 0 },
3270 { 3, 1, 0 },
3271 { 4, 0, 0 },
3272 { 5, 0, 0 },
3273 { 6, 0, 1 },
3274 { 7, 0, 0 },
3275 { 8, 1, 0 },
3276};
3277
3278/**
3279 * ibmvfc_get_prli_rsp - Find PRLI response index
3280 * @flags: PRLI response flags
3281 *
3282 **/
3283static int ibmvfc_get_prli_rsp(u16 flags)
3284{
3285 int i;
3286 int code = (flags & 0x0f00) >> 8;
3287
3288 for (i = 0; i < ARRAY_SIZE(prli_rsp); i++)
3289 if (prli_rsp[i].code == code)
3290 return i;
3291
3292 return 0;
3293}
3294
Brian King072b91f2008-07-01 13:14:30 -05003295/**
Brian King072b91f2008-07-01 13:14:30 -05003296 * ibmvfc_tgt_prli_done - Completion handler for Process Login
3297 * @evt: ibmvfc event struct
3298 *
3299 **/
3300static void ibmvfc_tgt_prli_done(struct ibmvfc_event *evt)
3301{
3302 struct ibmvfc_target *tgt = evt->tgt;
3303 struct ibmvfc_host *vhost = evt->vhost;
3304 struct ibmvfc_process_login *rsp = &evt->xfer_iu->prli;
Brian Kinga3b7aea2009-02-02 18:39:40 -06003305 struct ibmvfc_prli_svc_parms *parms = &rsp->parms;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003306 u32 status = be16_to_cpu(rsp->common.status);
Brian King7d0e4622009-05-28 16:17:26 -05003307 int index, level = IBMVFC_DEFAULT_LOG_LEVEL;
Brian King072b91f2008-07-01 13:14:30 -05003308
3309 vhost->discovery_threads--;
3310 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_NONE);
3311 switch (status) {
3312 case IBMVFC_MAD_SUCCESS:
Brian Kinga3b7aea2009-02-02 18:39:40 -06003313 tgt_dbg(tgt, "Process Login succeeded: %X %02X %04X\n",
3314 parms->type, parms->flags, parms->service_parms);
3315
3316 if (parms->type == IBMVFC_SCSI_FCP_TYPE) {
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003317 index = ibmvfc_get_prli_rsp(be16_to_cpu(parms->flags));
Brian Kinga3b7aea2009-02-02 18:39:40 -06003318 if (prli_rsp[index].logged_in) {
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003319 if (be16_to_cpu(parms->flags) & IBMVFC_PRLI_EST_IMG_PAIR) {
Brian Kinga3b7aea2009-02-02 18:39:40 -06003320 tgt->need_login = 0;
3321 tgt->ids.roles = 0;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003322 if (be32_to_cpu(parms->service_parms) & IBMVFC_PRLI_TARGET_FUNC)
Brian Kinga3b7aea2009-02-02 18:39:40 -06003323 tgt->ids.roles |= FC_PORT_ROLE_FCP_TARGET;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003324 if (be32_to_cpu(parms->service_parms) & IBMVFC_PRLI_INITIATOR_FUNC)
Brian Kinga3b7aea2009-02-02 18:39:40 -06003325 tgt->ids.roles |= FC_PORT_ROLE_FCP_INITIATOR;
Brian King43c8da92009-05-28 16:17:28 -05003326 tgt->add_rport = 1;
Brian Kinga3b7aea2009-02-02 18:39:40 -06003327 } else
3328 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DEL_RPORT);
3329 } else if (prli_rsp[index].retry)
3330 ibmvfc_retry_tgt_init(tgt, ibmvfc_tgt_send_prli);
3331 else
3332 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DEL_RPORT);
3333 } else
3334 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DEL_RPORT);
Brian King072b91f2008-07-01 13:14:30 -05003335 break;
3336 case IBMVFC_MAD_DRIVER_FAILED:
3337 break;
3338 case IBMVFC_MAD_CRQ_ERROR:
3339 ibmvfc_retry_tgt_init(tgt, ibmvfc_tgt_send_prli);
3340 break;
3341 case IBMVFC_MAD_FAILED:
3342 default:
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003343 if ((be16_to_cpu(rsp->status) & IBMVFC_VIOS_FAILURE) &&
3344 be16_to_cpu(rsp->error) == IBMVFC_PLOGI_REQUIRED)
Brian King017b2ae2009-06-18 09:06:55 -05003345 level += ibmvfc_retry_tgt_init(tgt, ibmvfc_tgt_send_plogi);
3346 else if (tgt->logo_rcvd)
3347 level += ibmvfc_retry_tgt_init(tgt, ibmvfc_tgt_send_plogi);
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003348 else if (ibmvfc_retry_cmd(be16_to_cpu(rsp->status), be16_to_cpu(rsp->error)))
Brian King7d0e4622009-05-28 16:17:26 -05003349 level += ibmvfc_retry_tgt_init(tgt, ibmvfc_tgt_send_prli);
Brian King10e79492008-10-29 08:46:45 -05003350 else
3351 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DEL_RPORT);
Brian King7d0e4622009-05-28 16:17:26 -05003352
3353 tgt_log(tgt, level, "Process Login failed: %s (%x:%x) rc=0x%02X\n",
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003354 ibmvfc_get_cmd_error(be16_to_cpu(rsp->status), be16_to_cpu(rsp->error)),
Brian King7d0e4622009-05-28 16:17:26 -05003355 rsp->status, rsp->error, status);
Brian King072b91f2008-07-01 13:14:30 -05003356 break;
3357 };
3358
3359 kref_put(&tgt->kref, ibmvfc_release_tgt);
3360 ibmvfc_free_event(evt);
3361 wake_up(&vhost->work_wait_q);
3362}
3363
3364/**
3365 * ibmvfc_tgt_send_prli - Send a process login
3366 * @tgt: ibmvfc target struct
3367 *
3368 **/
3369static void ibmvfc_tgt_send_prli(struct ibmvfc_target *tgt)
3370{
3371 struct ibmvfc_process_login *prli;
3372 struct ibmvfc_host *vhost = tgt->vhost;
3373 struct ibmvfc_event *evt;
3374
3375 if (vhost->discovery_threads >= disc_threads)
3376 return;
3377
3378 kref_get(&tgt->kref);
3379 evt = ibmvfc_get_event(vhost);
3380 vhost->discovery_threads++;
3381 ibmvfc_init_event(evt, ibmvfc_tgt_prli_done, IBMVFC_MAD_FORMAT);
3382 evt->tgt = tgt;
3383 prli = &evt->iu.prli;
3384 memset(prli, 0, sizeof(*prli));
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003385 prli->common.version = cpu_to_be32(1);
3386 prli->common.opcode = cpu_to_be32(IBMVFC_PROCESS_LOGIN);
3387 prli->common.length = cpu_to_be16(sizeof(*prli));
3388 prli->scsi_id = cpu_to_be64(tgt->scsi_id);
Brian King072b91f2008-07-01 13:14:30 -05003389
3390 prli->parms.type = IBMVFC_SCSI_FCP_TYPE;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003391 prli->parms.flags = cpu_to_be16(IBMVFC_PRLI_EST_IMG_PAIR);
3392 prli->parms.service_parms = cpu_to_be32(IBMVFC_PRLI_INITIATOR_FUNC);
Tyrel Datwylerbb5a5052016-08-03 16:36:52 -05003393 prli->parms.service_parms |= cpu_to_be32(IBMVFC_PRLI_READ_FCP_XFER_RDY_DISABLED);
Brian King072b91f2008-07-01 13:14:30 -05003394
Tyrel Datwylera6104b12016-08-03 16:36:53 -05003395 if (cls3_error)
3396 prli->parms.service_parms |= cpu_to_be32(IBMVFC_PRLI_RETRY);
3397
Brian King072b91f2008-07-01 13:14:30 -05003398 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_INIT_WAIT);
3399 if (ibmvfc_send_event(evt, vhost, default_timeout)) {
3400 vhost->discovery_threads--;
3401 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_NONE);
3402 kref_put(&tgt->kref, ibmvfc_release_tgt);
3403 } else
3404 tgt_dbg(tgt, "Sent process login\n");
3405}
3406
3407/**
3408 * ibmvfc_tgt_plogi_done - Completion handler for Port Login
3409 * @evt: ibmvfc event struct
3410 *
3411 **/
3412static void ibmvfc_tgt_plogi_done(struct ibmvfc_event *evt)
3413{
3414 struct ibmvfc_target *tgt = evt->tgt;
3415 struct ibmvfc_host *vhost = evt->vhost;
3416 struct ibmvfc_port_login *rsp = &evt->xfer_iu->plogi;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003417 u32 status = be16_to_cpu(rsp->common.status);
Brian King7d0e4622009-05-28 16:17:26 -05003418 int level = IBMVFC_DEFAULT_LOG_LEVEL;
Brian King072b91f2008-07-01 13:14:30 -05003419
3420 vhost->discovery_threads--;
3421 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_NONE);
3422 switch (status) {
3423 case IBMVFC_MAD_SUCCESS:
3424 tgt_dbg(tgt, "Port Login succeeded\n");
3425 if (tgt->ids.port_name &&
3426 tgt->ids.port_name != wwn_to_u64(rsp->service_parms.port_name)) {
3427 vhost->reinit = 1;
3428 tgt_dbg(tgt, "Port re-init required\n");
3429 break;
3430 }
3431 tgt->ids.node_name = wwn_to_u64(rsp->service_parms.node_name);
3432 tgt->ids.port_name = wwn_to_u64(rsp->service_parms.port_name);
3433 tgt->ids.port_id = tgt->scsi_id;
Brian King072b91f2008-07-01 13:14:30 -05003434 memcpy(&tgt->service_parms, &rsp->service_parms,
3435 sizeof(tgt->service_parms));
3436 memcpy(&tgt->service_parms_change, &rsp->service_parms_change,
3437 sizeof(tgt->service_parms_change));
3438 ibmvfc_init_tgt(tgt, ibmvfc_tgt_send_prli);
3439 break;
3440 case IBMVFC_MAD_DRIVER_FAILED:
3441 break;
3442 case IBMVFC_MAD_CRQ_ERROR:
3443 ibmvfc_retry_tgt_init(tgt, ibmvfc_tgt_send_plogi);
3444 break;
3445 case IBMVFC_MAD_FAILED:
3446 default:
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003447 if (ibmvfc_retry_cmd(be16_to_cpu(rsp->status), be16_to_cpu(rsp->error)))
Brian King7d0e4622009-05-28 16:17:26 -05003448 level += ibmvfc_retry_tgt_init(tgt, ibmvfc_tgt_send_plogi);
3449 else
3450 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DEL_RPORT);
3451
3452 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 -05003453 ibmvfc_get_cmd_error(be16_to_cpu(rsp->status), be16_to_cpu(rsp->error)), rsp->status, rsp->error,
3454 ibmvfc_get_fc_type(be16_to_cpu(rsp->fc_type)), rsp->fc_type,
3455 ibmvfc_get_ls_explain(be16_to_cpu(rsp->fc_explain)), rsp->fc_explain, status);
Brian King072b91f2008-07-01 13:14:30 -05003456 break;
3457 };
3458
3459 kref_put(&tgt->kref, ibmvfc_release_tgt);
3460 ibmvfc_free_event(evt);
3461 wake_up(&vhost->work_wait_q);
3462}
3463
3464/**
3465 * ibmvfc_tgt_send_plogi - Send PLOGI to the specified target
3466 * @tgt: ibmvfc target struct
3467 *
3468 **/
3469static void ibmvfc_tgt_send_plogi(struct ibmvfc_target *tgt)
3470{
3471 struct ibmvfc_port_login *plogi;
3472 struct ibmvfc_host *vhost = tgt->vhost;
3473 struct ibmvfc_event *evt;
3474
3475 if (vhost->discovery_threads >= disc_threads)
3476 return;
3477
3478 kref_get(&tgt->kref);
Brian King017b2ae2009-06-18 09:06:55 -05003479 tgt->logo_rcvd = 0;
Brian King072b91f2008-07-01 13:14:30 -05003480 evt = ibmvfc_get_event(vhost);
3481 vhost->discovery_threads++;
3482 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_INIT_WAIT);
3483 ibmvfc_init_event(evt, ibmvfc_tgt_plogi_done, IBMVFC_MAD_FORMAT);
3484 evt->tgt = tgt;
3485 plogi = &evt->iu.plogi;
3486 memset(plogi, 0, sizeof(*plogi));
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003487 plogi->common.version = cpu_to_be32(1);
3488 plogi->common.opcode = cpu_to_be32(IBMVFC_PORT_LOGIN);
3489 plogi->common.length = cpu_to_be16(sizeof(*plogi));
3490 plogi->scsi_id = cpu_to_be64(tgt->scsi_id);
Brian King072b91f2008-07-01 13:14:30 -05003491
3492 if (ibmvfc_send_event(evt, vhost, default_timeout)) {
3493 vhost->discovery_threads--;
3494 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_NONE);
3495 kref_put(&tgt->kref, ibmvfc_release_tgt);
3496 } else
3497 tgt_dbg(tgt, "Sent port login\n");
3498}
3499
3500/**
3501 * ibmvfc_tgt_implicit_logout_done - Completion handler for Implicit Logout MAD
3502 * @evt: ibmvfc event struct
3503 *
3504 **/
3505static void ibmvfc_tgt_implicit_logout_done(struct ibmvfc_event *evt)
3506{
3507 struct ibmvfc_target *tgt = evt->tgt;
3508 struct ibmvfc_host *vhost = evt->vhost;
3509 struct ibmvfc_implicit_logout *rsp = &evt->xfer_iu->implicit_logout;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003510 u32 status = be16_to_cpu(rsp->common.status);
Brian King072b91f2008-07-01 13:14:30 -05003511
3512 vhost->discovery_threads--;
3513 ibmvfc_free_event(evt);
3514 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_NONE);
3515
3516 switch (status) {
3517 case IBMVFC_MAD_SUCCESS:
3518 tgt_dbg(tgt, "Implicit Logout succeeded\n");
3519 break;
3520 case IBMVFC_MAD_DRIVER_FAILED:
3521 kref_put(&tgt->kref, ibmvfc_release_tgt);
3522 wake_up(&vhost->work_wait_q);
3523 return;
3524 case IBMVFC_MAD_FAILED:
3525 default:
3526 tgt_err(tgt, "Implicit Logout failed: rc=0x%02X\n", status);
3527 break;
3528 };
3529
3530 if (vhost->action == IBMVFC_HOST_ACTION_TGT_INIT)
3531 ibmvfc_init_tgt(tgt, ibmvfc_tgt_send_plogi);
3532 else if (vhost->action == IBMVFC_HOST_ACTION_QUERY_TGTS &&
3533 tgt->scsi_id != tgt->new_scsi_id)
3534 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DEL_RPORT);
3535 kref_put(&tgt->kref, ibmvfc_release_tgt);
3536 wake_up(&vhost->work_wait_q);
3537}
3538
3539/**
3540 * ibmvfc_tgt_implicit_logout - Initiate an Implicit Logout for specified target
3541 * @tgt: ibmvfc target struct
3542 *
3543 **/
3544static void ibmvfc_tgt_implicit_logout(struct ibmvfc_target *tgt)
3545{
3546 struct ibmvfc_implicit_logout *mad;
3547 struct ibmvfc_host *vhost = tgt->vhost;
3548 struct ibmvfc_event *evt;
3549
3550 if (vhost->discovery_threads >= disc_threads)
3551 return;
3552
3553 kref_get(&tgt->kref);
3554 evt = ibmvfc_get_event(vhost);
3555 vhost->discovery_threads++;
3556 ibmvfc_init_event(evt, ibmvfc_tgt_implicit_logout_done, IBMVFC_MAD_FORMAT);
3557 evt->tgt = tgt;
3558 mad = &evt->iu.implicit_logout;
3559 memset(mad, 0, sizeof(*mad));
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003560 mad->common.version = cpu_to_be32(1);
3561 mad->common.opcode = cpu_to_be32(IBMVFC_IMPLICIT_LOGOUT);
3562 mad->common.length = cpu_to_be16(sizeof(*mad));
3563 mad->old_scsi_id = cpu_to_be64(tgt->scsi_id);
Brian King072b91f2008-07-01 13:14:30 -05003564
3565 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_INIT_WAIT);
3566 if (ibmvfc_send_event(evt, vhost, default_timeout)) {
3567 vhost->discovery_threads--;
3568 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_NONE);
3569 kref_put(&tgt->kref, ibmvfc_release_tgt);
3570 } else
3571 tgt_dbg(tgt, "Sent Implicit Logout\n");
3572}
3573
3574/**
Brian King989b8542008-07-22 08:31:47 -05003575 * ibmvfc_adisc_needs_plogi - Does device need PLOGI?
3576 * @mad: ibmvfc passthru mad struct
3577 * @tgt: ibmvfc target struct
3578 *
3579 * Returns:
3580 * 1 if PLOGI needed / 0 if PLOGI not needed
3581 **/
3582static int ibmvfc_adisc_needs_plogi(struct ibmvfc_passthru_mad *mad,
3583 struct ibmvfc_target *tgt)
3584{
3585 if (memcmp(&mad->fc_iu.response[2], &tgt->ids.port_name,
3586 sizeof(tgt->ids.port_name)))
3587 return 1;
3588 if (memcmp(&mad->fc_iu.response[4], &tgt->ids.node_name,
3589 sizeof(tgt->ids.node_name)))
3590 return 1;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003591 if (be32_to_cpu(mad->fc_iu.response[6]) != tgt->scsi_id)
Brian King989b8542008-07-22 08:31:47 -05003592 return 1;
3593 return 0;
3594}
3595
3596/**
3597 * ibmvfc_tgt_adisc_done - Completion handler for ADISC
3598 * @evt: ibmvfc event struct
3599 *
3600 **/
3601static void ibmvfc_tgt_adisc_done(struct ibmvfc_event *evt)
3602{
3603 struct ibmvfc_target *tgt = evt->tgt;
3604 struct ibmvfc_host *vhost = evt->vhost;
3605 struct ibmvfc_passthru_mad *mad = &evt->xfer_iu->passthru;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003606 u32 status = be16_to_cpu(mad->common.status);
Brian King989b8542008-07-22 08:31:47 -05003607 u8 fc_reason, fc_explain;
3608
3609 vhost->discovery_threads--;
3610 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_NONE);
Brian King10501e12009-03-20 15:44:39 -05003611 del_timer(&tgt->timer);
Brian King989b8542008-07-22 08:31:47 -05003612
3613 switch (status) {
3614 case IBMVFC_MAD_SUCCESS:
3615 tgt_dbg(tgt, "ADISC succeeded\n");
3616 if (ibmvfc_adisc_needs_plogi(mad, tgt))
Brian King5e471672009-05-28 16:17:32 -05003617 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DEL_RPORT);
Brian King989b8542008-07-22 08:31:47 -05003618 break;
3619 case IBMVFC_MAD_DRIVER_FAILED:
3620 break;
3621 case IBMVFC_MAD_FAILED:
3622 default:
Brian King5e471672009-05-28 16:17:32 -05003623 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DEL_RPORT);
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003624 fc_reason = (be32_to_cpu(mad->fc_iu.response[1]) & 0x00ff0000) >> 16;
3625 fc_explain = (be32_to_cpu(mad->fc_iu.response[1]) & 0x0000ff00) >> 8;
Brian King989b8542008-07-22 08:31:47 -05003626 tgt_info(tgt, "ADISC failed: %s (%x:%x) %s (%x) %s (%x) rc=0x%02X\n",
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003627 ibmvfc_get_cmd_error(be16_to_cpu(mad->iu.status), be16_to_cpu(mad->iu.error)),
Brian King989b8542008-07-22 08:31:47 -05003628 mad->iu.status, mad->iu.error,
3629 ibmvfc_get_fc_type(fc_reason), fc_reason,
3630 ibmvfc_get_ls_explain(fc_explain), fc_explain, status);
3631 break;
3632 };
3633
3634 kref_put(&tgt->kref, ibmvfc_release_tgt);
3635 ibmvfc_free_event(evt);
3636 wake_up(&vhost->work_wait_q);
3637}
3638
3639/**
3640 * ibmvfc_init_passthru - Initialize an event struct for FC passthru
3641 * @evt: ibmvfc event struct
3642 *
3643 **/
3644static void ibmvfc_init_passthru(struct ibmvfc_event *evt)
3645{
3646 struct ibmvfc_passthru_mad *mad = &evt->iu.passthru;
3647
3648 memset(mad, 0, sizeof(*mad));
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003649 mad->common.version = cpu_to_be32(1);
3650 mad->common.opcode = cpu_to_be32(IBMVFC_PASSTHRU);
3651 mad->common.length = cpu_to_be16(sizeof(*mad) - sizeof(mad->fc_iu) - sizeof(mad->iu));
3652 mad->cmd_ioba.va = cpu_to_be64((u64)be64_to_cpu(evt->crq.ioba) +
3653 offsetof(struct ibmvfc_passthru_mad, iu));
3654 mad->cmd_ioba.len = cpu_to_be32(sizeof(mad->iu));
3655 mad->iu.cmd_len = cpu_to_be32(sizeof(mad->fc_iu.payload));
3656 mad->iu.rsp_len = cpu_to_be32(sizeof(mad->fc_iu.response));
3657 mad->iu.cmd.va = cpu_to_be64((u64)be64_to_cpu(evt->crq.ioba) +
Brian King989b8542008-07-22 08:31:47 -05003658 offsetof(struct ibmvfc_passthru_mad, fc_iu) +
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003659 offsetof(struct ibmvfc_passthru_fc_iu, payload));
3660 mad->iu.cmd.len = cpu_to_be32(sizeof(mad->fc_iu.payload));
3661 mad->iu.rsp.va = cpu_to_be64((u64)be64_to_cpu(evt->crq.ioba) +
Brian King989b8542008-07-22 08:31:47 -05003662 offsetof(struct ibmvfc_passthru_mad, fc_iu) +
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003663 offsetof(struct ibmvfc_passthru_fc_iu, response));
3664 mad->iu.rsp.len = cpu_to_be32(sizeof(mad->fc_iu.response));
Brian King989b8542008-07-22 08:31:47 -05003665}
3666
3667/**
Brian King10501e12009-03-20 15:44:39 -05003668 * ibmvfc_tgt_adisc_cancel_done - Completion handler when cancelling an ADISC
3669 * @evt: ibmvfc event struct
3670 *
3671 * Just cleanup this event struct. Everything else is handled by
3672 * the ADISC completion handler. If the ADISC never actually comes
3673 * back, we still have the timer running on the ADISC event struct
3674 * which will fire and cause the CRQ to get reset.
3675 *
3676 **/
3677static void ibmvfc_tgt_adisc_cancel_done(struct ibmvfc_event *evt)
3678{
3679 struct ibmvfc_host *vhost = evt->vhost;
3680 struct ibmvfc_target *tgt = evt->tgt;
3681
3682 tgt_dbg(tgt, "ADISC cancel complete\n");
3683 vhost->abort_threads--;
3684 ibmvfc_free_event(evt);
3685 kref_put(&tgt->kref, ibmvfc_release_tgt);
3686 wake_up(&vhost->work_wait_q);
3687}
3688
3689/**
3690 * ibmvfc_adisc_timeout - Handle an ADISC timeout
3691 * @tgt: ibmvfc target struct
3692 *
3693 * If an ADISC times out, send a cancel. If the cancel times
3694 * out, reset the CRQ. When the ADISC comes back as cancelled,
3695 * log back into the target.
3696 **/
3697static void ibmvfc_adisc_timeout(struct ibmvfc_target *tgt)
3698{
3699 struct ibmvfc_host *vhost = tgt->vhost;
3700 struct ibmvfc_event *evt;
3701 struct ibmvfc_tmf *tmf;
3702 unsigned long flags;
3703 int rc;
3704
3705 tgt_dbg(tgt, "ADISC timeout\n");
3706 spin_lock_irqsave(vhost->host->host_lock, flags);
3707 if (vhost->abort_threads >= disc_threads ||
3708 tgt->action != IBMVFC_TGT_ACTION_INIT_WAIT ||
3709 vhost->state != IBMVFC_INITIALIZING ||
3710 vhost->action != IBMVFC_HOST_ACTION_QUERY_TGTS) {
3711 spin_unlock_irqrestore(vhost->host->host_lock, flags);
3712 return;
3713 }
3714
3715 vhost->abort_threads++;
3716 kref_get(&tgt->kref);
3717 evt = ibmvfc_get_event(vhost);
3718 ibmvfc_init_event(evt, ibmvfc_tgt_adisc_cancel_done, IBMVFC_MAD_FORMAT);
3719
3720 evt->tgt = tgt;
3721 tmf = &evt->iu.tmf;
3722 memset(tmf, 0, sizeof(*tmf));
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003723 tmf->common.version = cpu_to_be32(1);
3724 tmf->common.opcode = cpu_to_be32(IBMVFC_TMF_MAD);
3725 tmf->common.length = cpu_to_be16(sizeof(*tmf));
3726 tmf->scsi_id = cpu_to_be64(tgt->scsi_id);
3727 tmf->cancel_key = cpu_to_be32(tgt->cancel_key);
Brian King10501e12009-03-20 15:44:39 -05003728
3729 rc = ibmvfc_send_event(evt, vhost, default_timeout);
3730
3731 if (rc) {
3732 tgt_err(tgt, "Failed to send cancel event for ADISC. rc=%d\n", rc);
3733 vhost->abort_threads--;
3734 kref_put(&tgt->kref, ibmvfc_release_tgt);
3735 __ibmvfc_reset_host(vhost);
3736 } else
3737 tgt_dbg(tgt, "Attempting to cancel ADISC\n");
3738 spin_unlock_irqrestore(vhost->host->host_lock, flags);
3739}
3740
3741/**
Brian King989b8542008-07-22 08:31:47 -05003742 * ibmvfc_tgt_adisc - Initiate an ADISC for specified target
3743 * @tgt: ibmvfc target struct
3744 *
Brian King10501e12009-03-20 15:44:39 -05003745 * When sending an ADISC we end up with two timers running. The
3746 * first timer is the timer in the ibmvfc target struct. If this
3747 * fires, we send a cancel to the target. The second timer is the
3748 * timer on the ibmvfc event for the ADISC, which is longer. If that
3749 * fires, it means the ADISC timed out and our attempt to cancel it
3750 * also failed, so we need to reset the CRQ.
Brian King989b8542008-07-22 08:31:47 -05003751 **/
3752static void ibmvfc_tgt_adisc(struct ibmvfc_target *tgt)
3753{
3754 struct ibmvfc_passthru_mad *mad;
3755 struct ibmvfc_host *vhost = tgt->vhost;
3756 struct ibmvfc_event *evt;
3757
3758 if (vhost->discovery_threads >= disc_threads)
3759 return;
3760
3761 kref_get(&tgt->kref);
3762 evt = ibmvfc_get_event(vhost);
3763 vhost->discovery_threads++;
3764 ibmvfc_init_event(evt, ibmvfc_tgt_adisc_done, IBMVFC_MAD_FORMAT);
3765 evt->tgt = tgt;
3766
3767 ibmvfc_init_passthru(evt);
3768 mad = &evt->iu.passthru;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003769 mad->iu.flags = cpu_to_be32(IBMVFC_FC_ELS);
3770 mad->iu.scsi_id = cpu_to_be64(tgt->scsi_id);
3771 mad->iu.cancel_key = cpu_to_be32(tgt->cancel_key);
Brian King989b8542008-07-22 08:31:47 -05003772
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003773 mad->fc_iu.payload[0] = cpu_to_be32(IBMVFC_ADISC);
Brian King989b8542008-07-22 08:31:47 -05003774 memcpy(&mad->fc_iu.payload[2], &vhost->login_buf->resp.port_name,
3775 sizeof(vhost->login_buf->resp.port_name));
3776 memcpy(&mad->fc_iu.payload[4], &vhost->login_buf->resp.node_name,
3777 sizeof(vhost->login_buf->resp.node_name));
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003778 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 -05003779
Brian King10501e12009-03-20 15:44:39 -05003780 if (timer_pending(&tgt->timer))
3781 mod_timer(&tgt->timer, jiffies + (IBMVFC_ADISC_TIMEOUT * HZ));
3782 else {
3783 tgt->timer.data = (unsigned long) tgt;
3784 tgt->timer.expires = jiffies + (IBMVFC_ADISC_TIMEOUT * HZ);
3785 tgt->timer.function = (void (*)(unsigned long))ibmvfc_adisc_timeout;
3786 add_timer(&tgt->timer);
3787 }
3788
Brian King989b8542008-07-22 08:31:47 -05003789 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_INIT_WAIT);
Brian King10501e12009-03-20 15:44:39 -05003790 if (ibmvfc_send_event(evt, vhost, IBMVFC_ADISC_PLUS_CANCEL_TIMEOUT)) {
Brian King989b8542008-07-22 08:31:47 -05003791 vhost->discovery_threads--;
Brian King10501e12009-03-20 15:44:39 -05003792 del_timer(&tgt->timer);
Brian King989b8542008-07-22 08:31:47 -05003793 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_NONE);
3794 kref_put(&tgt->kref, ibmvfc_release_tgt);
3795 } else
3796 tgt_dbg(tgt, "Sent ADISC\n");
3797}
3798
3799/**
Brian King072b91f2008-07-01 13:14:30 -05003800 * ibmvfc_tgt_query_target_done - Completion handler for Query Target MAD
3801 * @evt: ibmvfc event struct
3802 *
3803 **/
3804static void ibmvfc_tgt_query_target_done(struct ibmvfc_event *evt)
3805{
3806 struct ibmvfc_target *tgt = evt->tgt;
3807 struct ibmvfc_host *vhost = evt->vhost;
3808 struct ibmvfc_query_tgt *rsp = &evt->xfer_iu->query_tgt;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003809 u32 status = be16_to_cpu(rsp->common.status);
Brian King7d0e4622009-05-28 16:17:26 -05003810 int level = IBMVFC_DEFAULT_LOG_LEVEL;
Brian King072b91f2008-07-01 13:14:30 -05003811
3812 vhost->discovery_threads--;
3813 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_NONE);
3814 switch (status) {
3815 case IBMVFC_MAD_SUCCESS:
3816 tgt_dbg(tgt, "Query Target succeeded\n");
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003817 tgt->new_scsi_id = be64_to_cpu(rsp->scsi_id);
3818 if (be64_to_cpu(rsp->scsi_id) != tgt->scsi_id)
Brian King072b91f2008-07-01 13:14:30 -05003819 ibmvfc_init_tgt(tgt, ibmvfc_tgt_implicit_logout);
Brian King989b8542008-07-22 08:31:47 -05003820 else
3821 ibmvfc_init_tgt(tgt, ibmvfc_tgt_adisc);
Brian King072b91f2008-07-01 13:14:30 -05003822 break;
3823 case IBMVFC_MAD_DRIVER_FAILED:
3824 break;
3825 case IBMVFC_MAD_CRQ_ERROR:
3826 ibmvfc_retry_tgt_init(tgt, ibmvfc_tgt_query_target);
3827 break;
3828 case IBMVFC_MAD_FAILED:
3829 default:
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003830 if ((be16_to_cpu(rsp->status) & IBMVFC_FABRIC_MAPPED) == IBMVFC_FABRIC_MAPPED &&
3831 be16_to_cpu(rsp->error) == IBMVFC_UNABLE_TO_PERFORM_REQ &&
3832 be16_to_cpu(rsp->fc_explain) == IBMVFC_PORT_NAME_NOT_REG)
Brian King072b91f2008-07-01 13:14:30 -05003833 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DEL_RPORT);
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003834 else if (ibmvfc_retry_cmd(be16_to_cpu(rsp->status), be16_to_cpu(rsp->error)))
Brian King7d0e4622009-05-28 16:17:26 -05003835 level += ibmvfc_retry_tgt_init(tgt, ibmvfc_tgt_query_target);
Brian King10e79492008-10-29 08:46:45 -05003836 else
3837 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DEL_RPORT);
Brian King7d0e4622009-05-28 16:17:26 -05003838
3839 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 -05003840 ibmvfc_get_cmd_error(be16_to_cpu(rsp->status), be16_to_cpu(rsp->error)),
3841 rsp->status, rsp->error, ibmvfc_get_fc_type(be16_to_cpu(rsp->fc_type)),
3842 rsp->fc_type, ibmvfc_get_gs_explain(be16_to_cpu(rsp->fc_explain)),
3843 rsp->fc_explain, status);
Brian King072b91f2008-07-01 13:14:30 -05003844 break;
3845 };
3846
3847 kref_put(&tgt->kref, ibmvfc_release_tgt);
3848 ibmvfc_free_event(evt);
3849 wake_up(&vhost->work_wait_q);
3850}
3851
3852/**
3853 * ibmvfc_tgt_query_target - Initiate a Query Target for specified target
3854 * @tgt: ibmvfc target struct
3855 *
3856 **/
3857static void ibmvfc_tgt_query_target(struct ibmvfc_target *tgt)
3858{
3859 struct ibmvfc_query_tgt *query_tgt;
3860 struct ibmvfc_host *vhost = tgt->vhost;
3861 struct ibmvfc_event *evt;
3862
3863 if (vhost->discovery_threads >= disc_threads)
3864 return;
3865
3866 kref_get(&tgt->kref);
3867 evt = ibmvfc_get_event(vhost);
3868 vhost->discovery_threads++;
3869 evt->tgt = tgt;
3870 ibmvfc_init_event(evt, ibmvfc_tgt_query_target_done, IBMVFC_MAD_FORMAT);
3871 query_tgt = &evt->iu.query_tgt;
3872 memset(query_tgt, 0, sizeof(*query_tgt));
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003873 query_tgt->common.version = cpu_to_be32(1);
3874 query_tgt->common.opcode = cpu_to_be32(IBMVFC_QUERY_TARGET);
3875 query_tgt->common.length = cpu_to_be16(sizeof(*query_tgt));
3876 query_tgt->wwpn = cpu_to_be64(tgt->ids.port_name);
Brian King072b91f2008-07-01 13:14:30 -05003877
3878 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_INIT_WAIT);
3879 if (ibmvfc_send_event(evt, vhost, default_timeout)) {
3880 vhost->discovery_threads--;
3881 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_NONE);
3882 kref_put(&tgt->kref, ibmvfc_release_tgt);
3883 } else
3884 tgt_dbg(tgt, "Sent Query Target\n");
3885}
3886
3887/**
3888 * ibmvfc_alloc_target - Allocate and initialize an ibmvfc target
3889 * @vhost: ibmvfc host struct
3890 * @scsi_id: SCSI ID to allocate target for
3891 *
3892 * Returns:
3893 * 0 on success / other on failure
3894 **/
3895static int ibmvfc_alloc_target(struct ibmvfc_host *vhost, u64 scsi_id)
3896{
3897 struct ibmvfc_target *tgt;
3898 unsigned long flags;
3899
3900 spin_lock_irqsave(vhost->host->host_lock, flags);
3901 list_for_each_entry(tgt, &vhost->targets, queue) {
3902 if (tgt->scsi_id == scsi_id) {
3903 if (tgt->need_login)
3904 ibmvfc_init_tgt(tgt, ibmvfc_tgt_implicit_logout);
3905 goto unlock_out;
3906 }
3907 }
3908 spin_unlock_irqrestore(vhost->host->host_lock, flags);
3909
Brian King7270b9b2009-05-28 16:17:24 -05003910 tgt = mempool_alloc(vhost->tgt_pool, GFP_NOIO);
Brian King072b91f2008-07-01 13:14:30 -05003911 if (!tgt) {
Stephen Rothwell775a42e2009-01-06 14:59:00 +00003912 dev_err(vhost->dev, "Target allocation failure for scsi id %08llx\n",
Brian King072b91f2008-07-01 13:14:30 -05003913 scsi_id);
3914 return -ENOMEM;
3915 }
3916
Brian King0883e3b2009-02-04 16:13:12 -06003917 memset(tgt, 0, sizeof(*tgt));
Brian King072b91f2008-07-01 13:14:30 -05003918 tgt->scsi_id = scsi_id;
3919 tgt->new_scsi_id = scsi_id;
3920 tgt->vhost = vhost;
3921 tgt->need_login = 1;
Brian King10501e12009-03-20 15:44:39 -05003922 tgt->cancel_key = vhost->task_set++;
3923 init_timer(&tgt->timer);
Brian King072b91f2008-07-01 13:14:30 -05003924 kref_init(&tgt->kref);
3925 ibmvfc_init_tgt(tgt, ibmvfc_tgt_implicit_logout);
3926 spin_lock_irqsave(vhost->host->host_lock, flags);
3927 list_add_tail(&tgt->queue, &vhost->targets);
3928
3929unlock_out:
3930 spin_unlock_irqrestore(vhost->host->host_lock, flags);
3931 return 0;
3932}
3933
3934/**
3935 * ibmvfc_alloc_targets - Allocate and initialize ibmvfc targets
3936 * @vhost: ibmvfc host struct
3937 *
3938 * Returns:
3939 * 0 on success / other on failure
3940 **/
3941static int ibmvfc_alloc_targets(struct ibmvfc_host *vhost)
3942{
3943 int i, rc;
3944
3945 for (i = 0, rc = 0; !rc && i < vhost->num_targets; i++)
3946 rc = ibmvfc_alloc_target(vhost,
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003947 be32_to_cpu(vhost->disc_buf->scsi_id[i]) &
3948 IBMVFC_DISC_TGT_SCSI_ID_MASK);
Brian King072b91f2008-07-01 13:14:30 -05003949
3950 return rc;
3951}
3952
3953/**
3954 * ibmvfc_discover_targets_done - Completion handler for discover targets MAD
3955 * @evt: ibmvfc event struct
3956 *
3957 **/
3958static void ibmvfc_discover_targets_done(struct ibmvfc_event *evt)
3959{
3960 struct ibmvfc_host *vhost = evt->vhost;
3961 struct ibmvfc_discover_targets *rsp = &evt->xfer_iu->discover_targets;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003962 u32 mad_status = be16_to_cpu(rsp->common.status);
Brian King7d0e4622009-05-28 16:17:26 -05003963 int level = IBMVFC_DEFAULT_LOG_LEVEL;
Brian King072b91f2008-07-01 13:14:30 -05003964
3965 switch (mad_status) {
3966 case IBMVFC_MAD_SUCCESS:
3967 ibmvfc_dbg(vhost, "Discover Targets succeeded\n");
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003968 vhost->num_targets = be32_to_cpu(rsp->num_written);
Brian King072b91f2008-07-01 13:14:30 -05003969 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_ALLOC_TGTS);
3970 break;
3971 case IBMVFC_MAD_FAILED:
Brian King7d0e4622009-05-28 16:17:26 -05003972 level += ibmvfc_retry_host_init(vhost);
3973 ibmvfc_log(vhost, level, "Discover Targets failed: %s (%x:%x)\n",
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05003974 ibmvfc_get_cmd_error(be16_to_cpu(rsp->status), be16_to_cpu(rsp->error)),
3975 rsp->status, rsp->error);
Brian King072b91f2008-07-01 13:14:30 -05003976 break;
3977 case IBMVFC_MAD_DRIVER_FAILED:
3978 break;
3979 default:
3980 dev_err(vhost->dev, "Invalid Discover Targets response: 0x%x\n", mad_status);
3981 ibmvfc_link_down(vhost, IBMVFC_LINK_DEAD);
3982 break;
3983 }
3984
3985 ibmvfc_free_event(evt);
3986 wake_up(&vhost->work_wait_q);
3987}
3988
3989/**
3990 * ibmvfc_discover_targets - Send Discover Targets MAD
3991 * @vhost: ibmvfc host struct
3992 *
3993 **/
3994static void ibmvfc_discover_targets(struct ibmvfc_host *vhost)
3995{
3996 struct ibmvfc_discover_targets *mad;
3997 struct ibmvfc_event *evt = ibmvfc_get_event(vhost);
3998
3999 ibmvfc_init_event(evt, ibmvfc_discover_targets_done, IBMVFC_MAD_FORMAT);
4000 mad = &evt->iu.discover_targets;
4001 memset(mad, 0, sizeof(*mad));
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05004002 mad->common.version = cpu_to_be32(1);
4003 mad->common.opcode = cpu_to_be32(IBMVFC_DISC_TARGETS);
4004 mad->common.length = cpu_to_be16(sizeof(*mad));
4005 mad->bufflen = cpu_to_be32(vhost->disc_buf_sz);
4006 mad->buffer.va = cpu_to_be64(vhost->disc_buf_dma);
4007 mad->buffer.len = cpu_to_be32(vhost->disc_buf_sz);
Brian King072b91f2008-07-01 13:14:30 -05004008 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_INIT_WAIT);
4009
4010 if (!ibmvfc_send_event(evt, vhost, default_timeout))
4011 ibmvfc_dbg(vhost, "Sent discover targets\n");
4012 else
4013 ibmvfc_link_down(vhost, IBMVFC_LINK_DEAD);
4014}
4015
4016/**
4017 * ibmvfc_npiv_login_done - Completion handler for NPIV Login
4018 * @evt: ibmvfc event struct
4019 *
4020 **/
4021static void ibmvfc_npiv_login_done(struct ibmvfc_event *evt)
4022{
4023 struct ibmvfc_host *vhost = evt->vhost;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05004024 u32 mad_status = be16_to_cpu(evt->xfer_iu->npiv_login.common.status);
Brian King072b91f2008-07-01 13:14:30 -05004025 struct ibmvfc_npiv_login_resp *rsp = &vhost->login_buf->resp;
4026 unsigned int npiv_max_sectors;
Brian King7d0e4622009-05-28 16:17:26 -05004027 int level = IBMVFC_DEFAULT_LOG_LEVEL;
Brian King072b91f2008-07-01 13:14:30 -05004028
4029 switch (mad_status) {
4030 case IBMVFC_MAD_SUCCESS:
4031 ibmvfc_free_event(evt);
4032 break;
4033 case IBMVFC_MAD_FAILED:
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05004034 if (ibmvfc_retry_cmd(be16_to_cpu(rsp->status), be16_to_cpu(rsp->error)))
Brian King7d0e4622009-05-28 16:17:26 -05004035 level += ibmvfc_retry_host_init(vhost);
Brian King072b91f2008-07-01 13:14:30 -05004036 else
4037 ibmvfc_link_down(vhost, IBMVFC_LINK_DEAD);
Brian King7d0e4622009-05-28 16:17:26 -05004038 ibmvfc_log(vhost, level, "NPIV Login failed: %s (%x:%x)\n",
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05004039 ibmvfc_get_cmd_error(be16_to_cpu(rsp->status), be16_to_cpu(rsp->error)),
4040 rsp->status, rsp->error);
Brian King072b91f2008-07-01 13:14:30 -05004041 ibmvfc_free_event(evt);
4042 return;
4043 case IBMVFC_MAD_CRQ_ERROR:
4044 ibmvfc_retry_host_init(vhost);
4045 case IBMVFC_MAD_DRIVER_FAILED:
4046 ibmvfc_free_event(evt);
4047 return;
4048 default:
4049 dev_err(vhost->dev, "Invalid NPIV Login response: 0x%x\n", mad_status);
4050 ibmvfc_link_down(vhost, IBMVFC_LINK_DEAD);
4051 ibmvfc_free_event(evt);
4052 return;
4053 }
4054
4055 vhost->client_migrated = 0;
4056
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05004057 if (!(be32_to_cpu(rsp->flags) & IBMVFC_NATIVE_FC)) {
Brian King072b91f2008-07-01 13:14:30 -05004058 dev_err(vhost->dev, "Virtual adapter does not support FC. %x\n",
4059 rsp->flags);
4060 ibmvfc_link_down(vhost, IBMVFC_LINK_DEAD);
4061 wake_up(&vhost->work_wait_q);
4062 return;
4063 }
4064
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05004065 if (be32_to_cpu(rsp->max_cmds) <= IBMVFC_NUM_INTERNAL_REQ) {
Brian King072b91f2008-07-01 13:14:30 -05004066 dev_err(vhost->dev, "Virtual adapter supported queue depth too small: %d\n",
4067 rsp->max_cmds);
4068 ibmvfc_link_down(vhost, IBMVFC_LINK_DEAD);
4069 wake_up(&vhost->work_wait_q);
4070 return;
4071 }
4072
Brian King79111d02009-05-28 16:17:29 -05004073 vhost->logged_in = 1;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05004074 npiv_max_sectors = min((uint)(be64_to_cpu(rsp->max_dma_len) >> 9), IBMVFC_MAX_SECTORS);
Brian King072b91f2008-07-01 13:14:30 -05004075 dev_info(vhost->dev, "Host partition: %s, device: %s %s %s max sectors %u\n",
4076 rsp->partition_name, rsp->device_name, rsp->port_loc_code,
4077 rsp->drc_name, npiv_max_sectors);
4078
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05004079 fc_host_fabric_name(vhost->host) = be64_to_cpu(rsp->node_name);
4080 fc_host_node_name(vhost->host) = be64_to_cpu(rsp->node_name);
4081 fc_host_port_name(vhost->host) = be64_to_cpu(rsp->port_name);
4082 fc_host_port_id(vhost->host) = be64_to_cpu(rsp->scsi_id);
Brian King072b91f2008-07-01 13:14:30 -05004083 fc_host_port_type(vhost->host) = FC_PORTTYPE_NPIV;
4084 fc_host_supported_classes(vhost->host) = 0;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05004085 if (be32_to_cpu(rsp->service_parms.class1_parms[0]) & 0x80000000)
Brian King072b91f2008-07-01 13:14:30 -05004086 fc_host_supported_classes(vhost->host) |= FC_COS_CLASS1;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05004087 if (be32_to_cpu(rsp->service_parms.class2_parms[0]) & 0x80000000)
Brian King072b91f2008-07-01 13:14:30 -05004088 fc_host_supported_classes(vhost->host) |= FC_COS_CLASS2;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05004089 if (be32_to_cpu(rsp->service_parms.class3_parms[0]) & 0x80000000)
Brian King072b91f2008-07-01 13:14:30 -05004090 fc_host_supported_classes(vhost->host) |= FC_COS_CLASS3;
4091 fc_host_maxframe_size(vhost->host) =
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05004092 be16_to_cpu(rsp->service_parms.common.bb_rcv_sz) & 0x0fff;
Brian King072b91f2008-07-01 13:14:30 -05004093
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05004094 vhost->host->can_queue = be32_to_cpu(rsp->max_cmds) - IBMVFC_NUM_INTERNAL_REQ;
Brian King072b91f2008-07-01 13:14:30 -05004095 vhost->host->max_sectors = npiv_max_sectors;
4096 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_QUERY);
4097 wake_up(&vhost->work_wait_q);
4098}
4099
4100/**
4101 * ibmvfc_npiv_login - Sends NPIV login
4102 * @vhost: ibmvfc host struct
4103 *
4104 **/
4105static void ibmvfc_npiv_login(struct ibmvfc_host *vhost)
4106{
4107 struct ibmvfc_npiv_login_mad *mad;
4108 struct ibmvfc_event *evt = ibmvfc_get_event(vhost);
4109
4110 ibmvfc_gather_partition_info(vhost);
4111 ibmvfc_set_login_info(vhost);
4112 ibmvfc_init_event(evt, ibmvfc_npiv_login_done, IBMVFC_MAD_FORMAT);
4113
4114 memcpy(vhost->login_buf, &vhost->login_info, sizeof(vhost->login_info));
4115 mad = &evt->iu.npiv_login;
4116 memset(mad, 0, sizeof(struct ibmvfc_npiv_login_mad));
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05004117 mad->common.version = cpu_to_be32(1);
4118 mad->common.opcode = cpu_to_be32(IBMVFC_NPIV_LOGIN);
4119 mad->common.length = cpu_to_be16(sizeof(struct ibmvfc_npiv_login_mad));
4120 mad->buffer.va = cpu_to_be64(vhost->login_buf_dma);
4121 mad->buffer.len = cpu_to_be32(sizeof(*vhost->login_buf));
Brian King072b91f2008-07-01 13:14:30 -05004122
Brian King072b91f2008-07-01 13:14:30 -05004123 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_INIT_WAIT);
4124
4125 if (!ibmvfc_send_event(evt, vhost, default_timeout))
4126 ibmvfc_dbg(vhost, "Sent NPIV login\n");
4127 else
4128 ibmvfc_link_down(vhost, IBMVFC_LINK_DEAD);
4129};
4130
4131/**
Brian King79111d02009-05-28 16:17:29 -05004132 * ibmvfc_npiv_logout_done - Completion handler for NPIV Logout
4133 * @vhost: ibmvfc host struct
4134 *
4135 **/
4136static void ibmvfc_npiv_logout_done(struct ibmvfc_event *evt)
4137{
4138 struct ibmvfc_host *vhost = evt->vhost;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05004139 u32 mad_status = be16_to_cpu(evt->xfer_iu->npiv_logout.common.status);
Brian King79111d02009-05-28 16:17:29 -05004140
4141 ibmvfc_free_event(evt);
4142
4143 switch (mad_status) {
4144 case IBMVFC_MAD_SUCCESS:
4145 if (list_empty(&vhost->sent) &&
4146 vhost->action == IBMVFC_HOST_ACTION_LOGO_WAIT) {
Brian King861890c2009-10-19 15:07:49 -05004147 ibmvfc_init_host(vhost);
Brian King79111d02009-05-28 16:17:29 -05004148 return;
4149 }
4150 break;
4151 case IBMVFC_MAD_FAILED:
4152 case IBMVFC_MAD_NOT_SUPPORTED:
4153 case IBMVFC_MAD_CRQ_ERROR:
4154 case IBMVFC_MAD_DRIVER_FAILED:
4155 default:
4156 ibmvfc_dbg(vhost, "NPIV Logout failed. 0x%X\n", mad_status);
4157 break;
4158 }
4159
4160 ibmvfc_hard_reset_host(vhost);
4161}
4162
4163/**
4164 * ibmvfc_npiv_logout - Issue an NPIV Logout
4165 * @vhost: ibmvfc host struct
4166 *
4167 **/
4168static void ibmvfc_npiv_logout(struct ibmvfc_host *vhost)
4169{
4170 struct ibmvfc_npiv_logout_mad *mad;
4171 struct ibmvfc_event *evt;
4172
4173 evt = ibmvfc_get_event(vhost);
4174 ibmvfc_init_event(evt, ibmvfc_npiv_logout_done, IBMVFC_MAD_FORMAT);
4175
4176 mad = &evt->iu.npiv_logout;
4177 memset(mad, 0, sizeof(*mad));
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05004178 mad->common.version = cpu_to_be32(1);
4179 mad->common.opcode = cpu_to_be32(IBMVFC_NPIV_LOGOUT);
4180 mad->common.length = cpu_to_be16(sizeof(struct ibmvfc_npiv_logout_mad));
Brian King79111d02009-05-28 16:17:29 -05004181
4182 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_LOGO_WAIT);
4183
4184 if (!ibmvfc_send_event(evt, vhost, default_timeout))
4185 ibmvfc_dbg(vhost, "Sent NPIV logout\n");
4186 else
4187 ibmvfc_link_down(vhost, IBMVFC_LINK_DEAD);
4188}
4189
4190/**
Brian King072b91f2008-07-01 13:14:30 -05004191 * ibmvfc_dev_init_to_do - Is there target initialization work to do?
4192 * @vhost: ibmvfc host struct
4193 *
4194 * Returns:
4195 * 1 if work to do / 0 if not
4196 **/
4197static int ibmvfc_dev_init_to_do(struct ibmvfc_host *vhost)
4198{
4199 struct ibmvfc_target *tgt;
4200
4201 list_for_each_entry(tgt, &vhost->targets, queue) {
4202 if (tgt->action == IBMVFC_TGT_ACTION_INIT ||
4203 tgt->action == IBMVFC_TGT_ACTION_INIT_WAIT)
4204 return 1;
4205 }
4206
4207 return 0;
4208}
4209
4210/**
4211 * __ibmvfc_work_to_do - Is there task level work to do? (no locking)
4212 * @vhost: ibmvfc host struct
4213 *
4214 * Returns:
4215 * 1 if work to do / 0 if not
4216 **/
4217static int __ibmvfc_work_to_do(struct ibmvfc_host *vhost)
4218{
4219 struct ibmvfc_target *tgt;
4220
4221 if (kthread_should_stop())
4222 return 1;
4223 switch (vhost->action) {
4224 case IBMVFC_HOST_ACTION_NONE:
4225 case IBMVFC_HOST_ACTION_INIT_WAIT:
Brian King79111d02009-05-28 16:17:29 -05004226 case IBMVFC_HOST_ACTION_LOGO_WAIT:
Brian King072b91f2008-07-01 13:14:30 -05004227 return 0;
4228 case IBMVFC_HOST_ACTION_TGT_INIT:
4229 case IBMVFC_HOST_ACTION_QUERY_TGTS:
4230 if (vhost->discovery_threads == disc_threads)
4231 return 0;
4232 list_for_each_entry(tgt, &vhost->targets, queue)
4233 if (tgt->action == IBMVFC_TGT_ACTION_INIT)
4234 return 1;
4235 list_for_each_entry(tgt, &vhost->targets, queue)
4236 if (tgt->action == IBMVFC_TGT_ACTION_INIT_WAIT)
4237 return 0;
4238 return 1;
Brian King79111d02009-05-28 16:17:29 -05004239 case IBMVFC_HOST_ACTION_LOGO:
Brian King072b91f2008-07-01 13:14:30 -05004240 case IBMVFC_HOST_ACTION_INIT:
4241 case IBMVFC_HOST_ACTION_ALLOC_TGTS:
Brian King072b91f2008-07-01 13:14:30 -05004242 case IBMVFC_HOST_ACTION_TGT_DEL:
Brian King10e79492008-10-29 08:46:45 -05004243 case IBMVFC_HOST_ACTION_TGT_DEL_FAILED:
Brian King072b91f2008-07-01 13:14:30 -05004244 case IBMVFC_HOST_ACTION_QUERY:
Brian King73ee5d82010-06-17 13:55:13 -05004245 case IBMVFC_HOST_ACTION_RESET:
4246 case IBMVFC_HOST_ACTION_REENABLE:
Brian King072b91f2008-07-01 13:14:30 -05004247 default:
4248 break;
4249 };
4250
4251 return 1;
4252}
4253
4254/**
4255 * ibmvfc_work_to_do - Is there task level work to do?
4256 * @vhost: ibmvfc host struct
4257 *
4258 * Returns:
4259 * 1 if work to do / 0 if not
4260 **/
4261static int ibmvfc_work_to_do(struct ibmvfc_host *vhost)
4262{
4263 unsigned long flags;
4264 int rc;
4265
4266 spin_lock_irqsave(vhost->host->host_lock, flags);
4267 rc = __ibmvfc_work_to_do(vhost);
4268 spin_unlock_irqrestore(vhost->host->host_lock, flags);
4269 return rc;
4270}
4271
4272/**
4273 * ibmvfc_log_ae - Log async events if necessary
4274 * @vhost: ibmvfc host struct
4275 * @events: events to log
4276 *
4277 **/
4278static void ibmvfc_log_ae(struct ibmvfc_host *vhost, int events)
4279{
4280 if (events & IBMVFC_AE_RSCN)
4281 fc_host_post_event(vhost->host, fc_get_event_number(), FCH_EVT_RSCN, 0);
4282 if ((events & IBMVFC_AE_LINKDOWN) &&
4283 vhost->state >= IBMVFC_HALTED)
4284 fc_host_post_event(vhost->host, fc_get_event_number(), FCH_EVT_LINKDOWN, 0);
4285 if ((events & IBMVFC_AE_LINKUP) &&
4286 vhost->state == IBMVFC_INITIALIZING)
4287 fc_host_post_event(vhost->host, fc_get_event_number(), FCH_EVT_LINKUP, 0);
4288}
4289
4290/**
4291 * ibmvfc_tgt_add_rport - Tell the FC transport about a new remote port
4292 * @tgt: ibmvfc target struct
4293 *
4294 **/
4295static void ibmvfc_tgt_add_rport(struct ibmvfc_target *tgt)
4296{
4297 struct ibmvfc_host *vhost = tgt->vhost;
Brian King43c8da92009-05-28 16:17:28 -05004298 struct fc_rport *rport;
Brian King072b91f2008-07-01 13:14:30 -05004299 unsigned long flags;
4300
4301 tgt_dbg(tgt, "Adding rport\n");
4302 rport = fc_remote_port_add(vhost->host, 0, &tgt->ids);
4303 spin_lock_irqsave(vhost->host->host_lock, flags);
Brian King43c8da92009-05-28 16:17:28 -05004304
4305 if (rport && tgt->action == IBMVFC_TGT_ACTION_DEL_RPORT) {
4306 tgt_dbg(tgt, "Deleting rport\n");
4307 list_del(&tgt->queue);
Brian Kingd5da3042010-08-05 16:38:31 -05004308 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DELETED_RPORT);
Brian King43c8da92009-05-28 16:17:28 -05004309 spin_unlock_irqrestore(vhost->host->host_lock, flags);
4310 fc_remote_port_delete(rport);
4311 del_timer_sync(&tgt->timer);
4312 kref_put(&tgt->kref, ibmvfc_release_tgt);
4313 return;
Brian Kingd5da3042010-08-05 16:38:31 -05004314 } else if (rport && tgt->action == IBMVFC_TGT_ACTION_DELETED_RPORT) {
4315 spin_unlock_irqrestore(vhost->host->host_lock, flags);
4316 return;
Brian King43c8da92009-05-28 16:17:28 -05004317 }
4318
Brian King072b91f2008-07-01 13:14:30 -05004319 if (rport) {
4320 tgt_dbg(tgt, "rport add succeeded\n");
Brian King43c8da92009-05-28 16:17:28 -05004321 tgt->rport = rport;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05004322 rport->maxframe_size = be16_to_cpu(tgt->service_parms.common.bb_rcv_sz) & 0x0fff;
Brian King072b91f2008-07-01 13:14:30 -05004323 rport->supported_classes = 0;
Brian King52d7e862008-07-22 08:31:46 -05004324 tgt->target_id = rport->scsi_target_id;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05004325 if (be32_to_cpu(tgt->service_parms.class1_parms[0]) & 0x80000000)
Brian King072b91f2008-07-01 13:14:30 -05004326 rport->supported_classes |= FC_COS_CLASS1;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05004327 if (be32_to_cpu(tgt->service_parms.class2_parms[0]) & 0x80000000)
Brian King072b91f2008-07-01 13:14:30 -05004328 rport->supported_classes |= FC_COS_CLASS2;
Tyrel Datwyler0aab6c32014-06-26 19:03:55 -05004329 if (be32_to_cpu(tgt->service_parms.class3_parms[0]) & 0x80000000)
Brian King072b91f2008-07-01 13:14:30 -05004330 rport->supported_classes |= FC_COS_CLASS3;
Brian Kingd31429e2009-10-19 15:07:54 -05004331 if (rport->rqst_q)
Martin K. Petersen8a783622010-02-26 00:20:39 -05004332 blk_queue_max_segments(rport->rqst_q, 1);
Brian King072b91f2008-07-01 13:14:30 -05004333 } else
4334 tgt_dbg(tgt, "rport add failed\n");
4335 spin_unlock_irqrestore(vhost->host->host_lock, flags);
4336}
4337
4338/**
4339 * ibmvfc_do_work - Do task level work
4340 * @vhost: ibmvfc host struct
4341 *
4342 **/
4343static void ibmvfc_do_work(struct ibmvfc_host *vhost)
4344{
4345 struct ibmvfc_target *tgt;
4346 unsigned long flags;
4347 struct fc_rport *rport;
Brian King73ee5d82010-06-17 13:55:13 -05004348 int rc;
Brian King072b91f2008-07-01 13:14:30 -05004349
4350 ibmvfc_log_ae(vhost, vhost->events_to_log);
4351 spin_lock_irqsave(vhost->host->host_lock, flags);
4352 vhost->events_to_log = 0;
4353 switch (vhost->action) {
4354 case IBMVFC_HOST_ACTION_NONE:
Brian King79111d02009-05-28 16:17:29 -05004355 case IBMVFC_HOST_ACTION_LOGO_WAIT:
Brian King072b91f2008-07-01 13:14:30 -05004356 case IBMVFC_HOST_ACTION_INIT_WAIT:
4357 break;
Brian King73ee5d82010-06-17 13:55:13 -05004358 case IBMVFC_HOST_ACTION_RESET:
4359 vhost->action = IBMVFC_HOST_ACTION_TGT_DEL;
4360 spin_unlock_irqrestore(vhost->host->host_lock, flags);
4361 rc = ibmvfc_reset_crq(vhost);
4362 spin_lock_irqsave(vhost->host->host_lock, flags);
Brian Kingd24099d2010-09-21 10:17:11 -05004363 if (rc == H_CLOSED)
4364 vio_enable_interrupts(to_vio_dev(vhost->dev));
Brian King38553562011-06-03 08:23:20 -05004365 if (rc || (rc = ibmvfc_send_crq_init(vhost)) ||
4366 (rc = vio_enable_interrupts(to_vio_dev(vhost->dev)))) {
Brian King73ee5d82010-06-17 13:55:13 -05004367 ibmvfc_link_down(vhost, IBMVFC_LINK_DEAD);
4368 dev_err(vhost->dev, "Error after reset (rc=%d)\n", rc);
4369 }
4370 break;
4371 case IBMVFC_HOST_ACTION_REENABLE:
4372 vhost->action = IBMVFC_HOST_ACTION_TGT_DEL;
4373 spin_unlock_irqrestore(vhost->host->host_lock, flags);
4374 rc = ibmvfc_reenable_crq_queue(vhost);
4375 spin_lock_irqsave(vhost->host->host_lock, flags);
4376 if (rc || (rc = ibmvfc_send_crq_init(vhost))) {
4377 ibmvfc_link_down(vhost, IBMVFC_LINK_DEAD);
4378 dev_err(vhost->dev, "Error after enable (rc=%d)\n", rc);
4379 }
4380 break;
Brian King79111d02009-05-28 16:17:29 -05004381 case IBMVFC_HOST_ACTION_LOGO:
4382 vhost->job_step(vhost);
4383 break;
Brian King072b91f2008-07-01 13:14:30 -05004384 case IBMVFC_HOST_ACTION_INIT:
4385 BUG_ON(vhost->state != IBMVFC_INITIALIZING);
Brian King1c41fa822008-12-03 11:02:54 -06004386 if (vhost->delay_init) {
4387 vhost->delay_init = 0;
4388 spin_unlock_irqrestore(vhost->host->host_lock, flags);
Brian Kingd2131b32008-12-18 09:26:51 -06004389 ssleep(15);
Brian King1c41fa822008-12-03 11:02:54 -06004390 return;
4391 } else
4392 vhost->job_step(vhost);
Brian King072b91f2008-07-01 13:14:30 -05004393 break;
4394 case IBMVFC_HOST_ACTION_QUERY:
4395 list_for_each_entry(tgt, &vhost->targets, queue)
4396 ibmvfc_init_tgt(tgt, ibmvfc_tgt_query_target);
4397 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_QUERY_TGTS);
4398 break;
4399 case IBMVFC_HOST_ACTION_QUERY_TGTS:
4400 list_for_each_entry(tgt, &vhost->targets, queue) {
4401 if (tgt->action == IBMVFC_TGT_ACTION_INIT) {
4402 tgt->job_step(tgt);
4403 break;
4404 }
4405 }
4406
4407 if (!ibmvfc_dev_init_to_do(vhost))
4408 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_TGT_DEL);
4409 break;
4410 case IBMVFC_HOST_ACTION_TGT_DEL:
Brian King10e79492008-10-29 08:46:45 -05004411 case IBMVFC_HOST_ACTION_TGT_DEL_FAILED:
Brian King072b91f2008-07-01 13:14:30 -05004412 list_for_each_entry(tgt, &vhost->targets, queue) {
4413 if (tgt->action == IBMVFC_TGT_ACTION_DEL_RPORT) {
4414 tgt_dbg(tgt, "Deleting rport\n");
4415 rport = tgt->rport;
4416 tgt->rport = NULL;
4417 list_del(&tgt->queue);
Brian Kingd5da3042010-08-05 16:38:31 -05004418 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DELETED_RPORT);
Brian King072b91f2008-07-01 13:14:30 -05004419 spin_unlock_irqrestore(vhost->host->host_lock, flags);
4420 if (rport)
4421 fc_remote_port_delete(rport);
Brian King10501e12009-03-20 15:44:39 -05004422 del_timer_sync(&tgt->timer);
Brian King072b91f2008-07-01 13:14:30 -05004423 kref_put(&tgt->kref, ibmvfc_release_tgt);
4424 return;
4425 }
4426 }
4427
4428 if (vhost->state == IBMVFC_INITIALIZING) {
Brian King10e79492008-10-29 08:46:45 -05004429 if (vhost->action == IBMVFC_HOST_ACTION_TGT_DEL_FAILED) {
Brian King43c8da92009-05-28 16:17:28 -05004430 if (vhost->reinit) {
4431 vhost->reinit = 0;
4432 scsi_block_requests(vhost->host);
4433 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_QUERY);
4434 spin_unlock_irqrestore(vhost->host->host_lock, flags);
4435 } else {
4436 ibmvfc_set_host_state(vhost, IBMVFC_ACTIVE);
4437 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_NONE);
4438 wake_up(&vhost->init_wait_q);
4439 schedule_work(&vhost->rport_add_work_q);
4440 vhost->init_retries = 0;
4441 spin_unlock_irqrestore(vhost->host->host_lock, flags);
4442 scsi_unblock_requests(vhost->host);
4443 }
4444
Brian King10e79492008-10-29 08:46:45 -05004445 return;
4446 } else {
4447 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_INIT);
4448 vhost->job_step = ibmvfc_discover_targets;
4449 }
Brian King072b91f2008-07-01 13:14:30 -05004450 } else {
4451 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_NONE);
4452 spin_unlock_irqrestore(vhost->host->host_lock, flags);
4453 scsi_unblock_requests(vhost->host);
4454 wake_up(&vhost->init_wait_q);
4455 return;
4456 }
4457 break;
4458 case IBMVFC_HOST_ACTION_ALLOC_TGTS:
4459 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_TGT_INIT);
4460 spin_unlock_irqrestore(vhost->host->host_lock, flags);
4461 ibmvfc_alloc_targets(vhost);
4462 spin_lock_irqsave(vhost->host->host_lock, flags);
4463 break;
4464 case IBMVFC_HOST_ACTION_TGT_INIT:
4465 list_for_each_entry(tgt, &vhost->targets, queue) {
4466 if (tgt->action == IBMVFC_TGT_ACTION_INIT) {
4467 tgt->job_step(tgt);
4468 break;
4469 }
4470 }
4471
Brian King10e79492008-10-29 08:46:45 -05004472 if (!ibmvfc_dev_init_to_do(vhost))
4473 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_TGT_DEL_FAILED);
Brian King072b91f2008-07-01 13:14:30 -05004474 break;
Brian King072b91f2008-07-01 13:14:30 -05004475 default:
4476 break;
4477 };
4478
4479 spin_unlock_irqrestore(vhost->host->host_lock, flags);
4480}
4481
4482/**
4483 * ibmvfc_work - Do task level work
4484 * @data: ibmvfc host struct
4485 *
4486 * Returns:
4487 * zero
4488 **/
4489static int ibmvfc_work(void *data)
4490{
4491 struct ibmvfc_host *vhost = data;
4492 int rc;
4493
Dongsheng Yang8698a742014-03-11 18:09:12 +08004494 set_user_nice(current, MIN_NICE);
Brian King072b91f2008-07-01 13:14:30 -05004495
4496 while (1) {
4497 rc = wait_event_interruptible(vhost->work_wait_q,
4498 ibmvfc_work_to_do(vhost));
4499
4500 BUG_ON(rc);
4501
4502 if (kthread_should_stop())
4503 break;
4504
4505 ibmvfc_do_work(vhost);
4506 }
4507
4508 ibmvfc_dbg(vhost, "ibmvfc kthread exiting...\n");
4509 return 0;
4510}
4511
4512/**
4513 * ibmvfc_init_crq - Initializes and registers CRQ with hypervisor
4514 * @vhost: ibmvfc host struct
4515 *
4516 * Allocates a page for messages, maps it for dma, and registers
4517 * the crq with the hypervisor.
4518 *
4519 * Return value:
4520 * zero on success / other on failure
4521 **/
4522static int ibmvfc_init_crq(struct ibmvfc_host *vhost)
4523{
4524 int rc, retrc = -ENOMEM;
4525 struct device *dev = vhost->dev;
4526 struct vio_dev *vdev = to_vio_dev(dev);
4527 struct ibmvfc_crq_queue *crq = &vhost->crq;
4528
4529 ENTER;
4530 crq->msgs = (struct ibmvfc_crq *)get_zeroed_page(GFP_KERNEL);
4531
4532 if (!crq->msgs)
4533 return -ENOMEM;
4534
4535 crq->size = PAGE_SIZE / sizeof(*crq->msgs);
4536 crq->msg_token = dma_map_single(dev, crq->msgs,
4537 PAGE_SIZE, DMA_BIDIRECTIONAL);
4538
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -07004539 if (dma_mapping_error(dev, crq->msg_token))
Brian King072b91f2008-07-01 13:14:30 -05004540 goto map_failed;
4541
4542 retrc = rc = plpar_hcall_norets(H_REG_CRQ, vdev->unit_address,
4543 crq->msg_token, PAGE_SIZE);
4544
4545 if (rc == H_RESOURCE)
4546 /* maybe kexecing and resource is busy. try a reset */
4547 retrc = rc = ibmvfc_reset_crq(vhost);
4548
4549 if (rc == H_CLOSED)
4550 dev_warn(dev, "Partner adapter not ready\n");
4551 else if (rc) {
4552 dev_warn(dev, "Error %d opening adapter\n", rc);
4553 goto reg_crq_failed;
4554 }
4555
4556 retrc = 0;
4557
Brian King039a0892009-03-20 15:44:35 -05004558 tasklet_init(&vhost->tasklet, (void *)ibmvfc_tasklet, (unsigned long)vhost);
4559
Brian King072b91f2008-07-01 13:14:30 -05004560 if ((rc = request_irq(vdev->irq, ibmvfc_interrupt, 0, IBMVFC_NAME, vhost))) {
4561 dev_err(dev, "Couldn't register irq 0x%x. rc=%d\n", vdev->irq, rc);
4562 goto req_irq_failed;
4563 }
4564
4565 if ((rc = vio_enable_interrupts(vdev))) {
4566 dev_err(dev, "Error %d enabling interrupts\n", rc);
4567 goto req_irq_failed;
4568 }
4569
4570 crq->cur = 0;
4571 LEAVE;
4572 return retrc;
4573
4574req_irq_failed:
Brian King039a0892009-03-20 15:44:35 -05004575 tasklet_kill(&vhost->tasklet);
Brian King072b91f2008-07-01 13:14:30 -05004576 do {
4577 rc = plpar_hcall_norets(H_FREE_CRQ, vdev->unit_address);
4578 } while (rc == H_BUSY || H_IS_LONG_BUSY(rc));
4579reg_crq_failed:
4580 dma_unmap_single(dev, crq->msg_token, PAGE_SIZE, DMA_BIDIRECTIONAL);
4581map_failed:
4582 free_page((unsigned long)crq->msgs);
4583 return retrc;
4584}
4585
4586/**
4587 * ibmvfc_free_mem - Free memory for vhost
4588 * @vhost: ibmvfc host struct
4589 *
4590 * Return value:
4591 * none
4592 **/
4593static void ibmvfc_free_mem(struct ibmvfc_host *vhost)
4594{
4595 struct ibmvfc_async_crq_queue *async_q = &vhost->async_crq;
4596
4597 ENTER;
4598 mempool_destroy(vhost->tgt_pool);
4599 kfree(vhost->trace);
4600 dma_free_coherent(vhost->dev, vhost->disc_buf_sz, vhost->disc_buf,
4601 vhost->disc_buf_dma);
4602 dma_free_coherent(vhost->dev, sizeof(*vhost->login_buf),
4603 vhost->login_buf, vhost->login_buf_dma);
4604 dma_pool_destroy(vhost->sg_pool);
4605 dma_unmap_single(vhost->dev, async_q->msg_token,
4606 async_q->size * sizeof(*async_q->msgs), DMA_BIDIRECTIONAL);
4607 free_page((unsigned long)async_q->msgs);
4608 LEAVE;
4609}
4610
4611/**
4612 * ibmvfc_alloc_mem - Allocate memory for vhost
4613 * @vhost: ibmvfc host struct
4614 *
4615 * Return value:
4616 * 0 on success / non-zero on failure
4617 **/
4618static int ibmvfc_alloc_mem(struct ibmvfc_host *vhost)
4619{
4620 struct ibmvfc_async_crq_queue *async_q = &vhost->async_crq;
4621 struct device *dev = vhost->dev;
4622
4623 ENTER;
4624 async_q->msgs = (struct ibmvfc_async_crq *)get_zeroed_page(GFP_KERNEL);
4625 if (!async_q->msgs) {
4626 dev_err(dev, "Couldn't allocate async queue.\n");
4627 goto nomem;
4628 }
4629
4630 async_q->size = PAGE_SIZE / sizeof(struct ibmvfc_async_crq);
4631 async_q->msg_token = dma_map_single(dev, async_q->msgs,
4632 async_q->size * sizeof(*async_q->msgs),
4633 DMA_BIDIRECTIONAL);
4634
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -07004635 if (dma_mapping_error(dev, async_q->msg_token)) {
Brian King072b91f2008-07-01 13:14:30 -05004636 dev_err(dev, "Failed to map async queue\n");
4637 goto free_async_crq;
4638 }
4639
4640 vhost->sg_pool = dma_pool_create(IBMVFC_NAME, dev,
4641 SG_ALL * sizeof(struct srp_direct_buf),
4642 sizeof(struct srp_direct_buf), 0);
4643
4644 if (!vhost->sg_pool) {
4645 dev_err(dev, "Failed to allocate sg pool\n");
4646 goto unmap_async_crq;
4647 }
4648
4649 vhost->login_buf = dma_alloc_coherent(dev, sizeof(*vhost->login_buf),
4650 &vhost->login_buf_dma, GFP_KERNEL);
4651
4652 if (!vhost->login_buf) {
4653 dev_err(dev, "Couldn't allocate NPIV login buffer\n");
4654 goto free_sg_pool;
4655 }
4656
4657 vhost->disc_buf_sz = sizeof(vhost->disc_buf->scsi_id[0]) * max_targets;
4658 vhost->disc_buf = dma_alloc_coherent(dev, vhost->disc_buf_sz,
4659 &vhost->disc_buf_dma, GFP_KERNEL);
4660
4661 if (!vhost->disc_buf) {
4662 dev_err(dev, "Couldn't allocate Discover Targets buffer\n");
4663 goto free_login_buffer;
4664 }
4665
4666 vhost->trace = kcalloc(IBMVFC_NUM_TRACE_ENTRIES,
4667 sizeof(struct ibmvfc_trace_entry), GFP_KERNEL);
4668
4669 if (!vhost->trace)
4670 goto free_disc_buffer;
4671
Sage Weild6886692009-08-03 13:54:47 -07004672 vhost->tgt_pool = mempool_create_kmalloc_pool(IBMVFC_TGT_MEMPOOL_SZ,
Brian King072b91f2008-07-01 13:14:30 -05004673 sizeof(struct ibmvfc_target));
4674
4675 if (!vhost->tgt_pool) {
4676 dev_err(dev, "Couldn't allocate target memory pool\n");
4677 goto free_trace;
4678 }
4679
4680 LEAVE;
4681 return 0;
4682
4683free_trace:
4684 kfree(vhost->trace);
4685free_disc_buffer:
4686 dma_free_coherent(dev, vhost->disc_buf_sz, vhost->disc_buf,
4687 vhost->disc_buf_dma);
4688free_login_buffer:
4689 dma_free_coherent(dev, sizeof(*vhost->login_buf),
4690 vhost->login_buf, vhost->login_buf_dma);
4691free_sg_pool:
4692 dma_pool_destroy(vhost->sg_pool);
4693unmap_async_crq:
4694 dma_unmap_single(dev, async_q->msg_token,
4695 async_q->size * sizeof(*async_q->msgs), DMA_BIDIRECTIONAL);
4696free_async_crq:
4697 free_page((unsigned long)async_q->msgs);
4698nomem:
4699 LEAVE;
4700 return -ENOMEM;
4701}
4702
4703/**
Brian King43c8da92009-05-28 16:17:28 -05004704 * ibmvfc_rport_add_thread - Worker thread for rport adds
4705 * @work: work struct
4706 *
4707 **/
4708static void ibmvfc_rport_add_thread(struct work_struct *work)
4709{
4710 struct ibmvfc_host *vhost = container_of(work, struct ibmvfc_host,
4711 rport_add_work_q);
4712 struct ibmvfc_target *tgt;
4713 struct fc_rport *rport;
4714 unsigned long flags;
4715 int did_work;
4716
4717 ENTER;
4718 spin_lock_irqsave(vhost->host->host_lock, flags);
4719 do {
4720 did_work = 0;
4721 if (vhost->state != IBMVFC_ACTIVE)
4722 break;
4723
4724 list_for_each_entry(tgt, &vhost->targets, queue) {
4725 if (tgt->add_rport) {
4726 did_work = 1;
4727 tgt->add_rport = 0;
4728 kref_get(&tgt->kref);
4729 rport = tgt->rport;
4730 if (!rport) {
4731 spin_unlock_irqrestore(vhost->host->host_lock, flags);
4732 ibmvfc_tgt_add_rport(tgt);
4733 } else if (get_device(&rport->dev)) {
4734 spin_unlock_irqrestore(vhost->host->host_lock, flags);
4735 tgt_dbg(tgt, "Setting rport roles\n");
4736 fc_remote_port_rolechg(rport, tgt->ids.roles);
4737 put_device(&rport->dev);
Dan Carpenter00738872016-07-15 14:18:57 +03004738 } else {
4739 spin_unlock_irqrestore(vhost->host->host_lock, flags);
Brian King43c8da92009-05-28 16:17:28 -05004740 }
4741
4742 kref_put(&tgt->kref, ibmvfc_release_tgt);
4743 spin_lock_irqsave(vhost->host->host_lock, flags);
4744 break;
4745 }
4746 }
4747 } while(did_work);
4748
4749 if (vhost->state == IBMVFC_ACTIVE)
4750 vhost->scan_complete = 1;
4751 spin_unlock_irqrestore(vhost->host->host_lock, flags);
4752 LEAVE;
4753}
4754
4755/**
Brian King072b91f2008-07-01 13:14:30 -05004756 * ibmvfc_probe - Adapter hot plug add entry point
4757 * @vdev: vio device struct
4758 * @id: vio device id struct
4759 *
4760 * Return value:
4761 * 0 on success / non-zero on failure
4762 **/
4763static int ibmvfc_probe(struct vio_dev *vdev, const struct vio_device_id *id)
4764{
4765 struct ibmvfc_host *vhost;
4766 struct Scsi_Host *shost;
4767 struct device *dev = &vdev->dev;
4768 int rc = -ENOMEM;
4769
4770 ENTER;
4771 shost = scsi_host_alloc(&driver_template, sizeof(*vhost));
4772 if (!shost) {
4773 dev_err(dev, "Couldn't allocate host data\n");
4774 goto out;
4775 }
4776
4777 shost->transportt = ibmvfc_transport_template;
4778 shost->can_queue = max_requests;
4779 shost->max_lun = max_lun;
4780 shost->max_id = max_targets;
4781 shost->max_sectors = IBMVFC_MAX_SECTORS;
4782 shost->max_cmd_len = IBMVFC_MAX_CDB_LEN;
4783 shost->unique_id = shost->host_no;
4784
4785 vhost = shost_priv(shost);
4786 INIT_LIST_HEAD(&vhost->sent);
4787 INIT_LIST_HEAD(&vhost->free);
4788 INIT_LIST_HEAD(&vhost->targets);
4789 sprintf(vhost->name, IBMVFC_NAME);
4790 vhost->host = shost;
4791 vhost->dev = dev;
4792 vhost->partition_number = -1;
4793 vhost->log_level = log_level;
Brian King10501e12009-03-20 15:44:39 -05004794 vhost->task_set = 1;
Brian King072b91f2008-07-01 13:14:30 -05004795 strcpy(vhost->partition_name, "UNKNOWN");
4796 init_waitqueue_head(&vhost->work_wait_q);
4797 init_waitqueue_head(&vhost->init_wait_q);
Brian King43c8da92009-05-28 16:17:28 -05004798 INIT_WORK(&vhost->rport_add_work_q, ibmvfc_rport_add_thread);
Brian Kingd31429e2009-10-19 15:07:54 -05004799 mutex_init(&vhost->passthru_mutex);
Brian King072b91f2008-07-01 13:14:30 -05004800
4801 if ((rc = ibmvfc_alloc_mem(vhost)))
4802 goto free_scsi_host;
4803
4804 vhost->work_thread = kthread_run(ibmvfc_work, vhost, "%s_%d", IBMVFC_NAME,
4805 shost->host_no);
4806
4807 if (IS_ERR(vhost->work_thread)) {
4808 dev_err(dev, "Couldn't create kernel thread: %ld\n",
4809 PTR_ERR(vhost->work_thread));
4810 goto free_host_mem;
4811 }
4812
4813 if ((rc = ibmvfc_init_crq(vhost))) {
4814 dev_err(dev, "Couldn't initialize crq. rc=%d\n", rc);
4815 goto kill_kthread;
4816 }
4817
4818 if ((rc = ibmvfc_init_event_pool(vhost))) {
4819 dev_err(dev, "Couldn't initialize event pool. rc=%d\n", rc);
4820 goto release_crq;
4821 }
4822
4823 if ((rc = scsi_add_host(shost, dev)))
4824 goto release_event_pool;
4825
Mike Christiea5110f22010-09-15 16:52:29 -05004826 fc_host_dev_loss_tmo(shost) = IBMVFC_DEV_LOSS_TMO;
4827
Brian King072b91f2008-07-01 13:14:30 -05004828 if ((rc = ibmvfc_create_trace_file(&shost->shost_dev.kobj,
4829 &ibmvfc_trace_attr))) {
4830 dev_err(dev, "Failed to create trace file. rc=%d\n", rc);
4831 goto remove_shost;
4832 }
4833
Brian Kingd31429e2009-10-19 15:07:54 -05004834 if (shost_to_fc_host(shost)->rqst_q)
Martin K. Petersen8a783622010-02-26 00:20:39 -05004835 blk_queue_max_segments(shost_to_fc_host(shost)->rqst_q, 1);
Brian King072b91f2008-07-01 13:14:30 -05004836 dev_set_drvdata(dev, vhost);
4837 spin_lock(&ibmvfc_driver_lock);
4838 list_add_tail(&vhost->queue, &ibmvfc_head);
4839 spin_unlock(&ibmvfc_driver_lock);
4840
4841 ibmvfc_send_crq_init(vhost);
4842 scsi_scan_host(shost);
4843 return 0;
4844
4845remove_shost:
4846 scsi_remove_host(shost);
4847release_event_pool:
4848 ibmvfc_free_event_pool(vhost);
4849release_crq:
4850 ibmvfc_release_crq_queue(vhost);
4851kill_kthread:
4852 kthread_stop(vhost->work_thread);
4853free_host_mem:
4854 ibmvfc_free_mem(vhost);
4855free_scsi_host:
4856 scsi_host_put(shost);
4857out:
4858 LEAVE;
4859 return rc;
4860}
4861
4862/**
4863 * ibmvfc_remove - Adapter hot plug remove entry point
4864 * @vdev: vio device struct
4865 *
4866 * Return value:
4867 * 0
4868 **/
4869static int ibmvfc_remove(struct vio_dev *vdev)
4870{
4871 struct ibmvfc_host *vhost = dev_get_drvdata(&vdev->dev);
4872 unsigned long flags;
4873
4874 ENTER;
4875 ibmvfc_remove_trace_file(&vhost->host->shost_dev.kobj, &ibmvfc_trace_attr);
Brian King70431102009-10-19 15:07:48 -05004876
4877 spin_lock_irqsave(vhost->host->host_lock, flags);
Brian King2d0da2a2008-07-22 08:31:42 -05004878 ibmvfc_link_down(vhost, IBMVFC_HOST_OFFLINE);
Brian King70431102009-10-19 15:07:48 -05004879 spin_unlock_irqrestore(vhost->host->host_lock, flags);
4880
Brian King2d0da2a2008-07-22 08:31:42 -05004881 ibmvfc_wait_while_resetting(vhost);
4882 ibmvfc_release_crq_queue(vhost);
Brian King072b91f2008-07-01 13:14:30 -05004883 kthread_stop(vhost->work_thread);
4884 fc_remove_host(vhost->host);
4885 scsi_remove_host(vhost->host);
Brian King072b91f2008-07-01 13:14:30 -05004886
4887 spin_lock_irqsave(vhost->host->host_lock, flags);
4888 ibmvfc_purge_requests(vhost, DID_ERROR);
4889 ibmvfc_free_event_pool(vhost);
4890 spin_unlock_irqrestore(vhost->host->host_lock, flags);
4891
4892 ibmvfc_free_mem(vhost);
4893 spin_lock(&ibmvfc_driver_lock);
4894 list_del(&vhost->queue);
4895 spin_unlock(&ibmvfc_driver_lock);
4896 scsi_host_put(vhost->host);
4897 LEAVE;
4898 return 0;
4899}
4900
Brian King39c1ffe2008-07-24 04:35:48 +10004901/**
Brian Kingb0f4d4c2010-02-21 10:37:58 -06004902 * ibmvfc_resume - Resume from suspend
4903 * @dev: device struct
4904 *
4905 * We may have lost an interrupt across suspend/resume, so kick the
4906 * interrupt handler
4907 *
4908 */
4909static int ibmvfc_resume(struct device *dev)
4910{
4911 unsigned long flags;
4912 struct ibmvfc_host *vhost = dev_get_drvdata(dev);
4913 struct vio_dev *vdev = to_vio_dev(dev);
4914
4915 spin_lock_irqsave(vhost->host->host_lock, flags);
4916 vio_disable_interrupts(vdev);
4917 tasklet_schedule(&vhost->tasklet);
4918 spin_unlock_irqrestore(vhost->host->host_lock, flags);
4919 return 0;
4920}
4921
4922/**
Brian King39c1ffe2008-07-24 04:35:48 +10004923 * ibmvfc_get_desired_dma - Calculate DMA resources needed by the driver
4924 * @vdev: vio device struct
4925 *
4926 * Return value:
4927 * Number of bytes the driver will need to DMA map at the same time in
4928 * order to perform well.
4929 */
4930static unsigned long ibmvfc_get_desired_dma(struct vio_dev *vdev)
4931{
4932 unsigned long pool_dma = max_requests * sizeof(union ibmvfc_iu);
4933 return pool_dma + ((512 * 1024) * driver_template.cmd_per_lun);
4934}
4935
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08004936static struct vio_device_id ibmvfc_device_table[] = {
Brian King072b91f2008-07-01 13:14:30 -05004937 {"fcp", "IBM,vfc-client"},
4938 { "", "" }
4939};
4940MODULE_DEVICE_TABLE(vio, ibmvfc_device_table);
4941
Brian Kingb0f4d4c2010-02-21 10:37:58 -06004942static struct dev_pm_ops ibmvfc_pm_ops = {
4943 .resume = ibmvfc_resume
4944};
4945
Brian King072b91f2008-07-01 13:14:30 -05004946static struct vio_driver ibmvfc_driver = {
4947 .id_table = ibmvfc_device_table,
4948 .probe = ibmvfc_probe,
4949 .remove = ibmvfc_remove,
Brian King39c1ffe2008-07-24 04:35:48 +10004950 .get_desired_dma = ibmvfc_get_desired_dma,
Benjamin Herrenschmidtcb52d892012-03-26 19:06:30 +00004951 .name = IBMVFC_NAME,
4952 .pm = &ibmvfc_pm_ops,
Brian King072b91f2008-07-01 13:14:30 -05004953};
4954
4955static struct fc_function_template ibmvfc_transport_functions = {
4956 .show_host_fabric_name = 1,
4957 .show_host_node_name = 1,
4958 .show_host_port_name = 1,
4959 .show_host_supported_classes = 1,
4960 .show_host_port_type = 1,
4961 .show_host_port_id = 1,
Brian King9ab36102009-03-20 15:44:38 -05004962 .show_host_maxframe_size = 1,
Brian King072b91f2008-07-01 13:14:30 -05004963
4964 .get_host_port_state = ibmvfc_get_host_port_state,
4965 .show_host_port_state = 1,
4966
4967 .get_host_speed = ibmvfc_get_host_speed,
4968 .show_host_speed = 1,
4969
4970 .issue_fc_host_lip = ibmvfc_issue_fc_host_lip,
4971 .terminate_rport_io = ibmvfc_terminate_rport_io,
4972
4973 .show_rport_maxframe_size = 1,
4974 .show_rport_supported_classes = 1,
4975
4976 .set_rport_dev_loss_tmo = ibmvfc_set_rport_dev_loss_tmo,
4977 .show_rport_dev_loss_tmo = 1,
4978
4979 .get_starget_node_name = ibmvfc_get_starget_node_name,
4980 .show_starget_node_name = 1,
4981
4982 .get_starget_port_name = ibmvfc_get_starget_port_name,
4983 .show_starget_port_name = 1,
4984
4985 .get_starget_port_id = ibmvfc_get_starget_port_id,
4986 .show_starget_port_id = 1,
Brian Kingd31429e2009-10-19 15:07:54 -05004987
4988 .bsg_request = ibmvfc_bsg_request,
4989 .bsg_timeout = ibmvfc_bsg_timeout,
Brian King072b91f2008-07-01 13:14:30 -05004990};
4991
4992/**
4993 * ibmvfc_module_init - Initialize the ibmvfc module
4994 *
4995 * Return value:
4996 * 0 on success / other on failure
4997 **/
4998static int __init ibmvfc_module_init(void)
4999{
5000 int rc;
5001
5002 if (!firmware_has_feature(FW_FEATURE_VIO))
5003 return -ENODEV;
5004
5005 printk(KERN_INFO IBMVFC_NAME": IBM Virtual Fibre Channel Driver version: %s %s\n",
5006 IBMVFC_DRIVER_VERSION, IBMVFC_DRIVER_DATE);
5007
5008 ibmvfc_transport_template = fc_attach_transport(&ibmvfc_transport_functions);
5009 if (!ibmvfc_transport_template)
5010 return -ENOMEM;
5011
5012 rc = vio_register_driver(&ibmvfc_driver);
5013 if (rc)
5014 fc_release_transport(ibmvfc_transport_template);
5015 return rc;
5016}
5017
5018/**
5019 * ibmvfc_module_exit - Teardown the ibmvfc module
5020 *
5021 * Return value:
5022 * nothing
5023 **/
5024static void __exit ibmvfc_module_exit(void)
5025{
5026 vio_unregister_driver(&ibmvfc_driver);
5027 fc_release_transport(ibmvfc_transport_template);
5028}
5029
5030module_init(ibmvfc_module_init);
5031module_exit(ibmvfc_module_exit);