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