Upgrade to 4.4.50-rt62
[kvmfornfv.git] / kernel / drivers / scsi / ibmvscsi / ibmvfc.c
1 /*
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>
31 #include <linux/slab.h>
32 #include <linux/of.h>
33 #include <linux/pm.h>
34 #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>
44 #include <scsi/scsi_bsg_fc.h>
45 #include "ibmvfc.h"
46
47 static unsigned int init_timeout = IBMVFC_INIT_TIMEOUT;
48 static unsigned int default_timeout = IBMVFC_DEFAULT_TIMEOUT;
49 static u64 max_lun = IBMVFC_MAX_LUN;
50 static unsigned int max_targets = IBMVFC_MAX_TARGETS;
51 static unsigned int max_requests = IBMVFC_MAX_REQUESTS_DEFAULT;
52 static unsigned int disc_threads = IBMVFC_MAX_DISC_THREADS;
53 static unsigned int ibmvfc_debug = IBMVFC_DEBUG;
54 static unsigned int log_level = IBMVFC_DEFAULT_LOG_LEVEL;
55 static LIST_HEAD(ibmvfc_head);
56 static DEFINE_SPINLOCK(ibmvfc_driver_lock);
57 static struct scsi_transport_template *ibmvfc_transport_template;
58
59 MODULE_DESCRIPTION("IBM Virtual Fibre Channel Driver");
60 MODULE_AUTHOR("Brian King <brking@linux.vnet.ibm.com>");
61 MODULE_LICENSE("GPL");
62 MODULE_VERSION(IBMVFC_DRIVER_VERSION);
63
64 module_param_named(init_timeout, init_timeout, uint, S_IRUGO | S_IWUSR);
65 MODULE_PARM_DESC(init_timeout, "Initialization timeout in seconds. "
66                  "[Default=" __stringify(IBMVFC_INIT_TIMEOUT) "]");
67 module_param_named(default_timeout, default_timeout, uint, S_IRUGO | S_IWUSR);
68 MODULE_PARM_DESC(default_timeout,
69                  "Default timeout in seconds for initialization and EH commands. "
70                  "[Default=" __stringify(IBMVFC_DEFAULT_TIMEOUT) "]");
71 module_param_named(max_requests, max_requests, uint, S_IRUGO);
72 MODULE_PARM_DESC(max_requests, "Maximum requests for this adapter. "
73                  "[Default=" __stringify(IBMVFC_MAX_REQUESTS_DEFAULT) "]");
74 module_param_named(max_lun, max_lun, ullong, S_IRUGO);
75 MODULE_PARM_DESC(max_lun, "Maximum allowed LUN. "
76                  "[Default=" __stringify(IBMVFC_MAX_LUN) "]");
77 module_param_named(max_targets, max_targets, uint, S_IRUGO);
78 MODULE_PARM_DESC(max_targets, "Maximum allowed targets. "
79                  "[Default=" __stringify(IBMVFC_MAX_TARGETS) "]");
80 module_param_named(disc_threads, disc_threads, uint, S_IRUGO);
81 MODULE_PARM_DESC(disc_threads, "Number of device discovery threads to use. "
82                  "[Default=" __stringify(IBMVFC_MAX_DISC_THREADS) "]");
83 module_param_named(debug, ibmvfc_debug, uint, S_IRUGO | S_IWUSR);
84 MODULE_PARM_DESC(debug, "Enable driver debug information. "
85                  "[Default=" __stringify(IBMVFC_DEBUG) "]");
86 module_param_named(log_level, log_level, uint, 0);
87 MODULE_PARM_DESC(log_level, "Set to 0 - 4 for increasing verbosity of device driver. "
88                  "[Default=" __stringify(IBMVFC_DEFAULT_LOG_LEVEL) "]");
89
90 static const struct {
91         u16 status;
92         u16 error;
93         u8 result;
94         u8 retry;
95         int log;
96         char *name;
97 } cmd_status [] = {
98         { IBMVFC_FABRIC_MAPPED, IBMVFC_UNABLE_TO_ESTABLISH, DID_ERROR, 1, 1, "unable to establish" },
99         { IBMVFC_FABRIC_MAPPED, IBMVFC_XPORT_FAULT, DID_OK, 1, 0, "transport fault" },
100         { IBMVFC_FABRIC_MAPPED, IBMVFC_CMD_TIMEOUT, DID_TIME_OUT, 1, 1, "command timeout" },
101         { IBMVFC_FABRIC_MAPPED, IBMVFC_ENETDOWN, DID_TRANSPORT_DISRUPTED, 1, 1, "network down" },
102         { IBMVFC_FABRIC_MAPPED, IBMVFC_HW_FAILURE, DID_ERROR, 1, 1, "hardware failure" },
103         { IBMVFC_FABRIC_MAPPED, IBMVFC_LINK_DOWN_ERR, DID_REQUEUE, 0, 0, "link down" },
104         { IBMVFC_FABRIC_MAPPED, IBMVFC_LINK_DEAD_ERR, DID_ERROR, 0, 0, "link dead" },
105         { IBMVFC_FABRIC_MAPPED, IBMVFC_UNABLE_TO_REGISTER, DID_ERROR, 1, 1, "unable to register" },
106         { IBMVFC_FABRIC_MAPPED, IBMVFC_XPORT_BUSY, DID_BUS_BUSY, 1, 0, "transport busy" },
107         { IBMVFC_FABRIC_MAPPED, IBMVFC_XPORT_DEAD, DID_ERROR, 0, 1, "transport dead" },
108         { IBMVFC_FABRIC_MAPPED, IBMVFC_CONFIG_ERROR, DID_ERROR, 1, 1, "configuration error" },
109         { IBMVFC_FABRIC_MAPPED, IBMVFC_NAME_SERVER_FAIL, DID_ERROR, 1, 1, "name server failure" },
110         { IBMVFC_FABRIC_MAPPED, IBMVFC_LINK_HALTED, DID_REQUEUE, 1, 0, "link halted" },
111         { IBMVFC_FABRIC_MAPPED, IBMVFC_XPORT_GENERAL, DID_OK, 1, 0, "general transport error" },
112
113         { IBMVFC_VIOS_FAILURE, IBMVFC_CRQ_FAILURE, DID_REQUEUE, 1, 1, "CRQ failure" },
114         { IBMVFC_VIOS_FAILURE, IBMVFC_SW_FAILURE, DID_ERROR, 0, 1, "software failure" },
115         { IBMVFC_VIOS_FAILURE, IBMVFC_INVALID_PARAMETER, DID_ERROR, 0, 1, "invalid parameter" },
116         { IBMVFC_VIOS_FAILURE, IBMVFC_MISSING_PARAMETER, DID_ERROR, 0, 1, "missing parameter" },
117         { IBMVFC_VIOS_FAILURE, IBMVFC_HOST_IO_BUS, DID_ERROR, 1, 1, "host I/O bus failure" },
118         { IBMVFC_VIOS_FAILURE, IBMVFC_TRANS_CANCELLED, DID_ERROR, 0, 1, "transaction cancelled" },
119         { IBMVFC_VIOS_FAILURE, IBMVFC_TRANS_CANCELLED_IMPLICIT, DID_ERROR, 0, 1, "transaction cancelled implicit" },
120         { IBMVFC_VIOS_FAILURE, IBMVFC_INSUFFICIENT_RESOURCE, DID_REQUEUE, 1, 1, "insufficient resources" },
121         { IBMVFC_VIOS_FAILURE, IBMVFC_PLOGI_REQUIRED, DID_ERROR, 0, 1, "port login required" },
122         { IBMVFC_VIOS_FAILURE, IBMVFC_COMMAND_FAILED, DID_ERROR, 1, 1, "command failed" },
123
124         { IBMVFC_FC_FAILURE, IBMVFC_INVALID_ELS_CMD_CODE, DID_ERROR, 0, 1, "invalid ELS command code" },
125         { IBMVFC_FC_FAILURE, IBMVFC_INVALID_VERSION, DID_ERROR, 0, 1, "invalid version level" },
126         { IBMVFC_FC_FAILURE, IBMVFC_LOGICAL_ERROR, DID_ERROR, 1, 1, "logical error" },
127         { IBMVFC_FC_FAILURE, IBMVFC_INVALID_CT_IU_SIZE, DID_ERROR, 0, 1, "invalid CT_IU size" },
128         { IBMVFC_FC_FAILURE, IBMVFC_LOGICAL_BUSY, DID_REQUEUE, 1, 0, "logical busy" },
129         { IBMVFC_FC_FAILURE, IBMVFC_PROTOCOL_ERROR, DID_ERROR, 1, 1, "protocol error" },
130         { IBMVFC_FC_FAILURE, IBMVFC_UNABLE_TO_PERFORM_REQ, DID_ERROR, 1, 1, "unable to perform request" },
131         { IBMVFC_FC_FAILURE, IBMVFC_CMD_NOT_SUPPORTED, DID_ERROR, 0, 0, "command not supported" },
132         { IBMVFC_FC_FAILURE, IBMVFC_SERVER_NOT_AVAIL, DID_ERROR, 0, 1, "server not available" },
133         { IBMVFC_FC_FAILURE, IBMVFC_CMD_IN_PROGRESS, DID_ERROR, 0, 1, "command already in progress" },
134         { IBMVFC_FC_FAILURE, IBMVFC_VENDOR_SPECIFIC, DID_ERROR, 1, 1, "vendor specific" },
135
136         { IBMVFC_FC_SCSI_ERROR, 0, DID_OK, 1, 0, "SCSI error" },
137 };
138
139 static void ibmvfc_npiv_login(struct ibmvfc_host *);
140 static void ibmvfc_tgt_send_prli(struct ibmvfc_target *);
141 static void ibmvfc_tgt_send_plogi(struct ibmvfc_target *);
142 static void ibmvfc_tgt_query_target(struct ibmvfc_target *);
143 static void ibmvfc_npiv_logout(struct ibmvfc_host *);
144
145 static const char *unknown_error = "unknown error";
146
147 #ifdef CONFIG_SCSI_IBMVFC_TRACE
148 /**
149  * ibmvfc_trc_start - Log a start trace entry
150  * @evt:                ibmvfc event struct
151  *
152  **/
153 static void ibmvfc_trc_start(struct ibmvfc_event *evt)
154 {
155         struct ibmvfc_host *vhost = evt->vhost;
156         struct ibmvfc_cmd *vfc_cmd = &evt->iu.cmd;
157         struct ibmvfc_mad_common *mad = &evt->iu.mad_common;
158         struct ibmvfc_trace_entry *entry;
159
160         entry = &vhost->trace[vhost->trace_index++];
161         entry->evt = evt;
162         entry->time = jiffies;
163         entry->fmt = evt->crq.format;
164         entry->type = IBMVFC_TRC_START;
165
166         switch (entry->fmt) {
167         case IBMVFC_CMD_FORMAT:
168                 entry->op_code = vfc_cmd->iu.cdb[0];
169                 entry->scsi_id = be64_to_cpu(vfc_cmd->tgt_scsi_id);
170                 entry->lun = scsilun_to_int(&vfc_cmd->iu.lun);
171                 entry->tmf_flags = vfc_cmd->iu.tmf_flags;
172                 entry->u.start.xfer_len = be32_to_cpu(vfc_cmd->iu.xfer_len);
173                 break;
174         case IBMVFC_MAD_FORMAT:
175                 entry->op_code = be32_to_cpu(mad->opcode);
176                 break;
177         default:
178                 break;
179         };
180 }
181
182 /**
183  * ibmvfc_trc_end - Log an end trace entry
184  * @evt:                ibmvfc event struct
185  *
186  **/
187 static void ibmvfc_trc_end(struct ibmvfc_event *evt)
188 {
189         struct ibmvfc_host *vhost = evt->vhost;
190         struct ibmvfc_cmd *vfc_cmd = &evt->xfer_iu->cmd;
191         struct ibmvfc_mad_common *mad = &evt->xfer_iu->mad_common;
192         struct ibmvfc_trace_entry *entry = &vhost->trace[vhost->trace_index++];
193
194         entry->evt = evt;
195         entry->time = jiffies;
196         entry->fmt = evt->crq.format;
197         entry->type = IBMVFC_TRC_END;
198
199         switch (entry->fmt) {
200         case IBMVFC_CMD_FORMAT:
201                 entry->op_code = vfc_cmd->iu.cdb[0];
202                 entry->scsi_id = be64_to_cpu(vfc_cmd->tgt_scsi_id);
203                 entry->lun = scsilun_to_int(&vfc_cmd->iu.lun);
204                 entry->tmf_flags = vfc_cmd->iu.tmf_flags;
205                 entry->u.end.status = be16_to_cpu(vfc_cmd->status);
206                 entry->u.end.error = be16_to_cpu(vfc_cmd->error);
207                 entry->u.end.fcp_rsp_flags = vfc_cmd->rsp.flags;
208                 entry->u.end.rsp_code = vfc_cmd->rsp.data.info.rsp_code;
209                 entry->u.end.scsi_status = vfc_cmd->rsp.scsi_status;
210                 break;
211         case IBMVFC_MAD_FORMAT:
212                 entry->op_code = be32_to_cpu(mad->opcode);
213                 entry->u.end.status = be16_to_cpu(mad->status);
214                 break;
215         default:
216                 break;
217
218         };
219 }
220
221 #else
222 #define ibmvfc_trc_start(evt) do { } while (0)
223 #define ibmvfc_trc_end(evt) do { } while (0)
224 #endif
225
226 /**
227  * ibmvfc_get_err_index - Find the index into cmd_status for the fcp response
228  * @status:             status / error class
229  * @error:              error
230  *
231  * Return value:
232  *      index into cmd_status / -EINVAL on failure
233  **/
234 static int ibmvfc_get_err_index(u16 status, u16 error)
235 {
236         int i;
237
238         for (i = 0; i < ARRAY_SIZE(cmd_status); i++)
239                 if ((cmd_status[i].status & status) == cmd_status[i].status &&
240                     cmd_status[i].error == error)
241                         return i;
242
243         return -EINVAL;
244 }
245
246 /**
247  * ibmvfc_get_cmd_error - Find the error description for the fcp response
248  * @status:             status / error class
249  * @error:              error
250  *
251  * Return value:
252  *      error description string
253  **/
254 static const char *ibmvfc_get_cmd_error(u16 status, u16 error)
255 {
256         int rc = ibmvfc_get_err_index(status, error);
257         if (rc >= 0)
258                 return cmd_status[rc].name;
259         return unknown_error;
260 }
261
262 /**
263  * ibmvfc_get_err_result - Find the scsi status to return for the fcp response
264  * @vfc_cmd:    ibmvfc command struct
265  *
266  * Return value:
267  *      SCSI result value to return for completed command
268  **/
269 static int ibmvfc_get_err_result(struct ibmvfc_cmd *vfc_cmd)
270 {
271         int err;
272         struct ibmvfc_fcp_rsp *rsp = &vfc_cmd->rsp;
273         int fc_rsp_len = be32_to_cpu(rsp->fcp_rsp_len);
274
275         if ((rsp->flags & FCP_RSP_LEN_VALID) &&
276             ((fc_rsp_len && fc_rsp_len != 4 && fc_rsp_len != 8) ||
277              rsp->data.info.rsp_code))
278                 return DID_ERROR << 16;
279
280         err = ibmvfc_get_err_index(be16_to_cpu(vfc_cmd->status), be16_to_cpu(vfc_cmd->error));
281         if (err >= 0)
282                 return rsp->scsi_status | (cmd_status[err].result << 16);
283         return rsp->scsi_status | (DID_ERROR << 16);
284 }
285
286 /**
287  * ibmvfc_retry_cmd - Determine if error status is retryable
288  * @status:             status / error class
289  * @error:              error
290  *
291  * Return value:
292  *      1 if error should be retried / 0 if it should not
293  **/
294 static int ibmvfc_retry_cmd(u16 status, u16 error)
295 {
296         int rc = ibmvfc_get_err_index(status, error);
297
298         if (rc >= 0)
299                 return cmd_status[rc].retry;
300         return 1;
301 }
302
303 static const char *unknown_fc_explain = "unknown fc explain";
304
305 static const struct {
306         u16 fc_explain;
307         char *name;
308 } ls_explain [] = {
309         { 0x00, "no additional explanation" },
310         { 0x01, "service parameter error - options" },
311         { 0x03, "service parameter error - initiator control" },
312         { 0x05, "service parameter error - recipient control" },
313         { 0x07, "service parameter error - received data field size" },
314         { 0x09, "service parameter error - concurrent seq" },
315         { 0x0B, "service parameter error - credit" },
316         { 0x0D, "invalid N_Port/F_Port_Name" },
317         { 0x0E, "invalid node/Fabric Name" },
318         { 0x0F, "invalid common service parameters" },
319         { 0x11, "invalid association header" },
320         { 0x13, "association header required" },
321         { 0x15, "invalid originator S_ID" },
322         { 0x17, "invalid OX_ID-RX-ID combination" },
323         { 0x19, "command (request) already in progress" },
324         { 0x1E, "N_Port Login requested" },
325         { 0x1F, "Invalid N_Port_ID" },
326 };
327
328 static const struct {
329         u16 fc_explain;
330         char *name;
331 } gs_explain [] = {
332         { 0x00, "no additional explanation" },
333         { 0x01, "port identifier not registered" },
334         { 0x02, "port name not registered" },
335         { 0x03, "node name not registered" },
336         { 0x04, "class of service not registered" },
337         { 0x06, "initial process associator not registered" },
338         { 0x07, "FC-4 TYPEs not registered" },
339         { 0x08, "symbolic port name not registered" },
340         { 0x09, "symbolic node name not registered" },
341         { 0x0A, "port type not registered" },
342         { 0xF0, "authorization exception" },
343         { 0xF1, "authentication exception" },
344         { 0xF2, "data base full" },
345         { 0xF3, "data base empty" },
346         { 0xF4, "processing request" },
347         { 0xF5, "unable to verify connection" },
348         { 0xF6, "devices not in a common zone" },
349 };
350
351 /**
352  * ibmvfc_get_ls_explain - Return the FC Explain description text
353  * @status:     FC Explain status
354  *
355  * Returns:
356  *      error string
357  **/
358 static const char *ibmvfc_get_ls_explain(u16 status)
359 {
360         int i;
361
362         for (i = 0; i < ARRAY_SIZE(ls_explain); i++)
363                 if (ls_explain[i].fc_explain == status)
364                         return ls_explain[i].name;
365
366         return unknown_fc_explain;
367 }
368
369 /**
370  * ibmvfc_get_gs_explain - Return the FC Explain description text
371  * @status:     FC Explain status
372  *
373  * Returns:
374  *      error string
375  **/
376 static const char *ibmvfc_get_gs_explain(u16 status)
377 {
378         int i;
379
380         for (i = 0; i < ARRAY_SIZE(gs_explain); i++)
381                 if (gs_explain[i].fc_explain == status)
382                         return gs_explain[i].name;
383
384         return unknown_fc_explain;
385 }
386
387 static const struct {
388         enum ibmvfc_fc_type fc_type;
389         char *name;
390 } fc_type [] = {
391         { IBMVFC_FABRIC_REJECT, "fabric reject" },
392         { IBMVFC_PORT_REJECT, "port reject" },
393         { IBMVFC_LS_REJECT, "ELS reject" },
394         { IBMVFC_FABRIC_BUSY, "fabric busy" },
395         { IBMVFC_PORT_BUSY, "port busy" },
396         { IBMVFC_BASIC_REJECT, "basic reject" },
397 };
398
399 static const char *unknown_fc_type = "unknown fc type";
400
401 /**
402  * ibmvfc_get_fc_type - Return the FC Type description text
403  * @status:     FC Type error status
404  *
405  * Returns:
406  *      error string
407  **/
408 static const char *ibmvfc_get_fc_type(u16 status)
409 {
410         int i;
411
412         for (i = 0; i < ARRAY_SIZE(fc_type); i++)
413                 if (fc_type[i].fc_type == status)
414                         return fc_type[i].name;
415
416         return unknown_fc_type;
417 }
418
419 /**
420  * ibmvfc_set_tgt_action - Set the next init action for the target
421  * @tgt:                ibmvfc target struct
422  * @action:             action to perform
423  *
424  **/
425 static void ibmvfc_set_tgt_action(struct ibmvfc_target *tgt,
426                                   enum ibmvfc_target_action action)
427 {
428         switch (tgt->action) {
429         case IBMVFC_TGT_ACTION_DEL_RPORT:
430                 if (action == IBMVFC_TGT_ACTION_DELETED_RPORT)
431                         tgt->action = action;
432         case IBMVFC_TGT_ACTION_DELETED_RPORT:
433                 break;
434         default:
435                 if (action == IBMVFC_TGT_ACTION_DEL_RPORT)
436                         tgt->add_rport = 0;
437                 tgt->action = action;
438                 break;
439         }
440 }
441
442 /**
443  * ibmvfc_set_host_state - Set the state for the host
444  * @vhost:              ibmvfc host struct
445  * @state:              state to set host to
446  *
447  * Returns:
448  *      0 if state changed / non-zero if not changed
449  **/
450 static int ibmvfc_set_host_state(struct ibmvfc_host *vhost,
451                                   enum ibmvfc_host_state state)
452 {
453         int rc = 0;
454
455         switch (vhost->state) {
456         case IBMVFC_HOST_OFFLINE:
457                 rc = -EINVAL;
458                 break;
459         default:
460                 vhost->state = state;
461                 break;
462         };
463
464         return rc;
465 }
466
467 /**
468  * ibmvfc_set_host_action - Set the next init action for the host
469  * @vhost:              ibmvfc host struct
470  * @action:             action to perform
471  *
472  **/
473 static void ibmvfc_set_host_action(struct ibmvfc_host *vhost,
474                                    enum ibmvfc_host_action action)
475 {
476         switch (action) {
477         case IBMVFC_HOST_ACTION_ALLOC_TGTS:
478                 if (vhost->action == IBMVFC_HOST_ACTION_INIT_WAIT)
479                         vhost->action = action;
480                 break;
481         case IBMVFC_HOST_ACTION_LOGO_WAIT:
482                 if (vhost->action == IBMVFC_HOST_ACTION_LOGO)
483                         vhost->action = action;
484                 break;
485         case IBMVFC_HOST_ACTION_INIT_WAIT:
486                 if (vhost->action == IBMVFC_HOST_ACTION_INIT)
487                         vhost->action = action;
488                 break;
489         case IBMVFC_HOST_ACTION_QUERY:
490                 switch (vhost->action) {
491                 case IBMVFC_HOST_ACTION_INIT_WAIT:
492                 case IBMVFC_HOST_ACTION_NONE:
493                 case IBMVFC_HOST_ACTION_TGT_DEL_FAILED:
494                         vhost->action = action;
495                         break;
496                 default:
497                         break;
498                 };
499                 break;
500         case IBMVFC_HOST_ACTION_TGT_INIT:
501                 if (vhost->action == IBMVFC_HOST_ACTION_ALLOC_TGTS)
502                         vhost->action = action;
503                 break;
504         case IBMVFC_HOST_ACTION_INIT:
505         case IBMVFC_HOST_ACTION_TGT_DEL:
506                 switch (vhost->action) {
507                 case IBMVFC_HOST_ACTION_RESET:
508                 case IBMVFC_HOST_ACTION_REENABLE:
509                         break;
510                 default:
511                         vhost->action = action;
512                         break;
513                 };
514                 break;
515         case IBMVFC_HOST_ACTION_LOGO:
516         case IBMVFC_HOST_ACTION_QUERY_TGTS:
517         case IBMVFC_HOST_ACTION_TGT_DEL_FAILED:
518         case IBMVFC_HOST_ACTION_NONE:
519         case IBMVFC_HOST_ACTION_RESET:
520         case IBMVFC_HOST_ACTION_REENABLE:
521         default:
522                 vhost->action = action;
523                 break;
524         };
525 }
526
527 /**
528  * ibmvfc_reinit_host - Re-start host initialization (no NPIV Login)
529  * @vhost:              ibmvfc host struct
530  *
531  * Return value:
532  *      nothing
533  **/
534 static void ibmvfc_reinit_host(struct ibmvfc_host *vhost)
535 {
536         if (vhost->action == IBMVFC_HOST_ACTION_NONE) {
537                 if (!ibmvfc_set_host_state(vhost, IBMVFC_INITIALIZING)) {
538                         scsi_block_requests(vhost->host);
539                         ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_QUERY);
540                 }
541         } else
542                 vhost->reinit = 1;
543
544         wake_up(&vhost->work_wait_q);
545 }
546
547 /**
548  * ibmvfc_link_down - Handle a link down event from the adapter
549  * @vhost:      ibmvfc host struct
550  * @state:      ibmvfc host state to enter
551  *
552  **/
553 static void ibmvfc_link_down(struct ibmvfc_host *vhost,
554                              enum ibmvfc_host_state state)
555 {
556         struct ibmvfc_target *tgt;
557
558         ENTER;
559         scsi_block_requests(vhost->host);
560         list_for_each_entry(tgt, &vhost->targets, queue)
561                 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DEL_RPORT);
562         ibmvfc_set_host_state(vhost, state);
563         ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_TGT_DEL);
564         vhost->events_to_log |= IBMVFC_AE_LINKDOWN;
565         wake_up(&vhost->work_wait_q);
566         LEAVE;
567 }
568
569 /**
570  * ibmvfc_init_host - Start host initialization
571  * @vhost:              ibmvfc host struct
572  *
573  * Return value:
574  *      nothing
575  **/
576 static void ibmvfc_init_host(struct ibmvfc_host *vhost)
577 {
578         struct ibmvfc_target *tgt;
579
580         if (vhost->action == IBMVFC_HOST_ACTION_INIT_WAIT) {
581                 if (++vhost->init_retries > IBMVFC_MAX_HOST_INIT_RETRIES) {
582                         dev_err(vhost->dev,
583                                 "Host initialization retries exceeded. Taking adapter offline\n");
584                         ibmvfc_link_down(vhost, IBMVFC_HOST_OFFLINE);
585                         return;
586                 }
587         }
588
589         if (!ibmvfc_set_host_state(vhost, IBMVFC_INITIALIZING)) {
590                 memset(vhost->async_crq.msgs, 0, PAGE_SIZE);
591                 vhost->async_crq.cur = 0;
592
593                 list_for_each_entry(tgt, &vhost->targets, queue)
594                         ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DEL_RPORT);
595                 scsi_block_requests(vhost->host);
596                 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_INIT);
597                 vhost->job_step = ibmvfc_npiv_login;
598                 wake_up(&vhost->work_wait_q);
599         }
600 }
601
602 /**
603  * ibmvfc_send_crq - Send a CRQ
604  * @vhost:      ibmvfc host struct
605  * @word1:      the first 64 bits of the data
606  * @word2:      the second 64 bits of the data
607  *
608  * Return value:
609  *      0 on success / other on failure
610  **/
611 static int ibmvfc_send_crq(struct ibmvfc_host *vhost, u64 word1, u64 word2)
612 {
613         struct vio_dev *vdev = to_vio_dev(vhost->dev);
614         return plpar_hcall_norets(H_SEND_CRQ, vdev->unit_address, word1, word2);
615 }
616
617 /**
618  * ibmvfc_send_crq_init - Send a CRQ init message
619  * @vhost:      ibmvfc host struct
620  *
621  * Return value:
622  *      0 on success / other on failure
623  **/
624 static int ibmvfc_send_crq_init(struct ibmvfc_host *vhost)
625 {
626         ibmvfc_dbg(vhost, "Sending CRQ init\n");
627         return ibmvfc_send_crq(vhost, 0xC001000000000000LL, 0);
628 }
629
630 /**
631  * ibmvfc_send_crq_init_complete - Send a CRQ init complete message
632  * @vhost:      ibmvfc host struct
633  *
634  * Return value:
635  *      0 on success / other on failure
636  **/
637 static int ibmvfc_send_crq_init_complete(struct ibmvfc_host *vhost)
638 {
639         ibmvfc_dbg(vhost, "Sending CRQ init complete\n");
640         return ibmvfc_send_crq(vhost, 0xC002000000000000LL, 0);
641 }
642
643 /**
644  * ibmvfc_release_crq_queue - Deallocates data and unregisters CRQ
645  * @vhost:      ibmvfc host struct
646  *
647  * Frees irq, deallocates a page for messages, unmaps dma, and unregisters
648  * the crq with the hypervisor.
649  **/
650 static void ibmvfc_release_crq_queue(struct ibmvfc_host *vhost)
651 {
652         long rc = 0;
653         struct vio_dev *vdev = to_vio_dev(vhost->dev);
654         struct ibmvfc_crq_queue *crq = &vhost->crq;
655
656         ibmvfc_dbg(vhost, "Releasing CRQ\n");
657         free_irq(vdev->irq, vhost);
658         tasklet_kill(&vhost->tasklet);
659         do {
660                 if (rc)
661                         msleep(100);
662                 rc = plpar_hcall_norets(H_FREE_CRQ, vdev->unit_address);
663         } while (rc == H_BUSY || H_IS_LONG_BUSY(rc));
664
665         vhost->state = IBMVFC_NO_CRQ;
666         vhost->logged_in = 0;
667         dma_unmap_single(vhost->dev, crq->msg_token, PAGE_SIZE, DMA_BIDIRECTIONAL);
668         free_page((unsigned long)crq->msgs);
669 }
670
671 /**
672  * ibmvfc_reenable_crq_queue - reenables the CRQ
673  * @vhost:      ibmvfc host struct
674  *
675  * Return value:
676  *      0 on success / other on failure
677  **/
678 static int ibmvfc_reenable_crq_queue(struct ibmvfc_host *vhost)
679 {
680         int rc = 0;
681         struct vio_dev *vdev = to_vio_dev(vhost->dev);
682
683         /* Re-enable the CRQ */
684         do {
685                 if (rc)
686                         msleep(100);
687                 rc = plpar_hcall_norets(H_ENABLE_CRQ, vdev->unit_address);
688         } while (rc == H_IN_PROGRESS || rc == H_BUSY || H_IS_LONG_BUSY(rc));
689
690         if (rc)
691                 dev_err(vhost->dev, "Error enabling adapter (rc=%d)\n", rc);
692
693         return rc;
694 }
695
696 /**
697  * ibmvfc_reset_crq - resets a crq after a failure
698  * @vhost:      ibmvfc host struct
699  *
700  * Return value:
701  *      0 on success / other on failure
702  **/
703 static int ibmvfc_reset_crq(struct ibmvfc_host *vhost)
704 {
705         int rc = 0;
706         unsigned long flags;
707         struct vio_dev *vdev = to_vio_dev(vhost->dev);
708         struct ibmvfc_crq_queue *crq = &vhost->crq;
709
710         /* Close the CRQ */
711         do {
712                 if (rc)
713                         msleep(100);
714                 rc = plpar_hcall_norets(H_FREE_CRQ, vdev->unit_address);
715         } while (rc == H_BUSY || H_IS_LONG_BUSY(rc));
716
717         spin_lock_irqsave(vhost->host->host_lock, flags);
718         vhost->state = IBMVFC_NO_CRQ;
719         vhost->logged_in = 0;
720
721         /* Clean out the queue */
722         memset(crq->msgs, 0, PAGE_SIZE);
723         crq->cur = 0;
724
725         /* And re-open it again */
726         rc = plpar_hcall_norets(H_REG_CRQ, vdev->unit_address,
727                                 crq->msg_token, PAGE_SIZE);
728
729         if (rc == H_CLOSED)
730                 /* Adapter is good, but other end is not ready */
731                 dev_warn(vhost->dev, "Partner adapter not ready\n");
732         else if (rc != 0)
733                 dev_warn(vhost->dev, "Couldn't register crq (rc=%d)\n", rc);
734         spin_unlock_irqrestore(vhost->host->host_lock, flags);
735
736         return rc;
737 }
738
739 /**
740  * ibmvfc_valid_event - Determines if event is valid.
741  * @pool:       event_pool that contains the event
742  * @evt:        ibmvfc event to be checked for validity
743  *
744  * Return value:
745  *      1 if event is valid / 0 if event is not valid
746  **/
747 static int ibmvfc_valid_event(struct ibmvfc_event_pool *pool,
748                               struct ibmvfc_event *evt)
749 {
750         int index = evt - pool->events;
751         if (index < 0 || index >= pool->size)   /* outside of bounds */
752                 return 0;
753         if (evt != pool->events + index)        /* unaligned */
754                 return 0;
755         return 1;
756 }
757
758 /**
759  * ibmvfc_free_event - Free the specified event
760  * @evt:        ibmvfc_event to be freed
761  *
762  **/
763 static void ibmvfc_free_event(struct ibmvfc_event *evt)
764 {
765         struct ibmvfc_host *vhost = evt->vhost;
766         struct ibmvfc_event_pool *pool = &vhost->pool;
767
768         BUG_ON(!ibmvfc_valid_event(pool, evt));
769         BUG_ON(atomic_inc_return(&evt->free) != 1);
770         list_add_tail(&evt->queue, &vhost->free);
771 }
772
773 /**
774  * ibmvfc_scsi_eh_done - EH done function for queuecommand commands
775  * @evt:        ibmvfc event struct
776  *
777  * This function does not setup any error status, that must be done
778  * before this function gets called.
779  **/
780 static void ibmvfc_scsi_eh_done(struct ibmvfc_event *evt)
781 {
782         struct scsi_cmnd *cmnd = evt->cmnd;
783
784         if (cmnd) {
785                 scsi_dma_unmap(cmnd);
786                 cmnd->scsi_done(cmnd);
787         }
788
789         if (evt->eh_comp)
790                 complete(evt->eh_comp);
791
792         ibmvfc_free_event(evt);
793 }
794
795 /**
796  * ibmvfc_fail_request - Fail request with specified error code
797  * @evt:                ibmvfc event struct
798  * @error_code: error code to fail request with
799  *
800  * Return value:
801  *      none
802  **/
803 static void ibmvfc_fail_request(struct ibmvfc_event *evt, int error_code)
804 {
805         if (evt->cmnd) {
806                 evt->cmnd->result = (error_code << 16);
807                 evt->done = ibmvfc_scsi_eh_done;
808         } else
809                 evt->xfer_iu->mad_common.status = cpu_to_be16(IBMVFC_MAD_DRIVER_FAILED);
810
811         list_del(&evt->queue);
812         del_timer(&evt->timer);
813         ibmvfc_trc_end(evt);
814         evt->done(evt);
815 }
816
817 /**
818  * ibmvfc_purge_requests - Our virtual adapter just shut down. Purge any sent requests
819  * @vhost:              ibmvfc host struct
820  * @error_code: error code to fail requests with
821  *
822  * Return value:
823  *      none
824  **/
825 static void ibmvfc_purge_requests(struct ibmvfc_host *vhost, int error_code)
826 {
827         struct ibmvfc_event *evt, *pos;
828
829         ibmvfc_dbg(vhost, "Purging all requests\n");
830         list_for_each_entry_safe(evt, pos, &vhost->sent, queue)
831                 ibmvfc_fail_request(evt, error_code);
832 }
833
834 /**
835  * ibmvfc_hard_reset_host - Reset the connection to the server by breaking the CRQ
836  * @vhost:      struct ibmvfc host to reset
837  **/
838 static void ibmvfc_hard_reset_host(struct ibmvfc_host *vhost)
839 {
840         ibmvfc_purge_requests(vhost, DID_ERROR);
841         ibmvfc_link_down(vhost, IBMVFC_LINK_DOWN);
842         ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_RESET);
843 }
844
845 /**
846  * __ibmvfc_reset_host - Reset the connection to the server (no locking)
847  * @vhost:      struct ibmvfc host to reset
848  **/
849 static void __ibmvfc_reset_host(struct ibmvfc_host *vhost)
850 {
851         if (vhost->logged_in && vhost->action != IBMVFC_HOST_ACTION_LOGO_WAIT &&
852             !ibmvfc_set_host_state(vhost, IBMVFC_INITIALIZING)) {
853                 scsi_block_requests(vhost->host);
854                 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_LOGO);
855                 vhost->job_step = ibmvfc_npiv_logout;
856                 wake_up(&vhost->work_wait_q);
857         } else
858                 ibmvfc_hard_reset_host(vhost);
859 }
860
861 /**
862  * ibmvfc_reset_host - Reset the connection to the server
863  * @vhost:      ibmvfc host struct
864  **/
865 static void ibmvfc_reset_host(struct ibmvfc_host *vhost)
866 {
867         unsigned long flags;
868
869         spin_lock_irqsave(vhost->host->host_lock, flags);
870         __ibmvfc_reset_host(vhost);
871         spin_unlock_irqrestore(vhost->host->host_lock, flags);
872 }
873
874 /**
875  * ibmvfc_retry_host_init - Retry host initialization if allowed
876  * @vhost:      ibmvfc host struct
877  *
878  * Returns: 1 if init will be retried / 0 if not
879  *
880  **/
881 static int ibmvfc_retry_host_init(struct ibmvfc_host *vhost)
882 {
883         int retry = 0;
884
885         if (vhost->action == IBMVFC_HOST_ACTION_INIT_WAIT) {
886                 vhost->delay_init = 1;
887                 if (++vhost->init_retries > IBMVFC_MAX_HOST_INIT_RETRIES) {
888                         dev_err(vhost->dev,
889                                 "Host initialization retries exceeded. Taking adapter offline\n");
890                         ibmvfc_link_down(vhost, IBMVFC_HOST_OFFLINE);
891                 } else if (vhost->init_retries == IBMVFC_MAX_HOST_INIT_RETRIES)
892                         __ibmvfc_reset_host(vhost);
893                 else {
894                         ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_INIT);
895                         retry = 1;
896                 }
897         }
898
899         wake_up(&vhost->work_wait_q);
900         return retry;
901 }
902
903 /**
904  * __ibmvfc_get_target - Find the specified scsi_target (no locking)
905  * @starget:    scsi target struct
906  *
907  * Return value:
908  *      ibmvfc_target struct / NULL if not found
909  **/
910 static struct ibmvfc_target *__ibmvfc_get_target(struct scsi_target *starget)
911 {
912         struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
913         struct ibmvfc_host *vhost = shost_priv(shost);
914         struct ibmvfc_target *tgt;
915
916         list_for_each_entry(tgt, &vhost->targets, queue)
917                 if (tgt->target_id == starget->id) {
918                         kref_get(&tgt->kref);
919                         return tgt;
920                 }
921         return NULL;
922 }
923
924 /**
925  * ibmvfc_get_target - Find the specified scsi_target
926  * @starget:    scsi target struct
927  *
928  * Return value:
929  *      ibmvfc_target struct / NULL if not found
930  **/
931 static struct ibmvfc_target *ibmvfc_get_target(struct scsi_target *starget)
932 {
933         struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
934         struct ibmvfc_target *tgt;
935         unsigned long flags;
936
937         spin_lock_irqsave(shost->host_lock, flags);
938         tgt = __ibmvfc_get_target(starget);
939         spin_unlock_irqrestore(shost->host_lock, flags);
940         return tgt;
941 }
942
943 /**
944  * ibmvfc_get_host_speed - Get host port speed
945  * @shost:              scsi host struct
946  *
947  * Return value:
948  *      none
949  **/
950 static void ibmvfc_get_host_speed(struct Scsi_Host *shost)
951 {
952         struct ibmvfc_host *vhost = shost_priv(shost);
953         unsigned long flags;
954
955         spin_lock_irqsave(shost->host_lock, flags);
956         if (vhost->state == IBMVFC_ACTIVE) {
957                 switch (be64_to_cpu(vhost->login_buf->resp.link_speed) / 100) {
958                 case 1:
959                         fc_host_speed(shost) = FC_PORTSPEED_1GBIT;
960                         break;
961                 case 2:
962                         fc_host_speed(shost) = FC_PORTSPEED_2GBIT;
963                         break;
964                 case 4:
965                         fc_host_speed(shost) = FC_PORTSPEED_4GBIT;
966                         break;
967                 case 8:
968                         fc_host_speed(shost) = FC_PORTSPEED_8GBIT;
969                         break;
970                 case 10:
971                         fc_host_speed(shost) = FC_PORTSPEED_10GBIT;
972                         break;
973                 case 16:
974                         fc_host_speed(shost) = FC_PORTSPEED_16GBIT;
975                         break;
976                 default:
977                         ibmvfc_log(vhost, 3, "Unknown port speed: %lld Gbit\n",
978                                    be64_to_cpu(vhost->login_buf->resp.link_speed) / 100);
979                         fc_host_speed(shost) = FC_PORTSPEED_UNKNOWN;
980                         break;
981                 }
982         } else
983                 fc_host_speed(shost) = FC_PORTSPEED_UNKNOWN;
984         spin_unlock_irqrestore(shost->host_lock, flags);
985 }
986
987 /**
988  * ibmvfc_get_host_port_state - Get host port state
989  * @shost:              scsi host struct
990  *
991  * Return value:
992  *      none
993  **/
994 static void ibmvfc_get_host_port_state(struct Scsi_Host *shost)
995 {
996         struct ibmvfc_host *vhost = shost_priv(shost);
997         unsigned long flags;
998
999         spin_lock_irqsave(shost->host_lock, flags);
1000         switch (vhost->state) {
1001         case IBMVFC_INITIALIZING:
1002         case IBMVFC_ACTIVE:
1003                 fc_host_port_state(shost) = FC_PORTSTATE_ONLINE;
1004                 break;
1005         case IBMVFC_LINK_DOWN:
1006                 fc_host_port_state(shost) = FC_PORTSTATE_LINKDOWN;
1007                 break;
1008         case IBMVFC_LINK_DEAD:
1009         case IBMVFC_HOST_OFFLINE:
1010                 fc_host_port_state(shost) = FC_PORTSTATE_OFFLINE;
1011                 break;
1012         case IBMVFC_HALTED:
1013                 fc_host_port_state(shost) = FC_PORTSTATE_BLOCKED;
1014                 break;
1015         case IBMVFC_NO_CRQ:
1016                 fc_host_port_state(shost) = FC_PORTSTATE_UNKNOWN;
1017                 break;
1018         default:
1019                 ibmvfc_log(vhost, 3, "Unknown port state: %d\n", vhost->state);
1020                 fc_host_port_state(shost) = FC_PORTSTATE_UNKNOWN;
1021                 break;
1022         }
1023         spin_unlock_irqrestore(shost->host_lock, flags);
1024 }
1025
1026 /**
1027  * ibmvfc_set_rport_dev_loss_tmo - Set rport's device loss timeout
1028  * @rport:              rport struct
1029  * @timeout:    timeout value
1030  *
1031  * Return value:
1032  *      none
1033  **/
1034 static void ibmvfc_set_rport_dev_loss_tmo(struct fc_rport *rport, u32 timeout)
1035 {
1036         if (timeout)
1037                 rport->dev_loss_tmo = timeout;
1038         else
1039                 rport->dev_loss_tmo = 1;
1040 }
1041
1042 /**
1043  * ibmvfc_release_tgt - Free memory allocated for a target
1044  * @kref:               kref struct
1045  *
1046  **/
1047 static void ibmvfc_release_tgt(struct kref *kref)
1048 {
1049         struct ibmvfc_target *tgt = container_of(kref, struct ibmvfc_target, kref);
1050         kfree(tgt);
1051 }
1052
1053 /**
1054  * ibmvfc_get_starget_node_name - Get SCSI target's node name
1055  * @starget:    scsi target struct
1056  *
1057  * Return value:
1058  *      none
1059  **/
1060 static void ibmvfc_get_starget_node_name(struct scsi_target *starget)
1061 {
1062         struct ibmvfc_target *tgt = ibmvfc_get_target(starget);
1063         fc_starget_port_name(starget) = tgt ? tgt->ids.node_name : 0;
1064         if (tgt)
1065                 kref_put(&tgt->kref, ibmvfc_release_tgt);
1066 }
1067
1068 /**
1069  * ibmvfc_get_starget_port_name - Get SCSI target's port name
1070  * @starget:    scsi target struct
1071  *
1072  * Return value:
1073  *      none
1074  **/
1075 static void ibmvfc_get_starget_port_name(struct scsi_target *starget)
1076 {
1077         struct ibmvfc_target *tgt = ibmvfc_get_target(starget);
1078         fc_starget_port_name(starget) = tgt ? tgt->ids.port_name : 0;
1079         if (tgt)
1080                 kref_put(&tgt->kref, ibmvfc_release_tgt);
1081 }
1082
1083 /**
1084  * ibmvfc_get_starget_port_id - Get SCSI target's port ID
1085  * @starget:    scsi target struct
1086  *
1087  * Return value:
1088  *      none
1089  **/
1090 static void ibmvfc_get_starget_port_id(struct scsi_target *starget)
1091 {
1092         struct ibmvfc_target *tgt = ibmvfc_get_target(starget);
1093         fc_starget_port_id(starget) = tgt ? tgt->scsi_id : -1;
1094         if (tgt)
1095                 kref_put(&tgt->kref, ibmvfc_release_tgt);
1096 }
1097
1098 /**
1099  * ibmvfc_wait_while_resetting - Wait while the host resets
1100  * @vhost:              ibmvfc host struct
1101  *
1102  * Return value:
1103  *      0 on success / other on failure
1104  **/
1105 static int ibmvfc_wait_while_resetting(struct ibmvfc_host *vhost)
1106 {
1107         long timeout = wait_event_timeout(vhost->init_wait_q,
1108                                           ((vhost->state == IBMVFC_ACTIVE ||
1109                                             vhost->state == IBMVFC_HOST_OFFLINE ||
1110                                             vhost->state == IBMVFC_LINK_DEAD) &&
1111                                            vhost->action == IBMVFC_HOST_ACTION_NONE),
1112                                           (init_timeout * HZ));
1113
1114         return timeout ? 0 : -EIO;
1115 }
1116
1117 /**
1118  * ibmvfc_issue_fc_host_lip - Re-initiate link initialization
1119  * @shost:              scsi host struct
1120  *
1121  * Return value:
1122  *      0 on success / other on failure
1123  **/
1124 static int ibmvfc_issue_fc_host_lip(struct Scsi_Host *shost)
1125 {
1126         struct ibmvfc_host *vhost = shost_priv(shost);
1127
1128         dev_err(vhost->dev, "Initiating host LIP. Resetting connection\n");
1129         ibmvfc_reset_host(vhost);
1130         return ibmvfc_wait_while_resetting(vhost);
1131 }
1132
1133 /**
1134  * ibmvfc_gather_partition_info - Gather info about the LPAR
1135  *
1136  * Return value:
1137  *      none
1138  **/
1139 static void ibmvfc_gather_partition_info(struct ibmvfc_host *vhost)
1140 {
1141         struct device_node *rootdn;
1142         const char *name;
1143         const unsigned int *num;
1144
1145         rootdn = of_find_node_by_path("/");
1146         if (!rootdn)
1147                 return;
1148
1149         name = of_get_property(rootdn, "ibm,partition-name", NULL);
1150         if (name)
1151                 strncpy(vhost->partition_name, name, sizeof(vhost->partition_name));
1152         num = of_get_property(rootdn, "ibm,partition-no", NULL);
1153         if (num)
1154                 vhost->partition_number = *num;
1155         of_node_put(rootdn);
1156 }
1157
1158 /**
1159  * ibmvfc_set_login_info - Setup info for NPIV login
1160  * @vhost:      ibmvfc host struct
1161  *
1162  * Return value:
1163  *      none
1164  **/
1165 static void ibmvfc_set_login_info(struct ibmvfc_host *vhost)
1166 {
1167         struct ibmvfc_npiv_login *login_info = &vhost->login_info;
1168         struct device_node *of_node = vhost->dev->of_node;
1169         const char *location;
1170
1171         memset(login_info, 0, sizeof(*login_info));
1172
1173         login_info->ostype = cpu_to_be32(IBMVFC_OS_LINUX);
1174         login_info->max_dma_len = cpu_to_be64(IBMVFC_MAX_SECTORS << 9);
1175         login_info->max_payload = cpu_to_be32(sizeof(struct ibmvfc_fcp_cmd_iu));
1176         login_info->max_response = cpu_to_be32(sizeof(struct ibmvfc_fcp_rsp));
1177         login_info->partition_num = cpu_to_be32(vhost->partition_number);
1178         login_info->vfc_frame_version = cpu_to_be32(1);
1179         login_info->fcp_version = cpu_to_be16(3);
1180         login_info->flags = cpu_to_be16(IBMVFC_FLUSH_ON_HALT);
1181         if (vhost->client_migrated)
1182                 login_info->flags |= cpu_to_be16(IBMVFC_CLIENT_MIGRATED);
1183
1184         login_info->max_cmds = cpu_to_be32(max_requests + IBMVFC_NUM_INTERNAL_REQ);
1185         login_info->capabilities = cpu_to_be64(IBMVFC_CAN_MIGRATE);
1186         login_info->async.va = cpu_to_be64(vhost->async_crq.msg_token);
1187         login_info->async.len = cpu_to_be32(vhost->async_crq.size * sizeof(*vhost->async_crq.msgs));
1188         strncpy(login_info->partition_name, vhost->partition_name, IBMVFC_MAX_NAME);
1189         strncpy(login_info->device_name,
1190                 dev_name(&vhost->host->shost_gendev), IBMVFC_MAX_NAME);
1191
1192         location = of_get_property(of_node, "ibm,loc-code", NULL);
1193         location = location ? location : dev_name(vhost->dev);
1194         strncpy(login_info->drc_name, location, IBMVFC_MAX_NAME);
1195 }
1196
1197 /**
1198  * ibmvfc_init_event_pool - Allocates and initializes the event pool for a host
1199  * @vhost:      ibmvfc host who owns the event pool
1200  *
1201  * Returns zero on success.
1202  **/
1203 static int ibmvfc_init_event_pool(struct ibmvfc_host *vhost)
1204 {
1205         int i;
1206         struct ibmvfc_event_pool *pool = &vhost->pool;
1207
1208         ENTER;
1209         pool->size = max_requests + IBMVFC_NUM_INTERNAL_REQ;
1210         pool->events = kcalloc(pool->size, sizeof(*pool->events), GFP_KERNEL);
1211         if (!pool->events)
1212                 return -ENOMEM;
1213
1214         pool->iu_storage = dma_alloc_coherent(vhost->dev,
1215                                               pool->size * sizeof(*pool->iu_storage),
1216                                               &pool->iu_token, 0);
1217
1218         if (!pool->iu_storage) {
1219                 kfree(pool->events);
1220                 return -ENOMEM;
1221         }
1222
1223         for (i = 0; i < pool->size; ++i) {
1224                 struct ibmvfc_event *evt = &pool->events[i];
1225                 atomic_set(&evt->free, 1);
1226                 evt->crq.valid = 0x80;
1227                 evt->crq.ioba = cpu_to_be64(pool->iu_token + (sizeof(*evt->xfer_iu) * i));
1228                 evt->xfer_iu = pool->iu_storage + i;
1229                 evt->vhost = vhost;
1230                 evt->ext_list = NULL;
1231                 list_add_tail(&evt->queue, &vhost->free);
1232         }
1233
1234         LEAVE;
1235         return 0;
1236 }
1237
1238 /**
1239  * ibmvfc_free_event_pool - Frees memory of the event pool of a host
1240  * @vhost:      ibmvfc host who owns the event pool
1241  *
1242  **/
1243 static void ibmvfc_free_event_pool(struct ibmvfc_host *vhost)
1244 {
1245         int i;
1246         struct ibmvfc_event_pool *pool = &vhost->pool;
1247
1248         ENTER;
1249         for (i = 0; i < pool->size; ++i) {
1250                 list_del(&pool->events[i].queue);
1251                 BUG_ON(atomic_read(&pool->events[i].free) != 1);
1252                 if (pool->events[i].ext_list)
1253                         dma_pool_free(vhost->sg_pool,
1254                                       pool->events[i].ext_list,
1255                                       pool->events[i].ext_list_token);
1256         }
1257
1258         kfree(pool->events);
1259         dma_free_coherent(vhost->dev,
1260                           pool->size * sizeof(*pool->iu_storage),
1261                           pool->iu_storage, pool->iu_token);
1262         LEAVE;
1263 }
1264
1265 /**
1266  * ibmvfc_get_event - Gets the next free event in pool
1267  * @vhost:      ibmvfc host struct
1268  *
1269  * Returns a free event from the pool.
1270  **/
1271 static struct ibmvfc_event *ibmvfc_get_event(struct ibmvfc_host *vhost)
1272 {
1273         struct ibmvfc_event *evt;
1274
1275         BUG_ON(list_empty(&vhost->free));
1276         evt = list_entry(vhost->free.next, struct ibmvfc_event, queue);
1277         atomic_set(&evt->free, 0);
1278         list_del(&evt->queue);
1279         return evt;
1280 }
1281
1282 /**
1283  * ibmvfc_init_event - Initialize fields in an event struct that are always
1284  *                              required.
1285  * @evt:        The event
1286  * @done:       Routine to call when the event is responded to
1287  * @format:     SRP or MAD format
1288  **/
1289 static void ibmvfc_init_event(struct ibmvfc_event *evt,
1290                               void (*done) (struct ibmvfc_event *), u8 format)
1291 {
1292         evt->cmnd = NULL;
1293         evt->sync_iu = NULL;
1294         evt->crq.format = format;
1295         evt->done = done;
1296         evt->eh_comp = NULL;
1297 }
1298
1299 /**
1300  * ibmvfc_map_sg_list - Initialize scatterlist
1301  * @scmd:       scsi command struct
1302  * @nseg:       number of scatterlist segments
1303  * @md: memory descriptor list to initialize
1304  **/
1305 static void ibmvfc_map_sg_list(struct scsi_cmnd *scmd, int nseg,
1306                                struct srp_direct_buf *md)
1307 {
1308         int i;
1309         struct scatterlist *sg;
1310
1311         scsi_for_each_sg(scmd, sg, nseg, i) {
1312                 md[i].va = cpu_to_be64(sg_dma_address(sg));
1313                 md[i].len = cpu_to_be32(sg_dma_len(sg));
1314                 md[i].key = 0;
1315         }
1316 }
1317
1318 /**
1319  * ibmvfc_map_sg_data - Maps dma for a scatterlist and initializes decriptor fields
1320  * @scmd:               Scsi_Cmnd with the scatterlist
1321  * @evt:                ibmvfc event struct
1322  * @vfc_cmd:    vfc_cmd that contains the memory descriptor
1323  * @dev:                device for which to map dma memory
1324  *
1325  * Returns:
1326  *      0 on success / non-zero on failure
1327  **/
1328 static int ibmvfc_map_sg_data(struct scsi_cmnd *scmd,
1329                               struct ibmvfc_event *evt,
1330                               struct ibmvfc_cmd *vfc_cmd, struct device *dev)
1331 {
1332
1333         int sg_mapped;
1334         struct srp_direct_buf *data = &vfc_cmd->ioba;
1335         struct ibmvfc_host *vhost = dev_get_drvdata(dev);
1336
1337         sg_mapped = scsi_dma_map(scmd);
1338         if (!sg_mapped) {
1339                 vfc_cmd->flags |= cpu_to_be16(IBMVFC_NO_MEM_DESC);
1340                 return 0;
1341         } else if (unlikely(sg_mapped < 0)) {
1342                 if (vhost->log_level > IBMVFC_DEFAULT_LOG_LEVEL)
1343                         scmd_printk(KERN_ERR, scmd, "Failed to map DMA buffer for command\n");
1344                 return sg_mapped;
1345         }
1346
1347         if (scmd->sc_data_direction == DMA_TO_DEVICE) {
1348                 vfc_cmd->flags |= cpu_to_be16(IBMVFC_WRITE);
1349                 vfc_cmd->iu.add_cdb_len |= IBMVFC_WRDATA;
1350         } else {
1351                 vfc_cmd->flags |= cpu_to_be16(IBMVFC_READ);
1352                 vfc_cmd->iu.add_cdb_len |= IBMVFC_RDDATA;
1353         }
1354
1355         if (sg_mapped == 1) {
1356                 ibmvfc_map_sg_list(scmd, sg_mapped, data);
1357                 return 0;
1358         }
1359
1360         vfc_cmd->flags |= cpu_to_be16(IBMVFC_SCATTERLIST);
1361
1362         if (!evt->ext_list) {
1363                 evt->ext_list = dma_pool_alloc(vhost->sg_pool, GFP_ATOMIC,
1364                                                &evt->ext_list_token);
1365
1366                 if (!evt->ext_list) {
1367                         scsi_dma_unmap(scmd);
1368                         if (vhost->log_level > IBMVFC_DEFAULT_LOG_LEVEL)
1369                                 scmd_printk(KERN_ERR, scmd, "Can't allocate memory for scatterlist\n");
1370                         return -ENOMEM;
1371                 }
1372         }
1373
1374         ibmvfc_map_sg_list(scmd, sg_mapped, evt->ext_list);
1375
1376         data->va = cpu_to_be64(evt->ext_list_token);
1377         data->len = cpu_to_be32(sg_mapped * sizeof(struct srp_direct_buf));
1378         data->key = 0;
1379         return 0;
1380 }
1381
1382 /**
1383  * ibmvfc_timeout - Internal command timeout handler
1384  * @evt:        struct ibmvfc_event that timed out
1385  *
1386  * Called when an internally generated command times out
1387  **/
1388 static void ibmvfc_timeout(struct ibmvfc_event *evt)
1389 {
1390         struct ibmvfc_host *vhost = evt->vhost;
1391         dev_err(vhost->dev, "Command timed out (%p). Resetting connection\n", evt);
1392         ibmvfc_reset_host(vhost);
1393 }
1394
1395 /**
1396  * ibmvfc_send_event - Transforms event to u64 array and calls send_crq()
1397  * @evt:                event to be sent
1398  * @vhost:              ibmvfc host struct
1399  * @timeout:    timeout in seconds - 0 means do not time command
1400  *
1401  * Returns the value returned from ibmvfc_send_crq(). (Zero for success)
1402  **/
1403 static int ibmvfc_send_event(struct ibmvfc_event *evt,
1404                              struct ibmvfc_host *vhost, unsigned long timeout)
1405 {
1406         __be64 *crq_as_u64 = (__be64 *) &evt->crq;
1407         int rc;
1408
1409         /* Copy the IU into the transfer area */
1410         *evt->xfer_iu = evt->iu;
1411         if (evt->crq.format == IBMVFC_CMD_FORMAT)
1412                 evt->xfer_iu->cmd.tag = cpu_to_be64((u64)evt);
1413         else if (evt->crq.format == IBMVFC_MAD_FORMAT)
1414                 evt->xfer_iu->mad_common.tag = cpu_to_be64((u64)evt);
1415         else
1416                 BUG();
1417
1418         list_add_tail(&evt->queue, &vhost->sent);
1419         init_timer(&evt->timer);
1420
1421         if (timeout) {
1422                 evt->timer.data = (unsigned long) evt;
1423                 evt->timer.expires = jiffies + (timeout * HZ);
1424                 evt->timer.function = (void (*)(unsigned long))ibmvfc_timeout;
1425                 add_timer(&evt->timer);
1426         }
1427
1428         mb();
1429
1430         if ((rc = ibmvfc_send_crq(vhost, be64_to_cpu(crq_as_u64[0]),
1431                                   be64_to_cpu(crq_as_u64[1])))) {
1432                 list_del(&evt->queue);
1433                 del_timer(&evt->timer);
1434
1435                 /* If send_crq returns H_CLOSED, return SCSI_MLQUEUE_HOST_BUSY.
1436                  * Firmware will send a CRQ with a transport event (0xFF) to
1437                  * tell this client what has happened to the transport. This
1438                  * will be handled in ibmvfc_handle_crq()
1439                  */
1440                 if (rc == H_CLOSED) {
1441                         if (printk_ratelimit())
1442                                 dev_warn(vhost->dev, "Send warning. Receive queue closed, will retry.\n");
1443                         if (evt->cmnd)
1444                                 scsi_dma_unmap(evt->cmnd);
1445                         ibmvfc_free_event(evt);
1446                         return SCSI_MLQUEUE_HOST_BUSY;
1447                 }
1448
1449                 dev_err(vhost->dev, "Send error (rc=%d)\n", rc);
1450                 if (evt->cmnd) {
1451                         evt->cmnd->result = DID_ERROR << 16;
1452                         evt->done = ibmvfc_scsi_eh_done;
1453                 } else
1454                         evt->xfer_iu->mad_common.status = cpu_to_be16(IBMVFC_MAD_CRQ_ERROR);
1455
1456                 evt->done(evt);
1457         } else
1458                 ibmvfc_trc_start(evt);
1459
1460         return 0;
1461 }
1462
1463 /**
1464  * ibmvfc_log_error - Log an error for the failed command if appropriate
1465  * @evt:        ibmvfc event to log
1466  *
1467  **/
1468 static void ibmvfc_log_error(struct ibmvfc_event *evt)
1469 {
1470         struct ibmvfc_cmd *vfc_cmd = &evt->xfer_iu->cmd;
1471         struct ibmvfc_host *vhost = evt->vhost;
1472         struct ibmvfc_fcp_rsp *rsp = &vfc_cmd->rsp;
1473         struct scsi_cmnd *cmnd = evt->cmnd;
1474         const char *err = unknown_error;
1475         int index = ibmvfc_get_err_index(be16_to_cpu(vfc_cmd->status), be16_to_cpu(vfc_cmd->error));
1476         int logerr = 0;
1477         int rsp_code = 0;
1478
1479         if (index >= 0) {
1480                 logerr = cmd_status[index].log;
1481                 err = cmd_status[index].name;
1482         }
1483
1484         if (!logerr && (vhost->log_level <= (IBMVFC_DEFAULT_LOG_LEVEL + 1)))
1485                 return;
1486
1487         if (rsp->flags & FCP_RSP_LEN_VALID)
1488                 rsp_code = rsp->data.info.rsp_code;
1489
1490         scmd_printk(KERN_ERR, cmnd, "Command (%02X) failed: %s (%x:%x) "
1491                     "flags: %x fcp_rsp: %x, resid=%d, scsi_status: %x\n",
1492                     cmnd->cmnd[0], err, vfc_cmd->status, vfc_cmd->error,
1493                     rsp->flags, rsp_code, scsi_get_resid(cmnd), rsp->scsi_status);
1494 }
1495
1496 /**
1497  * ibmvfc_relogin - Log back into the specified device
1498  * @sdev:       scsi device struct
1499  *
1500  **/
1501 static void ibmvfc_relogin(struct scsi_device *sdev)
1502 {
1503         struct ibmvfc_host *vhost = shost_priv(sdev->host);
1504         struct fc_rport *rport = starget_to_rport(scsi_target(sdev));
1505         struct ibmvfc_target *tgt;
1506
1507         list_for_each_entry(tgt, &vhost->targets, queue) {
1508                 if (rport == tgt->rport) {
1509                         ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DEL_RPORT);
1510                         break;
1511                 }
1512         }
1513
1514         ibmvfc_reinit_host(vhost);
1515 }
1516
1517 /**
1518  * ibmvfc_scsi_done - Handle responses from commands
1519  * @evt:        ibmvfc event to be handled
1520  *
1521  * Used as a callback when sending scsi cmds.
1522  **/
1523 static void ibmvfc_scsi_done(struct ibmvfc_event *evt)
1524 {
1525         struct ibmvfc_cmd *vfc_cmd = &evt->xfer_iu->cmd;
1526         struct ibmvfc_fcp_rsp *rsp = &vfc_cmd->rsp;
1527         struct scsi_cmnd *cmnd = evt->cmnd;
1528         u32 rsp_len = 0;
1529         u32 sense_len = be32_to_cpu(rsp->fcp_sense_len);
1530
1531         if (cmnd) {
1532                 if (be16_to_cpu(vfc_cmd->response_flags) & IBMVFC_ADAPTER_RESID_VALID)
1533                         scsi_set_resid(cmnd, be32_to_cpu(vfc_cmd->adapter_resid));
1534                 else if (rsp->flags & FCP_RESID_UNDER)
1535                         scsi_set_resid(cmnd, be32_to_cpu(rsp->fcp_resid));
1536                 else
1537                         scsi_set_resid(cmnd, 0);
1538
1539                 if (vfc_cmd->status) {
1540                         cmnd->result = ibmvfc_get_err_result(vfc_cmd);
1541
1542                         if (rsp->flags & FCP_RSP_LEN_VALID)
1543                                 rsp_len = be32_to_cpu(rsp->fcp_rsp_len);
1544                         if ((sense_len + rsp_len) > SCSI_SENSE_BUFFERSIZE)
1545                                 sense_len = SCSI_SENSE_BUFFERSIZE - rsp_len;
1546                         if ((rsp->flags & FCP_SNS_LEN_VALID) && rsp->fcp_sense_len && rsp_len <= 8)
1547                                 memcpy(cmnd->sense_buffer, rsp->data.sense + rsp_len, sense_len);
1548                         if ((be16_to_cpu(vfc_cmd->status) & IBMVFC_VIOS_FAILURE) &&
1549                             (be16_to_cpu(vfc_cmd->error) == IBMVFC_PLOGI_REQUIRED))
1550                                 ibmvfc_relogin(cmnd->device);
1551
1552                         if (!cmnd->result && (!scsi_get_resid(cmnd) || (rsp->flags & FCP_RESID_OVER)))
1553                                 cmnd->result = (DID_ERROR << 16);
1554
1555                         ibmvfc_log_error(evt);
1556                 }
1557
1558                 if (!cmnd->result &&
1559                     (scsi_bufflen(cmnd) - scsi_get_resid(cmnd) < cmnd->underflow))
1560                         cmnd->result = (DID_ERROR << 16);
1561
1562                 scsi_dma_unmap(cmnd);
1563                 cmnd->scsi_done(cmnd);
1564         }
1565
1566         if (evt->eh_comp)
1567                 complete(evt->eh_comp);
1568
1569         ibmvfc_free_event(evt);
1570 }
1571
1572 /**
1573  * ibmvfc_host_chkready - Check if the host can accept commands
1574  * @vhost:       struct ibmvfc host
1575  *
1576  * Returns:
1577  *      1 if host can accept command / 0 if not
1578  **/
1579 static inline int ibmvfc_host_chkready(struct ibmvfc_host *vhost)
1580 {
1581         int result = 0;
1582
1583         switch (vhost->state) {
1584         case IBMVFC_LINK_DEAD:
1585         case IBMVFC_HOST_OFFLINE:
1586                 result = DID_NO_CONNECT << 16;
1587                 break;
1588         case IBMVFC_NO_CRQ:
1589         case IBMVFC_INITIALIZING:
1590         case IBMVFC_HALTED:
1591         case IBMVFC_LINK_DOWN:
1592                 result = DID_REQUEUE << 16;
1593                 break;
1594         case IBMVFC_ACTIVE:
1595                 result = 0;
1596                 break;
1597         };
1598
1599         return result;
1600 }
1601
1602 /**
1603  * ibmvfc_queuecommand - The queuecommand function of the scsi template
1604  * @cmnd:       struct scsi_cmnd to be executed
1605  * @done:       Callback function to be called when cmnd is completed
1606  *
1607  * Returns:
1608  *      0 on success / other on failure
1609  **/
1610 static int ibmvfc_queuecommand_lck(struct scsi_cmnd *cmnd,
1611                                void (*done) (struct scsi_cmnd *))
1612 {
1613         struct ibmvfc_host *vhost = shost_priv(cmnd->device->host);
1614         struct fc_rport *rport = starget_to_rport(scsi_target(cmnd->device));
1615         struct ibmvfc_cmd *vfc_cmd;
1616         struct ibmvfc_event *evt;
1617         int rc;
1618
1619         if (unlikely((rc = fc_remote_port_chkready(rport))) ||
1620             unlikely((rc = ibmvfc_host_chkready(vhost)))) {
1621                 cmnd->result = rc;
1622                 done(cmnd);
1623                 return 0;
1624         }
1625
1626         cmnd->result = (DID_OK << 16);
1627         evt = ibmvfc_get_event(vhost);
1628         ibmvfc_init_event(evt, ibmvfc_scsi_done, IBMVFC_CMD_FORMAT);
1629         evt->cmnd = cmnd;
1630         cmnd->scsi_done = done;
1631         vfc_cmd = &evt->iu.cmd;
1632         memset(vfc_cmd, 0, sizeof(*vfc_cmd));
1633         vfc_cmd->resp.va = cpu_to_be64(be64_to_cpu(evt->crq.ioba) + offsetof(struct ibmvfc_cmd, rsp));
1634         vfc_cmd->resp.len = cpu_to_be32(sizeof(vfc_cmd->rsp));
1635         vfc_cmd->frame_type = cpu_to_be32(IBMVFC_SCSI_FCP_TYPE);
1636         vfc_cmd->payload_len = cpu_to_be32(sizeof(vfc_cmd->iu));
1637         vfc_cmd->resp_len = cpu_to_be32(sizeof(vfc_cmd->rsp));
1638         vfc_cmd->cancel_key = cpu_to_be32((unsigned long)cmnd->device->hostdata);
1639         vfc_cmd->tgt_scsi_id = cpu_to_be64(rport->port_id);
1640         vfc_cmd->iu.xfer_len = cpu_to_be32(scsi_bufflen(cmnd));
1641         int_to_scsilun(cmnd->device->lun, &vfc_cmd->iu.lun);
1642         memcpy(vfc_cmd->iu.cdb, cmnd->cmnd, cmnd->cmd_len);
1643
1644         if (cmnd->flags & SCMD_TAGGED) {
1645                 vfc_cmd->task_tag = cpu_to_be64(cmnd->tag);
1646                 vfc_cmd->iu.pri_task_attr = IBMVFC_SIMPLE_TASK;
1647         }
1648
1649         if (likely(!(rc = ibmvfc_map_sg_data(cmnd, evt, vfc_cmd, vhost->dev))))
1650                 return ibmvfc_send_event(evt, vhost, 0);
1651
1652         ibmvfc_free_event(evt);
1653         if (rc == -ENOMEM)
1654                 return SCSI_MLQUEUE_HOST_BUSY;
1655
1656         if (vhost->log_level > IBMVFC_DEFAULT_LOG_LEVEL)
1657                 scmd_printk(KERN_ERR, cmnd,
1658                             "Failed to map DMA buffer for command. rc=%d\n", rc);
1659
1660         cmnd->result = DID_ERROR << 16;
1661         done(cmnd);
1662         return 0;
1663 }
1664
1665 static DEF_SCSI_QCMD(ibmvfc_queuecommand)
1666
1667 /**
1668  * ibmvfc_sync_completion - Signal that a synchronous command has completed
1669  * @evt:        ibmvfc event struct
1670  *
1671  **/
1672 static void ibmvfc_sync_completion(struct ibmvfc_event *evt)
1673 {
1674         /* copy the response back */
1675         if (evt->sync_iu)
1676                 *evt->sync_iu = *evt->xfer_iu;
1677
1678         complete(&evt->comp);
1679 }
1680
1681 /**
1682  * ibmvfc_bsg_timeout_done - Completion handler for cancelling BSG commands
1683  * @evt:        struct ibmvfc_event
1684  *
1685  **/
1686 static void ibmvfc_bsg_timeout_done(struct ibmvfc_event *evt)
1687 {
1688         struct ibmvfc_host *vhost = evt->vhost;
1689
1690         ibmvfc_free_event(evt);
1691         vhost->aborting_passthru = 0;
1692         dev_info(vhost->dev, "Passthru command cancelled\n");
1693 }
1694
1695 /**
1696  * ibmvfc_bsg_timeout - Handle a BSG timeout
1697  * @job:        struct fc_bsg_job that timed out
1698  *
1699  * Returns:
1700  *      0 on success / other on failure
1701  **/
1702 static int ibmvfc_bsg_timeout(struct fc_bsg_job *job)
1703 {
1704         struct ibmvfc_host *vhost = shost_priv(job->shost);
1705         unsigned long port_id = (unsigned long)job->dd_data;
1706         struct ibmvfc_event *evt;
1707         struct ibmvfc_tmf *tmf;
1708         unsigned long flags;
1709         int rc;
1710
1711         ENTER;
1712         spin_lock_irqsave(vhost->host->host_lock, flags);
1713         if (vhost->aborting_passthru || vhost->state != IBMVFC_ACTIVE) {
1714                 __ibmvfc_reset_host(vhost);
1715                 spin_unlock_irqrestore(vhost->host->host_lock, flags);
1716                 return 0;
1717         }
1718
1719         vhost->aborting_passthru = 1;
1720         evt = ibmvfc_get_event(vhost);
1721         ibmvfc_init_event(evt, ibmvfc_bsg_timeout_done, IBMVFC_MAD_FORMAT);
1722
1723         tmf = &evt->iu.tmf;
1724         memset(tmf, 0, sizeof(*tmf));
1725         tmf->common.version = cpu_to_be32(1);
1726         tmf->common.opcode = cpu_to_be32(IBMVFC_TMF_MAD);
1727         tmf->common.length = cpu_to_be16(sizeof(*tmf));
1728         tmf->scsi_id = cpu_to_be64(port_id);
1729         tmf->cancel_key = cpu_to_be32(IBMVFC_PASSTHRU_CANCEL_KEY);
1730         tmf->my_cancel_key = cpu_to_be32(IBMVFC_INTERNAL_CANCEL_KEY);
1731         rc = ibmvfc_send_event(evt, vhost, default_timeout);
1732
1733         if (rc != 0) {
1734                 vhost->aborting_passthru = 0;
1735                 dev_err(vhost->dev, "Failed to send cancel event. rc=%d\n", rc);
1736                 rc = -EIO;
1737         } else
1738                 dev_info(vhost->dev, "Cancelling passthru command to port id 0x%lx\n",
1739                          port_id);
1740
1741         spin_unlock_irqrestore(vhost->host->host_lock, flags);
1742
1743         LEAVE;
1744         return rc;
1745 }
1746
1747 /**
1748  * ibmvfc_bsg_plogi - PLOGI into a target to handle a BSG command
1749  * @vhost:              struct ibmvfc_host to send command
1750  * @port_id:    port ID to send command
1751  *
1752  * Returns:
1753  *      0 on success / other on failure
1754  **/
1755 static int ibmvfc_bsg_plogi(struct ibmvfc_host *vhost, unsigned int port_id)
1756 {
1757         struct ibmvfc_port_login *plogi;
1758         struct ibmvfc_target *tgt;
1759         struct ibmvfc_event *evt;
1760         union ibmvfc_iu rsp_iu;
1761         unsigned long flags;
1762         int rc = 0, issue_login = 1;
1763
1764         ENTER;
1765         spin_lock_irqsave(vhost->host->host_lock, flags);
1766         list_for_each_entry(tgt, &vhost->targets, queue) {
1767                 if (tgt->scsi_id == port_id) {
1768                         issue_login = 0;
1769                         break;
1770                 }
1771         }
1772
1773         if (!issue_login)
1774                 goto unlock_out;
1775         if (unlikely((rc = ibmvfc_host_chkready(vhost))))
1776                 goto unlock_out;
1777
1778         evt = ibmvfc_get_event(vhost);
1779         ibmvfc_init_event(evt, ibmvfc_sync_completion, IBMVFC_MAD_FORMAT);
1780         plogi = &evt->iu.plogi;
1781         memset(plogi, 0, sizeof(*plogi));
1782         plogi->common.version = cpu_to_be32(1);
1783         plogi->common.opcode = cpu_to_be32(IBMVFC_PORT_LOGIN);
1784         plogi->common.length = cpu_to_be16(sizeof(*plogi));
1785         plogi->scsi_id = cpu_to_be64(port_id);
1786         evt->sync_iu = &rsp_iu;
1787         init_completion(&evt->comp);
1788
1789         rc = ibmvfc_send_event(evt, vhost, default_timeout);
1790         spin_unlock_irqrestore(vhost->host->host_lock, flags);
1791
1792         if (rc)
1793                 return -EIO;
1794
1795         wait_for_completion(&evt->comp);
1796
1797         if (rsp_iu.plogi.common.status)
1798                 rc = -EIO;
1799
1800         spin_lock_irqsave(vhost->host->host_lock, flags);
1801         ibmvfc_free_event(evt);
1802 unlock_out:
1803         spin_unlock_irqrestore(vhost->host->host_lock, flags);
1804         LEAVE;
1805         return rc;
1806 }
1807
1808 /**
1809  * ibmvfc_bsg_request - Handle a BSG request
1810  * @job:        struct fc_bsg_job to be executed
1811  *
1812  * Returns:
1813  *      0 on success / other on failure
1814  **/
1815 static int ibmvfc_bsg_request(struct fc_bsg_job *job)
1816 {
1817         struct ibmvfc_host *vhost = shost_priv(job->shost);
1818         struct fc_rport *rport = job->rport;
1819         struct ibmvfc_passthru_mad *mad;
1820         struct ibmvfc_event *evt;
1821         union ibmvfc_iu rsp_iu;
1822         unsigned long flags, port_id = -1;
1823         unsigned int code = job->request->msgcode;
1824         int rc = 0, req_seg, rsp_seg, issue_login = 0;
1825         u32 fc_flags, rsp_len;
1826
1827         ENTER;
1828         job->reply->reply_payload_rcv_len = 0;
1829         if (rport)
1830                 port_id = rport->port_id;
1831
1832         switch (code) {
1833         case FC_BSG_HST_ELS_NOLOGIN:
1834                 port_id = (job->request->rqst_data.h_els.port_id[0] << 16) |
1835                         (job->request->rqst_data.h_els.port_id[1] << 8) |
1836                         job->request->rqst_data.h_els.port_id[2];
1837         case FC_BSG_RPT_ELS:
1838                 fc_flags = IBMVFC_FC_ELS;
1839                 break;
1840         case FC_BSG_HST_CT:
1841                 issue_login = 1;
1842                 port_id = (job->request->rqst_data.h_ct.port_id[0] << 16) |
1843                         (job->request->rqst_data.h_ct.port_id[1] << 8) |
1844                         job->request->rqst_data.h_ct.port_id[2];
1845         case FC_BSG_RPT_CT:
1846                 fc_flags = IBMVFC_FC_CT_IU;
1847                 break;
1848         default:
1849                 return -ENOTSUPP;
1850         };
1851
1852         if (port_id == -1)
1853                 return -EINVAL;
1854         if (!mutex_trylock(&vhost->passthru_mutex))
1855                 return -EBUSY;
1856
1857         job->dd_data = (void *)port_id;
1858         req_seg = dma_map_sg(vhost->dev, job->request_payload.sg_list,
1859                              job->request_payload.sg_cnt, DMA_TO_DEVICE);
1860
1861         if (!req_seg) {
1862                 mutex_unlock(&vhost->passthru_mutex);
1863                 return -ENOMEM;
1864         }
1865
1866         rsp_seg = dma_map_sg(vhost->dev, job->reply_payload.sg_list,
1867                              job->reply_payload.sg_cnt, DMA_FROM_DEVICE);
1868
1869         if (!rsp_seg) {
1870                 dma_unmap_sg(vhost->dev, job->request_payload.sg_list,
1871                              job->request_payload.sg_cnt, DMA_TO_DEVICE);
1872                 mutex_unlock(&vhost->passthru_mutex);
1873                 return -ENOMEM;
1874         }
1875
1876         if (req_seg > 1 || rsp_seg > 1) {
1877                 rc = -EINVAL;
1878                 goto out;
1879         }
1880
1881         if (issue_login)
1882                 rc = ibmvfc_bsg_plogi(vhost, port_id);
1883
1884         spin_lock_irqsave(vhost->host->host_lock, flags);
1885
1886         if (unlikely(rc || (rport && (rc = fc_remote_port_chkready(rport)))) ||
1887             unlikely((rc = ibmvfc_host_chkready(vhost)))) {
1888                 spin_unlock_irqrestore(vhost->host->host_lock, flags);
1889                 goto out;
1890         }
1891
1892         evt = ibmvfc_get_event(vhost);
1893         ibmvfc_init_event(evt, ibmvfc_sync_completion, IBMVFC_MAD_FORMAT);
1894         mad = &evt->iu.passthru;
1895
1896         memset(mad, 0, sizeof(*mad));
1897         mad->common.version = cpu_to_be32(1);
1898         mad->common.opcode = cpu_to_be32(IBMVFC_PASSTHRU);
1899         mad->common.length = cpu_to_be16(sizeof(*mad) - sizeof(mad->fc_iu) - sizeof(mad->iu));
1900
1901         mad->cmd_ioba.va = cpu_to_be64(be64_to_cpu(evt->crq.ioba) +
1902                 offsetof(struct ibmvfc_passthru_mad, iu));
1903         mad->cmd_ioba.len = cpu_to_be32(sizeof(mad->iu));
1904
1905         mad->iu.cmd_len = cpu_to_be32(job->request_payload.payload_len);
1906         mad->iu.rsp_len = cpu_to_be32(job->reply_payload.payload_len);
1907         mad->iu.flags = cpu_to_be32(fc_flags);
1908         mad->iu.cancel_key = cpu_to_be32(IBMVFC_PASSTHRU_CANCEL_KEY);
1909
1910         mad->iu.cmd.va = cpu_to_be64(sg_dma_address(job->request_payload.sg_list));
1911         mad->iu.cmd.len = cpu_to_be32(sg_dma_len(job->request_payload.sg_list));
1912         mad->iu.rsp.va = cpu_to_be64(sg_dma_address(job->reply_payload.sg_list));
1913         mad->iu.rsp.len = cpu_to_be32(sg_dma_len(job->reply_payload.sg_list));
1914         mad->iu.scsi_id = cpu_to_be64(port_id);
1915         mad->iu.tag = cpu_to_be64((u64)evt);
1916         rsp_len = be32_to_cpu(mad->iu.rsp.len);
1917
1918         evt->sync_iu = &rsp_iu;
1919         init_completion(&evt->comp);
1920         rc = ibmvfc_send_event(evt, vhost, 0);
1921         spin_unlock_irqrestore(vhost->host->host_lock, flags);
1922
1923         if (rc) {
1924                 rc = -EIO;
1925                 goto out;
1926         }
1927
1928         wait_for_completion(&evt->comp);
1929
1930         if (rsp_iu.passthru.common.status)
1931                 rc = -EIO;
1932         else
1933                 job->reply->reply_payload_rcv_len = rsp_len;
1934
1935         spin_lock_irqsave(vhost->host->host_lock, flags);
1936         ibmvfc_free_event(evt);
1937         spin_unlock_irqrestore(vhost->host->host_lock, flags);
1938         job->reply->result = rc;
1939         job->job_done(job);
1940         rc = 0;
1941 out:
1942         dma_unmap_sg(vhost->dev, job->request_payload.sg_list,
1943                      job->request_payload.sg_cnt, DMA_TO_DEVICE);
1944         dma_unmap_sg(vhost->dev, job->reply_payload.sg_list,
1945                      job->reply_payload.sg_cnt, DMA_FROM_DEVICE);
1946         mutex_unlock(&vhost->passthru_mutex);
1947         LEAVE;
1948         return rc;
1949 }
1950
1951 /**
1952  * ibmvfc_reset_device - Reset the device with the specified reset type
1953  * @sdev:       scsi device to reset
1954  * @type:       reset type
1955  * @desc:       reset type description for log messages
1956  *
1957  * Returns:
1958  *      0 on success / other on failure
1959  **/
1960 static int ibmvfc_reset_device(struct scsi_device *sdev, int type, char *desc)
1961 {
1962         struct ibmvfc_host *vhost = shost_priv(sdev->host);
1963         struct fc_rport *rport = starget_to_rport(scsi_target(sdev));
1964         struct ibmvfc_cmd *tmf;
1965         struct ibmvfc_event *evt = NULL;
1966         union ibmvfc_iu rsp_iu;
1967         struct ibmvfc_fcp_rsp *fc_rsp = &rsp_iu.cmd.rsp;
1968         int rsp_rc = -EBUSY;
1969         unsigned long flags;
1970         int rsp_code = 0;
1971
1972         spin_lock_irqsave(vhost->host->host_lock, flags);
1973         if (vhost->state == IBMVFC_ACTIVE) {
1974                 evt = ibmvfc_get_event(vhost);
1975                 ibmvfc_init_event(evt, ibmvfc_sync_completion, IBMVFC_CMD_FORMAT);
1976
1977                 tmf = &evt->iu.cmd;
1978                 memset(tmf, 0, sizeof(*tmf));
1979                 tmf->resp.va = cpu_to_be64(be64_to_cpu(evt->crq.ioba) + offsetof(struct ibmvfc_cmd, rsp));
1980                 tmf->resp.len = cpu_to_be32(sizeof(tmf->rsp));
1981                 tmf->frame_type = cpu_to_be32(IBMVFC_SCSI_FCP_TYPE);
1982                 tmf->payload_len = cpu_to_be32(sizeof(tmf->iu));
1983                 tmf->resp_len = cpu_to_be32(sizeof(tmf->rsp));
1984                 tmf->cancel_key = cpu_to_be32((unsigned long)sdev->hostdata);
1985                 tmf->tgt_scsi_id = cpu_to_be64(rport->port_id);
1986                 int_to_scsilun(sdev->lun, &tmf->iu.lun);
1987                 tmf->flags = cpu_to_be16((IBMVFC_NO_MEM_DESC | IBMVFC_TMF));
1988                 tmf->iu.tmf_flags = type;
1989                 evt->sync_iu = &rsp_iu;
1990
1991                 init_completion(&evt->comp);
1992                 rsp_rc = ibmvfc_send_event(evt, vhost, default_timeout);
1993         }
1994         spin_unlock_irqrestore(vhost->host->host_lock, flags);
1995
1996         if (rsp_rc != 0) {
1997                 sdev_printk(KERN_ERR, sdev, "Failed to send %s reset event. rc=%d\n",
1998                             desc, rsp_rc);
1999                 return -EIO;
2000         }
2001
2002         sdev_printk(KERN_INFO, sdev, "Resetting %s\n", desc);
2003         wait_for_completion(&evt->comp);
2004
2005         if (rsp_iu.cmd.status)
2006                 rsp_code = ibmvfc_get_err_result(&rsp_iu.cmd);
2007
2008         if (rsp_code) {
2009                 if (fc_rsp->flags & FCP_RSP_LEN_VALID)
2010                         rsp_code = fc_rsp->data.info.rsp_code;
2011
2012                 sdev_printk(KERN_ERR, sdev, "%s reset failed: %s (%x:%x) "
2013                             "flags: %x fcp_rsp: %x, scsi_status: %x\n", desc,
2014                             ibmvfc_get_cmd_error(be16_to_cpu(rsp_iu.cmd.status), be16_to_cpu(rsp_iu.cmd.error)),
2015                             rsp_iu.cmd.status, rsp_iu.cmd.error, fc_rsp->flags, rsp_code,
2016                             fc_rsp->scsi_status);
2017                 rsp_rc = -EIO;
2018         } else
2019                 sdev_printk(KERN_INFO, sdev, "%s reset successful\n", desc);
2020
2021         spin_lock_irqsave(vhost->host->host_lock, flags);
2022         ibmvfc_free_event(evt);
2023         spin_unlock_irqrestore(vhost->host->host_lock, flags);
2024         return rsp_rc;
2025 }
2026
2027 /**
2028  * ibmvfc_match_rport - Match function for specified remote port
2029  * @evt:        ibmvfc event struct
2030  * @device:     device to match (rport)
2031  *
2032  * Returns:
2033  *      1 if event matches rport / 0 if event does not match rport
2034  **/
2035 static int ibmvfc_match_rport(struct ibmvfc_event *evt, void *rport)
2036 {
2037         struct fc_rport *cmd_rport;
2038
2039         if (evt->cmnd) {
2040                 cmd_rport = starget_to_rport(scsi_target(evt->cmnd->device));
2041                 if (cmd_rport == rport)
2042                         return 1;
2043         }
2044         return 0;
2045 }
2046
2047 /**
2048  * ibmvfc_match_target - Match function for specified target
2049  * @evt:        ibmvfc event struct
2050  * @device:     device to match (starget)
2051  *
2052  * Returns:
2053  *      1 if event matches starget / 0 if event does not match starget
2054  **/
2055 static int ibmvfc_match_target(struct ibmvfc_event *evt, void *device)
2056 {
2057         if (evt->cmnd && scsi_target(evt->cmnd->device) == device)
2058                 return 1;
2059         return 0;
2060 }
2061
2062 /**
2063  * ibmvfc_match_lun - Match function for specified LUN
2064  * @evt:        ibmvfc event struct
2065  * @device:     device to match (sdev)
2066  *
2067  * Returns:
2068  *      1 if event matches sdev / 0 if event does not match sdev
2069  **/
2070 static int ibmvfc_match_lun(struct ibmvfc_event *evt, void *device)
2071 {
2072         if (evt->cmnd && evt->cmnd->device == device)
2073                 return 1;
2074         return 0;
2075 }
2076
2077 /**
2078  * ibmvfc_wait_for_ops - Wait for ops to complete
2079  * @vhost:      ibmvfc host struct
2080  * @device:     device to match (starget or sdev)
2081  * @match:      match function
2082  *
2083  * Returns:
2084  *      SUCCESS / FAILED
2085  **/
2086 static int ibmvfc_wait_for_ops(struct ibmvfc_host *vhost, void *device,
2087                                int (*match) (struct ibmvfc_event *, void *))
2088 {
2089         struct ibmvfc_event *evt;
2090         DECLARE_COMPLETION_ONSTACK(comp);
2091         int wait;
2092         unsigned long flags;
2093         signed long timeout = IBMVFC_ABORT_WAIT_TIMEOUT * HZ;
2094
2095         ENTER;
2096         do {
2097                 wait = 0;
2098                 spin_lock_irqsave(vhost->host->host_lock, flags);
2099                 list_for_each_entry(evt, &vhost->sent, queue) {
2100                         if (match(evt, device)) {
2101                                 evt->eh_comp = &comp;
2102                                 wait++;
2103                         }
2104                 }
2105                 spin_unlock_irqrestore(vhost->host->host_lock, flags);
2106
2107                 if (wait) {
2108                         timeout = wait_for_completion_timeout(&comp, timeout);
2109
2110                         if (!timeout) {
2111                                 wait = 0;
2112                                 spin_lock_irqsave(vhost->host->host_lock, flags);
2113                                 list_for_each_entry(evt, &vhost->sent, queue) {
2114                                         if (match(evt, device)) {
2115                                                 evt->eh_comp = NULL;
2116                                                 wait++;
2117                                         }
2118                                 }
2119                                 spin_unlock_irqrestore(vhost->host->host_lock, flags);
2120                                 if (wait)
2121                                         dev_err(vhost->dev, "Timed out waiting for aborted commands\n");
2122                                 LEAVE;
2123                                 return wait ? FAILED : SUCCESS;
2124                         }
2125                 }
2126         } while (wait);
2127
2128         LEAVE;
2129         return SUCCESS;
2130 }
2131
2132 /**
2133  * ibmvfc_cancel_all - Cancel all outstanding commands to the device
2134  * @sdev:       scsi device to cancel commands
2135  * @type:       type of error recovery being performed
2136  *
2137  * This sends a cancel to the VIOS for the specified device. This does
2138  * NOT send any abort to the actual device. That must be done separately.
2139  *
2140  * Returns:
2141  *      0 on success / other on failure
2142  **/
2143 static int ibmvfc_cancel_all(struct scsi_device *sdev, int type)
2144 {
2145         struct ibmvfc_host *vhost = shost_priv(sdev->host);
2146         struct scsi_target *starget = scsi_target(sdev);
2147         struct fc_rport *rport = starget_to_rport(starget);
2148         struct ibmvfc_tmf *tmf;
2149         struct ibmvfc_event *evt, *found_evt;
2150         union ibmvfc_iu rsp;
2151         int rsp_rc = -EBUSY;
2152         unsigned long flags;
2153         u16 status;
2154
2155         ENTER;
2156         spin_lock_irqsave(vhost->host->host_lock, flags);
2157         found_evt = NULL;
2158         list_for_each_entry(evt, &vhost->sent, queue) {
2159                 if (evt->cmnd && evt->cmnd->device == sdev) {
2160                         found_evt = evt;
2161                         break;
2162                 }
2163         }
2164
2165         if (!found_evt) {
2166                 if (vhost->log_level > IBMVFC_DEFAULT_LOG_LEVEL)
2167                         sdev_printk(KERN_INFO, sdev, "No events found to cancel\n");
2168                 spin_unlock_irqrestore(vhost->host->host_lock, flags);
2169                 return 0;
2170         }
2171
2172         if (vhost->logged_in) {
2173                 evt = ibmvfc_get_event(vhost);
2174                 ibmvfc_init_event(evt, ibmvfc_sync_completion, IBMVFC_MAD_FORMAT);
2175
2176                 tmf = &evt->iu.tmf;
2177                 memset(tmf, 0, sizeof(*tmf));
2178                 tmf->common.version = cpu_to_be32(1);
2179                 tmf->common.opcode = cpu_to_be32(IBMVFC_TMF_MAD);
2180                 tmf->common.length = cpu_to_be16(sizeof(*tmf));
2181                 tmf->scsi_id = cpu_to_be64(rport->port_id);
2182                 int_to_scsilun(sdev->lun, &tmf->lun);
2183                 if (!(be64_to_cpu(vhost->login_buf->resp.capabilities) & IBMVFC_CAN_SUPPRESS_ABTS))
2184                         type &= ~IBMVFC_TMF_SUPPRESS_ABTS;
2185                 if (vhost->state == IBMVFC_ACTIVE)
2186                         tmf->flags = cpu_to_be32((type | IBMVFC_TMF_LUA_VALID));
2187                 else
2188                         tmf->flags = cpu_to_be32(((type & IBMVFC_TMF_SUPPRESS_ABTS) | IBMVFC_TMF_LUA_VALID));
2189                 tmf->cancel_key = cpu_to_be32((unsigned long)sdev->hostdata);
2190                 tmf->my_cancel_key = cpu_to_be32((unsigned long)starget->hostdata);
2191
2192                 evt->sync_iu = &rsp;
2193                 init_completion(&evt->comp);
2194                 rsp_rc = ibmvfc_send_event(evt, vhost, default_timeout);
2195         }
2196
2197         spin_unlock_irqrestore(vhost->host->host_lock, flags);
2198
2199         if (rsp_rc != 0) {
2200                 sdev_printk(KERN_ERR, sdev, "Failed to send cancel event. rc=%d\n", rsp_rc);
2201                 /* If failure is received, the host adapter is most likely going
2202                  through reset, return success so the caller will wait for the command
2203                  being cancelled to get returned */
2204                 return 0;
2205         }
2206
2207         sdev_printk(KERN_INFO, sdev, "Cancelling outstanding commands.\n");
2208
2209         wait_for_completion(&evt->comp);
2210         status = be16_to_cpu(rsp.mad_common.status);
2211         spin_lock_irqsave(vhost->host->host_lock, flags);
2212         ibmvfc_free_event(evt);
2213         spin_unlock_irqrestore(vhost->host->host_lock, flags);
2214
2215         if (status != IBMVFC_MAD_SUCCESS) {
2216                 sdev_printk(KERN_WARNING, sdev, "Cancel failed with rc=%x\n", status);
2217                 switch (status) {
2218                 case IBMVFC_MAD_DRIVER_FAILED:
2219                 case IBMVFC_MAD_CRQ_ERROR:
2220                         /* Host adapter most likely going through reset, return success to
2221                          the caller will wait for the command being cancelled to get returned */
2222                         return 0;
2223                 default:
2224                         return -EIO;
2225                 };
2226         }
2227
2228         sdev_printk(KERN_INFO, sdev, "Successfully cancelled outstanding commands\n");
2229         return 0;
2230 }
2231
2232 /**
2233  * ibmvfc_match_key - Match function for specified cancel key
2234  * @evt:        ibmvfc event struct
2235  * @key:        cancel key to match
2236  *
2237  * Returns:
2238  *      1 if event matches key / 0 if event does not match key
2239  **/
2240 static int ibmvfc_match_key(struct ibmvfc_event *evt, void *key)
2241 {
2242         unsigned long cancel_key = (unsigned long)key;
2243
2244         if (evt->crq.format == IBMVFC_CMD_FORMAT &&
2245             be32_to_cpu(evt->iu.cmd.cancel_key) == cancel_key)
2246                 return 1;
2247         return 0;
2248 }
2249
2250 /**
2251  * ibmvfc_match_evt - Match function for specified event
2252  * @evt:        ibmvfc event struct
2253  * @match:      event to match
2254  *
2255  * Returns:
2256  *      1 if event matches key / 0 if event does not match key
2257  **/
2258 static int ibmvfc_match_evt(struct ibmvfc_event *evt, void *match)
2259 {
2260         if (evt == match)
2261                 return 1;
2262         return 0;
2263 }
2264
2265 /**
2266  * ibmvfc_abort_task_set - Abort outstanding commands to the device
2267  * @sdev:       scsi device to abort commands
2268  *
2269  * This sends an Abort Task Set to the VIOS for the specified device. This does
2270  * NOT send any cancel to the VIOS. That must be done separately.
2271  *
2272  * Returns:
2273  *      0 on success / other on failure
2274  **/
2275 static int ibmvfc_abort_task_set(struct scsi_device *sdev)
2276 {
2277         struct ibmvfc_host *vhost = shost_priv(sdev->host);
2278         struct fc_rport *rport = starget_to_rport(scsi_target(sdev));
2279         struct ibmvfc_cmd *tmf;
2280         struct ibmvfc_event *evt, *found_evt;
2281         union ibmvfc_iu rsp_iu;
2282         struct ibmvfc_fcp_rsp *fc_rsp = &rsp_iu.cmd.rsp;
2283         int rc, rsp_rc = -EBUSY;
2284         unsigned long flags, timeout = IBMVFC_ABORT_TIMEOUT;
2285         int rsp_code = 0;
2286
2287         spin_lock_irqsave(vhost->host->host_lock, flags);
2288         found_evt = NULL;
2289         list_for_each_entry(evt, &vhost->sent, queue) {
2290                 if (evt->cmnd && evt->cmnd->device == sdev) {
2291                         found_evt = evt;
2292                         break;
2293                 }
2294         }
2295
2296         if (!found_evt) {
2297                 if (vhost->log_level > IBMVFC_DEFAULT_LOG_LEVEL)
2298                         sdev_printk(KERN_INFO, sdev, "No events found to abort\n");
2299                 spin_unlock_irqrestore(vhost->host->host_lock, flags);
2300                 return 0;
2301         }
2302
2303         if (vhost->state == IBMVFC_ACTIVE) {
2304                 evt = ibmvfc_get_event(vhost);
2305                 ibmvfc_init_event(evt, ibmvfc_sync_completion, IBMVFC_CMD_FORMAT);
2306
2307                 tmf = &evt->iu.cmd;
2308                 memset(tmf, 0, sizeof(*tmf));
2309                 tmf->resp.va = cpu_to_be64(be64_to_cpu(evt->crq.ioba) + offsetof(struct ibmvfc_cmd, rsp));
2310                 tmf->resp.len = cpu_to_be32(sizeof(tmf->rsp));
2311                 tmf->frame_type = cpu_to_be32(IBMVFC_SCSI_FCP_TYPE);
2312                 tmf->payload_len = cpu_to_be32(sizeof(tmf->iu));
2313                 tmf->resp_len = cpu_to_be32(sizeof(tmf->rsp));
2314                 tmf->cancel_key = cpu_to_be32((unsigned long)sdev->hostdata);
2315                 tmf->tgt_scsi_id = cpu_to_be64(rport->port_id);
2316                 int_to_scsilun(sdev->lun, &tmf->iu.lun);
2317                 tmf->flags = cpu_to_be16((IBMVFC_NO_MEM_DESC | IBMVFC_TMF));
2318                 tmf->iu.tmf_flags = IBMVFC_ABORT_TASK_SET;
2319                 evt->sync_iu = &rsp_iu;
2320
2321                 init_completion(&evt->comp);
2322                 rsp_rc = ibmvfc_send_event(evt, vhost, default_timeout);
2323         }
2324
2325         spin_unlock_irqrestore(vhost->host->host_lock, flags);
2326
2327         if (rsp_rc != 0) {
2328                 sdev_printk(KERN_ERR, sdev, "Failed to send abort. rc=%d\n", rsp_rc);
2329                 return -EIO;
2330         }
2331
2332         sdev_printk(KERN_INFO, sdev, "Aborting outstanding commands\n");
2333         timeout = wait_for_completion_timeout(&evt->comp, timeout);
2334
2335         if (!timeout) {
2336                 rc = ibmvfc_cancel_all(sdev, 0);
2337                 if (!rc) {
2338                         rc = ibmvfc_wait_for_ops(vhost, sdev->hostdata, ibmvfc_match_key);
2339                         if (rc == SUCCESS)
2340                                 rc = 0;
2341                 }
2342
2343                 if (rc) {
2344                         sdev_printk(KERN_INFO, sdev, "Cancel failed, resetting host\n");
2345                         ibmvfc_reset_host(vhost);
2346                         rsp_rc = -EIO;
2347                         rc = ibmvfc_wait_for_ops(vhost, sdev->hostdata, ibmvfc_match_key);
2348
2349                         if (rc == SUCCESS)
2350                                 rsp_rc = 0;
2351
2352                         rc = ibmvfc_wait_for_ops(vhost, evt, ibmvfc_match_evt);
2353                         if (rc != SUCCESS) {
2354                                 spin_lock_irqsave(vhost->host->host_lock, flags);
2355                                 ibmvfc_hard_reset_host(vhost);
2356                                 spin_unlock_irqrestore(vhost->host->host_lock, flags);
2357                                 rsp_rc = 0;
2358                         }
2359
2360                         goto out;
2361                 }
2362         }
2363
2364         if (rsp_iu.cmd.status)
2365                 rsp_code = ibmvfc_get_err_result(&rsp_iu.cmd);
2366
2367         if (rsp_code) {
2368                 if (fc_rsp->flags & FCP_RSP_LEN_VALID)
2369                         rsp_code = fc_rsp->data.info.rsp_code;
2370
2371                 sdev_printk(KERN_ERR, sdev, "Abort failed: %s (%x:%x) "
2372                             "flags: %x fcp_rsp: %x, scsi_status: %x\n",
2373                             ibmvfc_get_cmd_error(be16_to_cpu(rsp_iu.cmd.status), be16_to_cpu(rsp_iu.cmd.error)),
2374                             rsp_iu.cmd.status, rsp_iu.cmd.error, fc_rsp->flags, rsp_code,
2375                             fc_rsp->scsi_status);
2376                 rsp_rc = -EIO;
2377         } else
2378                 sdev_printk(KERN_INFO, sdev, "Abort successful\n");
2379
2380 out:
2381         spin_lock_irqsave(vhost->host->host_lock, flags);
2382         ibmvfc_free_event(evt);
2383         spin_unlock_irqrestore(vhost->host->host_lock, flags);
2384         return rsp_rc;
2385 }
2386
2387 /**
2388  * ibmvfc_eh_abort_handler - Abort a command
2389  * @cmd:        scsi command to abort
2390  *
2391  * Returns:
2392  *      SUCCESS / FAST_IO_FAIL / FAILED
2393  **/
2394 static int ibmvfc_eh_abort_handler(struct scsi_cmnd *cmd)
2395 {
2396         struct scsi_device *sdev = cmd->device;
2397         struct ibmvfc_host *vhost = shost_priv(sdev->host);
2398         int cancel_rc, block_rc;
2399         int rc = FAILED;
2400
2401         ENTER;
2402         block_rc = fc_block_scsi_eh(cmd);
2403         ibmvfc_wait_while_resetting(vhost);
2404         if (block_rc != FAST_IO_FAIL) {
2405                 cancel_rc = ibmvfc_cancel_all(sdev, IBMVFC_TMF_ABORT_TASK_SET);
2406                 ibmvfc_abort_task_set(sdev);
2407         } else
2408                 cancel_rc = ibmvfc_cancel_all(sdev, IBMVFC_TMF_SUPPRESS_ABTS);
2409
2410         if (!cancel_rc)
2411                 rc = ibmvfc_wait_for_ops(vhost, sdev, ibmvfc_match_lun);
2412
2413         if (block_rc == FAST_IO_FAIL && rc != FAILED)
2414                 rc = FAST_IO_FAIL;
2415
2416         LEAVE;
2417         return rc;
2418 }
2419
2420 /**
2421  * ibmvfc_eh_device_reset_handler - Reset a single LUN
2422  * @cmd:        scsi command struct
2423  *
2424  * Returns:
2425  *      SUCCESS / FAST_IO_FAIL / FAILED
2426  **/
2427 static int ibmvfc_eh_device_reset_handler(struct scsi_cmnd *cmd)
2428 {
2429         struct scsi_device *sdev = cmd->device;
2430         struct ibmvfc_host *vhost = shost_priv(sdev->host);
2431         int cancel_rc, block_rc, reset_rc = 0;
2432         int rc = FAILED;
2433
2434         ENTER;
2435         block_rc = fc_block_scsi_eh(cmd);
2436         ibmvfc_wait_while_resetting(vhost);
2437         if (block_rc != FAST_IO_FAIL) {
2438                 cancel_rc = ibmvfc_cancel_all(sdev, IBMVFC_TMF_LUN_RESET);
2439                 reset_rc = ibmvfc_reset_device(sdev, IBMVFC_LUN_RESET, "LUN");
2440         } else
2441                 cancel_rc = ibmvfc_cancel_all(sdev, IBMVFC_TMF_SUPPRESS_ABTS);
2442
2443         if (!cancel_rc && !reset_rc)
2444                 rc = ibmvfc_wait_for_ops(vhost, sdev, ibmvfc_match_lun);
2445
2446         if (block_rc == FAST_IO_FAIL && rc != FAILED)
2447                 rc = FAST_IO_FAIL;
2448
2449         LEAVE;
2450         return rc;
2451 }
2452
2453 /**
2454  * ibmvfc_dev_cancel_all_noreset - Device iterated cancel all function
2455  * @sdev:       scsi device struct
2456  * @data:       return code
2457  *
2458  **/
2459 static void ibmvfc_dev_cancel_all_noreset(struct scsi_device *sdev, void *data)
2460 {
2461         unsigned long *rc = data;
2462         *rc |= ibmvfc_cancel_all(sdev, IBMVFC_TMF_SUPPRESS_ABTS);
2463 }
2464
2465 /**
2466  * ibmvfc_dev_cancel_all_reset - Device iterated cancel all function
2467  * @sdev:       scsi device struct
2468  * @data:       return code
2469  *
2470  **/
2471 static void ibmvfc_dev_cancel_all_reset(struct scsi_device *sdev, void *data)
2472 {
2473         unsigned long *rc = data;
2474         *rc |= ibmvfc_cancel_all(sdev, IBMVFC_TMF_TGT_RESET);
2475 }
2476
2477 /**
2478  * ibmvfc_eh_target_reset_handler - Reset the target
2479  * @cmd:        scsi command struct
2480  *
2481  * Returns:
2482  *      SUCCESS / FAST_IO_FAIL / FAILED
2483  **/
2484 static int ibmvfc_eh_target_reset_handler(struct scsi_cmnd *cmd)
2485 {
2486         struct scsi_device *sdev = cmd->device;
2487         struct ibmvfc_host *vhost = shost_priv(sdev->host);
2488         struct scsi_target *starget = scsi_target(sdev);
2489         int block_rc;
2490         int reset_rc = 0;
2491         int rc = FAILED;
2492         unsigned long cancel_rc = 0;
2493
2494         ENTER;
2495         block_rc = fc_block_scsi_eh(cmd);
2496         ibmvfc_wait_while_resetting(vhost);
2497         if (block_rc != FAST_IO_FAIL) {
2498                 starget_for_each_device(starget, &cancel_rc, ibmvfc_dev_cancel_all_reset);
2499                 reset_rc = ibmvfc_reset_device(sdev, IBMVFC_TARGET_RESET, "target");
2500         } else
2501                 starget_for_each_device(starget, &cancel_rc, ibmvfc_dev_cancel_all_noreset);
2502
2503         if (!cancel_rc && !reset_rc)
2504                 rc = ibmvfc_wait_for_ops(vhost, starget, ibmvfc_match_target);
2505
2506         if (block_rc == FAST_IO_FAIL && rc != FAILED)
2507                 rc = FAST_IO_FAIL;
2508
2509         LEAVE;
2510         return rc;
2511 }
2512
2513 /**
2514  * ibmvfc_eh_host_reset_handler - Reset the connection to the server
2515  * @cmd:        struct scsi_cmnd having problems
2516  *
2517  **/
2518 static int ibmvfc_eh_host_reset_handler(struct scsi_cmnd *cmd)
2519 {
2520         int rc, block_rc;
2521         struct ibmvfc_host *vhost = shost_priv(cmd->device->host);
2522
2523         block_rc = fc_block_scsi_eh(cmd);
2524         dev_err(vhost->dev, "Resetting connection due to error recovery\n");
2525         rc = ibmvfc_issue_fc_host_lip(vhost->host);
2526
2527         if (block_rc == FAST_IO_FAIL)
2528                 return FAST_IO_FAIL;
2529
2530         return rc ? FAILED : SUCCESS;
2531 }
2532
2533 /**
2534  * ibmvfc_terminate_rport_io - Terminate all pending I/O to the rport.
2535  * @rport:              rport struct
2536  *
2537  * Return value:
2538  *      none
2539  **/
2540 static void ibmvfc_terminate_rport_io(struct fc_rport *rport)
2541 {
2542         struct Scsi_Host *shost = rport_to_shost(rport);
2543         struct ibmvfc_host *vhost = shost_priv(shost);
2544         struct fc_rport *dev_rport;
2545         struct scsi_device *sdev;
2546         unsigned long rc;
2547
2548         ENTER;
2549         shost_for_each_device(sdev, shost) {
2550                 dev_rport = starget_to_rport(scsi_target(sdev));
2551                 if (dev_rport != rport)
2552                         continue;
2553                 ibmvfc_cancel_all(sdev, IBMVFC_TMF_SUPPRESS_ABTS);
2554         }
2555
2556         rc = ibmvfc_wait_for_ops(vhost, rport, ibmvfc_match_rport);
2557
2558         if (rc == FAILED)
2559                 ibmvfc_issue_fc_host_lip(shost);
2560         LEAVE;
2561 }
2562
2563 static const struct ibmvfc_async_desc ae_desc [] = {
2564         { "PLOGI",      IBMVFC_AE_ELS_PLOGI,    IBMVFC_DEFAULT_LOG_LEVEL + 1 },
2565         { "LOGO",       IBMVFC_AE_ELS_LOGO,     IBMVFC_DEFAULT_LOG_LEVEL + 1 },
2566         { "PRLO",       IBMVFC_AE_ELS_PRLO,     IBMVFC_DEFAULT_LOG_LEVEL + 1 },
2567         { "N-Port SCN", IBMVFC_AE_SCN_NPORT,    IBMVFC_DEFAULT_LOG_LEVEL + 1 },
2568         { "Group SCN",  IBMVFC_AE_SCN_GROUP,    IBMVFC_DEFAULT_LOG_LEVEL + 1 },
2569         { "Domain SCN", IBMVFC_AE_SCN_DOMAIN,   IBMVFC_DEFAULT_LOG_LEVEL },
2570         { "Fabric SCN", IBMVFC_AE_SCN_FABRIC,   IBMVFC_DEFAULT_LOG_LEVEL },
2571         { "Link Up",    IBMVFC_AE_LINK_UP,      IBMVFC_DEFAULT_LOG_LEVEL },
2572         { "Link Down",  IBMVFC_AE_LINK_DOWN,    IBMVFC_DEFAULT_LOG_LEVEL },
2573         { "Link Dead",  IBMVFC_AE_LINK_DEAD,    IBMVFC_DEFAULT_LOG_LEVEL },
2574         { "Halt",       IBMVFC_AE_HALT,         IBMVFC_DEFAULT_LOG_LEVEL },
2575         { "Resume",     IBMVFC_AE_RESUME,       IBMVFC_DEFAULT_LOG_LEVEL },
2576         { "Adapter Failed", IBMVFC_AE_ADAPTER_FAILED, IBMVFC_DEFAULT_LOG_LEVEL },
2577 };
2578
2579 static const struct ibmvfc_async_desc unknown_ae = {
2580         "Unknown async", 0, IBMVFC_DEFAULT_LOG_LEVEL
2581 };
2582
2583 /**
2584  * ibmvfc_get_ae_desc - Get text description for async event
2585  * @ae: async event
2586  *
2587  **/
2588 static const struct ibmvfc_async_desc *ibmvfc_get_ae_desc(u64 ae)
2589 {
2590         int i;
2591
2592         for (i = 0; i < ARRAY_SIZE(ae_desc); i++)
2593                 if (ae_desc[i].ae == ae)
2594                         return &ae_desc[i];
2595
2596         return &unknown_ae;
2597 }
2598
2599 static const struct {
2600         enum ibmvfc_ae_link_state state;
2601         const char *desc;
2602 } link_desc [] = {
2603         { IBMVFC_AE_LS_LINK_UP,         " link up" },
2604         { IBMVFC_AE_LS_LINK_BOUNCED,    " link bounced" },
2605         { IBMVFC_AE_LS_LINK_DOWN,       " link down" },
2606         { IBMVFC_AE_LS_LINK_DEAD,       " link dead" },
2607 };
2608
2609 /**
2610  * ibmvfc_get_link_state - Get text description for link state
2611  * @state:      link state
2612  *
2613  **/
2614 static const char *ibmvfc_get_link_state(enum ibmvfc_ae_link_state state)
2615 {
2616         int i;
2617
2618         for (i = 0; i < ARRAY_SIZE(link_desc); i++)
2619                 if (link_desc[i].state == state)
2620                         return link_desc[i].desc;
2621
2622         return "";
2623 }
2624
2625 /**
2626  * ibmvfc_handle_async - Handle an async event from the adapter
2627  * @crq:        crq to process
2628  * @vhost:      ibmvfc host struct
2629  *
2630  **/
2631 static void ibmvfc_handle_async(struct ibmvfc_async_crq *crq,
2632                                 struct ibmvfc_host *vhost)
2633 {
2634         const struct ibmvfc_async_desc *desc = ibmvfc_get_ae_desc(be64_to_cpu(crq->event));
2635         struct ibmvfc_target *tgt;
2636
2637         ibmvfc_log(vhost, desc->log_level, "%s event received. scsi_id: %llx, wwpn: %llx,"
2638                    " node_name: %llx%s\n", desc->desc, crq->scsi_id, crq->wwpn, crq->node_name,
2639                    ibmvfc_get_link_state(crq->link_state));
2640
2641         switch (be64_to_cpu(crq->event)) {
2642         case IBMVFC_AE_RESUME:
2643                 switch (crq->link_state) {
2644                 case IBMVFC_AE_LS_LINK_DOWN:
2645                         ibmvfc_link_down(vhost, IBMVFC_LINK_DOWN);
2646                         break;
2647                 case IBMVFC_AE_LS_LINK_DEAD:
2648                         ibmvfc_link_down(vhost, IBMVFC_LINK_DEAD);
2649                         break;
2650                 case IBMVFC_AE_LS_LINK_UP:
2651                 case IBMVFC_AE_LS_LINK_BOUNCED:
2652                 default:
2653                         vhost->events_to_log |= IBMVFC_AE_LINKUP;
2654                         vhost->delay_init = 1;
2655                         __ibmvfc_reset_host(vhost);
2656                         break;
2657                 };
2658
2659                 break;
2660         case IBMVFC_AE_LINK_UP:
2661                 vhost->events_to_log |= IBMVFC_AE_LINKUP;
2662                 vhost->delay_init = 1;
2663                 __ibmvfc_reset_host(vhost);
2664                 break;
2665         case IBMVFC_AE_SCN_FABRIC:
2666         case IBMVFC_AE_SCN_DOMAIN:
2667                 vhost->events_to_log |= IBMVFC_AE_RSCN;
2668                 if (vhost->state < IBMVFC_HALTED) {
2669                         vhost->delay_init = 1;
2670                         __ibmvfc_reset_host(vhost);
2671                 }
2672                 break;
2673         case IBMVFC_AE_SCN_NPORT:
2674         case IBMVFC_AE_SCN_GROUP:
2675                 vhost->events_to_log |= IBMVFC_AE_RSCN;
2676                 ibmvfc_reinit_host(vhost);
2677                 break;
2678         case IBMVFC_AE_ELS_LOGO:
2679         case IBMVFC_AE_ELS_PRLO:
2680         case IBMVFC_AE_ELS_PLOGI:
2681                 list_for_each_entry(tgt, &vhost->targets, queue) {
2682                         if (!crq->scsi_id && !crq->wwpn && !crq->node_name)
2683                                 break;
2684                         if (crq->scsi_id && cpu_to_be64(tgt->scsi_id) != crq->scsi_id)
2685                                 continue;
2686                         if (crq->wwpn && cpu_to_be64(tgt->ids.port_name) != crq->wwpn)
2687                                 continue;
2688                         if (crq->node_name && cpu_to_be64(tgt->ids.node_name) != crq->node_name)
2689                                 continue;
2690                         if (tgt->need_login && be64_to_cpu(crq->event) == IBMVFC_AE_ELS_LOGO)
2691                                 tgt->logo_rcvd = 1;
2692                         if (!tgt->need_login || be64_to_cpu(crq->event) == IBMVFC_AE_ELS_PLOGI) {
2693                                 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DEL_RPORT);
2694                                 ibmvfc_reinit_host(vhost);
2695                         }
2696                 }
2697                 break;
2698         case IBMVFC_AE_LINK_DOWN:
2699         case IBMVFC_AE_ADAPTER_FAILED:
2700                 ibmvfc_link_down(vhost, IBMVFC_LINK_DOWN);
2701                 break;
2702         case IBMVFC_AE_LINK_DEAD:
2703                 ibmvfc_link_down(vhost, IBMVFC_LINK_DEAD);
2704                 break;
2705         case IBMVFC_AE_HALT:
2706                 ibmvfc_link_down(vhost, IBMVFC_HALTED);
2707                 break;
2708         default:
2709                 dev_err(vhost->dev, "Unknown async event received: %lld\n", crq->event);
2710                 break;
2711         };
2712 }
2713
2714 /**
2715  * ibmvfc_handle_crq - Handles and frees received events in the CRQ
2716  * @crq:        Command/Response queue
2717  * @vhost:      ibmvfc host struct
2718  *
2719  **/
2720 static void ibmvfc_handle_crq(struct ibmvfc_crq *crq, struct ibmvfc_host *vhost)
2721 {
2722         long rc;
2723         struct ibmvfc_event *evt = (struct ibmvfc_event *)be64_to_cpu(crq->ioba);
2724
2725         switch (crq->valid) {
2726         case IBMVFC_CRQ_INIT_RSP:
2727                 switch (crq->format) {
2728                 case IBMVFC_CRQ_INIT:
2729                         dev_info(vhost->dev, "Partner initialized\n");
2730                         /* Send back a response */
2731                         rc = ibmvfc_send_crq_init_complete(vhost);
2732                         if (rc == 0)
2733                                 ibmvfc_init_host(vhost);
2734                         else
2735                                 dev_err(vhost->dev, "Unable to send init rsp. rc=%ld\n", rc);
2736                         break;
2737                 case IBMVFC_CRQ_INIT_COMPLETE:
2738                         dev_info(vhost->dev, "Partner initialization complete\n");
2739                         ibmvfc_init_host(vhost);
2740                         break;
2741                 default:
2742                         dev_err(vhost->dev, "Unknown crq message type: %d\n", crq->format);
2743                 }
2744                 return;
2745         case IBMVFC_CRQ_XPORT_EVENT:
2746                 vhost->state = IBMVFC_NO_CRQ;
2747                 vhost->logged_in = 0;
2748                 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_NONE);
2749                 if (crq->format == IBMVFC_PARTITION_MIGRATED) {
2750                         /* We need to re-setup the interpartition connection */
2751                         dev_info(vhost->dev, "Re-enabling adapter\n");
2752                         vhost->client_migrated = 1;
2753                         ibmvfc_purge_requests(vhost, DID_REQUEUE);
2754                         ibmvfc_link_down(vhost, IBMVFC_LINK_DOWN);
2755                         ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_REENABLE);
2756                 } else {
2757                         dev_err(vhost->dev, "Virtual adapter failed (rc=%d)\n", crq->format);
2758                         ibmvfc_purge_requests(vhost, DID_ERROR);
2759                         ibmvfc_link_down(vhost, IBMVFC_LINK_DOWN);
2760                         ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_RESET);
2761                 }
2762                 return;
2763         case IBMVFC_CRQ_CMD_RSP:
2764                 break;
2765         default:
2766                 dev_err(vhost->dev, "Got an invalid message type 0x%02x\n", crq->valid);
2767                 return;
2768         }
2769
2770         if (crq->format == IBMVFC_ASYNC_EVENT)
2771                 return;
2772
2773         /* The only kind of payload CRQs we should get are responses to
2774          * things we send. Make sure this response is to something we
2775          * actually sent
2776          */
2777         if (unlikely(!ibmvfc_valid_event(&vhost->pool, evt))) {
2778                 dev_err(vhost->dev, "Returned correlation_token 0x%08llx is invalid!\n",
2779                         crq->ioba);
2780                 return;
2781         }
2782
2783         if (unlikely(atomic_read(&evt->free))) {
2784                 dev_err(vhost->dev, "Received duplicate correlation_token 0x%08llx!\n",
2785                         crq->ioba);
2786                 return;
2787         }
2788
2789         del_timer(&evt->timer);
2790         list_del(&evt->queue);
2791         ibmvfc_trc_end(evt);
2792         evt->done(evt);
2793 }
2794
2795 /**
2796  * ibmvfc_scan_finished - Check if the device scan is done.
2797  * @shost:      scsi host struct
2798  * @time:       current elapsed time
2799  *
2800  * Returns:
2801  *      0 if scan is not done / 1 if scan is done
2802  **/
2803 static int ibmvfc_scan_finished(struct Scsi_Host *shost, unsigned long time)
2804 {
2805         unsigned long flags;
2806         struct ibmvfc_host *vhost = shost_priv(shost);
2807         int done = 0;
2808
2809         spin_lock_irqsave(shost->host_lock, flags);
2810         if (time >= (init_timeout * HZ)) {
2811                 dev_info(vhost->dev, "Scan taking longer than %d seconds, "
2812                          "continuing initialization\n", init_timeout);
2813                 done = 1;
2814         }
2815
2816         if (vhost->scan_complete)
2817                 done = 1;
2818         spin_unlock_irqrestore(shost->host_lock, flags);
2819         return done;
2820 }
2821
2822 /**
2823  * ibmvfc_slave_alloc - Setup the device's task set value
2824  * @sdev:       struct scsi_device device to configure
2825  *
2826  * Set the device's task set value so that error handling works as
2827  * expected.
2828  *
2829  * Returns:
2830  *      0 on success / -ENXIO if device does not exist
2831  **/
2832 static int ibmvfc_slave_alloc(struct scsi_device *sdev)
2833 {
2834         struct Scsi_Host *shost = sdev->host;
2835         struct fc_rport *rport = starget_to_rport(scsi_target(sdev));
2836         struct ibmvfc_host *vhost = shost_priv(shost);
2837         unsigned long flags = 0;
2838
2839         if (!rport || fc_remote_port_chkready(rport))
2840                 return -ENXIO;
2841
2842         spin_lock_irqsave(shost->host_lock, flags);
2843         sdev->hostdata = (void *)(unsigned long)vhost->task_set++;
2844         spin_unlock_irqrestore(shost->host_lock, flags);
2845         return 0;
2846 }
2847
2848 /**
2849  * ibmvfc_target_alloc - Setup the target's task set value
2850  * @starget:    struct scsi_target
2851  *
2852  * Set the target's task set value so that error handling works as
2853  * expected.
2854  *
2855  * Returns:
2856  *      0 on success / -ENXIO if device does not exist
2857  **/
2858 static int ibmvfc_target_alloc(struct scsi_target *starget)
2859 {
2860         struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
2861         struct ibmvfc_host *vhost = shost_priv(shost);
2862         unsigned long flags = 0;
2863
2864         spin_lock_irqsave(shost->host_lock, flags);
2865         starget->hostdata = (void *)(unsigned long)vhost->task_set++;
2866         spin_unlock_irqrestore(shost->host_lock, flags);
2867         return 0;
2868 }
2869
2870 /**
2871  * ibmvfc_slave_configure - Configure the device
2872  * @sdev:       struct scsi_device device to configure
2873  *
2874  * Enable allow_restart for a device if it is a disk. Adjust the
2875  * queue_depth here also.
2876  *
2877  * Returns:
2878  *      0
2879  **/
2880 static int ibmvfc_slave_configure(struct scsi_device *sdev)
2881 {
2882         struct Scsi_Host *shost = sdev->host;
2883         unsigned long flags = 0;
2884
2885         spin_lock_irqsave(shost->host_lock, flags);
2886         if (sdev->type == TYPE_DISK)
2887                 sdev->allow_restart = 1;
2888         spin_unlock_irqrestore(shost->host_lock, flags);
2889         return 0;
2890 }
2891
2892 /**
2893  * ibmvfc_change_queue_depth - Change the device's queue depth
2894  * @sdev:       scsi device struct
2895  * @qdepth:     depth to set
2896  * @reason:     calling context
2897  *
2898  * Return value:
2899  *      actual depth set
2900  **/
2901 static int ibmvfc_change_queue_depth(struct scsi_device *sdev, int qdepth)
2902 {
2903         if (qdepth > IBMVFC_MAX_CMDS_PER_LUN)
2904                 qdepth = IBMVFC_MAX_CMDS_PER_LUN;
2905
2906         return scsi_change_queue_depth(sdev, qdepth);
2907 }
2908
2909 static ssize_t ibmvfc_show_host_partition_name(struct device *dev,
2910                                                  struct device_attribute *attr, char *buf)
2911 {
2912         struct Scsi_Host *shost = class_to_shost(dev);
2913         struct ibmvfc_host *vhost = shost_priv(shost);
2914
2915         return snprintf(buf, PAGE_SIZE, "%s\n",
2916                         vhost->login_buf->resp.partition_name);
2917 }
2918
2919 static ssize_t ibmvfc_show_host_device_name(struct device *dev,
2920                                             struct device_attribute *attr, char *buf)
2921 {
2922         struct Scsi_Host *shost = class_to_shost(dev);
2923         struct ibmvfc_host *vhost = shost_priv(shost);
2924
2925         return snprintf(buf, PAGE_SIZE, "%s\n",
2926                         vhost->login_buf->resp.device_name);
2927 }
2928
2929 static ssize_t ibmvfc_show_host_loc_code(struct device *dev,
2930                                          struct device_attribute *attr, char *buf)
2931 {
2932         struct Scsi_Host *shost = class_to_shost(dev);
2933         struct ibmvfc_host *vhost = shost_priv(shost);
2934
2935         return snprintf(buf, PAGE_SIZE, "%s\n",
2936                         vhost->login_buf->resp.port_loc_code);
2937 }
2938
2939 static ssize_t ibmvfc_show_host_drc_name(struct device *dev,
2940                                          struct device_attribute *attr, char *buf)
2941 {
2942         struct Scsi_Host *shost = class_to_shost(dev);
2943         struct ibmvfc_host *vhost = shost_priv(shost);
2944
2945         return snprintf(buf, PAGE_SIZE, "%s\n",
2946                         vhost->login_buf->resp.drc_name);
2947 }
2948
2949 static ssize_t ibmvfc_show_host_npiv_version(struct device *dev,
2950                                              struct device_attribute *attr, char *buf)
2951 {
2952         struct Scsi_Host *shost = class_to_shost(dev);
2953         struct ibmvfc_host *vhost = shost_priv(shost);
2954         return snprintf(buf, PAGE_SIZE, "%d\n", vhost->login_buf->resp.version);
2955 }
2956
2957 static ssize_t ibmvfc_show_host_capabilities(struct device *dev,
2958                                              struct device_attribute *attr, char *buf)
2959 {
2960         struct Scsi_Host *shost = class_to_shost(dev);
2961         struct ibmvfc_host *vhost = shost_priv(shost);
2962         return snprintf(buf, PAGE_SIZE, "%llx\n", vhost->login_buf->resp.capabilities);
2963 }
2964
2965 /**
2966  * ibmvfc_show_log_level - Show the adapter's error logging level
2967  * @dev:        class device struct
2968  * @buf:        buffer
2969  *
2970  * Return value:
2971  *      number of bytes printed to buffer
2972  **/
2973 static ssize_t ibmvfc_show_log_level(struct device *dev,
2974                                      struct device_attribute *attr, char *buf)
2975 {
2976         struct Scsi_Host *shost = class_to_shost(dev);
2977         struct ibmvfc_host *vhost = shost_priv(shost);
2978         unsigned long flags = 0;
2979         int len;
2980
2981         spin_lock_irqsave(shost->host_lock, flags);
2982         len = snprintf(buf, PAGE_SIZE, "%d\n", vhost->log_level);
2983         spin_unlock_irqrestore(shost->host_lock, flags);
2984         return len;
2985 }
2986
2987 /**
2988  * ibmvfc_store_log_level - Change the adapter's error logging level
2989  * @dev:        class device struct
2990  * @buf:        buffer
2991  *
2992  * Return value:
2993  *      number of bytes printed to buffer
2994  **/
2995 static ssize_t ibmvfc_store_log_level(struct device *dev,
2996                                       struct device_attribute *attr,
2997                                       const char *buf, size_t count)
2998 {
2999         struct Scsi_Host *shost = class_to_shost(dev);
3000         struct ibmvfc_host *vhost = shost_priv(shost);
3001         unsigned long flags = 0;
3002
3003         spin_lock_irqsave(shost->host_lock, flags);
3004         vhost->log_level = simple_strtoul(buf, NULL, 10);
3005         spin_unlock_irqrestore(shost->host_lock, flags);
3006         return strlen(buf);
3007 }
3008
3009 static DEVICE_ATTR(partition_name, S_IRUGO, ibmvfc_show_host_partition_name, NULL);
3010 static DEVICE_ATTR(device_name, S_IRUGO, ibmvfc_show_host_device_name, NULL);
3011 static DEVICE_ATTR(port_loc_code, S_IRUGO, ibmvfc_show_host_loc_code, NULL);
3012 static DEVICE_ATTR(drc_name, S_IRUGO, ibmvfc_show_host_drc_name, NULL);
3013 static DEVICE_ATTR(npiv_version, S_IRUGO, ibmvfc_show_host_npiv_version, NULL);
3014 static DEVICE_ATTR(capabilities, S_IRUGO, ibmvfc_show_host_capabilities, NULL);
3015 static DEVICE_ATTR(log_level, S_IRUGO | S_IWUSR,
3016                    ibmvfc_show_log_level, ibmvfc_store_log_level);
3017
3018 #ifdef CONFIG_SCSI_IBMVFC_TRACE
3019 /**
3020  * ibmvfc_read_trace - Dump the adapter trace
3021  * @filp:               open sysfs file
3022  * @kobj:               kobject struct
3023  * @bin_attr:   bin_attribute struct
3024  * @buf:                buffer
3025  * @off:                offset
3026  * @count:              buffer size
3027  *
3028  * Return value:
3029  *      number of bytes printed to buffer
3030  **/
3031 static ssize_t ibmvfc_read_trace(struct file *filp, struct kobject *kobj,
3032                                  struct bin_attribute *bin_attr,
3033                                  char *buf, loff_t off, size_t count)
3034 {
3035         struct device *dev = container_of(kobj, struct device, kobj);
3036         struct Scsi_Host *shost = class_to_shost(dev);
3037         struct ibmvfc_host *vhost = shost_priv(shost);
3038         unsigned long flags = 0;
3039         int size = IBMVFC_TRACE_SIZE;
3040         char *src = (char *)vhost->trace;
3041
3042         if (off > size)
3043                 return 0;
3044         if (off + count > size) {
3045                 size -= off;
3046                 count = size;
3047         }
3048
3049         spin_lock_irqsave(shost->host_lock, flags);
3050         memcpy(buf, &src[off], count);
3051         spin_unlock_irqrestore(shost->host_lock, flags);
3052         return count;
3053 }
3054
3055 static struct bin_attribute ibmvfc_trace_attr = {
3056         .attr = {
3057                 .name = "trace",
3058                 .mode = S_IRUGO,
3059         },
3060         .size = 0,
3061         .read = ibmvfc_read_trace,
3062 };
3063 #endif
3064
3065 static struct device_attribute *ibmvfc_attrs[] = {
3066         &dev_attr_partition_name,
3067         &dev_attr_device_name,
3068         &dev_attr_port_loc_code,
3069         &dev_attr_drc_name,
3070         &dev_attr_npiv_version,
3071         &dev_attr_capabilities,
3072         &dev_attr_log_level,
3073         NULL
3074 };
3075
3076 static struct scsi_host_template driver_template = {
3077         .module = THIS_MODULE,
3078         .name = "IBM POWER Virtual FC Adapter",
3079         .proc_name = IBMVFC_NAME,
3080         .queuecommand = ibmvfc_queuecommand,
3081         .eh_abort_handler = ibmvfc_eh_abort_handler,
3082         .eh_device_reset_handler = ibmvfc_eh_device_reset_handler,
3083         .eh_target_reset_handler = ibmvfc_eh_target_reset_handler,
3084         .eh_host_reset_handler = ibmvfc_eh_host_reset_handler,
3085         .slave_alloc = ibmvfc_slave_alloc,
3086         .slave_configure = ibmvfc_slave_configure,
3087         .target_alloc = ibmvfc_target_alloc,
3088         .scan_finished = ibmvfc_scan_finished,
3089         .change_queue_depth = ibmvfc_change_queue_depth,
3090         .cmd_per_lun = 16,
3091         .can_queue = IBMVFC_MAX_REQUESTS_DEFAULT,
3092         .this_id = -1,
3093         .sg_tablesize = SG_ALL,
3094         .max_sectors = IBMVFC_MAX_SECTORS,
3095         .use_clustering = ENABLE_CLUSTERING,
3096         .shost_attrs = ibmvfc_attrs,
3097         .track_queue_depth = 1,
3098 };
3099
3100 /**
3101  * ibmvfc_next_async_crq - Returns the next entry in async queue
3102  * @vhost:      ibmvfc host struct
3103  *
3104  * Returns:
3105  *      Pointer to next entry in queue / NULL if empty
3106  **/
3107 static struct ibmvfc_async_crq *ibmvfc_next_async_crq(struct ibmvfc_host *vhost)
3108 {
3109         struct ibmvfc_async_crq_queue *async_crq = &vhost->async_crq;
3110         struct ibmvfc_async_crq *crq;
3111
3112         crq = &async_crq->msgs[async_crq->cur];
3113         if (crq->valid & 0x80) {
3114                 if (++async_crq->cur == async_crq->size)
3115                         async_crq->cur = 0;
3116                 rmb();
3117         } else
3118                 crq = NULL;
3119
3120         return crq;
3121 }
3122
3123 /**
3124  * ibmvfc_next_crq - Returns the next entry in message queue
3125  * @vhost:      ibmvfc host struct
3126  *
3127  * Returns:
3128  *      Pointer to next entry in queue / NULL if empty
3129  **/
3130 static struct ibmvfc_crq *ibmvfc_next_crq(struct ibmvfc_host *vhost)
3131 {
3132         struct ibmvfc_crq_queue *queue = &vhost->crq;
3133         struct ibmvfc_crq *crq;
3134
3135         crq = &queue->msgs[queue->cur];
3136         if (crq->valid & 0x80) {
3137                 if (++queue->cur == queue->size)
3138                         queue->cur = 0;
3139                 rmb();
3140         } else
3141                 crq = NULL;
3142
3143         return crq;
3144 }
3145
3146 /**
3147  * ibmvfc_interrupt - Interrupt handler
3148  * @irq:                number of irq to handle, not used
3149  * @dev_instance: ibmvfc_host that received interrupt
3150  *
3151  * Returns:
3152  *      IRQ_HANDLED
3153  **/
3154 static irqreturn_t ibmvfc_interrupt(int irq, void *dev_instance)
3155 {
3156         struct ibmvfc_host *vhost = (struct ibmvfc_host *)dev_instance;
3157         unsigned long flags;
3158
3159         spin_lock_irqsave(vhost->host->host_lock, flags);
3160         vio_disable_interrupts(to_vio_dev(vhost->dev));
3161         tasklet_schedule(&vhost->tasklet);
3162         spin_unlock_irqrestore(vhost->host->host_lock, flags);
3163         return IRQ_HANDLED;
3164 }
3165
3166 /**
3167  * ibmvfc_tasklet - Interrupt handler tasklet
3168  * @data:               ibmvfc host struct
3169  *
3170  * Returns:
3171  *      Nothing
3172  **/
3173 static void ibmvfc_tasklet(void *data)
3174 {
3175         struct ibmvfc_host *vhost = data;
3176         struct vio_dev *vdev = to_vio_dev(vhost->dev);
3177         struct ibmvfc_crq *crq;
3178         struct ibmvfc_async_crq *async;
3179         unsigned long flags;
3180         int done = 0;
3181
3182         spin_lock_irqsave(vhost->host->host_lock, flags);
3183         while (!done) {
3184                 /* Pull all the valid messages off the async CRQ */
3185                 while ((async = ibmvfc_next_async_crq(vhost)) != NULL) {
3186                         ibmvfc_handle_async(async, vhost);
3187                         async->valid = 0;
3188                         wmb();
3189                 }
3190
3191                 /* Pull all the valid messages off the CRQ */
3192                 while ((crq = ibmvfc_next_crq(vhost)) != NULL) {
3193                         ibmvfc_handle_crq(crq, vhost);
3194                         crq->valid = 0;
3195                         wmb();
3196                 }
3197
3198                 vio_enable_interrupts(vdev);
3199                 if ((async = ibmvfc_next_async_crq(vhost)) != NULL) {
3200                         vio_disable_interrupts(vdev);
3201                         ibmvfc_handle_async(async, vhost);
3202                         async->valid = 0;
3203                         wmb();
3204                 } else if ((crq = ibmvfc_next_crq(vhost)) != NULL) {
3205                         vio_disable_interrupts(vdev);
3206                         ibmvfc_handle_crq(crq, vhost);
3207                         crq->valid = 0;
3208                         wmb();
3209                 } else
3210                         done = 1;
3211         }
3212
3213         spin_unlock_irqrestore(vhost->host->host_lock, flags);
3214 }
3215
3216 /**
3217  * ibmvfc_init_tgt - Set the next init job step for the target
3218  * @tgt:                ibmvfc target struct
3219  * @job_step:   job step to perform
3220  *
3221  **/
3222 static void ibmvfc_init_tgt(struct ibmvfc_target *tgt,
3223                             void (*job_step) (struct ibmvfc_target *))
3224 {
3225         ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_INIT);
3226         tgt->job_step = job_step;
3227         wake_up(&tgt->vhost->work_wait_q);
3228 }
3229
3230 /**
3231  * ibmvfc_retry_tgt_init - Attempt to retry a step in target initialization
3232  * @tgt:                ibmvfc target struct
3233  * @job_step:   initialization job step
3234  *
3235  * Returns: 1 if step will be retried / 0 if not
3236  *
3237  **/
3238 static int ibmvfc_retry_tgt_init(struct ibmvfc_target *tgt,
3239                                   void (*job_step) (struct ibmvfc_target *))
3240 {
3241         if (++tgt->init_retries > IBMVFC_MAX_TGT_INIT_RETRIES) {
3242                 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DEL_RPORT);
3243                 wake_up(&tgt->vhost->work_wait_q);
3244                 return 0;
3245         } else
3246                 ibmvfc_init_tgt(tgt, job_step);
3247         return 1;
3248 }
3249
3250 /* Defined in FC-LS */
3251 static const struct {
3252         int code;
3253         int retry;
3254         int logged_in;
3255 } prli_rsp [] = {
3256         { 0, 1, 0 },
3257         { 1, 0, 1 },
3258         { 2, 1, 0 },
3259         { 3, 1, 0 },
3260         { 4, 0, 0 },
3261         { 5, 0, 0 },
3262         { 6, 0, 1 },
3263         { 7, 0, 0 },
3264         { 8, 1, 0 },
3265 };
3266
3267 /**
3268  * ibmvfc_get_prli_rsp - Find PRLI response index
3269  * @flags:      PRLI response flags
3270  *
3271  **/
3272 static int ibmvfc_get_prli_rsp(u16 flags)
3273 {
3274         int i;
3275         int code = (flags & 0x0f00) >> 8;
3276
3277         for (i = 0; i < ARRAY_SIZE(prli_rsp); i++)
3278                 if (prli_rsp[i].code == code)
3279                         return i;
3280
3281         return 0;
3282 }
3283
3284 /**
3285  * ibmvfc_tgt_prli_done - Completion handler for Process Login
3286  * @evt:        ibmvfc event struct
3287  *
3288  **/
3289 static void ibmvfc_tgt_prli_done(struct ibmvfc_event *evt)
3290 {
3291         struct ibmvfc_target *tgt = evt->tgt;
3292         struct ibmvfc_host *vhost = evt->vhost;
3293         struct ibmvfc_process_login *rsp = &evt->xfer_iu->prli;
3294         struct ibmvfc_prli_svc_parms *parms = &rsp->parms;
3295         u32 status = be16_to_cpu(rsp->common.status);
3296         int index, level = IBMVFC_DEFAULT_LOG_LEVEL;
3297
3298         vhost->discovery_threads--;
3299         ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_NONE);
3300         switch (status) {
3301         case IBMVFC_MAD_SUCCESS:
3302                 tgt_dbg(tgt, "Process Login succeeded: %X %02X %04X\n",
3303                         parms->type, parms->flags, parms->service_parms);
3304
3305                 if (parms->type == IBMVFC_SCSI_FCP_TYPE) {
3306                         index = ibmvfc_get_prli_rsp(be16_to_cpu(parms->flags));
3307                         if (prli_rsp[index].logged_in) {
3308                                 if (be16_to_cpu(parms->flags) & IBMVFC_PRLI_EST_IMG_PAIR) {
3309                                         tgt->need_login = 0;
3310                                         tgt->ids.roles = 0;
3311                                         if (be32_to_cpu(parms->service_parms) & IBMVFC_PRLI_TARGET_FUNC)
3312                                                 tgt->ids.roles |= FC_PORT_ROLE_FCP_TARGET;
3313                                         if (be32_to_cpu(parms->service_parms) & IBMVFC_PRLI_INITIATOR_FUNC)
3314                                                 tgt->ids.roles |= FC_PORT_ROLE_FCP_INITIATOR;
3315                                         tgt->add_rport = 1;
3316                                 } else
3317                                         ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DEL_RPORT);
3318                         } else if (prli_rsp[index].retry)
3319                                 ibmvfc_retry_tgt_init(tgt, ibmvfc_tgt_send_prli);
3320                         else
3321                                 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DEL_RPORT);
3322                 } else
3323                         ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DEL_RPORT);
3324                 break;
3325         case IBMVFC_MAD_DRIVER_FAILED:
3326                 break;
3327         case IBMVFC_MAD_CRQ_ERROR:
3328                 ibmvfc_retry_tgt_init(tgt, ibmvfc_tgt_send_prli);
3329                 break;
3330         case IBMVFC_MAD_FAILED:
3331         default:
3332                 if ((be16_to_cpu(rsp->status) & IBMVFC_VIOS_FAILURE) &&
3333                      be16_to_cpu(rsp->error) == IBMVFC_PLOGI_REQUIRED)
3334                         level += ibmvfc_retry_tgt_init(tgt, ibmvfc_tgt_send_plogi);
3335                 else if (tgt->logo_rcvd)
3336                         level += ibmvfc_retry_tgt_init(tgt, ibmvfc_tgt_send_plogi);
3337                 else if (ibmvfc_retry_cmd(be16_to_cpu(rsp->status), be16_to_cpu(rsp->error)))
3338                         level += ibmvfc_retry_tgt_init(tgt, ibmvfc_tgt_send_prli);
3339                 else
3340                         ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DEL_RPORT);
3341
3342                 tgt_log(tgt, level, "Process Login failed: %s (%x:%x) rc=0x%02X\n",
3343                         ibmvfc_get_cmd_error(be16_to_cpu(rsp->status), be16_to_cpu(rsp->error)),
3344                         rsp->status, rsp->error, status);
3345                 break;
3346         };
3347
3348         kref_put(&tgt->kref, ibmvfc_release_tgt);
3349         ibmvfc_free_event(evt);
3350         wake_up(&vhost->work_wait_q);
3351 }
3352
3353 /**
3354  * ibmvfc_tgt_send_prli - Send a process login
3355  * @tgt:        ibmvfc target struct
3356  *
3357  **/
3358 static void ibmvfc_tgt_send_prli(struct ibmvfc_target *tgt)
3359 {
3360         struct ibmvfc_process_login *prli;
3361         struct ibmvfc_host *vhost = tgt->vhost;
3362         struct ibmvfc_event *evt;
3363
3364         if (vhost->discovery_threads >= disc_threads)
3365                 return;
3366
3367         kref_get(&tgt->kref);
3368         evt = ibmvfc_get_event(vhost);
3369         vhost->discovery_threads++;
3370         ibmvfc_init_event(evt, ibmvfc_tgt_prli_done, IBMVFC_MAD_FORMAT);
3371         evt->tgt = tgt;
3372         prli = &evt->iu.prli;
3373         memset(prli, 0, sizeof(*prli));
3374         prli->common.version = cpu_to_be32(1);
3375         prli->common.opcode = cpu_to_be32(IBMVFC_PROCESS_LOGIN);
3376         prli->common.length = cpu_to_be16(sizeof(*prli));
3377         prli->scsi_id = cpu_to_be64(tgt->scsi_id);
3378
3379         prli->parms.type = IBMVFC_SCSI_FCP_TYPE;
3380         prli->parms.flags = cpu_to_be16(IBMVFC_PRLI_EST_IMG_PAIR);
3381         prli->parms.service_parms = cpu_to_be32(IBMVFC_PRLI_INITIATOR_FUNC);
3382
3383         ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_INIT_WAIT);
3384         if (ibmvfc_send_event(evt, vhost, default_timeout)) {
3385                 vhost->discovery_threads--;
3386                 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_NONE);
3387                 kref_put(&tgt->kref, ibmvfc_release_tgt);
3388         } else
3389                 tgt_dbg(tgt, "Sent process login\n");
3390 }
3391
3392 /**
3393  * ibmvfc_tgt_plogi_done - Completion handler for Port Login
3394  * @evt:        ibmvfc event struct
3395  *
3396  **/
3397 static void ibmvfc_tgt_plogi_done(struct ibmvfc_event *evt)
3398 {
3399         struct ibmvfc_target *tgt = evt->tgt;
3400         struct ibmvfc_host *vhost = evt->vhost;
3401         struct ibmvfc_port_login *rsp = &evt->xfer_iu->plogi;
3402         u32 status = be16_to_cpu(rsp->common.status);
3403         int level = IBMVFC_DEFAULT_LOG_LEVEL;
3404
3405         vhost->discovery_threads--;
3406         ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_NONE);
3407         switch (status) {
3408         case IBMVFC_MAD_SUCCESS:
3409                 tgt_dbg(tgt, "Port Login succeeded\n");
3410                 if (tgt->ids.port_name &&
3411                     tgt->ids.port_name != wwn_to_u64(rsp->service_parms.port_name)) {
3412                         vhost->reinit = 1;
3413                         tgt_dbg(tgt, "Port re-init required\n");
3414                         break;
3415                 }
3416                 tgt->ids.node_name = wwn_to_u64(rsp->service_parms.node_name);
3417                 tgt->ids.port_name = wwn_to_u64(rsp->service_parms.port_name);
3418                 tgt->ids.port_id = tgt->scsi_id;
3419                 memcpy(&tgt->service_parms, &rsp->service_parms,
3420                        sizeof(tgt->service_parms));
3421                 memcpy(&tgt->service_parms_change, &rsp->service_parms_change,
3422                        sizeof(tgt->service_parms_change));
3423                 ibmvfc_init_tgt(tgt, ibmvfc_tgt_send_prli);
3424                 break;
3425         case IBMVFC_MAD_DRIVER_FAILED:
3426                 break;
3427         case IBMVFC_MAD_CRQ_ERROR:
3428                 ibmvfc_retry_tgt_init(tgt, ibmvfc_tgt_send_plogi);
3429                 break;
3430         case IBMVFC_MAD_FAILED:
3431         default:
3432                 if (ibmvfc_retry_cmd(be16_to_cpu(rsp->status), be16_to_cpu(rsp->error)))
3433                         level += ibmvfc_retry_tgt_init(tgt, ibmvfc_tgt_send_plogi);
3434                 else
3435                         ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DEL_RPORT);
3436
3437                 tgt_log(tgt, level, "Port Login failed: %s (%x:%x) %s (%x) %s (%x) rc=0x%02X\n",
3438                         ibmvfc_get_cmd_error(be16_to_cpu(rsp->status), be16_to_cpu(rsp->error)), rsp->status, rsp->error,
3439                         ibmvfc_get_fc_type(be16_to_cpu(rsp->fc_type)), rsp->fc_type,
3440                         ibmvfc_get_ls_explain(be16_to_cpu(rsp->fc_explain)), rsp->fc_explain, status);
3441                 break;
3442         };
3443
3444         kref_put(&tgt->kref, ibmvfc_release_tgt);
3445         ibmvfc_free_event(evt);
3446         wake_up(&vhost->work_wait_q);
3447 }
3448
3449 /**
3450  * ibmvfc_tgt_send_plogi - Send PLOGI to the specified target
3451  * @tgt:        ibmvfc target struct
3452  *
3453  **/
3454 static void ibmvfc_tgt_send_plogi(struct ibmvfc_target *tgt)
3455 {
3456         struct ibmvfc_port_login *plogi;
3457         struct ibmvfc_host *vhost = tgt->vhost;
3458         struct ibmvfc_event *evt;
3459
3460         if (vhost->discovery_threads >= disc_threads)
3461                 return;
3462
3463         kref_get(&tgt->kref);
3464         tgt->logo_rcvd = 0;
3465         evt = ibmvfc_get_event(vhost);
3466         vhost->discovery_threads++;
3467         ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_INIT_WAIT);
3468         ibmvfc_init_event(evt, ibmvfc_tgt_plogi_done, IBMVFC_MAD_FORMAT);
3469         evt->tgt = tgt;
3470         plogi = &evt->iu.plogi;
3471         memset(plogi, 0, sizeof(*plogi));
3472         plogi->common.version = cpu_to_be32(1);
3473         plogi->common.opcode = cpu_to_be32(IBMVFC_PORT_LOGIN);
3474         plogi->common.length = cpu_to_be16(sizeof(*plogi));
3475         plogi->scsi_id = cpu_to_be64(tgt->scsi_id);
3476
3477         if (ibmvfc_send_event(evt, vhost, default_timeout)) {
3478                 vhost->discovery_threads--;
3479                 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_NONE);
3480                 kref_put(&tgt->kref, ibmvfc_release_tgt);
3481         } else
3482                 tgt_dbg(tgt, "Sent port login\n");
3483 }
3484
3485 /**
3486  * ibmvfc_tgt_implicit_logout_done - Completion handler for Implicit Logout MAD
3487  * @evt:        ibmvfc event struct
3488  *
3489  **/
3490 static void ibmvfc_tgt_implicit_logout_done(struct ibmvfc_event *evt)
3491 {
3492         struct ibmvfc_target *tgt = evt->tgt;
3493         struct ibmvfc_host *vhost = evt->vhost;
3494         struct ibmvfc_implicit_logout *rsp = &evt->xfer_iu->implicit_logout;
3495         u32 status = be16_to_cpu(rsp->common.status);
3496
3497         vhost->discovery_threads--;
3498         ibmvfc_free_event(evt);
3499         ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_NONE);
3500
3501         switch (status) {
3502         case IBMVFC_MAD_SUCCESS:
3503                 tgt_dbg(tgt, "Implicit Logout succeeded\n");
3504                 break;
3505         case IBMVFC_MAD_DRIVER_FAILED:
3506                 kref_put(&tgt->kref, ibmvfc_release_tgt);
3507                 wake_up(&vhost->work_wait_q);
3508                 return;
3509         case IBMVFC_MAD_FAILED:
3510         default:
3511                 tgt_err(tgt, "Implicit Logout failed: rc=0x%02X\n", status);
3512                 break;
3513         };
3514
3515         if (vhost->action == IBMVFC_HOST_ACTION_TGT_INIT)
3516                 ibmvfc_init_tgt(tgt, ibmvfc_tgt_send_plogi);
3517         else if (vhost->action == IBMVFC_HOST_ACTION_QUERY_TGTS &&
3518                  tgt->scsi_id != tgt->new_scsi_id)
3519                 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DEL_RPORT);
3520         kref_put(&tgt->kref, ibmvfc_release_tgt);
3521         wake_up(&vhost->work_wait_q);
3522 }
3523
3524 /**
3525  * ibmvfc_tgt_implicit_logout - Initiate an Implicit Logout for specified target
3526  * @tgt:                ibmvfc target struct
3527  *
3528  **/
3529 static void ibmvfc_tgt_implicit_logout(struct ibmvfc_target *tgt)
3530 {
3531         struct ibmvfc_implicit_logout *mad;
3532         struct ibmvfc_host *vhost = tgt->vhost;
3533         struct ibmvfc_event *evt;
3534
3535         if (vhost->discovery_threads >= disc_threads)
3536                 return;
3537
3538         kref_get(&tgt->kref);
3539         evt = ibmvfc_get_event(vhost);
3540         vhost->discovery_threads++;
3541         ibmvfc_init_event(evt, ibmvfc_tgt_implicit_logout_done, IBMVFC_MAD_FORMAT);
3542         evt->tgt = tgt;
3543         mad = &evt->iu.implicit_logout;
3544         memset(mad, 0, sizeof(*mad));
3545         mad->common.version = cpu_to_be32(1);
3546         mad->common.opcode = cpu_to_be32(IBMVFC_IMPLICIT_LOGOUT);
3547         mad->common.length = cpu_to_be16(sizeof(*mad));
3548         mad->old_scsi_id = cpu_to_be64(tgt->scsi_id);
3549
3550         ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_INIT_WAIT);
3551         if (ibmvfc_send_event(evt, vhost, default_timeout)) {
3552                 vhost->discovery_threads--;
3553                 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_NONE);
3554                 kref_put(&tgt->kref, ibmvfc_release_tgt);
3555         } else
3556                 tgt_dbg(tgt, "Sent Implicit Logout\n");
3557 }
3558
3559 /**
3560  * ibmvfc_adisc_needs_plogi - Does device need PLOGI?
3561  * @mad:        ibmvfc passthru mad struct
3562  * @tgt:        ibmvfc target struct
3563  *
3564  * Returns:
3565  *      1 if PLOGI needed / 0 if PLOGI not needed
3566  **/
3567 static int ibmvfc_adisc_needs_plogi(struct ibmvfc_passthru_mad *mad,
3568                                     struct ibmvfc_target *tgt)
3569 {
3570         if (memcmp(&mad->fc_iu.response[2], &tgt->ids.port_name,
3571                    sizeof(tgt->ids.port_name)))
3572                 return 1;
3573         if (memcmp(&mad->fc_iu.response[4], &tgt->ids.node_name,
3574                    sizeof(tgt->ids.node_name)))
3575                 return 1;
3576         if (be32_to_cpu(mad->fc_iu.response[6]) != tgt->scsi_id)
3577                 return 1;
3578         return 0;
3579 }
3580
3581 /**
3582  * ibmvfc_tgt_adisc_done - Completion handler for ADISC
3583  * @evt:        ibmvfc event struct
3584  *
3585  **/
3586 static void ibmvfc_tgt_adisc_done(struct ibmvfc_event *evt)
3587 {
3588         struct ibmvfc_target *tgt = evt->tgt;
3589         struct ibmvfc_host *vhost = evt->vhost;
3590         struct ibmvfc_passthru_mad *mad = &evt->xfer_iu->passthru;
3591         u32 status = be16_to_cpu(mad->common.status);
3592         u8 fc_reason, fc_explain;
3593
3594         vhost->discovery_threads--;
3595         ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_NONE);
3596         del_timer(&tgt->timer);
3597
3598         switch (status) {
3599         case IBMVFC_MAD_SUCCESS:
3600                 tgt_dbg(tgt, "ADISC succeeded\n");
3601                 if (ibmvfc_adisc_needs_plogi(mad, tgt))
3602                         ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DEL_RPORT);
3603                 break;
3604         case IBMVFC_MAD_DRIVER_FAILED:
3605                 break;
3606         case IBMVFC_MAD_FAILED:
3607         default:
3608                 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DEL_RPORT);
3609                 fc_reason = (be32_to_cpu(mad->fc_iu.response[1]) & 0x00ff0000) >> 16;
3610                 fc_explain = (be32_to_cpu(mad->fc_iu.response[1]) & 0x0000ff00) >> 8;
3611                 tgt_info(tgt, "ADISC failed: %s (%x:%x) %s (%x) %s (%x) rc=0x%02X\n",
3612                          ibmvfc_get_cmd_error(be16_to_cpu(mad->iu.status), be16_to_cpu(mad->iu.error)),
3613                          mad->iu.status, mad->iu.error,
3614                          ibmvfc_get_fc_type(fc_reason), fc_reason,
3615                          ibmvfc_get_ls_explain(fc_explain), fc_explain, status);
3616                 break;
3617         };
3618
3619         kref_put(&tgt->kref, ibmvfc_release_tgt);
3620         ibmvfc_free_event(evt);
3621         wake_up(&vhost->work_wait_q);
3622 }
3623
3624 /**
3625  * ibmvfc_init_passthru - Initialize an event struct for FC passthru
3626  * @evt:                ibmvfc event struct
3627  *
3628  **/
3629 static void ibmvfc_init_passthru(struct ibmvfc_event *evt)
3630 {
3631         struct ibmvfc_passthru_mad *mad = &evt->iu.passthru;
3632
3633         memset(mad, 0, sizeof(*mad));
3634         mad->common.version = cpu_to_be32(1);
3635         mad->common.opcode = cpu_to_be32(IBMVFC_PASSTHRU);
3636         mad->common.length = cpu_to_be16(sizeof(*mad) - sizeof(mad->fc_iu) - sizeof(mad->iu));
3637         mad->cmd_ioba.va = cpu_to_be64((u64)be64_to_cpu(evt->crq.ioba) +
3638                 offsetof(struct ibmvfc_passthru_mad, iu));
3639         mad->cmd_ioba.len = cpu_to_be32(sizeof(mad->iu));
3640         mad->iu.cmd_len = cpu_to_be32(sizeof(mad->fc_iu.payload));
3641         mad->iu.rsp_len = cpu_to_be32(sizeof(mad->fc_iu.response));
3642         mad->iu.cmd.va = cpu_to_be64((u64)be64_to_cpu(evt->crq.ioba) +
3643                 offsetof(struct ibmvfc_passthru_mad, fc_iu) +
3644                 offsetof(struct ibmvfc_passthru_fc_iu, payload));
3645         mad->iu.cmd.len = cpu_to_be32(sizeof(mad->fc_iu.payload));
3646         mad->iu.rsp.va = cpu_to_be64((u64)be64_to_cpu(evt->crq.ioba) +
3647                 offsetof(struct ibmvfc_passthru_mad, fc_iu) +
3648                 offsetof(struct ibmvfc_passthru_fc_iu, response));
3649         mad->iu.rsp.len = cpu_to_be32(sizeof(mad->fc_iu.response));
3650 }
3651
3652 /**
3653  * ibmvfc_tgt_adisc_cancel_done - Completion handler when cancelling an ADISC
3654  * @evt:                ibmvfc event struct
3655  *
3656  * Just cleanup this event struct. Everything else is handled by
3657  * the ADISC completion handler. If the ADISC never actually comes
3658  * back, we still have the timer running on the ADISC event struct
3659  * which will fire and cause the CRQ to get reset.
3660  *
3661  **/
3662 static void ibmvfc_tgt_adisc_cancel_done(struct ibmvfc_event *evt)
3663 {
3664         struct ibmvfc_host *vhost = evt->vhost;
3665         struct ibmvfc_target *tgt = evt->tgt;
3666
3667         tgt_dbg(tgt, "ADISC cancel complete\n");
3668         vhost->abort_threads--;
3669         ibmvfc_free_event(evt);
3670         kref_put(&tgt->kref, ibmvfc_release_tgt);
3671         wake_up(&vhost->work_wait_q);
3672 }
3673
3674 /**
3675  * ibmvfc_adisc_timeout - Handle an ADISC timeout
3676  * @tgt:                ibmvfc target struct
3677  *
3678  * If an ADISC times out, send a cancel. If the cancel times
3679  * out, reset the CRQ. When the ADISC comes back as cancelled,
3680  * log back into the target.
3681  **/
3682 static void ibmvfc_adisc_timeout(struct ibmvfc_target *tgt)
3683 {
3684         struct ibmvfc_host *vhost = tgt->vhost;
3685         struct ibmvfc_event *evt;
3686         struct ibmvfc_tmf *tmf;
3687         unsigned long flags;
3688         int rc;
3689
3690         tgt_dbg(tgt, "ADISC timeout\n");
3691         spin_lock_irqsave(vhost->host->host_lock, flags);
3692         if (vhost->abort_threads >= disc_threads ||
3693             tgt->action != IBMVFC_TGT_ACTION_INIT_WAIT ||
3694             vhost->state != IBMVFC_INITIALIZING ||
3695             vhost->action != IBMVFC_HOST_ACTION_QUERY_TGTS) {
3696                 spin_unlock_irqrestore(vhost->host->host_lock, flags);
3697                 return;
3698         }
3699
3700         vhost->abort_threads++;
3701         kref_get(&tgt->kref);
3702         evt = ibmvfc_get_event(vhost);
3703         ibmvfc_init_event(evt, ibmvfc_tgt_adisc_cancel_done, IBMVFC_MAD_FORMAT);
3704
3705         evt->tgt = tgt;
3706         tmf = &evt->iu.tmf;
3707         memset(tmf, 0, sizeof(*tmf));
3708         tmf->common.version = cpu_to_be32(1);
3709         tmf->common.opcode = cpu_to_be32(IBMVFC_TMF_MAD);
3710         tmf->common.length = cpu_to_be16(sizeof(*tmf));
3711         tmf->scsi_id = cpu_to_be64(tgt->scsi_id);
3712         tmf->cancel_key = cpu_to_be32(tgt->cancel_key);
3713
3714         rc = ibmvfc_send_event(evt, vhost, default_timeout);
3715
3716         if (rc) {
3717                 tgt_err(tgt, "Failed to send cancel event for ADISC. rc=%d\n", rc);
3718                 vhost->abort_threads--;
3719                 kref_put(&tgt->kref, ibmvfc_release_tgt);
3720                 __ibmvfc_reset_host(vhost);
3721         } else
3722                 tgt_dbg(tgt, "Attempting to cancel ADISC\n");
3723         spin_unlock_irqrestore(vhost->host->host_lock, flags);
3724 }
3725
3726 /**
3727  * ibmvfc_tgt_adisc - Initiate an ADISC for specified target
3728  * @tgt:                ibmvfc target struct
3729  *
3730  * When sending an ADISC we end up with two timers running. The
3731  * first timer is the timer in the ibmvfc target struct. If this
3732  * fires, we send a cancel to the target. The second timer is the
3733  * timer on the ibmvfc event for the ADISC, which is longer. If that
3734  * fires, it means the ADISC timed out and our attempt to cancel it
3735  * also failed, so we need to reset the CRQ.
3736  **/
3737 static void ibmvfc_tgt_adisc(struct ibmvfc_target *tgt)
3738 {
3739         struct ibmvfc_passthru_mad *mad;
3740         struct ibmvfc_host *vhost = tgt->vhost;
3741         struct ibmvfc_event *evt;
3742
3743         if (vhost->discovery_threads >= disc_threads)
3744                 return;
3745
3746         kref_get(&tgt->kref);
3747         evt = ibmvfc_get_event(vhost);
3748         vhost->discovery_threads++;
3749         ibmvfc_init_event(evt, ibmvfc_tgt_adisc_done, IBMVFC_MAD_FORMAT);
3750         evt->tgt = tgt;
3751
3752         ibmvfc_init_passthru(evt);
3753         mad = &evt->iu.passthru;
3754         mad->iu.flags = cpu_to_be32(IBMVFC_FC_ELS);
3755         mad->iu.scsi_id = cpu_to_be64(tgt->scsi_id);
3756         mad->iu.cancel_key = cpu_to_be32(tgt->cancel_key);
3757
3758         mad->fc_iu.payload[0] = cpu_to_be32(IBMVFC_ADISC);
3759         memcpy(&mad->fc_iu.payload[2], &vhost->login_buf->resp.port_name,
3760                sizeof(vhost->login_buf->resp.port_name));
3761         memcpy(&mad->fc_iu.payload[4], &vhost->login_buf->resp.node_name,
3762                sizeof(vhost->login_buf->resp.node_name));
3763         mad->fc_iu.payload[6] = cpu_to_be32(be64_to_cpu(vhost->login_buf->resp.scsi_id) & 0x00ffffff);
3764
3765         if (timer_pending(&tgt->timer))
3766                 mod_timer(&tgt->timer, jiffies + (IBMVFC_ADISC_TIMEOUT * HZ));
3767         else {
3768                 tgt->timer.data = (unsigned long) tgt;
3769                 tgt->timer.expires = jiffies + (IBMVFC_ADISC_TIMEOUT * HZ);
3770                 tgt->timer.function = (void (*)(unsigned long))ibmvfc_adisc_timeout;
3771                 add_timer(&tgt->timer);
3772         }
3773
3774         ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_INIT_WAIT);
3775         if (ibmvfc_send_event(evt, vhost, IBMVFC_ADISC_PLUS_CANCEL_TIMEOUT)) {
3776                 vhost->discovery_threads--;
3777                 del_timer(&tgt->timer);
3778                 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_NONE);
3779                 kref_put(&tgt->kref, ibmvfc_release_tgt);
3780         } else
3781                 tgt_dbg(tgt, "Sent ADISC\n");
3782 }
3783
3784 /**
3785  * ibmvfc_tgt_query_target_done - Completion handler for Query Target MAD
3786  * @evt:        ibmvfc event struct
3787  *
3788  **/
3789 static void ibmvfc_tgt_query_target_done(struct ibmvfc_event *evt)
3790 {
3791         struct ibmvfc_target *tgt = evt->tgt;
3792         struct ibmvfc_host *vhost = evt->vhost;
3793         struct ibmvfc_query_tgt *rsp = &evt->xfer_iu->query_tgt;
3794         u32 status = be16_to_cpu(rsp->common.status);
3795         int level = IBMVFC_DEFAULT_LOG_LEVEL;
3796
3797         vhost->discovery_threads--;
3798         ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_NONE);
3799         switch (status) {
3800         case IBMVFC_MAD_SUCCESS:
3801                 tgt_dbg(tgt, "Query Target succeeded\n");
3802                 tgt->new_scsi_id = be64_to_cpu(rsp->scsi_id);
3803                 if (be64_to_cpu(rsp->scsi_id) != tgt->scsi_id)
3804                         ibmvfc_init_tgt(tgt, ibmvfc_tgt_implicit_logout);
3805                 else
3806                         ibmvfc_init_tgt(tgt, ibmvfc_tgt_adisc);
3807                 break;
3808         case IBMVFC_MAD_DRIVER_FAILED:
3809                 break;
3810         case IBMVFC_MAD_CRQ_ERROR:
3811                 ibmvfc_retry_tgt_init(tgt, ibmvfc_tgt_query_target);
3812                 break;
3813         case IBMVFC_MAD_FAILED:
3814         default:
3815                 if ((be16_to_cpu(rsp->status) & IBMVFC_FABRIC_MAPPED) == IBMVFC_FABRIC_MAPPED &&
3816                     be16_to_cpu(rsp->error) == IBMVFC_UNABLE_TO_PERFORM_REQ &&
3817                     be16_to_cpu(rsp->fc_explain) == IBMVFC_PORT_NAME_NOT_REG)
3818                         ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DEL_RPORT);
3819                 else if (ibmvfc_retry_cmd(be16_to_cpu(rsp->status), be16_to_cpu(rsp->error)))
3820                         level += ibmvfc_retry_tgt_init(tgt, ibmvfc_tgt_query_target);
3821                 else
3822                         ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DEL_RPORT);
3823
3824                 tgt_log(tgt, level, "Query Target failed: %s (%x:%x) %s (%x) %s (%x) rc=0x%02X\n",
3825                         ibmvfc_get_cmd_error(be16_to_cpu(rsp->status), be16_to_cpu(rsp->error)),
3826                         rsp->status, rsp->error, ibmvfc_get_fc_type(be16_to_cpu(rsp->fc_type)),
3827                         rsp->fc_type, ibmvfc_get_gs_explain(be16_to_cpu(rsp->fc_explain)),
3828                         rsp->fc_explain, status);
3829                 break;
3830         };
3831
3832         kref_put(&tgt->kref, ibmvfc_release_tgt);
3833         ibmvfc_free_event(evt);
3834         wake_up(&vhost->work_wait_q);
3835 }
3836
3837 /**
3838  * ibmvfc_tgt_query_target - Initiate a Query Target for specified target
3839  * @tgt:        ibmvfc target struct
3840  *
3841  **/
3842 static void ibmvfc_tgt_query_target(struct ibmvfc_target *tgt)
3843 {
3844         struct ibmvfc_query_tgt *query_tgt;
3845         struct ibmvfc_host *vhost = tgt->vhost;
3846         struct ibmvfc_event *evt;
3847
3848         if (vhost->discovery_threads >= disc_threads)
3849                 return;
3850
3851         kref_get(&tgt->kref);
3852         evt = ibmvfc_get_event(vhost);
3853         vhost->discovery_threads++;
3854         evt->tgt = tgt;
3855         ibmvfc_init_event(evt, ibmvfc_tgt_query_target_done, IBMVFC_MAD_FORMAT);
3856         query_tgt = &evt->iu.query_tgt;
3857         memset(query_tgt, 0, sizeof(*query_tgt));
3858         query_tgt->common.version = cpu_to_be32(1);
3859         query_tgt->common.opcode = cpu_to_be32(IBMVFC_QUERY_TARGET);
3860         query_tgt->common.length = cpu_to_be16(sizeof(*query_tgt));
3861         query_tgt->wwpn = cpu_to_be64(tgt->ids.port_name);
3862
3863         ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_INIT_WAIT);
3864         if (ibmvfc_send_event(evt, vhost, default_timeout)) {
3865                 vhost->discovery_threads--;
3866                 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_NONE);
3867                 kref_put(&tgt->kref, ibmvfc_release_tgt);
3868         } else
3869                 tgt_dbg(tgt, "Sent Query Target\n");
3870 }
3871
3872 /**
3873  * ibmvfc_alloc_target - Allocate and initialize an ibmvfc target
3874  * @vhost:              ibmvfc host struct
3875  * @scsi_id:    SCSI ID to allocate target for
3876  *
3877  * Returns:
3878  *      0 on success / other on failure
3879  **/
3880 static int ibmvfc_alloc_target(struct ibmvfc_host *vhost, u64 scsi_id)
3881 {
3882         struct ibmvfc_target *tgt;
3883         unsigned long flags;
3884
3885         spin_lock_irqsave(vhost->host->host_lock, flags);
3886         list_for_each_entry(tgt, &vhost->targets, queue) {
3887                 if (tgt->scsi_id == scsi_id) {
3888                         if (tgt->need_login)
3889                                 ibmvfc_init_tgt(tgt, ibmvfc_tgt_implicit_logout);
3890                         goto unlock_out;
3891                 }
3892         }
3893         spin_unlock_irqrestore(vhost->host->host_lock, flags);
3894
3895         tgt = mempool_alloc(vhost->tgt_pool, GFP_NOIO);
3896         if (!tgt) {
3897                 dev_err(vhost->dev, "Target allocation failure for scsi id %08llx\n",
3898                         scsi_id);
3899                 return -ENOMEM;
3900         }
3901
3902         memset(tgt, 0, sizeof(*tgt));
3903         tgt->scsi_id = scsi_id;
3904         tgt->new_scsi_id = scsi_id;
3905         tgt->vhost = vhost;
3906         tgt->need_login = 1;
3907         tgt->cancel_key = vhost->task_set++;
3908         init_timer(&tgt->timer);
3909         kref_init(&tgt->kref);
3910         ibmvfc_init_tgt(tgt, ibmvfc_tgt_implicit_logout);
3911         spin_lock_irqsave(vhost->host->host_lock, flags);
3912         list_add_tail(&tgt->queue, &vhost->targets);
3913
3914 unlock_out:
3915         spin_unlock_irqrestore(vhost->host->host_lock, flags);
3916         return 0;
3917 }
3918
3919 /**
3920  * ibmvfc_alloc_targets - Allocate and initialize ibmvfc targets
3921  * @vhost:              ibmvfc host struct
3922  *
3923  * Returns:
3924  *      0 on success / other on failure
3925  **/
3926 static int ibmvfc_alloc_targets(struct ibmvfc_host *vhost)
3927 {
3928         int i, rc;
3929
3930         for (i = 0, rc = 0; !rc && i < vhost->num_targets; i++)
3931                 rc = ibmvfc_alloc_target(vhost,
3932                                          be32_to_cpu(vhost->disc_buf->scsi_id[i]) &
3933                                          IBMVFC_DISC_TGT_SCSI_ID_MASK);
3934
3935         return rc;
3936 }
3937
3938 /**
3939  * ibmvfc_discover_targets_done - Completion handler for discover targets MAD
3940  * @evt:        ibmvfc event struct
3941  *
3942  **/
3943 static void ibmvfc_discover_targets_done(struct ibmvfc_event *evt)
3944 {
3945         struct ibmvfc_host *vhost = evt->vhost;
3946         struct ibmvfc_discover_targets *rsp = &evt->xfer_iu->discover_targets;
3947         u32 mad_status = be16_to_cpu(rsp->common.status);
3948         int level = IBMVFC_DEFAULT_LOG_LEVEL;
3949
3950         switch (mad_status) {
3951         case IBMVFC_MAD_SUCCESS:
3952                 ibmvfc_dbg(vhost, "Discover Targets succeeded\n");
3953                 vhost->num_targets = be32_to_cpu(rsp->num_written);
3954                 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_ALLOC_TGTS);
3955                 break;
3956         case IBMVFC_MAD_FAILED:
3957                 level += ibmvfc_retry_host_init(vhost);
3958                 ibmvfc_log(vhost, level, "Discover Targets failed: %s (%x:%x)\n",
3959                            ibmvfc_get_cmd_error(be16_to_cpu(rsp->status), be16_to_cpu(rsp->error)),
3960                            rsp->status, rsp->error);
3961                 break;
3962         case IBMVFC_MAD_DRIVER_FAILED:
3963                 break;
3964         default:
3965                 dev_err(vhost->dev, "Invalid Discover Targets response: 0x%x\n", mad_status);
3966                 ibmvfc_link_down(vhost, IBMVFC_LINK_DEAD);
3967                 break;
3968         }
3969
3970         ibmvfc_free_event(evt);
3971         wake_up(&vhost->work_wait_q);
3972 }
3973
3974 /**
3975  * ibmvfc_discover_targets - Send Discover Targets MAD
3976  * @vhost:      ibmvfc host struct
3977  *
3978  **/
3979 static void ibmvfc_discover_targets(struct ibmvfc_host *vhost)
3980 {
3981         struct ibmvfc_discover_targets *mad;
3982         struct ibmvfc_event *evt = ibmvfc_get_event(vhost);
3983
3984         ibmvfc_init_event(evt, ibmvfc_discover_targets_done, IBMVFC_MAD_FORMAT);
3985         mad = &evt->iu.discover_targets;
3986         memset(mad, 0, sizeof(*mad));
3987         mad->common.version = cpu_to_be32(1);
3988         mad->common.opcode = cpu_to_be32(IBMVFC_DISC_TARGETS);
3989         mad->common.length = cpu_to_be16(sizeof(*mad));
3990         mad->bufflen = cpu_to_be32(vhost->disc_buf_sz);
3991         mad->buffer.va = cpu_to_be64(vhost->disc_buf_dma);
3992         mad->buffer.len = cpu_to_be32(vhost->disc_buf_sz);
3993         ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_INIT_WAIT);
3994
3995         if (!ibmvfc_send_event(evt, vhost, default_timeout))
3996                 ibmvfc_dbg(vhost, "Sent discover targets\n");
3997         else
3998                 ibmvfc_link_down(vhost, IBMVFC_LINK_DEAD);
3999 }
4000
4001 /**
4002  * ibmvfc_npiv_login_done - Completion handler for NPIV Login
4003  * @evt:        ibmvfc event struct
4004  *
4005  **/
4006 static void ibmvfc_npiv_login_done(struct ibmvfc_event *evt)
4007 {
4008         struct ibmvfc_host *vhost = evt->vhost;
4009         u32 mad_status = be16_to_cpu(evt->xfer_iu->npiv_login.common.status);
4010         struct ibmvfc_npiv_login_resp *rsp = &vhost->login_buf->resp;
4011         unsigned int npiv_max_sectors;
4012         int level = IBMVFC_DEFAULT_LOG_LEVEL;
4013
4014         switch (mad_status) {
4015         case IBMVFC_MAD_SUCCESS:
4016                 ibmvfc_free_event(evt);
4017                 break;
4018         case IBMVFC_MAD_FAILED:
4019                 if (ibmvfc_retry_cmd(be16_to_cpu(rsp->status), be16_to_cpu(rsp->error)))
4020                         level += ibmvfc_retry_host_init(vhost);
4021                 else
4022                         ibmvfc_link_down(vhost, IBMVFC_LINK_DEAD);
4023                 ibmvfc_log(vhost, level, "NPIV Login failed: %s (%x:%x)\n",
4024                            ibmvfc_get_cmd_error(be16_to_cpu(rsp->status), be16_to_cpu(rsp->error)),
4025                                                 rsp->status, rsp->error);
4026                 ibmvfc_free_event(evt);
4027                 return;
4028         case IBMVFC_MAD_CRQ_ERROR:
4029                 ibmvfc_retry_host_init(vhost);
4030         case IBMVFC_MAD_DRIVER_FAILED:
4031                 ibmvfc_free_event(evt);
4032                 return;
4033         default:
4034                 dev_err(vhost->dev, "Invalid NPIV Login response: 0x%x\n", mad_status);
4035                 ibmvfc_link_down(vhost, IBMVFC_LINK_DEAD);
4036                 ibmvfc_free_event(evt);
4037                 return;
4038         }
4039
4040         vhost->client_migrated = 0;
4041
4042         if (!(be32_to_cpu(rsp->flags) & IBMVFC_NATIVE_FC)) {
4043                 dev_err(vhost->dev, "Virtual adapter does not support FC. %x\n",
4044                         rsp->flags);
4045                 ibmvfc_link_down(vhost, IBMVFC_LINK_DEAD);
4046                 wake_up(&vhost->work_wait_q);
4047                 return;
4048         }
4049
4050         if (be32_to_cpu(rsp->max_cmds) <= IBMVFC_NUM_INTERNAL_REQ) {
4051                 dev_err(vhost->dev, "Virtual adapter supported queue depth too small: %d\n",
4052                         rsp->max_cmds);
4053                 ibmvfc_link_down(vhost, IBMVFC_LINK_DEAD);
4054                 wake_up(&vhost->work_wait_q);
4055                 return;
4056         }
4057
4058         vhost->logged_in = 1;
4059         npiv_max_sectors = min((uint)(be64_to_cpu(rsp->max_dma_len) >> 9), IBMVFC_MAX_SECTORS);
4060         dev_info(vhost->dev, "Host partition: %s, device: %s %s %s max sectors %u\n",
4061                  rsp->partition_name, rsp->device_name, rsp->port_loc_code,
4062                  rsp->drc_name, npiv_max_sectors);
4063
4064         fc_host_fabric_name(vhost->host) = be64_to_cpu(rsp->node_name);
4065         fc_host_node_name(vhost->host) = be64_to_cpu(rsp->node_name);
4066         fc_host_port_name(vhost->host) = be64_to_cpu(rsp->port_name);
4067         fc_host_port_id(vhost->host) = be64_to_cpu(rsp->scsi_id);
4068         fc_host_port_type(vhost->host) = FC_PORTTYPE_NPIV;
4069         fc_host_supported_classes(vhost->host) = 0;
4070         if (be32_to_cpu(rsp->service_parms.class1_parms[0]) & 0x80000000)
4071                 fc_host_supported_classes(vhost->host) |= FC_COS_CLASS1;
4072         if (be32_to_cpu(rsp->service_parms.class2_parms[0]) & 0x80000000)
4073                 fc_host_supported_classes(vhost->host) |= FC_COS_CLASS2;
4074         if (be32_to_cpu(rsp->service_parms.class3_parms[0]) & 0x80000000)
4075                 fc_host_supported_classes(vhost->host) |= FC_COS_CLASS3;
4076         fc_host_maxframe_size(vhost->host) =
4077                 be16_to_cpu(rsp->service_parms.common.bb_rcv_sz) & 0x0fff;
4078
4079         vhost->host->can_queue = be32_to_cpu(rsp->max_cmds) - IBMVFC_NUM_INTERNAL_REQ;
4080         vhost->host->max_sectors = npiv_max_sectors;
4081         ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_QUERY);
4082         wake_up(&vhost->work_wait_q);
4083 }
4084
4085 /**
4086  * ibmvfc_npiv_login - Sends NPIV login
4087  * @vhost:      ibmvfc host struct
4088  *
4089  **/
4090 static void ibmvfc_npiv_login(struct ibmvfc_host *vhost)
4091 {
4092         struct ibmvfc_npiv_login_mad *mad;
4093         struct ibmvfc_event *evt = ibmvfc_get_event(vhost);
4094
4095         ibmvfc_gather_partition_info(vhost);
4096         ibmvfc_set_login_info(vhost);
4097         ibmvfc_init_event(evt, ibmvfc_npiv_login_done, IBMVFC_MAD_FORMAT);
4098
4099         memcpy(vhost->login_buf, &vhost->login_info, sizeof(vhost->login_info));
4100         mad = &evt->iu.npiv_login;
4101         memset(mad, 0, sizeof(struct ibmvfc_npiv_login_mad));
4102         mad->common.version = cpu_to_be32(1);
4103         mad->common.opcode = cpu_to_be32(IBMVFC_NPIV_LOGIN);
4104         mad->common.length = cpu_to_be16(sizeof(struct ibmvfc_npiv_login_mad));
4105         mad->buffer.va = cpu_to_be64(vhost->login_buf_dma);
4106         mad->buffer.len = cpu_to_be32(sizeof(*vhost->login_buf));
4107
4108         ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_INIT_WAIT);
4109
4110         if (!ibmvfc_send_event(evt, vhost, default_timeout))
4111                 ibmvfc_dbg(vhost, "Sent NPIV login\n");
4112         else
4113                 ibmvfc_link_down(vhost, IBMVFC_LINK_DEAD);
4114 };
4115
4116 /**
4117  * ibmvfc_npiv_logout_done - Completion handler for NPIV Logout
4118  * @vhost:              ibmvfc host struct
4119  *
4120  **/
4121 static void ibmvfc_npiv_logout_done(struct ibmvfc_event *evt)
4122 {
4123         struct ibmvfc_host *vhost = evt->vhost;
4124         u32 mad_status = be16_to_cpu(evt->xfer_iu->npiv_logout.common.status);
4125
4126         ibmvfc_free_event(evt);
4127
4128         switch (mad_status) {
4129         case IBMVFC_MAD_SUCCESS:
4130                 if (list_empty(&vhost->sent) &&
4131                     vhost->action == IBMVFC_HOST_ACTION_LOGO_WAIT) {
4132                         ibmvfc_init_host(vhost);
4133                         return;
4134                 }
4135                 break;
4136         case IBMVFC_MAD_FAILED:
4137         case IBMVFC_MAD_NOT_SUPPORTED:
4138         case IBMVFC_MAD_CRQ_ERROR:
4139         case IBMVFC_MAD_DRIVER_FAILED:
4140         default:
4141                 ibmvfc_dbg(vhost, "NPIV Logout failed. 0x%X\n", mad_status);
4142                 break;
4143         }
4144
4145         ibmvfc_hard_reset_host(vhost);
4146 }
4147
4148 /**
4149  * ibmvfc_npiv_logout - Issue an NPIV Logout
4150  * @vhost:              ibmvfc host struct
4151  *
4152  **/
4153 static void ibmvfc_npiv_logout(struct ibmvfc_host *vhost)
4154 {
4155         struct ibmvfc_npiv_logout_mad *mad;
4156         struct ibmvfc_event *evt;
4157
4158         evt = ibmvfc_get_event(vhost);
4159         ibmvfc_init_event(evt, ibmvfc_npiv_logout_done, IBMVFC_MAD_FORMAT);
4160
4161         mad = &evt->iu.npiv_logout;
4162         memset(mad, 0, sizeof(*mad));
4163         mad->common.version = cpu_to_be32(1);
4164         mad->common.opcode = cpu_to_be32(IBMVFC_NPIV_LOGOUT);
4165         mad->common.length = cpu_to_be16(sizeof(struct ibmvfc_npiv_logout_mad));
4166
4167         ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_LOGO_WAIT);
4168
4169         if (!ibmvfc_send_event(evt, vhost, default_timeout))
4170                 ibmvfc_dbg(vhost, "Sent NPIV logout\n");
4171         else
4172                 ibmvfc_link_down(vhost, IBMVFC_LINK_DEAD);
4173 }
4174
4175 /**
4176  * ibmvfc_dev_init_to_do - Is there target initialization work to do?
4177  * @vhost:              ibmvfc host struct
4178  *
4179  * Returns:
4180  *      1 if work to do / 0 if not
4181  **/
4182 static int ibmvfc_dev_init_to_do(struct ibmvfc_host *vhost)
4183 {
4184         struct ibmvfc_target *tgt;
4185
4186         list_for_each_entry(tgt, &vhost->targets, queue) {
4187                 if (tgt->action == IBMVFC_TGT_ACTION_INIT ||
4188                     tgt->action == IBMVFC_TGT_ACTION_INIT_WAIT)
4189                         return 1;
4190         }
4191
4192         return 0;
4193 }
4194
4195 /**
4196  * __ibmvfc_work_to_do - Is there task level work to do? (no locking)
4197  * @vhost:              ibmvfc host struct
4198  *
4199  * Returns:
4200  *      1 if work to do / 0 if not
4201  **/
4202 static int __ibmvfc_work_to_do(struct ibmvfc_host *vhost)
4203 {
4204         struct ibmvfc_target *tgt;
4205
4206         if (kthread_should_stop())
4207                 return 1;
4208         switch (vhost->action) {
4209         case IBMVFC_HOST_ACTION_NONE:
4210         case IBMVFC_HOST_ACTION_INIT_WAIT:
4211         case IBMVFC_HOST_ACTION_LOGO_WAIT:
4212                 return 0;
4213         case IBMVFC_HOST_ACTION_TGT_INIT:
4214         case IBMVFC_HOST_ACTION_QUERY_TGTS:
4215                 if (vhost->discovery_threads == disc_threads)
4216                         return 0;
4217                 list_for_each_entry(tgt, &vhost->targets, queue)
4218                         if (tgt->action == IBMVFC_TGT_ACTION_INIT)
4219                                 return 1;
4220                 list_for_each_entry(tgt, &vhost->targets, queue)
4221                         if (tgt->action == IBMVFC_TGT_ACTION_INIT_WAIT)
4222                                 return 0;
4223                 return 1;
4224         case IBMVFC_HOST_ACTION_LOGO:
4225         case IBMVFC_HOST_ACTION_INIT:
4226         case IBMVFC_HOST_ACTION_ALLOC_TGTS:
4227         case IBMVFC_HOST_ACTION_TGT_DEL:
4228         case IBMVFC_HOST_ACTION_TGT_DEL_FAILED:
4229         case IBMVFC_HOST_ACTION_QUERY:
4230         case IBMVFC_HOST_ACTION_RESET:
4231         case IBMVFC_HOST_ACTION_REENABLE:
4232         default:
4233                 break;
4234         };
4235
4236         return 1;
4237 }
4238
4239 /**
4240  * ibmvfc_work_to_do - Is there task level work to do?
4241  * @vhost:              ibmvfc host struct
4242  *
4243  * Returns:
4244  *      1 if work to do / 0 if not
4245  **/
4246 static int ibmvfc_work_to_do(struct ibmvfc_host *vhost)
4247 {
4248         unsigned long flags;
4249         int rc;
4250
4251         spin_lock_irqsave(vhost->host->host_lock, flags);
4252         rc = __ibmvfc_work_to_do(vhost);
4253         spin_unlock_irqrestore(vhost->host->host_lock, flags);
4254         return rc;
4255 }
4256
4257 /**
4258  * ibmvfc_log_ae - Log async events if necessary
4259  * @vhost:              ibmvfc host struct
4260  * @events:             events to log
4261  *
4262  **/
4263 static void ibmvfc_log_ae(struct ibmvfc_host *vhost, int events)
4264 {
4265         if (events & IBMVFC_AE_RSCN)
4266                 fc_host_post_event(vhost->host, fc_get_event_number(), FCH_EVT_RSCN, 0);
4267         if ((events & IBMVFC_AE_LINKDOWN) &&
4268             vhost->state >= IBMVFC_HALTED)
4269                 fc_host_post_event(vhost->host, fc_get_event_number(), FCH_EVT_LINKDOWN, 0);
4270         if ((events & IBMVFC_AE_LINKUP) &&
4271             vhost->state == IBMVFC_INITIALIZING)
4272                 fc_host_post_event(vhost->host, fc_get_event_number(), FCH_EVT_LINKUP, 0);
4273 }
4274
4275 /**
4276  * ibmvfc_tgt_add_rport - Tell the FC transport about a new remote port
4277  * @tgt:                ibmvfc target struct
4278  *
4279  **/
4280 static void ibmvfc_tgt_add_rport(struct ibmvfc_target *tgt)
4281 {
4282         struct ibmvfc_host *vhost = tgt->vhost;
4283         struct fc_rport *rport;
4284         unsigned long flags;
4285
4286         tgt_dbg(tgt, "Adding rport\n");
4287         rport = fc_remote_port_add(vhost->host, 0, &tgt->ids);
4288         spin_lock_irqsave(vhost->host->host_lock, flags);
4289
4290         if (rport && tgt->action == IBMVFC_TGT_ACTION_DEL_RPORT) {
4291                 tgt_dbg(tgt, "Deleting rport\n");
4292                 list_del(&tgt->queue);
4293                 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DELETED_RPORT);
4294                 spin_unlock_irqrestore(vhost->host->host_lock, flags);
4295                 fc_remote_port_delete(rport);
4296                 del_timer_sync(&tgt->timer);
4297                 kref_put(&tgt->kref, ibmvfc_release_tgt);
4298                 return;
4299         } else if (rport && tgt->action == IBMVFC_TGT_ACTION_DELETED_RPORT) {
4300                 spin_unlock_irqrestore(vhost->host->host_lock, flags);
4301                 return;
4302         }
4303
4304         if (rport) {
4305                 tgt_dbg(tgt, "rport add succeeded\n");
4306                 tgt->rport = rport;
4307                 rport->maxframe_size = be16_to_cpu(tgt->service_parms.common.bb_rcv_sz) & 0x0fff;
4308                 rport->supported_classes = 0;
4309                 tgt->target_id = rport->scsi_target_id;
4310                 if (be32_to_cpu(tgt->service_parms.class1_parms[0]) & 0x80000000)
4311                         rport->supported_classes |= FC_COS_CLASS1;
4312                 if (be32_to_cpu(tgt->service_parms.class2_parms[0]) & 0x80000000)
4313                         rport->supported_classes |= FC_COS_CLASS2;
4314                 if (be32_to_cpu(tgt->service_parms.class3_parms[0]) & 0x80000000)
4315                         rport->supported_classes |= FC_COS_CLASS3;
4316                 if (rport->rqst_q)
4317                         blk_queue_max_segments(rport->rqst_q, 1);
4318         } else
4319                 tgt_dbg(tgt, "rport add failed\n");
4320         spin_unlock_irqrestore(vhost->host->host_lock, flags);
4321 }
4322
4323 /**
4324  * ibmvfc_do_work - Do task level work
4325  * @vhost:              ibmvfc host struct
4326  *
4327  **/
4328 static void ibmvfc_do_work(struct ibmvfc_host *vhost)
4329 {
4330         struct ibmvfc_target *tgt;
4331         unsigned long flags;
4332         struct fc_rport *rport;
4333         int rc;
4334
4335         ibmvfc_log_ae(vhost, vhost->events_to_log);
4336         spin_lock_irqsave(vhost->host->host_lock, flags);
4337         vhost->events_to_log = 0;
4338         switch (vhost->action) {
4339         case IBMVFC_HOST_ACTION_NONE:
4340         case IBMVFC_HOST_ACTION_LOGO_WAIT:
4341         case IBMVFC_HOST_ACTION_INIT_WAIT:
4342                 break;
4343         case IBMVFC_HOST_ACTION_RESET:
4344                 vhost->action = IBMVFC_HOST_ACTION_TGT_DEL;
4345                 spin_unlock_irqrestore(vhost->host->host_lock, flags);
4346                 rc = ibmvfc_reset_crq(vhost);
4347                 spin_lock_irqsave(vhost->host->host_lock, flags);
4348                 if (rc == H_CLOSED)
4349                         vio_enable_interrupts(to_vio_dev(vhost->dev));
4350                 if (rc || (rc = ibmvfc_send_crq_init(vhost)) ||
4351                     (rc = vio_enable_interrupts(to_vio_dev(vhost->dev)))) {
4352                         ibmvfc_link_down(vhost, IBMVFC_LINK_DEAD);
4353                         dev_err(vhost->dev, "Error after reset (rc=%d)\n", rc);
4354                 }
4355                 break;
4356         case IBMVFC_HOST_ACTION_REENABLE:
4357                 vhost->action = IBMVFC_HOST_ACTION_TGT_DEL;
4358                 spin_unlock_irqrestore(vhost->host->host_lock, flags);
4359                 rc = ibmvfc_reenable_crq_queue(vhost);
4360                 spin_lock_irqsave(vhost->host->host_lock, flags);
4361                 if (rc || (rc = ibmvfc_send_crq_init(vhost))) {
4362                         ibmvfc_link_down(vhost, IBMVFC_LINK_DEAD);
4363                         dev_err(vhost->dev, "Error after enable (rc=%d)\n", rc);
4364                 }
4365                 break;
4366         case IBMVFC_HOST_ACTION_LOGO:
4367                 vhost->job_step(vhost);
4368                 break;
4369         case IBMVFC_HOST_ACTION_INIT:
4370                 BUG_ON(vhost->state != IBMVFC_INITIALIZING);
4371                 if (vhost->delay_init) {
4372                         vhost->delay_init = 0;
4373                         spin_unlock_irqrestore(vhost->host->host_lock, flags);
4374                         ssleep(15);
4375                         return;
4376                 } else
4377                         vhost->job_step(vhost);
4378                 break;
4379         case IBMVFC_HOST_ACTION_QUERY:
4380                 list_for_each_entry(tgt, &vhost->targets, queue)
4381                         ibmvfc_init_tgt(tgt, ibmvfc_tgt_query_target);
4382                 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_QUERY_TGTS);
4383                 break;
4384         case IBMVFC_HOST_ACTION_QUERY_TGTS:
4385                 list_for_each_entry(tgt, &vhost->targets, queue) {
4386                         if (tgt->action == IBMVFC_TGT_ACTION_INIT) {
4387                                 tgt->job_step(tgt);
4388                                 break;
4389                         }
4390                 }
4391
4392                 if (!ibmvfc_dev_init_to_do(vhost))
4393                         ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_TGT_DEL);
4394                 break;
4395         case IBMVFC_HOST_ACTION_TGT_DEL:
4396         case IBMVFC_HOST_ACTION_TGT_DEL_FAILED:
4397                 list_for_each_entry(tgt, &vhost->targets, queue) {
4398                         if (tgt->action == IBMVFC_TGT_ACTION_DEL_RPORT) {
4399                                 tgt_dbg(tgt, "Deleting rport\n");
4400                                 rport = tgt->rport;
4401                                 tgt->rport = NULL;
4402                                 list_del(&tgt->queue);
4403                                 ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DELETED_RPORT);
4404                                 spin_unlock_irqrestore(vhost->host->host_lock, flags);
4405                                 if (rport)
4406                                         fc_remote_port_delete(rport);
4407                                 del_timer_sync(&tgt->timer);
4408                                 kref_put(&tgt->kref, ibmvfc_release_tgt);
4409                                 return;
4410                         }
4411                 }
4412
4413                 if (vhost->state == IBMVFC_INITIALIZING) {
4414                         if (vhost->action == IBMVFC_HOST_ACTION_TGT_DEL_FAILED) {
4415                                 if (vhost->reinit) {
4416                                         vhost->reinit = 0;
4417                                         scsi_block_requests(vhost->host);
4418                                         ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_QUERY);
4419                                         spin_unlock_irqrestore(vhost->host->host_lock, flags);
4420                                 } else {
4421                                         ibmvfc_set_host_state(vhost, IBMVFC_ACTIVE);
4422                                         ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_NONE);
4423                                         wake_up(&vhost->init_wait_q);
4424                                         schedule_work(&vhost->rport_add_work_q);
4425                                         vhost->init_retries = 0;
4426                                         spin_unlock_irqrestore(vhost->host->host_lock, flags);
4427                                         scsi_unblock_requests(vhost->host);
4428                                 }
4429
4430                                 return;
4431                         } else {
4432                                 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_INIT);
4433                                 vhost->job_step = ibmvfc_discover_targets;
4434                         }
4435                 } else {
4436                         ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_NONE);
4437                         spin_unlock_irqrestore(vhost->host->host_lock, flags);
4438                         scsi_unblock_requests(vhost->host);
4439                         wake_up(&vhost->init_wait_q);
4440                         return;
4441                 }
4442                 break;
4443         case IBMVFC_HOST_ACTION_ALLOC_TGTS:
4444                 ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_TGT_INIT);
4445                 spin_unlock_irqrestore(vhost->host->host_lock, flags);
4446                 ibmvfc_alloc_targets(vhost);
4447                 spin_lock_irqsave(vhost->host->host_lock, flags);
4448                 break;
4449         case IBMVFC_HOST_ACTION_TGT_INIT:
4450                 list_for_each_entry(tgt, &vhost->targets, queue) {
4451                         if (tgt->action == IBMVFC_TGT_ACTION_INIT) {
4452                                 tgt->job_step(tgt);
4453                                 break;
4454                         }
4455                 }
4456
4457                 if (!ibmvfc_dev_init_to_do(vhost))
4458                         ibmvfc_set_host_action(vhost, IBMVFC_HOST_ACTION_TGT_DEL_FAILED);
4459                 break;
4460         default:
4461                 break;
4462         };
4463
4464         spin_unlock_irqrestore(vhost->host->host_lock, flags);
4465 }
4466
4467 /**
4468  * ibmvfc_work - Do task level work
4469  * @data:               ibmvfc host struct
4470  *
4471  * Returns:
4472  *      zero
4473  **/
4474 static int ibmvfc_work(void *data)
4475 {
4476         struct ibmvfc_host *vhost = data;
4477         int rc;
4478
4479         set_user_nice(current, MIN_NICE);
4480
4481         while (1) {
4482                 rc = wait_event_interruptible(vhost->work_wait_q,
4483                                               ibmvfc_work_to_do(vhost));
4484
4485                 BUG_ON(rc);
4486
4487                 if (kthread_should_stop())
4488                         break;
4489
4490                 ibmvfc_do_work(vhost);
4491         }
4492
4493         ibmvfc_dbg(vhost, "ibmvfc kthread exiting...\n");
4494         return 0;
4495 }
4496
4497 /**
4498  * ibmvfc_init_crq - Initializes and registers CRQ with hypervisor
4499  * @vhost:      ibmvfc host struct
4500  *
4501  * Allocates a page for messages, maps it for dma, and registers
4502  * the crq with the hypervisor.
4503  *
4504  * Return value:
4505  *      zero on success / other on failure
4506  **/
4507 static int ibmvfc_init_crq(struct ibmvfc_host *vhost)
4508 {
4509         int rc, retrc = -ENOMEM;
4510         struct device *dev = vhost->dev;
4511         struct vio_dev *vdev = to_vio_dev(dev);
4512         struct ibmvfc_crq_queue *crq = &vhost->crq;
4513
4514         ENTER;
4515         crq->msgs = (struct ibmvfc_crq *)get_zeroed_page(GFP_KERNEL);
4516
4517         if (!crq->msgs)
4518                 return -ENOMEM;
4519
4520         crq->size = PAGE_SIZE / sizeof(*crq->msgs);
4521         crq->msg_token = dma_map_single(dev, crq->msgs,
4522                                         PAGE_SIZE, DMA_BIDIRECTIONAL);
4523
4524         if (dma_mapping_error(dev, crq->msg_token))
4525                 goto map_failed;
4526
4527         retrc = rc = plpar_hcall_norets(H_REG_CRQ, vdev->unit_address,
4528                                         crq->msg_token, PAGE_SIZE);
4529
4530         if (rc == H_RESOURCE)
4531                 /* maybe kexecing and resource is busy. try a reset */
4532                 retrc = rc = ibmvfc_reset_crq(vhost);
4533
4534         if (rc == H_CLOSED)
4535                 dev_warn(dev, "Partner adapter not ready\n");
4536         else if (rc) {
4537                 dev_warn(dev, "Error %d opening adapter\n", rc);
4538                 goto reg_crq_failed;
4539         }
4540
4541         retrc = 0;
4542
4543         tasklet_init(&vhost->tasklet, (void *)ibmvfc_tasklet, (unsigned long)vhost);
4544
4545         if ((rc = request_irq(vdev->irq, ibmvfc_interrupt, 0, IBMVFC_NAME, vhost))) {
4546                 dev_err(dev, "Couldn't register irq 0x%x. rc=%d\n", vdev->irq, rc);
4547                 goto req_irq_failed;
4548         }
4549
4550         if ((rc = vio_enable_interrupts(vdev))) {
4551                 dev_err(dev, "Error %d enabling interrupts\n", rc);
4552                 goto req_irq_failed;
4553         }
4554
4555         crq->cur = 0;
4556         LEAVE;
4557         return retrc;
4558
4559 req_irq_failed:
4560         tasklet_kill(&vhost->tasklet);
4561         do {
4562                 rc = plpar_hcall_norets(H_FREE_CRQ, vdev->unit_address);
4563         } while (rc == H_BUSY || H_IS_LONG_BUSY(rc));
4564 reg_crq_failed:
4565         dma_unmap_single(dev, crq->msg_token, PAGE_SIZE, DMA_BIDIRECTIONAL);
4566 map_failed:
4567         free_page((unsigned long)crq->msgs);
4568         return retrc;
4569 }
4570
4571 /**
4572  * ibmvfc_free_mem - Free memory for vhost
4573  * @vhost:      ibmvfc host struct
4574  *
4575  * Return value:
4576  *      none
4577  **/
4578 static void ibmvfc_free_mem(struct ibmvfc_host *vhost)
4579 {
4580         struct ibmvfc_async_crq_queue *async_q = &vhost->async_crq;
4581
4582         ENTER;
4583         mempool_destroy(vhost->tgt_pool);
4584         kfree(vhost->trace);
4585         dma_free_coherent(vhost->dev, vhost->disc_buf_sz, vhost->disc_buf,
4586                           vhost->disc_buf_dma);
4587         dma_free_coherent(vhost->dev, sizeof(*vhost->login_buf),
4588                           vhost->login_buf, vhost->login_buf_dma);
4589         dma_pool_destroy(vhost->sg_pool);
4590         dma_unmap_single(vhost->dev, async_q->msg_token,
4591                          async_q->size * sizeof(*async_q->msgs), DMA_BIDIRECTIONAL);
4592         free_page((unsigned long)async_q->msgs);
4593         LEAVE;
4594 }
4595
4596 /**
4597  * ibmvfc_alloc_mem - Allocate memory for vhost
4598  * @vhost:      ibmvfc host struct
4599  *
4600  * Return value:
4601  *      0 on success / non-zero on failure
4602  **/
4603 static int ibmvfc_alloc_mem(struct ibmvfc_host *vhost)
4604 {
4605         struct ibmvfc_async_crq_queue *async_q = &vhost->async_crq;
4606         struct device *dev = vhost->dev;
4607
4608         ENTER;
4609         async_q->msgs = (struct ibmvfc_async_crq *)get_zeroed_page(GFP_KERNEL);
4610         if (!async_q->msgs) {
4611                 dev_err(dev, "Couldn't allocate async queue.\n");
4612                 goto nomem;
4613         }
4614
4615         async_q->size = PAGE_SIZE / sizeof(struct ibmvfc_async_crq);
4616         async_q->msg_token = dma_map_single(dev, async_q->msgs,
4617                                             async_q->size * sizeof(*async_q->msgs),
4618                                             DMA_BIDIRECTIONAL);
4619
4620         if (dma_mapping_error(dev, async_q->msg_token)) {
4621                 dev_err(dev, "Failed to map async queue\n");
4622                 goto free_async_crq;
4623         }
4624
4625         vhost->sg_pool = dma_pool_create(IBMVFC_NAME, dev,
4626                                          SG_ALL * sizeof(struct srp_direct_buf),
4627                                          sizeof(struct srp_direct_buf), 0);
4628
4629         if (!vhost->sg_pool) {
4630                 dev_err(dev, "Failed to allocate sg pool\n");
4631                 goto unmap_async_crq;
4632         }
4633
4634         vhost->login_buf = dma_alloc_coherent(dev, sizeof(*vhost->login_buf),
4635                                               &vhost->login_buf_dma, GFP_KERNEL);
4636
4637         if (!vhost->login_buf) {
4638                 dev_err(dev, "Couldn't allocate NPIV login buffer\n");
4639                 goto free_sg_pool;
4640         }
4641
4642         vhost->disc_buf_sz = sizeof(vhost->disc_buf->scsi_id[0]) * max_targets;
4643         vhost->disc_buf = dma_alloc_coherent(dev, vhost->disc_buf_sz,
4644                                              &vhost->disc_buf_dma, GFP_KERNEL);
4645
4646         if (!vhost->disc_buf) {
4647                 dev_err(dev, "Couldn't allocate Discover Targets buffer\n");
4648                 goto free_login_buffer;
4649         }
4650
4651         vhost->trace = kcalloc(IBMVFC_NUM_TRACE_ENTRIES,
4652                                sizeof(struct ibmvfc_trace_entry), GFP_KERNEL);
4653
4654         if (!vhost->trace)
4655                 goto free_disc_buffer;
4656
4657         vhost->tgt_pool = mempool_create_kmalloc_pool(IBMVFC_TGT_MEMPOOL_SZ,
4658                                                       sizeof(struct ibmvfc_target));
4659
4660         if (!vhost->tgt_pool) {
4661                 dev_err(dev, "Couldn't allocate target memory pool\n");
4662                 goto free_trace;
4663         }
4664
4665         LEAVE;
4666         return 0;
4667
4668 free_trace:
4669         kfree(vhost->trace);
4670 free_disc_buffer:
4671         dma_free_coherent(dev, vhost->disc_buf_sz, vhost->disc_buf,
4672                           vhost->disc_buf_dma);
4673 free_login_buffer:
4674         dma_free_coherent(dev, sizeof(*vhost->login_buf),
4675                           vhost->login_buf, vhost->login_buf_dma);
4676 free_sg_pool:
4677         dma_pool_destroy(vhost->sg_pool);
4678 unmap_async_crq:
4679         dma_unmap_single(dev, async_q->msg_token,
4680                          async_q->size * sizeof(*async_q->msgs), DMA_BIDIRECTIONAL);
4681 free_async_crq:
4682         free_page((unsigned long)async_q->msgs);
4683 nomem:
4684         LEAVE;
4685         return -ENOMEM;
4686 }
4687
4688 /**
4689  * ibmvfc_rport_add_thread - Worker thread for rport adds
4690  * @work:       work struct
4691  *
4692  **/
4693 static void ibmvfc_rport_add_thread(struct work_struct *work)
4694 {
4695         struct ibmvfc_host *vhost = container_of(work, struct ibmvfc_host,
4696                                                  rport_add_work_q);
4697         struct ibmvfc_target *tgt;
4698         struct fc_rport *rport;
4699         unsigned long flags;
4700         int did_work;
4701
4702         ENTER;
4703         spin_lock_irqsave(vhost->host->host_lock, flags);
4704         do {
4705                 did_work = 0;
4706                 if (vhost->state != IBMVFC_ACTIVE)
4707                         break;
4708
4709                 list_for_each_entry(tgt, &vhost->targets, queue) {
4710                         if (tgt->add_rport) {
4711                                 did_work = 1;
4712                                 tgt->add_rport = 0;
4713                                 kref_get(&tgt->kref);
4714                                 rport = tgt->rport;
4715                                 if (!rport) {
4716                                         spin_unlock_irqrestore(vhost->host->host_lock, flags);
4717                                         ibmvfc_tgt_add_rport(tgt);
4718                                 } else if (get_device(&rport->dev)) {
4719                                         spin_unlock_irqrestore(vhost->host->host_lock, flags);
4720                                         tgt_dbg(tgt, "Setting rport roles\n");
4721                                         fc_remote_port_rolechg(rport, tgt->ids.roles);
4722                                         put_device(&rport->dev);
4723                                 }
4724
4725                                 kref_put(&tgt->kref, ibmvfc_release_tgt);
4726                                 spin_lock_irqsave(vhost->host->host_lock, flags);
4727                                 break;
4728                         }
4729                 }
4730         } while(did_work);
4731
4732         if (vhost->state == IBMVFC_ACTIVE)
4733                 vhost->scan_complete = 1;
4734         spin_unlock_irqrestore(vhost->host->host_lock, flags);
4735         LEAVE;
4736 }
4737
4738 /**
4739  * ibmvfc_probe - Adapter hot plug add entry point
4740  * @vdev:       vio device struct
4741  * @id: vio device id struct
4742  *
4743  * Return value:
4744  *      0 on success / non-zero on failure
4745  **/
4746 static int ibmvfc_probe(struct vio_dev *vdev, const struct vio_device_id *id)
4747 {
4748         struct ibmvfc_host *vhost;
4749         struct Scsi_Host *shost;
4750         struct device *dev = &vdev->dev;
4751         int rc = -ENOMEM;
4752
4753         ENTER;
4754         shost = scsi_host_alloc(&driver_template, sizeof(*vhost));
4755         if (!shost) {
4756                 dev_err(dev, "Couldn't allocate host data\n");
4757                 goto out;
4758         }
4759
4760         shost->transportt = ibmvfc_transport_template;
4761         shost->can_queue = max_requests;
4762         shost->max_lun = max_lun;
4763         shost->max_id = max_targets;
4764         shost->max_sectors = IBMVFC_MAX_SECTORS;
4765         shost->max_cmd_len = IBMVFC_MAX_CDB_LEN;
4766         shost->unique_id = shost->host_no;
4767
4768         vhost = shost_priv(shost);
4769         INIT_LIST_HEAD(&vhost->sent);
4770         INIT_LIST_HEAD(&vhost->free);
4771         INIT_LIST_HEAD(&vhost->targets);
4772         sprintf(vhost->name, IBMVFC_NAME);
4773         vhost->host = shost;
4774         vhost->dev = dev;
4775         vhost->partition_number = -1;
4776         vhost->log_level = log_level;
4777         vhost->task_set = 1;
4778         strcpy(vhost->partition_name, "UNKNOWN");
4779         init_waitqueue_head(&vhost->work_wait_q);
4780         init_waitqueue_head(&vhost->init_wait_q);
4781         INIT_WORK(&vhost->rport_add_work_q, ibmvfc_rport_add_thread);
4782         mutex_init(&vhost->passthru_mutex);
4783
4784         if ((rc = ibmvfc_alloc_mem(vhost)))
4785                 goto free_scsi_host;
4786
4787         vhost->work_thread = kthread_run(ibmvfc_work, vhost, "%s_%d", IBMVFC_NAME,
4788                                          shost->host_no);
4789
4790         if (IS_ERR(vhost->work_thread)) {
4791                 dev_err(dev, "Couldn't create kernel thread: %ld\n",
4792                         PTR_ERR(vhost->work_thread));
4793                 goto free_host_mem;
4794         }
4795
4796         if ((rc = ibmvfc_init_crq(vhost))) {
4797                 dev_err(dev, "Couldn't initialize crq. rc=%d\n", rc);
4798                 goto kill_kthread;
4799         }
4800
4801         if ((rc = ibmvfc_init_event_pool(vhost))) {
4802                 dev_err(dev, "Couldn't initialize event pool. rc=%d\n", rc);
4803                 goto release_crq;
4804         }
4805
4806         if ((rc = scsi_add_host(shost, dev)))
4807                 goto release_event_pool;
4808
4809         fc_host_dev_loss_tmo(shost) = IBMVFC_DEV_LOSS_TMO;
4810
4811         if ((rc = ibmvfc_create_trace_file(&shost->shost_dev.kobj,
4812                                            &ibmvfc_trace_attr))) {
4813                 dev_err(dev, "Failed to create trace file. rc=%d\n", rc);
4814                 goto remove_shost;
4815         }
4816
4817         if (shost_to_fc_host(shost)->rqst_q)
4818                 blk_queue_max_segments(shost_to_fc_host(shost)->rqst_q, 1);
4819         dev_set_drvdata(dev, vhost);
4820         spin_lock(&ibmvfc_driver_lock);
4821         list_add_tail(&vhost->queue, &ibmvfc_head);
4822         spin_unlock(&ibmvfc_driver_lock);
4823
4824         ibmvfc_send_crq_init(vhost);
4825         scsi_scan_host(shost);
4826         return 0;
4827
4828 remove_shost:
4829         scsi_remove_host(shost);
4830 release_event_pool:
4831         ibmvfc_free_event_pool(vhost);
4832 release_crq:
4833         ibmvfc_release_crq_queue(vhost);
4834 kill_kthread:
4835         kthread_stop(vhost->work_thread);
4836 free_host_mem:
4837         ibmvfc_free_mem(vhost);
4838 free_scsi_host:
4839         scsi_host_put(shost);
4840 out:
4841         LEAVE;
4842         return rc;
4843 }
4844
4845 /**
4846  * ibmvfc_remove - Adapter hot plug remove entry point
4847  * @vdev:       vio device struct
4848  *
4849  * Return value:
4850  *      0
4851  **/
4852 static int ibmvfc_remove(struct vio_dev *vdev)
4853 {
4854         struct ibmvfc_host *vhost = dev_get_drvdata(&vdev->dev);
4855         unsigned long flags;
4856
4857         ENTER;
4858         ibmvfc_remove_trace_file(&vhost->host->shost_dev.kobj, &ibmvfc_trace_attr);
4859
4860         spin_lock_irqsave(vhost->host->host_lock, flags);
4861         ibmvfc_link_down(vhost, IBMVFC_HOST_OFFLINE);
4862         spin_unlock_irqrestore(vhost->host->host_lock, flags);
4863
4864         ibmvfc_wait_while_resetting(vhost);
4865         ibmvfc_release_crq_queue(vhost);
4866         kthread_stop(vhost->work_thread);
4867         fc_remove_host(vhost->host);
4868         scsi_remove_host(vhost->host);
4869
4870         spin_lock_irqsave(vhost->host->host_lock, flags);
4871         ibmvfc_purge_requests(vhost, DID_ERROR);
4872         ibmvfc_free_event_pool(vhost);
4873         spin_unlock_irqrestore(vhost->host->host_lock, flags);
4874
4875         ibmvfc_free_mem(vhost);
4876         spin_lock(&ibmvfc_driver_lock);
4877         list_del(&vhost->queue);
4878         spin_unlock(&ibmvfc_driver_lock);
4879         scsi_host_put(vhost->host);
4880         LEAVE;
4881         return 0;
4882 }
4883
4884 /**
4885  * ibmvfc_resume - Resume from suspend
4886  * @dev:        device struct
4887  *
4888  * We may have lost an interrupt across suspend/resume, so kick the
4889  * interrupt handler
4890  *
4891  */
4892 static int ibmvfc_resume(struct device *dev)
4893 {
4894         unsigned long flags;
4895         struct ibmvfc_host *vhost = dev_get_drvdata(dev);
4896         struct vio_dev *vdev = to_vio_dev(dev);
4897
4898         spin_lock_irqsave(vhost->host->host_lock, flags);
4899         vio_disable_interrupts(vdev);
4900         tasklet_schedule(&vhost->tasklet);
4901         spin_unlock_irqrestore(vhost->host->host_lock, flags);
4902         return 0;
4903 }
4904
4905 /**
4906  * ibmvfc_get_desired_dma - Calculate DMA resources needed by the driver
4907  * @vdev:       vio device struct
4908  *
4909  * Return value:
4910  *      Number of bytes the driver will need to DMA map at the same time in
4911  *      order to perform well.
4912  */
4913 static unsigned long ibmvfc_get_desired_dma(struct vio_dev *vdev)
4914 {
4915         unsigned long pool_dma = max_requests * sizeof(union ibmvfc_iu);
4916         return pool_dma + ((512 * 1024) * driver_template.cmd_per_lun);
4917 }
4918
4919 static struct vio_device_id ibmvfc_device_table[] = {
4920         {"fcp", "IBM,vfc-client"},
4921         { "", "" }
4922 };
4923 MODULE_DEVICE_TABLE(vio, ibmvfc_device_table);
4924
4925 static struct dev_pm_ops ibmvfc_pm_ops = {
4926         .resume = ibmvfc_resume
4927 };
4928
4929 static struct vio_driver ibmvfc_driver = {
4930         .id_table = ibmvfc_device_table,
4931         .probe = ibmvfc_probe,
4932         .remove = ibmvfc_remove,
4933         .get_desired_dma = ibmvfc_get_desired_dma,
4934         .name = IBMVFC_NAME,
4935         .pm = &ibmvfc_pm_ops,
4936 };
4937
4938 static struct fc_function_template ibmvfc_transport_functions = {
4939         .show_host_fabric_name = 1,
4940         .show_host_node_name = 1,
4941         .show_host_port_name = 1,
4942         .show_host_supported_classes = 1,
4943         .show_host_port_type = 1,
4944         .show_host_port_id = 1,
4945         .show_host_maxframe_size = 1,
4946
4947         .get_host_port_state = ibmvfc_get_host_port_state,
4948         .show_host_port_state = 1,
4949
4950         .get_host_speed = ibmvfc_get_host_speed,
4951         .show_host_speed = 1,
4952
4953         .issue_fc_host_lip = ibmvfc_issue_fc_host_lip,
4954         .terminate_rport_io = ibmvfc_terminate_rport_io,
4955
4956         .show_rport_maxframe_size = 1,
4957         .show_rport_supported_classes = 1,
4958
4959         .set_rport_dev_loss_tmo = ibmvfc_set_rport_dev_loss_tmo,
4960         .show_rport_dev_loss_tmo = 1,
4961
4962         .get_starget_node_name = ibmvfc_get_starget_node_name,
4963         .show_starget_node_name = 1,
4964
4965         .get_starget_port_name = ibmvfc_get_starget_port_name,
4966         .show_starget_port_name = 1,
4967
4968         .get_starget_port_id = ibmvfc_get_starget_port_id,
4969         .show_starget_port_id = 1,
4970
4971         .bsg_request = ibmvfc_bsg_request,
4972         .bsg_timeout = ibmvfc_bsg_timeout,
4973 };
4974
4975 /**
4976  * ibmvfc_module_init - Initialize the ibmvfc module
4977  *
4978  * Return value:
4979  *      0 on success / other on failure
4980  **/
4981 static int __init ibmvfc_module_init(void)
4982 {
4983         int rc;
4984
4985         if (!firmware_has_feature(FW_FEATURE_VIO))
4986                 return -ENODEV;
4987
4988         printk(KERN_INFO IBMVFC_NAME": IBM Virtual Fibre Channel Driver version: %s %s\n",
4989                IBMVFC_DRIVER_VERSION, IBMVFC_DRIVER_DATE);
4990
4991         ibmvfc_transport_template = fc_attach_transport(&ibmvfc_transport_functions);
4992         if (!ibmvfc_transport_template)
4993                 return -ENOMEM;
4994
4995         rc = vio_register_driver(&ibmvfc_driver);
4996         if (rc)
4997                 fc_release_transport(ibmvfc_transport_template);
4998         return rc;
4999 }
5000
5001 /**
5002  * ibmvfc_module_exit - Teardown the ibmvfc module
5003  *
5004  * Return value:
5005  *      nothing
5006  **/
5007 static void __exit ibmvfc_module_exit(void)
5008 {
5009         vio_unregister_driver(&ibmvfc_driver);
5010         fc_release_transport(ibmvfc_transport_template);
5011 }
5012
5013 module_init(ibmvfc_module_init);
5014 module_exit(ibmvfc_module_exit);