Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
Christof Schmitt | 553448f | 2008-06-10 18:20:58 +0200 | [diff] [blame] | 3 | * zfcp device driver |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
Christof Schmitt | 553448f | 2008-06-10 18:20:58 +0200 | [diff] [blame] | 5 | * Implementation of FSF commands. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | * |
Steffen Maier | 394134f | 2017-07-28 12:31:00 +0200 | [diff] [blame] | 7 | * Copyright IBM Corp. 2002, 2017 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | */ |
| 9 | |
Christof Schmitt | ecf39d4 | 2008-12-25 13:39:53 +0100 | [diff] [blame] | 10 | #define KMSG_COMPONENT "zfcp" |
| 11 | #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt |
| 12 | |
Stefan Raspl | 0997f1c | 2008-10-16 08:23:39 +0200 | [diff] [blame] | 13 | #include <linux/blktrace_api.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 14 | #include <linux/slab.h> |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 15 | #include <scsi/fc/fc_els.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include "zfcp_ext.h" |
Christof Schmitt | 4318e08 | 2009-11-24 16:54:08 +0100 | [diff] [blame] | 17 | #include "zfcp_fc.h" |
Christof Schmitt | dcd20e2 | 2009-08-18 15:43:08 +0200 | [diff] [blame] | 18 | #include "zfcp_dbf.h" |
Christof Schmitt | 34c2b71 | 2010-02-17 11:18:59 +0100 | [diff] [blame] | 19 | #include "zfcp_qdio.h" |
Christof Schmitt | b6bd2fb9 | 2010-02-17 11:18:50 +0100 | [diff] [blame] | 20 | #include "zfcp_reqlist.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | |
Christof Schmitt | 259afe2 | 2011-02-22 19:54:44 +0100 | [diff] [blame] | 22 | struct kmem_cache *zfcp_fsf_qtcb_cache; |
| 23 | |
Kees Cook | 75492a5 | 2017-10-16 16:44:34 -0700 | [diff] [blame] | 24 | static void zfcp_fsf_request_timeout_handler(struct timer_list *t) |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 25 | { |
Kees Cook | 75492a5 | 2017-10-16 16:44:34 -0700 | [diff] [blame] | 26 | struct zfcp_fsf_req *fsf_req = from_timer(fsf_req, t, timer); |
| 27 | struct zfcp_adapter *adapter = fsf_req->adapter; |
Steffen Maier | 5c13db9 | 2017-10-17 18:40:51 +0200 | [diff] [blame] | 28 | |
Christof Schmitt | 339f4f4 | 2010-07-16 15:37:43 +0200 | [diff] [blame] | 29 | zfcp_qdio_siosl(adapter); |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 30 | zfcp_erp_adapter_reopen(adapter, ZFCP_STATUS_COMMON_ERP_FAILED, |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 31 | "fsrth_1"); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 32 | } |
| 33 | |
| 34 | static void zfcp_fsf_start_timer(struct zfcp_fsf_req *fsf_req, |
| 35 | unsigned long timeout) |
| 36 | { |
Kees Cook | 75492a5 | 2017-10-16 16:44:34 -0700 | [diff] [blame] | 37 | fsf_req->timer.function = (TIMER_FUNC_TYPE)zfcp_fsf_request_timeout_handler; |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 38 | fsf_req->timer.expires = jiffies + timeout; |
| 39 | add_timer(&fsf_req->timer); |
| 40 | } |
| 41 | |
| 42 | static void zfcp_fsf_start_erp_timer(struct zfcp_fsf_req *fsf_req) |
| 43 | { |
| 44 | BUG_ON(!fsf_req->erp_action); |
Kees Cook | 75492a5 | 2017-10-16 16:44:34 -0700 | [diff] [blame] | 45 | fsf_req->timer.function = (TIMER_FUNC_TYPE)zfcp_erp_timeout_handler; |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 46 | fsf_req->timer.expires = jiffies + 30 * HZ; |
| 47 | add_timer(&fsf_req->timer); |
| 48 | } |
| 49 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | /* association between FSF command and FSF QTCB type */ |
| 51 | static u32 fsf_qtcb_type[] = { |
| 52 | [FSF_QTCB_FCP_CMND] = FSF_IO_COMMAND, |
| 53 | [FSF_QTCB_ABORT_FCP_CMND] = FSF_SUPPORT_COMMAND, |
| 54 | [FSF_QTCB_OPEN_PORT_WITH_DID] = FSF_SUPPORT_COMMAND, |
| 55 | [FSF_QTCB_OPEN_LUN] = FSF_SUPPORT_COMMAND, |
| 56 | [FSF_QTCB_CLOSE_LUN] = FSF_SUPPORT_COMMAND, |
| 57 | [FSF_QTCB_CLOSE_PORT] = FSF_SUPPORT_COMMAND, |
| 58 | [FSF_QTCB_CLOSE_PHYSICAL_PORT] = FSF_SUPPORT_COMMAND, |
| 59 | [FSF_QTCB_SEND_ELS] = FSF_SUPPORT_COMMAND, |
| 60 | [FSF_QTCB_SEND_GENERIC] = FSF_SUPPORT_COMMAND, |
| 61 | [FSF_QTCB_EXCHANGE_CONFIG_DATA] = FSF_CONFIG_COMMAND, |
| 62 | [FSF_QTCB_EXCHANGE_PORT_DATA] = FSF_PORT_COMMAND, |
| 63 | [FSF_QTCB_DOWNLOAD_CONTROL_FILE] = FSF_SUPPORT_COMMAND, |
| 64 | [FSF_QTCB_UPLOAD_CONTROL_FILE] = FSF_SUPPORT_COMMAND |
| 65 | }; |
| 66 | |
Christof Schmitt | 553448f | 2008-06-10 18:20:58 +0200 | [diff] [blame] | 67 | static void zfcp_fsf_class_not_supp(struct zfcp_fsf_req *req) |
| 68 | { |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 69 | dev_err(&req->adapter->ccw_device->dev, "FCP device not " |
| 70 | "operational because of an unsupported FC class\n"); |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 71 | zfcp_erp_adapter_shutdown(req->adapter, 0, "fscns_1"); |
Christof Schmitt | 553448f | 2008-06-10 18:20:58 +0200 | [diff] [blame] | 72 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
| 73 | } |
| 74 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 75 | /** |
| 76 | * zfcp_fsf_req_free - free memory used by fsf request |
| 77 | * @fsf_req: pointer to struct zfcp_fsf_req |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | */ |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 79 | void zfcp_fsf_req_free(struct zfcp_fsf_req *req) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 81 | if (likely(req->pool)) { |
Swen Schillig | a4623c4 | 2009-08-18 15:43:15 +0200 | [diff] [blame] | 82 | if (likely(req->qtcb)) |
| 83 | mempool_free(req->qtcb, req->adapter->pool.qtcb_pool); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 84 | mempool_free(req, req->pool); |
Heiko Carstens | dd52e0e | 2006-09-18 22:28:49 +0200 | [diff] [blame] | 85 | return; |
| 86 | } |
| 87 | |
Swen Schillig | a4623c4 | 2009-08-18 15:43:15 +0200 | [diff] [blame] | 88 | if (likely(req->qtcb)) |
Christof Schmitt | 259afe2 | 2011-02-22 19:54:44 +0100 | [diff] [blame] | 89 | kmem_cache_free(zfcp_fsf_qtcb_cache, req->qtcb); |
Swen Schillig | a4623c4 | 2009-08-18 15:43:15 +0200 | [diff] [blame] | 90 | kfree(req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | } |
| 92 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 93 | static void zfcp_fsf_status_read_port_closed(struct zfcp_fsf_req *req) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | { |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 95 | unsigned long flags; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 96 | struct fsf_status_read_buffer *sr_buf = req->data; |
| 97 | struct zfcp_adapter *adapter = req->adapter; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | struct zfcp_port *port; |
Christof Schmitt | 800c0ca | 2009-11-24 16:54:12 +0100 | [diff] [blame] | 99 | int d_id = ntoh24(sr_buf->d_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 101 | read_lock_irqsave(&adapter->port_list_lock, flags); |
| 102 | list_for_each_entry(port, &adapter->port_list, list) |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 103 | if (port->d_id == d_id) { |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 104 | zfcp_erp_port_reopen(port, 0, "fssrpc1"); |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 105 | break; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 106 | } |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 107 | read_unlock_irqrestore(&adapter->port_list_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | } |
| 109 | |
Swen Schillig | edaed85 | 2010-09-08 14:40:01 +0200 | [diff] [blame] | 110 | static void zfcp_fsf_link_down_info_eval(struct zfcp_fsf_req *req, |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 111 | struct fsf_link_down_info *link_down) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 113 | struct zfcp_adapter *adapter = req->adapter; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 115 | if (atomic_read(&adapter->status) & ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED) |
| 116 | return; |
| 117 | |
Peter Zijlstra | 805de8f4 | 2015-04-24 01:12:32 +0200 | [diff] [blame] | 118 | atomic_or(ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED, &adapter->status); |
Christof Schmitt | 7093293 | 2009-04-17 15:08:15 +0200 | [diff] [blame] | 119 | |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 120 | zfcp_scsi_schedule_rports_block(adapter); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 121 | |
| 122 | if (!link_down) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | goto out; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 124 | |
| 125 | switch (link_down->error_code) { |
| 126 | case FSF_PSQ_LINK_NO_LIGHT: |
| 127 | dev_warn(&req->adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 128 | "There is no light signal from the local " |
| 129 | "fibre channel cable\n"); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 130 | break; |
| 131 | case FSF_PSQ_LINK_WRAP_PLUG: |
| 132 | dev_warn(&req->adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 133 | "There is a wrap plug instead of a fibre " |
| 134 | "channel cable\n"); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 135 | break; |
| 136 | case FSF_PSQ_LINK_NO_FCP: |
| 137 | dev_warn(&req->adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 138 | "The adjacent fibre channel node does not " |
| 139 | "support FCP\n"); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 140 | break; |
| 141 | case FSF_PSQ_LINK_FIRMWARE_UPDATE: |
| 142 | dev_warn(&req->adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 143 | "The FCP device is suspended because of a " |
| 144 | "firmware update\n"); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 145 | break; |
| 146 | case FSF_PSQ_LINK_INVALID_WWPN: |
| 147 | dev_warn(&req->adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 148 | "The FCP device detected a WWPN that is " |
| 149 | "duplicate or not valid\n"); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 150 | break; |
| 151 | case FSF_PSQ_LINK_NO_NPIV_SUPPORT: |
| 152 | dev_warn(&req->adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 153 | "The fibre channel fabric does not support NPIV\n"); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 154 | break; |
| 155 | case FSF_PSQ_LINK_NO_FCP_RESOURCES: |
| 156 | dev_warn(&req->adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 157 | "The FCP adapter cannot support more NPIV ports\n"); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 158 | break; |
| 159 | case FSF_PSQ_LINK_NO_FABRIC_RESOURCES: |
| 160 | dev_warn(&req->adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 161 | "The adjacent switch cannot support " |
| 162 | "more NPIV ports\n"); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 163 | break; |
| 164 | case FSF_PSQ_LINK_FABRIC_LOGIN_UNABLE: |
| 165 | dev_warn(&req->adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 166 | "The FCP adapter could not log in to the " |
| 167 | "fibre channel fabric\n"); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 168 | break; |
| 169 | case FSF_PSQ_LINK_WWPN_ASSIGNMENT_CORRUPTED: |
| 170 | dev_warn(&req->adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 171 | "The WWPN assignment file on the FCP adapter " |
| 172 | "has been damaged\n"); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 173 | break; |
| 174 | case FSF_PSQ_LINK_MODE_TABLE_CURRUPTED: |
| 175 | dev_warn(&req->adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 176 | "The mode table on the FCP adapter " |
| 177 | "has been damaged\n"); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 178 | break; |
| 179 | case FSF_PSQ_LINK_NO_WWPN_ASSIGNMENT: |
| 180 | dev_warn(&req->adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 181 | "All NPIV ports on the FCP adapter have " |
| 182 | "been assigned\n"); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 183 | break; |
| 184 | default: |
| 185 | dev_warn(&req->adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 186 | "The link between the FCP adapter and " |
| 187 | "the FC fabric is down\n"); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 188 | } |
| 189 | out: |
Swen Schillig | edaed85 | 2010-09-08 14:40:01 +0200 | [diff] [blame] | 190 | zfcp_erp_set_adapter_status(adapter, ZFCP_STATUS_COMMON_ERP_FAILED); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 191 | } |
| 192 | |
| 193 | static void zfcp_fsf_status_read_link_down(struct zfcp_fsf_req *req) |
| 194 | { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 195 | struct fsf_status_read_buffer *sr_buf = req->data; |
| 196 | struct fsf_link_down_info *ldi = |
| 197 | (struct fsf_link_down_info *) &sr_buf->payload; |
| 198 | |
| 199 | switch (sr_buf->status_subtype) { |
| 200 | case FSF_STATUS_READ_SUB_NO_PHYSICAL_LINK: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 201 | case FSF_STATUS_READ_SUB_FDISC_FAILED: |
Swen Schillig | edaed85 | 2010-09-08 14:40:01 +0200 | [diff] [blame] | 202 | zfcp_fsf_link_down_info_eval(req, ldi); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 203 | break; |
| 204 | case FSF_STATUS_READ_SUB_FIRMWARE_UPDATE: |
Swen Schillig | edaed85 | 2010-09-08 14:40:01 +0200 | [diff] [blame] | 205 | zfcp_fsf_link_down_info_eval(req, NULL); |
Peter Senna Tschudin | 3b97487 | 2015-08-04 17:11:15 +0200 | [diff] [blame] | 206 | } |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 207 | } |
| 208 | |
| 209 | static void zfcp_fsf_status_read_handler(struct zfcp_fsf_req *req) |
| 210 | { |
| 211 | struct zfcp_adapter *adapter = req->adapter; |
| 212 | struct fsf_status_read_buffer *sr_buf = req->data; |
| 213 | |
| 214 | if (req->status & ZFCP_STATUS_FSFREQ_DISMISSED) { |
Swen Schillig | a54ca0f | 2010-12-02 15:16:14 +0100 | [diff] [blame] | 215 | zfcp_dbf_hba_fsf_uss("fssrh_1", req); |
Christof Schmitt | c7b279a | 2011-02-22 19:54:40 +0100 | [diff] [blame] | 216 | mempool_free(virt_to_page(sr_buf), adapter->pool.sr_data); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 217 | zfcp_fsf_req_free(req); |
| 218 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | } |
| 220 | |
Steffen Maier | 0100998 | 2012-09-04 15:23:30 +0200 | [diff] [blame] | 221 | zfcp_dbf_hba_fsf_uss("fssrh_4", req); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 222 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 223 | switch (sr_buf->status_type) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | case FSF_STATUS_READ_PORT_CLOSED: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 225 | zfcp_fsf_status_read_port_closed(req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | case FSF_STATUS_READ_INCOMING_ELS: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 228 | zfcp_fc_incoming_els(req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | case FSF_STATUS_READ_SENSE_DATA_AVAIL: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | case FSF_STATUS_READ_BIT_ERROR_THRESHOLD: |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 233 | dev_warn(&adapter->ccw_device->dev, |
| 234 | "The error threshold for checksum statistics " |
| 235 | "has been exceeded\n"); |
Swen Schillig | a54ca0f | 2010-12-02 15:16:14 +0100 | [diff] [blame] | 236 | zfcp_dbf_hba_bit_err("fssrh_3", req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | case FSF_STATUS_READ_LINK_DOWN: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 239 | zfcp_fsf_status_read_link_down(req); |
Sven Schuetz | 2d1e547 | 2010-07-16 15:37:39 +0200 | [diff] [blame] | 240 | zfcp_fc_enqueue_event(adapter, FCH_EVT_LINKDOWN, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | case FSF_STATUS_READ_LINK_UP: |
Christof Schmitt | 553448f | 2008-06-10 18:20:58 +0200 | [diff] [blame] | 243 | dev_info(&adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 244 | "The local link has been restored\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | /* All ports should be marked as ready to run again */ |
Swen Schillig | edaed85 | 2010-09-08 14:40:01 +0200 | [diff] [blame] | 246 | zfcp_erp_set_adapter_status(adapter, |
| 247 | ZFCP_STATUS_COMMON_RUNNING); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | zfcp_erp_adapter_reopen(adapter, |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 249 | ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED | |
| 250 | ZFCP_STATUS_COMMON_ERP_FAILED, |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 251 | "fssrh_2"); |
Sven Schuetz | 2d1e547 | 2010-07-16 15:37:39 +0200 | [diff] [blame] | 252 | zfcp_fc_enqueue_event(adapter, FCH_EVT_LINKUP, 0); |
| 253 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | break; |
Maxim Shchetynin | 9eb69af | 2006-01-05 09:56:47 +0100 | [diff] [blame] | 255 | case FSF_STATUS_READ_NOTIFICATION_LOST: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 256 | if (sr_buf->status_subtype & FSF_STATUS_READ_SUB_INCOMING_ELS) |
Steffen Maier | 43f60cb | 2012-09-04 15:23:35 +0200 | [diff] [blame] | 257 | zfcp_fc_conditional_port_scan(adapter); |
Maxim Shchetynin | 9eb69af | 2006-01-05 09:56:47 +0100 | [diff] [blame] | 258 | break; |
Maxim Shchetynin | aef4a98 | 2005-09-13 21:51:16 +0200 | [diff] [blame] | 259 | case FSF_STATUS_READ_FEATURE_UPDATE_ALERT: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 260 | adapter->adapter_features = sr_buf->payload.word[0]; |
Maxim Shchetynin | aef4a98 | 2005-09-13 21:51:16 +0200 | [diff] [blame] | 261 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | } |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 263 | |
Christof Schmitt | c7b279a | 2011-02-22 19:54:40 +0100 | [diff] [blame] | 264 | mempool_free(virt_to_page(sr_buf), adapter->pool.sr_data); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 265 | zfcp_fsf_req_free(req); |
Swen Schillig | d26ab06 | 2008-05-19 12:17:37 +0200 | [diff] [blame] | 266 | |
| 267 | atomic_inc(&adapter->stat_miss); |
Swen Schillig | 4544683 | 2009-08-18 15:43:17 +0200 | [diff] [blame] | 268 | queue_work(adapter->work_queue, &adapter->stat_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | } |
| 270 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 271 | static void zfcp_fsf_fsfstatus_qual_eval(struct zfcp_fsf_req *req) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 273 | switch (req->qtcb->header.fsf_status_qual.word[0]) { |
| 274 | case FSF_SQ_FCP_RSP_AVAILABLE: |
| 275 | case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE: |
| 276 | case FSF_SQ_NO_RETRY_POSSIBLE: |
| 277 | case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED: |
| 278 | return; |
| 279 | case FSF_SQ_COMMAND_ABORTED: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 280 | break; |
| 281 | case FSF_SQ_NO_RECOM: |
| 282 | dev_err(&req->adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 283 | "The FCP adapter reported a problem " |
| 284 | "that cannot be recovered\n"); |
Christof Schmitt | 339f4f4 | 2010-07-16 15:37:43 +0200 | [diff] [blame] | 285 | zfcp_qdio_siosl(req->adapter); |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 286 | zfcp_erp_adapter_shutdown(req->adapter, 0, "fsfsqe1"); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 287 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | } |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 289 | /* all non-return stats set FSFREQ_ERROR*/ |
| 290 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
| 291 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 293 | static void zfcp_fsf_fsfstatus_eval(struct zfcp_fsf_req *req) |
| 294 | { |
| 295 | if (unlikely(req->status & ZFCP_STATUS_FSFREQ_ERROR)) |
| 296 | return; |
Andreas Herrmann | 059c97d | 2005-09-13 21:47:52 +0200 | [diff] [blame] | 297 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 298 | switch (req->qtcb->header.fsf_status) { |
| 299 | case FSF_UNKNOWN_COMMAND: |
| 300 | dev_err(&req->adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 301 | "The FCP adapter does not recognize the command 0x%x\n", |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 302 | req->qtcb->header.fsf_command); |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 303 | zfcp_erp_adapter_shutdown(req->adapter, 0, "fsfse_1"); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 304 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | case FSF_ADAPTER_STATUS_AVAILABLE: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 307 | zfcp_fsf_fsfstatus_qual_eval(req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | } |
| 311 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 312 | static void zfcp_fsf_protstatus_eval(struct zfcp_fsf_req *req) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 314 | struct zfcp_adapter *adapter = req->adapter; |
| 315 | struct fsf_qtcb *qtcb = req->qtcb; |
| 316 | union fsf_prot_status_qual *psq = &qtcb->prefix.prot_status_qual; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 318 | zfcp_dbf_hba_fsf_response(req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 320 | if (req->status & ZFCP_STATUS_FSFREQ_DISMISSED) { |
Christof Schmitt | 4c571c6 | 2009-11-24 16:54:15 +0100 | [diff] [blame] | 321 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 322 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | } |
| 324 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 325 | switch (qtcb->prefix.prot_status) { |
| 326 | case FSF_PROT_GOOD: |
| 327 | case FSF_PROT_FSF_STATUS_PRESENTED: |
| 328 | return; |
| 329 | case FSF_PROT_QTCB_VERSION_ERROR: |
| 330 | dev_err(&adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 331 | "QTCB version 0x%x not supported by FCP adapter " |
| 332 | "(0x%x to 0x%x)\n", FSF_QTCB_CURRENT_VERSION, |
| 333 | psq->word[0], psq->word[1]); |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 334 | zfcp_erp_adapter_shutdown(adapter, 0, "fspse_1"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | break; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 336 | case FSF_PROT_ERROR_STATE: |
| 337 | case FSF_PROT_SEQ_NUMB_ERROR: |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 338 | zfcp_erp_adapter_reopen(adapter, 0, "fspse_2"); |
Christof Schmitt | 4c571c6 | 2009-11-24 16:54:15 +0100 | [diff] [blame] | 339 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | break; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 341 | case FSF_PROT_UNSUPP_QTCB_TYPE: |
| 342 | dev_err(&adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 343 | "The QTCB type is not supported by the FCP adapter\n"); |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 344 | zfcp_erp_adapter_shutdown(adapter, 0, "fspse_3"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | break; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 346 | case FSF_PROT_HOST_CONNECTION_INITIALIZING: |
Peter Zijlstra | 805de8f4 | 2015-04-24 01:12:32 +0200 | [diff] [blame] | 347 | atomic_or(ZFCP_STATUS_ADAPTER_HOST_CON_INIT, |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 348 | &adapter->status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | break; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 350 | case FSF_PROT_DUPLICATE_REQUEST_ID: |
| 351 | dev_err(&adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 352 | "0x%Lx is an ambiguous request identifier\n", |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 353 | (unsigned long long)qtcb->bottom.support.req_handle); |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 354 | zfcp_erp_adapter_shutdown(adapter, 0, "fspse_4"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | break; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 356 | case FSF_PROT_LINK_DOWN: |
Swen Schillig | edaed85 | 2010-09-08 14:40:01 +0200 | [diff] [blame] | 357 | zfcp_fsf_link_down_info_eval(req, &psq->link_down_info); |
Christof Schmitt | 452b505 | 2010-02-17 11:18:51 +0100 | [diff] [blame] | 358 | /* go through reopen to flush pending requests */ |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 359 | zfcp_erp_adapter_reopen(adapter, 0, "fspse_6"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | break; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 361 | case FSF_PROT_REEST_QUEUE: |
| 362 | /* All ports should be marked as ready to run again */ |
Swen Schillig | edaed85 | 2010-09-08 14:40:01 +0200 | [diff] [blame] | 363 | zfcp_erp_set_adapter_status(adapter, |
| 364 | ZFCP_STATUS_COMMON_RUNNING); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 365 | zfcp_erp_adapter_reopen(adapter, |
| 366 | ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED | |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 367 | ZFCP_STATUS_COMMON_ERP_FAILED, |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 368 | "fspse_8"); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 369 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | default: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 371 | dev_err(&adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 372 | "0x%x is not a valid transfer protocol status\n", |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 373 | qtcb->prefix.prot_status); |
Christof Schmitt | 339f4f4 | 2010-07-16 15:37:43 +0200 | [diff] [blame] | 374 | zfcp_qdio_siosl(adapter); |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 375 | zfcp_erp_adapter_shutdown(adapter, 0, "fspse_9"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | } |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 377 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | } |
| 379 | |
| 380 | /** |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 381 | * zfcp_fsf_req_complete - process completion of a FSF request |
| 382 | * @fsf_req: The FSF request that has been completed. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | * |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 384 | * When a request has been completed either from the FCP adapter, |
| 385 | * or it has been dismissed due to a queue shutdown, this function |
| 386 | * is called to process the completion status and trigger further |
| 387 | * events related to the FSF request. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | */ |
Swen Schillig | bd63eaf | 2009-08-18 15:43:13 +0200 | [diff] [blame] | 389 | static void zfcp_fsf_req_complete(struct zfcp_fsf_req *req) |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 390 | { |
| 391 | if (unlikely(req->fsf_command == FSF_QTCB_UNSOLICITED_STATUS)) { |
| 392 | zfcp_fsf_status_read_handler(req); |
| 393 | return; |
| 394 | } |
| 395 | |
| 396 | del_timer(&req->timer); |
| 397 | zfcp_fsf_protstatus_eval(req); |
| 398 | zfcp_fsf_fsfstatus_eval(req); |
| 399 | req->handler(req); |
| 400 | |
| 401 | if (req->erp_action) |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 402 | zfcp_erp_notify(req->erp_action, 0); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 403 | |
| 404 | if (likely(req->status & ZFCP_STATUS_FSFREQ_CLEANUP)) |
| 405 | zfcp_fsf_req_free(req); |
| 406 | else |
Swen Schillig | 058b864 | 2009-08-18 15:43:14 +0200 | [diff] [blame] | 407 | complete(&req->completion); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 408 | } |
| 409 | |
Swen Schillig | bd63eaf | 2009-08-18 15:43:13 +0200 | [diff] [blame] | 410 | /** |
| 411 | * zfcp_fsf_req_dismiss_all - dismiss all fsf requests |
| 412 | * @adapter: pointer to struct zfcp_adapter |
| 413 | * |
| 414 | * Never ever call this without shutting down the adapter first. |
| 415 | * Otherwise the adapter would continue using and corrupting s390 storage. |
| 416 | * Included BUG_ON() call to ensure this is done. |
| 417 | * ERP is supposed to be the only user of this function. |
| 418 | */ |
| 419 | void zfcp_fsf_req_dismiss_all(struct zfcp_adapter *adapter) |
| 420 | { |
| 421 | struct zfcp_fsf_req *req, *tmp; |
Swen Schillig | bd63eaf | 2009-08-18 15:43:13 +0200 | [diff] [blame] | 422 | LIST_HEAD(remove_queue); |
Swen Schillig | bd63eaf | 2009-08-18 15:43:13 +0200 | [diff] [blame] | 423 | |
| 424 | BUG_ON(atomic_read(&adapter->status) & ZFCP_STATUS_ADAPTER_QDIOUP); |
Christof Schmitt | b6bd2fb9 | 2010-02-17 11:18:50 +0100 | [diff] [blame] | 425 | zfcp_reqlist_move(adapter->req_list, &remove_queue); |
Swen Schillig | bd63eaf | 2009-08-18 15:43:13 +0200 | [diff] [blame] | 426 | |
| 427 | list_for_each_entry_safe(req, tmp, &remove_queue, list) { |
| 428 | list_del(&req->list); |
| 429 | req->status |= ZFCP_STATUS_FSFREQ_DISMISSED; |
| 430 | zfcp_fsf_req_complete(req); |
| 431 | } |
| 432 | } |
| 433 | |
Steffen Maier | d220197 | 2012-09-04 15:23:29 +0200 | [diff] [blame] | 434 | #define ZFCP_FSF_PORTSPEED_1GBIT (1 << 0) |
| 435 | #define ZFCP_FSF_PORTSPEED_2GBIT (1 << 1) |
| 436 | #define ZFCP_FSF_PORTSPEED_4GBIT (1 << 2) |
| 437 | #define ZFCP_FSF_PORTSPEED_10GBIT (1 << 3) |
| 438 | #define ZFCP_FSF_PORTSPEED_8GBIT (1 << 4) |
| 439 | #define ZFCP_FSF_PORTSPEED_16GBIT (1 << 5) |
| 440 | #define ZFCP_FSF_PORTSPEED_NOT_NEGOTIATED (1 << 15) |
| 441 | |
| 442 | static u32 zfcp_fsf_convert_portspeed(u32 fsf_speed) |
| 443 | { |
| 444 | u32 fdmi_speed = 0; |
| 445 | if (fsf_speed & ZFCP_FSF_PORTSPEED_1GBIT) |
| 446 | fdmi_speed |= FC_PORTSPEED_1GBIT; |
| 447 | if (fsf_speed & ZFCP_FSF_PORTSPEED_2GBIT) |
| 448 | fdmi_speed |= FC_PORTSPEED_2GBIT; |
| 449 | if (fsf_speed & ZFCP_FSF_PORTSPEED_4GBIT) |
| 450 | fdmi_speed |= FC_PORTSPEED_4GBIT; |
| 451 | if (fsf_speed & ZFCP_FSF_PORTSPEED_10GBIT) |
| 452 | fdmi_speed |= FC_PORTSPEED_10GBIT; |
| 453 | if (fsf_speed & ZFCP_FSF_PORTSPEED_8GBIT) |
| 454 | fdmi_speed |= FC_PORTSPEED_8GBIT; |
| 455 | if (fsf_speed & ZFCP_FSF_PORTSPEED_16GBIT) |
| 456 | fdmi_speed |= FC_PORTSPEED_16GBIT; |
| 457 | if (fsf_speed & ZFCP_FSF_PORTSPEED_NOT_NEGOTIATED) |
| 458 | fdmi_speed |= FC_PORTSPEED_NOT_NEGOTIATED; |
| 459 | return fdmi_speed; |
| 460 | } |
| 461 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 462 | static int zfcp_fsf_exchange_config_evaluate(struct zfcp_fsf_req *req) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | { |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 464 | struct fsf_qtcb_bottom_config *bottom = &req->qtcb->bottom.config; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 465 | struct zfcp_adapter *adapter = req->adapter; |
Andreas Herrmann | 13e1e1f | 2005-09-19 16:56:17 +0200 | [diff] [blame] | 466 | struct Scsi_Host *shost = adapter->scsi_host; |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 467 | struct fc_els_flogi *nsp, *plogi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 469 | /* adjust pointers for missing command code */ |
| 470 | nsp = (struct fc_els_flogi *) ((u8 *)&bottom->nport_serv_param |
| 471 | - sizeof(u32)); |
| 472 | plogi = (struct fc_els_flogi *) ((u8 *)&bottom->plogi_payload |
| 473 | - sizeof(u32)); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 474 | |
| 475 | if (req->data) |
| 476 | memcpy(req->data, bottom, sizeof(*bottom)); |
| 477 | |
Steffen Maier | 9d464fc | 2017-07-28 12:31:02 +0200 | [diff] [blame] | 478 | fc_host_port_name(shost) = be64_to_cpu(nsp->fl_wwpn); |
| 479 | fc_host_node_name(shost) = be64_to_cpu(nsp->fl_wwnn); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 480 | fc_host_supported_classes(shost) = FC_COS_CLASS2 | FC_COS_CLASS3; |
| 481 | |
Christof Schmitt | faf4cd8 | 2010-07-16 15:37:36 +0200 | [diff] [blame] | 482 | adapter->timer_ticks = bottom->timer_interval & ZFCP_FSF_TIMER_INT_MASK; |
Christof Schmitt | 8d88cf3 | 2010-06-21 10:11:33 +0200 | [diff] [blame] | 483 | adapter->stat_read_buf_num = max(bottom->status_read_buf_num, |
| 484 | (u16)FSF_STATUS_READS_RECOM); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 485 | |
| 486 | if (fc_host_permanent_port_name(shost) == -1) |
| 487 | fc_host_permanent_port_name(shost) = fc_host_port_name(shost); |
| 488 | |
Steffen Maier | 9edf7d7 | 2013-04-26 17:34:54 +0200 | [diff] [blame] | 489 | zfcp_scsi_set_prot(adapter); |
| 490 | |
| 491 | /* no error return above here, otherwise must fix call chains */ |
| 492 | /* do not evaluate invalid fields */ |
| 493 | if (req->qtcb->header.fsf_status == FSF_EXCHANGE_CONFIG_DATA_INCOMPLETE) |
| 494 | return 0; |
| 495 | |
| 496 | fc_host_port_id(shost) = ntoh24(bottom->s_id); |
| 497 | fc_host_speed(shost) = |
| 498 | zfcp_fsf_convert_portspeed(bottom->fc_link_speed); |
| 499 | |
| 500 | adapter->hydra_version = bottom->adapter_type; |
| 501 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 502 | switch (bottom->fc_topology) { |
| 503 | case FSF_TOPO_P2P: |
Christof Schmitt | 800c0ca | 2009-11-24 16:54:12 +0100 | [diff] [blame] | 504 | adapter->peer_d_id = ntoh24(bottom->peer_d_id); |
Steffen Maier | 9d464fc | 2017-07-28 12:31:02 +0200 | [diff] [blame] | 505 | adapter->peer_wwpn = be64_to_cpu(plogi->fl_wwpn); |
| 506 | adapter->peer_wwnn = be64_to_cpu(plogi->fl_wwnn); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 507 | fc_host_port_type(shost) = FC_PORTTYPE_PTP; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 508 | break; |
| 509 | case FSF_TOPO_FABRIC: |
Steffen Maier | bd77bef | 2016-08-10 18:30:44 +0200 | [diff] [blame] | 510 | if (bottom->connection_features & FSF_FEATURE_NPIV_MODE) |
| 511 | fc_host_port_type(shost) = FC_PORTTYPE_NPIV; |
| 512 | else |
| 513 | fc_host_port_type(shost) = FC_PORTTYPE_NPORT; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 514 | break; |
| 515 | case FSF_TOPO_AL: |
| 516 | fc_host_port_type(shost) = FC_PORTTYPE_NLPORT; |
Christof Schmitt | dceab65 | 2009-05-15 13:18:18 +0200 | [diff] [blame] | 517 | /* fall through */ |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 518 | default: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 519 | dev_err(&adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 520 | "Unknown or unsupported arbitrated loop " |
| 521 | "fibre channel topology detected\n"); |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 522 | zfcp_erp_adapter_shutdown(adapter, 0, "fsece_1"); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 523 | return -EIO; |
| 524 | } |
| 525 | |
| 526 | return 0; |
| 527 | } |
| 528 | |
| 529 | static void zfcp_fsf_exchange_config_data_handler(struct zfcp_fsf_req *req) |
| 530 | { |
| 531 | struct zfcp_adapter *adapter = req->adapter; |
| 532 | struct fsf_qtcb *qtcb = req->qtcb; |
| 533 | struct fsf_qtcb_bottom_config *bottom = &qtcb->bottom.config; |
| 534 | struct Scsi_Host *shost = adapter->scsi_host; |
| 535 | |
| 536 | if (req->status & ZFCP_STATUS_FSFREQ_ERROR) |
| 537 | return; |
| 538 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | adapter->fsf_lic_version = bottom->lic_version; |
Maxim Shchetynin | aef4a98 | 2005-09-13 21:51:16 +0200 | [diff] [blame] | 540 | adapter->adapter_features = bottom->adapter_features; |
| 541 | adapter->connection_features = bottom->connection_features; |
| 6f71d9b | 2005-04-10 23:04:28 -0500 | [diff] [blame] | 542 | adapter->peer_wwpn = 0; |
| 543 | adapter->peer_wwnn = 0; |
| 544 | adapter->peer_d_id = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 546 | switch (qtcb->header.fsf_status) { |
| 547 | case FSF_GOOD: |
| 548 | if (zfcp_fsf_exchange_config_evaluate(req)) |
| 549 | return; |
Swen Schillig | 52ef11a | 2007-08-28 09:31:09 +0200 | [diff] [blame] | 550 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 551 | if (bottom->max_qtcb_size < sizeof(struct fsf_qtcb)) { |
| 552 | dev_err(&adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 553 | "FCP adapter maximum QTCB size (%d bytes) " |
| 554 | "is too small\n", |
| 555 | bottom->max_qtcb_size); |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 556 | zfcp_erp_adapter_shutdown(adapter, 0, "fsecdh1"); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 557 | return; |
| 558 | } |
Peter Zijlstra | 805de8f4 | 2015-04-24 01:12:32 +0200 | [diff] [blame] | 559 | atomic_or(ZFCP_STATUS_ADAPTER_XCONFIG_OK, |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 560 | &adapter->status); |
| 561 | break; |
| 562 | case FSF_EXCHANGE_CONFIG_DATA_INCOMPLETE: |
Andreas Herrmann | 13e1e1f | 2005-09-19 16:56:17 +0200 | [diff] [blame] | 563 | fc_host_node_name(shost) = 0; |
| 564 | fc_host_port_name(shost) = 0; |
| 565 | fc_host_port_id(shost) = 0; |
| 566 | fc_host_speed(shost) = FC_PORTSPEED_UNKNOWN; |
Andreas Herrmann | ad757cd | 2006-01-13 02:26:11 +0100 | [diff] [blame] | 567 | fc_host_port_type(shost) = FC_PORTTYPE_UNKNOWN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 568 | adapter->hydra_version = 0; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 569 | |
Daniel Hansel | f76ccaa | 2013-04-26 17:32:14 +0200 | [diff] [blame] | 570 | /* avoids adapter shutdown to be able to recognize |
| 571 | * events such as LINK UP */ |
Peter Zijlstra | 805de8f4 | 2015-04-24 01:12:32 +0200 | [diff] [blame] | 572 | atomic_or(ZFCP_STATUS_ADAPTER_XCONFIG_OK, |
Daniel Hansel | f76ccaa | 2013-04-26 17:32:14 +0200 | [diff] [blame] | 573 | &adapter->status); |
Swen Schillig | edaed85 | 2010-09-08 14:40:01 +0200 | [diff] [blame] | 574 | zfcp_fsf_link_down_info_eval(req, |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 575 | &qtcb->header.fsf_status_qual.link_down_info); |
Steffen Maier | 9edf7d7 | 2013-04-26 17:34:54 +0200 | [diff] [blame] | 576 | if (zfcp_fsf_exchange_config_evaluate(req)) |
| 577 | return; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 578 | break; |
| 579 | default: |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 580 | zfcp_erp_adapter_shutdown(adapter, 0, "fsecdh3"); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 581 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | } |
| 583 | |
Maxim Shchetynin | aef4a98 | 2005-09-13 21:51:16 +0200 | [diff] [blame] | 584 | if (adapter->adapter_features & FSF_FEATURE_HBAAPI_MANAGEMENT) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 | adapter->hardware_version = bottom->hardware_version; |
Andreas Herrmann | 13e1e1f | 2005-09-19 16:56:17 +0200 | [diff] [blame] | 586 | memcpy(fc_host_serial_number(shost), bottom->serial_number, |
| 587 | min(FC_SERIAL_NUMBER_SIZE, 17)); |
| 588 | EBCASC(fc_host_serial_number(shost), |
| 589 | min(FC_SERIAL_NUMBER_SIZE, 17)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | } |
| 591 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 592 | if (FSF_QTCB_CURRENT_VERSION < bottom->low_qtcb_version) { |
Christof Schmitt | 553448f | 2008-06-10 18:20:58 +0200 | [diff] [blame] | 593 | dev_err(&adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 594 | "The FCP adapter only supports newer " |
| 595 | "control block versions\n"); |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 596 | zfcp_erp_adapter_shutdown(adapter, 0, "fsecdh4"); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 597 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | } |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 599 | if (FSF_QTCB_CURRENT_VERSION > bottom->high_qtcb_version) { |
Christof Schmitt | 553448f | 2008-06-10 18:20:58 +0200 | [diff] [blame] | 600 | dev_err(&adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 601 | "The FCP adapter only supports older " |
| 602 | "control block versions\n"); |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 603 | zfcp_erp_adapter_shutdown(adapter, 0, "fsecdh5"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | } |
| 606 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 607 | static void zfcp_fsf_exchange_port_evaluate(struct zfcp_fsf_req *req) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 609 | struct zfcp_adapter *adapter = req->adapter; |
| 610 | struct fsf_qtcb_bottom_port *bottom = &req->qtcb->bottom.port; |
| 611 | struct Scsi_Host *shost = adapter->scsi_host; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 613 | if (req->data) |
| 614 | memcpy(req->data, bottom, sizeof(*bottom)); |
Andreas Herrmann | 2f8f3ed | 2006-02-11 01:41:50 +0100 | [diff] [blame] | 615 | |
Christof Schmitt | 0282985 | 2009-03-02 13:09:06 +0100 | [diff] [blame] | 616 | if (adapter->connection_features & FSF_FEATURE_NPIV_MODE) { |
Andreas Herrmann | 2f8f3ed | 2006-02-11 01:41:50 +0100 | [diff] [blame] | 617 | fc_host_permanent_port_name(shost) = bottom->wwpn; |
Christof Schmitt | 0282985 | 2009-03-02 13:09:06 +0100 | [diff] [blame] | 618 | } else |
Andreas Herrmann | 2f8f3ed | 2006-02-11 01:41:50 +0100 | [diff] [blame] | 619 | fc_host_permanent_port_name(shost) = fc_host_port_name(shost); |
| 620 | fc_host_maxframe_size(shost) = bottom->maximum_frame_size; |
Steffen Maier | d220197 | 2012-09-04 15:23:29 +0200 | [diff] [blame] | 621 | fc_host_supported_speeds(shost) = |
| 622 | zfcp_fsf_convert_portspeed(bottom->supported_speed); |
Christof Schmitt | 2d8e62b | 2010-02-17 11:18:58 +0100 | [diff] [blame] | 623 | memcpy(fc_host_supported_fc4s(shost), bottom->supported_fc4_types, |
| 624 | FC_FC4_LIST_SIZE); |
| 625 | memcpy(fc_host_active_fc4s(shost), bottom->active_fc4_types, |
| 626 | FC_FC4_LIST_SIZE); |
Andreas Herrmann | 2f8f3ed | 2006-02-11 01:41:50 +0100 | [diff] [blame] | 627 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 628 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 629 | static void zfcp_fsf_exchange_port_data_handler(struct zfcp_fsf_req *req) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 631 | struct fsf_qtcb *qtcb = req->qtcb; |
Andreas Herrmann | 2f8f3ed | 2006-02-11 01:41:50 +0100 | [diff] [blame] | 632 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 633 | if (req->status & ZFCP_STATUS_FSFREQ_ERROR) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | return; |
| 635 | |
Maxim Shchetynin | aef4a98 | 2005-09-13 21:51:16 +0200 | [diff] [blame] | 636 | switch (qtcb->header.fsf_status) { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 637 | case FSF_GOOD: |
| 638 | zfcp_fsf_exchange_port_evaluate(req); |
Maxim Shchetynin | aef4a98 | 2005-09-13 21:51:16 +0200 | [diff] [blame] | 639 | break; |
Maxim Shchetynin | aef4a98 | 2005-09-13 21:51:16 +0200 | [diff] [blame] | 640 | case FSF_EXCHANGE_CONFIG_DATA_INCOMPLETE: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 641 | zfcp_fsf_exchange_port_evaluate(req); |
Swen Schillig | edaed85 | 2010-09-08 14:40:01 +0200 | [diff] [blame] | 642 | zfcp_fsf_link_down_info_eval(req, |
Maxim Shchetynin | aef4a98 | 2005-09-13 21:51:16 +0200 | [diff] [blame] | 643 | &qtcb->header.fsf_status_qual.link_down_info); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 644 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 645 | } |
| 646 | } |
| 647 | |
Swen Schillig | a4623c4 | 2009-08-18 15:43:15 +0200 | [diff] [blame] | 648 | static struct zfcp_fsf_req *zfcp_fsf_alloc(mempool_t *pool) |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 649 | { |
| 650 | struct zfcp_fsf_req *req; |
Swen Schillig | a4623c4 | 2009-08-18 15:43:15 +0200 | [diff] [blame] | 651 | |
| 652 | if (likely(pool)) |
| 653 | req = mempool_alloc(pool, GFP_ATOMIC); |
| 654 | else |
| 655 | req = kmalloc(sizeof(*req), GFP_ATOMIC); |
| 656 | |
| 657 | if (unlikely(!req)) |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 658 | return NULL; |
Swen Schillig | a4623c4 | 2009-08-18 15:43:15 +0200 | [diff] [blame] | 659 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 660 | memset(req, 0, sizeof(*req)); |
Christof Schmitt | 88f2a97 | 2008-11-04 16:35:07 +0100 | [diff] [blame] | 661 | req->pool = pool; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 662 | return req; |
| 663 | } |
| 664 | |
Swen Schillig | a4623c4 | 2009-08-18 15:43:15 +0200 | [diff] [blame] | 665 | static struct fsf_qtcb *zfcp_qtcb_alloc(mempool_t *pool) |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 666 | { |
Swen Schillig | a4623c4 | 2009-08-18 15:43:15 +0200 | [diff] [blame] | 667 | struct fsf_qtcb *qtcb; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 668 | |
| 669 | if (likely(pool)) |
| 670 | qtcb = mempool_alloc(pool, GFP_ATOMIC); |
| 671 | else |
Christof Schmitt | 259afe2 | 2011-02-22 19:54:44 +0100 | [diff] [blame] | 672 | qtcb = kmem_cache_alloc(zfcp_fsf_qtcb_cache, GFP_ATOMIC); |
Swen Schillig | a4623c4 | 2009-08-18 15:43:15 +0200 | [diff] [blame] | 673 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 674 | if (unlikely(!qtcb)) |
| 675 | return NULL; |
| 676 | |
| 677 | memset(qtcb, 0, sizeof(*qtcb)); |
Swen Schillig | a4623c4 | 2009-08-18 15:43:15 +0200 | [diff] [blame] | 678 | return qtcb; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 679 | } |
| 680 | |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 681 | static struct zfcp_fsf_req *zfcp_fsf_req_create(struct zfcp_qdio *qdio, |
Jan Glauber | 3ec90878 | 2011-06-06 14:14:40 +0200 | [diff] [blame] | 682 | u32 fsf_cmd, u8 sbtype, |
Christof Schmitt | 1674b40 | 2010-04-30 18:09:34 +0200 | [diff] [blame] | 683 | mempool_t *pool) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | { |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 685 | struct zfcp_adapter *adapter = qdio->adapter; |
Swen Schillig | a4623c4 | 2009-08-18 15:43:15 +0200 | [diff] [blame] | 686 | struct zfcp_fsf_req *req = zfcp_fsf_alloc(pool); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 687 | |
| 688 | if (unlikely(!req)) |
Christof Schmitt | 1e9b164 | 2009-07-13 15:06:04 +0200 | [diff] [blame] | 689 | return ERR_PTR(-ENOMEM); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 690 | |
| 691 | if (adapter->req_no == 0) |
| 692 | adapter->req_no++; |
| 693 | |
| 694 | INIT_LIST_HEAD(&req->list); |
Kees Cook | 75492a5 | 2017-10-16 16:44:34 -0700 | [diff] [blame] | 695 | timer_setup(&req->timer, NULL, 0); |
Swen Schillig | 058b864 | 2009-08-18 15:43:14 +0200 | [diff] [blame] | 696 | init_completion(&req->completion); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 697 | |
| 698 | req->adapter = adapter; |
| 699 | req->fsf_command = fsf_cmd; |
Christof Schmitt | 52bfb55 | 2009-03-02 13:08:58 +0100 | [diff] [blame] | 700 | req->req_id = adapter->req_no; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 701 | |
Swen Schillig | a4623c4 | 2009-08-18 15:43:15 +0200 | [diff] [blame] | 702 | if (likely(fsf_cmd != FSF_QTCB_UNSOLICITED_STATUS)) { |
| 703 | if (likely(pool)) |
| 704 | req->qtcb = zfcp_qtcb_alloc(adapter->pool.qtcb_pool); |
| 705 | else |
| 706 | req->qtcb = zfcp_qtcb_alloc(NULL); |
| 707 | |
| 708 | if (unlikely(!req->qtcb)) { |
| 709 | zfcp_fsf_req_free(req); |
| 710 | return ERR_PTR(-ENOMEM); |
| 711 | } |
| 712 | |
Christof Schmitt | 5bdecd2 | 2010-02-17 11:18:55 +0100 | [diff] [blame] | 713 | req->seq_no = adapter->fsf_req_seq_no; |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 714 | req->qtcb->prefix.req_seq_no = adapter->fsf_req_seq_no; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 715 | req->qtcb->prefix.req_id = req->req_id; |
| 716 | req->qtcb->prefix.ulp_info = 26; |
| 717 | req->qtcb->prefix.qtcb_type = fsf_qtcb_type[req->fsf_command]; |
| 718 | req->qtcb->prefix.qtcb_version = FSF_QTCB_CURRENT_VERSION; |
| 719 | req->qtcb->header.req_handle = req->req_id; |
| 720 | req->qtcb->header.fsf_command = req->fsf_command; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 721 | } |
| 722 | |
Christof Schmitt | 1674b40 | 2010-04-30 18:09:34 +0200 | [diff] [blame] | 723 | zfcp_qdio_req_init(adapter->qdio, &req->qdio_req, req->req_id, sbtype, |
| 724 | req->qtcb, sizeof(struct fsf_qtcb)); |
| 725 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 726 | return req; |
| 727 | } |
| 728 | |
| 729 | static int zfcp_fsf_req_send(struct zfcp_fsf_req *req) |
| 730 | { |
| 731 | struct zfcp_adapter *adapter = req->adapter; |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 732 | struct zfcp_qdio *qdio = adapter->qdio; |
Christof Schmitt | b6bd2fb9 | 2010-02-17 11:18:50 +0100 | [diff] [blame] | 733 | int with_qtcb = (req->qtcb != NULL); |
Christof Schmitt | e60a6d6 | 2010-02-17 11:18:49 +0100 | [diff] [blame] | 734 | int req_id = req->req_id; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 735 | |
Christof Schmitt | b6bd2fb9 | 2010-02-17 11:18:50 +0100 | [diff] [blame] | 736 | zfcp_reqlist_add(adapter->req_list, req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 737 | |
Swen Schillig | 706eca4 | 2010-07-16 15:37:38 +0200 | [diff] [blame] | 738 | req->qdio_req.qdio_outb_usage = atomic_read(&qdio->req_q_free); |
Heiko Carstens | 1aae056 | 2013-01-30 09:49:40 +0100 | [diff] [blame] | 739 | req->issued = get_tod_clock(); |
Christof Schmitt | 34c2b71 | 2010-02-17 11:18:59 +0100 | [diff] [blame] | 740 | if (zfcp_qdio_send(qdio, &req->qdio_req)) { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 741 | del_timer(&req->timer); |
Christof Schmitt | 3765138 | 2008-11-04 16:35:08 +0100 | [diff] [blame] | 742 | /* lookup request again, list might have changed */ |
Christof Schmitt | b6bd2fb9 | 2010-02-17 11:18:50 +0100 | [diff] [blame] | 743 | zfcp_reqlist_find_rm(adapter->req_list, req_id); |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 744 | zfcp_erp_adapter_reopen(adapter, 0, "fsrs__1"); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 745 | return -EIO; |
| 746 | } |
| 747 | |
| 748 | /* Don't increase for unsolicited status */ |
Martin Petermann | 135ea13 | 2009-04-17 15:08:01 +0200 | [diff] [blame] | 749 | if (with_qtcb) |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 750 | adapter->fsf_req_seq_no++; |
Christof Schmitt | 52bfb55 | 2009-03-02 13:08:58 +0100 | [diff] [blame] | 751 | adapter->req_no++; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 752 | |
| 753 | return 0; |
| 754 | } |
| 755 | |
| 756 | /** |
| 757 | * zfcp_fsf_status_read - send status read request |
| 758 | * @adapter: pointer to struct zfcp_adapter |
| 759 | * @req_flags: request flags |
| 760 | * Returns: 0 on success, ERROR otherwise |
| 761 | */ |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 762 | int zfcp_fsf_status_read(struct zfcp_qdio *qdio) |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 763 | { |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 764 | struct zfcp_adapter *adapter = qdio->adapter; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 765 | struct zfcp_fsf_req *req; |
| 766 | struct fsf_status_read_buffer *sr_buf; |
Christof Schmitt | c7b279a | 2011-02-22 19:54:40 +0100 | [diff] [blame] | 767 | struct page *page; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 768 | int retval = -EIO; |
| 769 | |
Christof Schmitt | 44a24cb | 2010-09-08 14:39:57 +0200 | [diff] [blame] | 770 | spin_lock_irq(&qdio->req_q_lock); |
Christof Schmitt | 6b9e152 | 2010-04-30 18:09:35 +0200 | [diff] [blame] | 771 | if (zfcp_qdio_sbal_get(qdio)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 772 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 773 | |
Martin Peschke | 75a1408 | 2013-08-22 17:49:31 +0200 | [diff] [blame] | 774 | req = zfcp_fsf_req_create(qdio, FSF_QTCB_UNSOLICITED_STATUS, |
| 775 | SBAL_SFLAGS0_TYPE_STATUS, |
Swen Schillig | a4623c4 | 2009-08-18 15:43:15 +0200 | [diff] [blame] | 776 | adapter->pool.status_read_req); |
Hirofumi Nakagawa | 025270f | 2008-08-21 13:43:37 +0200 | [diff] [blame] | 777 | if (IS_ERR(req)) { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 778 | retval = PTR_ERR(req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 779 | goto out; |
| 780 | } |
| 781 | |
Christof Schmitt | c7b279a | 2011-02-22 19:54:40 +0100 | [diff] [blame] | 782 | page = mempool_alloc(adapter->pool.sr_data, GFP_ATOMIC); |
| 783 | if (!page) { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 784 | retval = -ENOMEM; |
| 785 | goto failed_buf; |
| 786 | } |
Christof Schmitt | c7b279a | 2011-02-22 19:54:40 +0100 | [diff] [blame] | 787 | sr_buf = page_address(page); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 788 | memset(sr_buf, 0, sizeof(*sr_buf)); |
| 789 | req->data = sr_buf; |
Christof Schmitt | 1674b40 | 2010-04-30 18:09:34 +0200 | [diff] [blame] | 790 | |
| 791 | zfcp_qdio_fill_next(qdio, &req->qdio_req, sr_buf, sizeof(*sr_buf)); |
| 792 | zfcp_qdio_set_sbale_last(qdio, &req->qdio_req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 793 | |
| 794 | retval = zfcp_fsf_req_send(req); |
| 795 | if (retval) |
| 796 | goto failed_req_send; |
| 797 | |
| 798 | goto out; |
| 799 | |
| 800 | failed_req_send: |
Swen Schillig | a54ca0f | 2010-12-02 15:16:14 +0100 | [diff] [blame] | 801 | req->data = NULL; |
Christof Schmitt | c7b279a | 2011-02-22 19:54:40 +0100 | [diff] [blame] | 802 | mempool_free(virt_to_page(sr_buf), adapter->pool.sr_data); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 803 | failed_buf: |
Swen Schillig | a54ca0f | 2010-12-02 15:16:14 +0100 | [diff] [blame] | 804 | zfcp_dbf_hba_fsf_uss("fssr__1", req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 805 | zfcp_fsf_req_free(req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 806 | out: |
Christof Schmitt | 44a24cb | 2010-09-08 14:39:57 +0200 | [diff] [blame] | 807 | spin_unlock_irq(&qdio->req_q_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | return retval; |
| 809 | } |
| 810 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 811 | static void zfcp_fsf_abort_fcp_command_handler(struct zfcp_fsf_req *req) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | { |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 813 | struct scsi_device *sdev = req->data; |
Martin Peschke | d436de8 | 2012-09-04 15:23:36 +0200 | [diff] [blame] | 814 | struct zfcp_scsi_dev *zfcp_sdev; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 815 | union fsf_status_qual *fsq = &req->qtcb->header.fsf_status_qual; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 816 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 817 | if (req->status & ZFCP_STATUS_FSFREQ_ERROR) |
| 818 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 819 | |
Martin Peschke | d436de8 | 2012-09-04 15:23:36 +0200 | [diff] [blame] | 820 | zfcp_sdev = sdev_to_zfcp(sdev); |
| 821 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 822 | switch (req->qtcb->header.fsf_status) { |
| 823 | case FSF_PORT_HANDLE_NOT_VALID: |
| 824 | if (fsq->word[0] == fsq->word[1]) { |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 825 | zfcp_erp_adapter_reopen(zfcp_sdev->port->adapter, 0, |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 826 | "fsafch1"); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 827 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
| 828 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 829 | break; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 830 | case FSF_LUN_HANDLE_NOT_VALID: |
| 831 | if (fsq->word[0] == fsq->word[1]) { |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 832 | zfcp_erp_port_reopen(zfcp_sdev->port, 0, "fsafch2"); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 833 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
| 834 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 835 | break; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 836 | case FSF_FCP_COMMAND_DOES_NOT_EXIST: |
| 837 | req->status |= ZFCP_STATUS_FSFREQ_ABORTNOTNEEDED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 838 | break; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 839 | case FSF_PORT_BOXED: |
Swen Schillig | edaed85 | 2010-09-08 14:40:01 +0200 | [diff] [blame] | 840 | zfcp_erp_set_port_status(zfcp_sdev->port, |
| 841 | ZFCP_STATUS_COMMON_ACCESS_BOXED); |
| 842 | zfcp_erp_port_reopen(zfcp_sdev->port, |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 843 | ZFCP_STATUS_COMMON_ERP_FAILED, "fsafch3"); |
Christof Schmitt | 4c571c6 | 2009-11-24 16:54:15 +0100 | [diff] [blame] | 844 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 845 | break; |
| 846 | case FSF_LUN_BOXED: |
Swen Schillig | edaed85 | 2010-09-08 14:40:01 +0200 | [diff] [blame] | 847 | zfcp_erp_set_lun_status(sdev, ZFCP_STATUS_COMMON_ACCESS_BOXED); |
| 848 | zfcp_erp_lun_reopen(sdev, ZFCP_STATUS_COMMON_ERP_FAILED, |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 849 | "fsafch4"); |
Christof Schmitt | 4c571c6 | 2009-11-24 16:54:15 +0100 | [diff] [blame] | 850 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 851 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 852 | case FSF_ADAPTER_STATUS_AVAILABLE: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 853 | switch (fsq->word[0]) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 854 | case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE: |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 855 | zfcp_fc_test_link(zfcp_sdev->port); |
Christof Schmitt | dceab65 | 2009-05-15 13:18:18 +0200 | [diff] [blame] | 856 | /* fall through */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 857 | case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 858 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 859 | break; |
| 860 | } |
| 861 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 862 | case FSF_GOOD: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 863 | req->status |= ZFCP_STATUS_FSFREQ_ABORTSUCCEEDED; |
| 864 | break; |
| 865 | } |
| 866 | } |
| 867 | |
| 868 | /** |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 869 | * zfcp_fsf_abort_fcp_cmnd - abort running SCSI command |
| 870 | * @scmnd: The SCSI command to abort |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 871 | * Returns: pointer to struct zfcp_fsf_req |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 872 | */ |
| 873 | |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 874 | struct zfcp_fsf_req *zfcp_fsf_abort_fcp_cmnd(struct scsi_cmnd *scmnd) |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 875 | { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 876 | struct zfcp_fsf_req *req = NULL; |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 877 | struct scsi_device *sdev = scmnd->device; |
| 878 | struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev); |
| 879 | struct zfcp_qdio *qdio = zfcp_sdev->port->adapter->qdio; |
| 880 | unsigned long old_req_id = (unsigned long) scmnd->host_scribble; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 881 | |
Christof Schmitt | 44a24cb | 2010-09-08 14:39:57 +0200 | [diff] [blame] | 882 | spin_lock_irq(&qdio->req_q_lock); |
Christof Schmitt | 6b9e152 | 2010-04-30 18:09:35 +0200 | [diff] [blame] | 883 | if (zfcp_qdio_sbal_get(qdio)) |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 884 | goto out; |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 885 | req = zfcp_fsf_req_create(qdio, FSF_QTCB_ABORT_FCP_CMND, |
Jan Glauber | 3ec90878 | 2011-06-06 14:14:40 +0200 | [diff] [blame] | 886 | SBAL_SFLAGS0_TYPE_READ, |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 887 | qdio->adapter->pool.scsi_abort); |
Swen Schillig | 633528c | 2008-11-26 18:07:37 +0100 | [diff] [blame] | 888 | if (IS_ERR(req)) { |
| 889 | req = NULL; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 890 | goto out; |
Swen Schillig | 633528c | 2008-11-26 18:07:37 +0100 | [diff] [blame] | 891 | } |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 892 | |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 893 | if (unlikely(!(atomic_read(&zfcp_sdev->status) & |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 894 | ZFCP_STATUS_COMMON_UNBLOCKED))) |
| 895 | goto out_error_free; |
| 896 | |
Christof Schmitt | 1674b40 | 2010-04-30 18:09:34 +0200 | [diff] [blame] | 897 | zfcp_qdio_set_sbale_last(qdio, &req->qdio_req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 898 | |
Swen Schillig | 6fbf25e | 2010-11-17 14:23:41 +0100 | [diff] [blame] | 899 | req->data = sdev; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 900 | req->handler = zfcp_fsf_abort_fcp_command_handler; |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 901 | req->qtcb->header.lun_handle = zfcp_sdev->lun_handle; |
| 902 | req->qtcb->header.port_handle = zfcp_sdev->port->handle; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 903 | req->qtcb->bottom.support.req_handle = (u64) old_req_id; |
| 904 | |
| 905 | zfcp_fsf_start_timer(req, ZFCP_SCSI_ER_TIMEOUT); |
| 906 | if (!zfcp_fsf_req_send(req)) |
| 907 | goto out; |
| 908 | |
| 909 | out_error_free: |
| 910 | zfcp_fsf_req_free(req); |
| 911 | req = NULL; |
| 912 | out: |
Christof Schmitt | 44a24cb | 2010-09-08 14:39:57 +0200 | [diff] [blame] | 913 | spin_unlock_irq(&qdio->req_q_lock); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 914 | return req; |
| 915 | } |
| 916 | |
| 917 | static void zfcp_fsf_send_ct_handler(struct zfcp_fsf_req *req) |
| 918 | { |
| 919 | struct zfcp_adapter *adapter = req->adapter; |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 920 | struct zfcp_fsf_ct_els *ct = req->data; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 921 | struct fsf_qtcb_header *header = &req->qtcb->header; |
| 922 | |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 923 | ct->status = -EINVAL; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 924 | |
| 925 | if (req->status & ZFCP_STATUS_FSFREQ_ERROR) |
| 926 | goto skip_fsfstatus; |
| 927 | |
| 928 | switch (header->fsf_status) { |
| 929 | case FSF_GOOD: |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 930 | ct->status = 0; |
Steffen Maier | 975171b | 2017-07-28 12:30:53 +0200 | [diff] [blame] | 931 | zfcp_dbf_san_res("fsscth2", req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 932 | break; |
| 933 | case FSF_SERVICE_CLASS_NOT_SUPPORTED: |
| 934 | zfcp_fsf_class_not_supp(req); |
| 935 | break; |
| 936 | case FSF_ADAPTER_STATUS_AVAILABLE: |
| 937 | switch (header->fsf_status_qual.word[0]){ |
| 938 | case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 939 | case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED: |
| 940 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
| 941 | break; |
| 942 | } |
| 943 | break; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 944 | case FSF_PORT_BOXED: |
Christof Schmitt | 4c571c6 | 2009-11-24 16:54:15 +0100 | [diff] [blame] | 945 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 946 | break; |
| 947 | case FSF_PORT_HANDLE_NOT_VALID: |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 948 | zfcp_erp_adapter_reopen(adapter, 0, "fsscth1"); |
Christof Schmitt | dceab65 | 2009-05-15 13:18:18 +0200 | [diff] [blame] | 949 | /* fall through */ |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 950 | case FSF_GENERIC_COMMAND_REJECTED: |
| 951 | case FSF_PAYLOAD_SIZE_MISMATCH: |
| 952 | case FSF_REQUEST_SIZE_TOO_LARGE: |
| 953 | case FSF_RESPONSE_SIZE_TOO_LARGE: |
| 954 | case FSF_SBAL_MISMATCH: |
| 955 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
| 956 | break; |
| 957 | } |
| 958 | |
| 959 | skip_fsfstatus: |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 960 | if (ct->handler) |
| 961 | ct->handler(ct->handler_data); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 962 | } |
| 963 | |
Christof Schmitt | 1674b40 | 2010-04-30 18:09:34 +0200 | [diff] [blame] | 964 | static void zfcp_fsf_setup_ct_els_unchained(struct zfcp_qdio *qdio, |
| 965 | struct zfcp_qdio_req *q_req, |
Christof Schmitt | 426f605 | 2009-07-13 15:06:06 +0200 | [diff] [blame] | 966 | struct scatterlist *sg_req, |
| 967 | struct scatterlist *sg_resp) |
| 968 | { |
Christof Schmitt | 1674b40 | 2010-04-30 18:09:34 +0200 | [diff] [blame] | 969 | zfcp_qdio_fill_next(qdio, q_req, sg_virt(sg_req), sg_req->length); |
| 970 | zfcp_qdio_fill_next(qdio, q_req, sg_virt(sg_resp), sg_resp->length); |
| 971 | zfcp_qdio_set_sbale_last(qdio, q_req); |
Christof Schmitt | 426f605 | 2009-07-13 15:06:06 +0200 | [diff] [blame] | 972 | } |
| 973 | |
Christof Schmitt | 39eb7e9a | 2008-12-19 16:57:01 +0100 | [diff] [blame] | 974 | static int zfcp_fsf_setup_ct_els_sbals(struct zfcp_fsf_req *req, |
| 975 | struct scatterlist *sg_req, |
Swen Schillig | 01b0475 | 2010-07-16 15:37:37 +0200 | [diff] [blame] | 976 | struct scatterlist *sg_resp) |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 977 | { |
Swen Schillig | 42428f7 | 2009-08-18 15:43:18 +0200 | [diff] [blame] | 978 | struct zfcp_adapter *adapter = req->adapter; |
Swen Schillig | 86a9668 | 2011-08-15 14:40:32 +0200 | [diff] [blame] | 979 | struct zfcp_qdio *qdio = adapter->qdio; |
| 980 | struct fsf_qtcb *qtcb = req->qtcb; |
Swen Schillig | 42428f7 | 2009-08-18 15:43:18 +0200 | [diff] [blame] | 981 | u32 feat = adapter->adapter_features; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 982 | |
Swen Schillig | 86a9668 | 2011-08-15 14:40:32 +0200 | [diff] [blame] | 983 | if (zfcp_adapter_multi_buffer_active(adapter)) { |
| 984 | if (zfcp_qdio_sbals_from_sg(qdio, &req->qdio_req, sg_req)) |
| 985 | return -EIO; |
Steffen Maier | 70369f8 | 2016-08-10 18:30:45 +0200 | [diff] [blame] | 986 | qtcb->bottom.support.req_buf_length = |
| 987 | zfcp_qdio_real_bytes(sg_req); |
Swen Schillig | 86a9668 | 2011-08-15 14:40:32 +0200 | [diff] [blame] | 988 | if (zfcp_qdio_sbals_from_sg(qdio, &req->qdio_req, sg_resp)) |
| 989 | return -EIO; |
Steffen Maier | 70369f8 | 2016-08-10 18:30:45 +0200 | [diff] [blame] | 990 | qtcb->bottom.support.resp_buf_length = |
| 991 | zfcp_qdio_real_bytes(sg_resp); |
Christof Schmitt | 39eb7e9a | 2008-12-19 16:57:01 +0100 | [diff] [blame] | 992 | |
LABBE Corentin | 7d91869 | 2017-07-28 12:30:47 +0200 | [diff] [blame] | 993 | zfcp_qdio_set_data_div(qdio, &req->qdio_req, sg_nents(sg_req)); |
Swen Schillig | 86a9668 | 2011-08-15 14:40:32 +0200 | [diff] [blame] | 994 | zfcp_qdio_set_sbale_last(qdio, &req->qdio_req); |
| 995 | zfcp_qdio_set_scount(qdio, &req->qdio_req); |
Christof Schmitt | 426f605 | 2009-07-13 15:06:06 +0200 | [diff] [blame] | 996 | return 0; |
| 997 | } |
| 998 | |
| 999 | /* use single, unchained SBAL if it can hold the request */ |
Swen Schillig | 30b6777 | 2010-06-21 10:11:31 +0200 | [diff] [blame] | 1000 | if (zfcp_qdio_sg_one_sbale(sg_req) && zfcp_qdio_sg_one_sbale(sg_resp)) { |
Swen Schillig | 86a9668 | 2011-08-15 14:40:32 +0200 | [diff] [blame] | 1001 | zfcp_fsf_setup_ct_els_unchained(qdio, &req->qdio_req, |
Christof Schmitt | 1674b40 | 2010-04-30 18:09:34 +0200 | [diff] [blame] | 1002 | sg_req, sg_resp); |
Christof Schmitt | 39eb7e9a | 2008-12-19 16:57:01 +0100 | [diff] [blame] | 1003 | return 0; |
| 1004 | } |
| 1005 | |
Swen Schillig | 86a9668 | 2011-08-15 14:40:32 +0200 | [diff] [blame] | 1006 | if (!(feat & FSF_FEATURE_ELS_CT_CHAINED_SBALS)) |
| 1007 | return -EOPNOTSUPP; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1008 | |
Swen Schillig | 86a9668 | 2011-08-15 14:40:32 +0200 | [diff] [blame] | 1009 | if (zfcp_qdio_sbals_from_sg(qdio, &req->qdio_req, sg_req)) |
Christof Schmitt | 9072df4 | 2009-07-13 15:06:07 +0200 | [diff] [blame] | 1010 | return -EIO; |
Swen Schillig | 86a9668 | 2011-08-15 14:40:32 +0200 | [diff] [blame] | 1011 | |
| 1012 | qtcb->bottom.support.req_buf_length = zfcp_qdio_real_bytes(sg_req); |
| 1013 | |
| 1014 | zfcp_qdio_set_sbale_last(qdio, &req->qdio_req); |
| 1015 | zfcp_qdio_skip_to_last_sbale(qdio, &req->qdio_req); |
| 1016 | |
| 1017 | if (zfcp_qdio_sbals_from_sg(qdio, &req->qdio_req, sg_resp)) |
| 1018 | return -EIO; |
| 1019 | |
| 1020 | qtcb->bottom.support.resp_buf_length = zfcp_qdio_real_bytes(sg_resp); |
| 1021 | |
| 1022 | zfcp_qdio_set_sbale_last(qdio, &req->qdio_req); |
Christof Schmitt | 98fc4d5 | 2009-08-18 15:43:26 +0200 | [diff] [blame] | 1023 | |
Christof Schmitt | b1a5898 | 2009-09-24 10:23:21 +0200 | [diff] [blame] | 1024 | return 0; |
| 1025 | } |
| 1026 | |
| 1027 | static int zfcp_fsf_setup_ct_els(struct zfcp_fsf_req *req, |
| 1028 | struct scatterlist *sg_req, |
| 1029 | struct scatterlist *sg_resp, |
Swen Schillig | 01b0475 | 2010-07-16 15:37:37 +0200 | [diff] [blame] | 1030 | unsigned int timeout) |
Christof Schmitt | b1a5898 | 2009-09-24 10:23:21 +0200 | [diff] [blame] | 1031 | { |
| 1032 | int ret; |
| 1033 | |
Swen Schillig | 01b0475 | 2010-07-16 15:37:37 +0200 | [diff] [blame] | 1034 | ret = zfcp_fsf_setup_ct_els_sbals(req, sg_req, sg_resp); |
Christof Schmitt | b1a5898 | 2009-09-24 10:23:21 +0200 | [diff] [blame] | 1035 | if (ret) |
| 1036 | return ret; |
| 1037 | |
Christof Schmitt | 98fc4d5 | 2009-08-18 15:43:26 +0200 | [diff] [blame] | 1038 | /* common settings for ct/gs and els requests */ |
Swen Schillig | 51375ee | 2010-01-14 17:19:02 +0100 | [diff] [blame] | 1039 | if (timeout > 255) |
| 1040 | timeout = 255; /* max value accepted by hardware */ |
Christof Schmitt | 98fc4d5 | 2009-08-18 15:43:26 +0200 | [diff] [blame] | 1041 | req->qtcb->bottom.support.service_class = FSF_CLASS_3; |
Swen Schillig | 51375ee | 2010-01-14 17:19:02 +0100 | [diff] [blame] | 1042 | req->qtcb->bottom.support.timeout = timeout; |
| 1043 | zfcp_fsf_start_timer(req, (timeout + 10) * HZ); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1044 | |
| 1045 | return 0; |
| 1046 | } |
| 1047 | |
| 1048 | /** |
| 1049 | * zfcp_fsf_send_ct - initiate a Generic Service request (FC-GS) |
| 1050 | * @ct: pointer to struct zfcp_send_ct with data for request |
| 1051 | * @pool: if non-null this mempool is used to allocate struct zfcp_fsf_req |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1052 | */ |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 1053 | int zfcp_fsf_send_ct(struct zfcp_fc_wka_port *wka_port, |
Swen Schillig | 51375ee | 2010-01-14 17:19:02 +0100 | [diff] [blame] | 1054 | struct zfcp_fsf_ct_els *ct, mempool_t *pool, |
| 1055 | unsigned int timeout) |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1056 | { |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 1057 | struct zfcp_qdio *qdio = wka_port->adapter->qdio; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1058 | struct zfcp_fsf_req *req; |
| 1059 | int ret = -EIO; |
| 1060 | |
Christof Schmitt | 44a24cb | 2010-09-08 14:39:57 +0200 | [diff] [blame] | 1061 | spin_lock_irq(&qdio->req_q_lock); |
Christof Schmitt | 6b9e152 | 2010-04-30 18:09:35 +0200 | [diff] [blame] | 1062 | if (zfcp_qdio_sbal_get(qdio)) |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1063 | goto out; |
| 1064 | |
Christof Schmitt | 1674b40 | 2010-04-30 18:09:34 +0200 | [diff] [blame] | 1065 | req = zfcp_fsf_req_create(qdio, FSF_QTCB_SEND_GENERIC, |
Jan Glauber | 3ec90878 | 2011-06-06 14:14:40 +0200 | [diff] [blame] | 1066 | SBAL_SFLAGS0_TYPE_WRITE_READ, pool); |
Swen Schillig | 09a46c6 | 2009-08-18 15:43:16 +0200 | [diff] [blame] | 1067 | |
Hirofumi Nakagawa | 025270f | 2008-08-21 13:43:37 +0200 | [diff] [blame] | 1068 | if (IS_ERR(req)) { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1069 | ret = PTR_ERR(req); |
| 1070 | goto out; |
| 1071 | } |
| 1072 | |
Swen Schillig | 09a46c6 | 2009-08-18 15:43:16 +0200 | [diff] [blame] | 1073 | req->status |= ZFCP_STATUS_FSFREQ_CLEANUP; |
Swen Schillig | 01b0475 | 2010-07-16 15:37:37 +0200 | [diff] [blame] | 1074 | ret = zfcp_fsf_setup_ct_els(req, ct->req, ct->resp, timeout); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1075 | if (ret) |
| 1076 | goto failed_send; |
| 1077 | |
| 1078 | req->handler = zfcp_fsf_send_ct_handler; |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 1079 | req->qtcb->header.port_handle = wka_port->handle; |
Steffen Maier | 771bf03 | 2016-08-10 18:30:51 +0200 | [diff] [blame] | 1080 | ct->d_id = wka_port->d_id; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1081 | req->data = ct; |
| 1082 | |
Swen Schillig | 2c55b75 | 2010-12-02 15:16:13 +0100 | [diff] [blame] | 1083 | zfcp_dbf_san_req("fssct_1", req, wka_port->d_id); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1084 | |
| 1085 | ret = zfcp_fsf_req_send(req); |
| 1086 | if (ret) |
| 1087 | goto failed_send; |
| 1088 | |
| 1089 | goto out; |
| 1090 | |
| 1091 | failed_send: |
| 1092 | zfcp_fsf_req_free(req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1093 | out: |
Christof Schmitt | 44a24cb | 2010-09-08 14:39:57 +0200 | [diff] [blame] | 1094 | spin_unlock_irq(&qdio->req_q_lock); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1095 | return ret; |
| 1096 | } |
| 1097 | |
| 1098 | static void zfcp_fsf_send_els_handler(struct zfcp_fsf_req *req) |
| 1099 | { |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 1100 | struct zfcp_fsf_ct_els *send_els = req->data; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1101 | struct fsf_qtcb_header *header = &req->qtcb->header; |
| 1102 | |
| 1103 | send_els->status = -EINVAL; |
| 1104 | |
| 1105 | if (req->status & ZFCP_STATUS_FSFREQ_ERROR) |
| 1106 | goto skip_fsfstatus; |
| 1107 | |
| 1108 | switch (header->fsf_status) { |
| 1109 | case FSF_GOOD: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1110 | send_els->status = 0; |
Steffen Maier | 975171b | 2017-07-28 12:30:53 +0200 | [diff] [blame] | 1111 | zfcp_dbf_san_res("fsselh1", req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1112 | break; |
| 1113 | case FSF_SERVICE_CLASS_NOT_SUPPORTED: |
| 1114 | zfcp_fsf_class_not_supp(req); |
| 1115 | break; |
| 1116 | case FSF_ADAPTER_STATUS_AVAILABLE: |
| 1117 | switch (header->fsf_status_qual.word[0]){ |
| 1118 | case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1119 | case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED: |
| 1120 | case FSF_SQ_RETRY_IF_POSSIBLE: |
| 1121 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
| 1122 | break; |
| 1123 | } |
| 1124 | break; |
| 1125 | case FSF_ELS_COMMAND_REJECTED: |
| 1126 | case FSF_PAYLOAD_SIZE_MISMATCH: |
| 1127 | case FSF_REQUEST_SIZE_TOO_LARGE: |
| 1128 | case FSF_RESPONSE_SIZE_TOO_LARGE: |
| 1129 | break; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1130 | case FSF_SBAL_MISMATCH: |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 1131 | /* should never occur, avoided in zfcp_fsf_send_els */ |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1132 | /* fall through */ |
| 1133 | default: |
| 1134 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
| 1135 | break; |
| 1136 | } |
| 1137 | skip_fsfstatus: |
| 1138 | if (send_els->handler) |
| 1139 | send_els->handler(send_els->handler_data); |
| 1140 | } |
| 1141 | |
| 1142 | /** |
| 1143 | * zfcp_fsf_send_els - initiate an ELS command (FC-FS) |
| 1144 | * @els: pointer to struct zfcp_send_els with data for the command |
| 1145 | */ |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 1146 | int zfcp_fsf_send_els(struct zfcp_adapter *adapter, u32 d_id, |
Swen Schillig | 51375ee | 2010-01-14 17:19:02 +0100 | [diff] [blame] | 1147 | struct zfcp_fsf_ct_els *els, unsigned int timeout) |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1148 | { |
| 1149 | struct zfcp_fsf_req *req; |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 1150 | struct zfcp_qdio *qdio = adapter->qdio; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1151 | int ret = -EIO; |
| 1152 | |
Christof Schmitt | 44a24cb | 2010-09-08 14:39:57 +0200 | [diff] [blame] | 1153 | spin_lock_irq(&qdio->req_q_lock); |
Christof Schmitt | 6b9e152 | 2010-04-30 18:09:35 +0200 | [diff] [blame] | 1154 | if (zfcp_qdio_sbal_get(qdio)) |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1155 | goto out; |
Swen Schillig | 09a46c6 | 2009-08-18 15:43:16 +0200 | [diff] [blame] | 1156 | |
Christof Schmitt | 1674b40 | 2010-04-30 18:09:34 +0200 | [diff] [blame] | 1157 | req = zfcp_fsf_req_create(qdio, FSF_QTCB_SEND_ELS, |
Jan Glauber | 3ec90878 | 2011-06-06 14:14:40 +0200 | [diff] [blame] | 1158 | SBAL_SFLAGS0_TYPE_WRITE_READ, NULL); |
Swen Schillig | 09a46c6 | 2009-08-18 15:43:16 +0200 | [diff] [blame] | 1159 | |
Hirofumi Nakagawa | 025270f | 2008-08-21 13:43:37 +0200 | [diff] [blame] | 1160 | if (IS_ERR(req)) { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1161 | ret = PTR_ERR(req); |
| 1162 | goto out; |
| 1163 | } |
| 1164 | |
Swen Schillig | 09a46c6 | 2009-08-18 15:43:16 +0200 | [diff] [blame] | 1165 | req->status |= ZFCP_STATUS_FSFREQ_CLEANUP; |
Swen Schillig | 01b0475 | 2010-07-16 15:37:37 +0200 | [diff] [blame] | 1166 | |
Swen Schillig | 86a9668 | 2011-08-15 14:40:32 +0200 | [diff] [blame] | 1167 | if (!zfcp_adapter_multi_buffer_active(adapter)) |
| 1168 | zfcp_qdio_sbal_limit(qdio, &req->qdio_req, 2); |
Swen Schillig | 01b0475 | 2010-07-16 15:37:37 +0200 | [diff] [blame] | 1169 | |
| 1170 | ret = zfcp_fsf_setup_ct_els(req, els->req, els->resp, timeout); |
Swen Schillig | 44cc76f | 2008-10-01 12:42:16 +0200 | [diff] [blame] | 1171 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1172 | if (ret) |
| 1173 | goto failed_send; |
| 1174 | |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 1175 | hton24(req->qtcb->bottom.support.d_id, d_id); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1176 | req->handler = zfcp_fsf_send_els_handler; |
Steffen Maier | 771bf03 | 2016-08-10 18:30:51 +0200 | [diff] [blame] | 1177 | els->d_id = d_id; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1178 | req->data = els; |
| 1179 | |
Swen Schillig | 2c55b75 | 2010-12-02 15:16:13 +0100 | [diff] [blame] | 1180 | zfcp_dbf_san_req("fssels1", req, d_id); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1181 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1182 | ret = zfcp_fsf_req_send(req); |
| 1183 | if (ret) |
| 1184 | goto failed_send; |
| 1185 | |
| 1186 | goto out; |
| 1187 | |
| 1188 | failed_send: |
| 1189 | zfcp_fsf_req_free(req); |
| 1190 | out: |
Christof Schmitt | 44a24cb | 2010-09-08 14:39:57 +0200 | [diff] [blame] | 1191 | spin_unlock_irq(&qdio->req_q_lock); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1192 | return ret; |
| 1193 | } |
| 1194 | |
| 1195 | int zfcp_fsf_exchange_config_data(struct zfcp_erp_action *erp_action) |
| 1196 | { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1197 | struct zfcp_fsf_req *req; |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 1198 | struct zfcp_qdio *qdio = erp_action->adapter->qdio; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1199 | int retval = -EIO; |
| 1200 | |
Christof Schmitt | 44a24cb | 2010-09-08 14:39:57 +0200 | [diff] [blame] | 1201 | spin_lock_irq(&qdio->req_q_lock); |
Christof Schmitt | 6b9e152 | 2010-04-30 18:09:35 +0200 | [diff] [blame] | 1202 | if (zfcp_qdio_sbal_get(qdio)) |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1203 | goto out; |
Swen Schillig | 09a46c6 | 2009-08-18 15:43:16 +0200 | [diff] [blame] | 1204 | |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 1205 | req = zfcp_fsf_req_create(qdio, FSF_QTCB_EXCHANGE_CONFIG_DATA, |
Jan Glauber | 3ec90878 | 2011-06-06 14:14:40 +0200 | [diff] [blame] | 1206 | SBAL_SFLAGS0_TYPE_READ, |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 1207 | qdio->adapter->pool.erp_req); |
Swen Schillig | 09a46c6 | 2009-08-18 15:43:16 +0200 | [diff] [blame] | 1208 | |
Hirofumi Nakagawa | 025270f | 2008-08-21 13:43:37 +0200 | [diff] [blame] | 1209 | if (IS_ERR(req)) { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1210 | retval = PTR_ERR(req); |
| 1211 | goto out; |
| 1212 | } |
| 1213 | |
Swen Schillig | 09a46c6 | 2009-08-18 15:43:16 +0200 | [diff] [blame] | 1214 | req->status |= ZFCP_STATUS_FSFREQ_CLEANUP; |
Christof Schmitt | 1674b40 | 2010-04-30 18:09:34 +0200 | [diff] [blame] | 1215 | zfcp_qdio_set_sbale_last(qdio, &req->qdio_req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1216 | |
| 1217 | req->qtcb->bottom.config.feature_selection = |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1218 | FSF_FEATURE_NOTIFICATION_LOST | |
| 1219 | FSF_FEATURE_UPDATE_ALERT; |
| 1220 | req->erp_action = erp_action; |
| 1221 | req->handler = zfcp_fsf_exchange_config_data_handler; |
Christof Schmitt | e60a6d6 | 2010-02-17 11:18:49 +0100 | [diff] [blame] | 1222 | erp_action->fsf_req_id = req->req_id; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1223 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1224 | zfcp_fsf_start_erp_timer(req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1225 | retval = zfcp_fsf_req_send(req); |
| 1226 | if (retval) { |
| 1227 | zfcp_fsf_req_free(req); |
Christof Schmitt | e60a6d6 | 2010-02-17 11:18:49 +0100 | [diff] [blame] | 1228 | erp_action->fsf_req_id = 0; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1229 | } |
| 1230 | out: |
Christof Schmitt | 44a24cb | 2010-09-08 14:39:57 +0200 | [diff] [blame] | 1231 | spin_unlock_irq(&qdio->req_q_lock); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1232 | return retval; |
| 1233 | } |
| 1234 | |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 1235 | int zfcp_fsf_exchange_config_data_sync(struct zfcp_qdio *qdio, |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1236 | struct fsf_qtcb_bottom_config *data) |
| 1237 | { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1238 | struct zfcp_fsf_req *req = NULL; |
| 1239 | int retval = -EIO; |
| 1240 | |
Christof Schmitt | 44a24cb | 2010-09-08 14:39:57 +0200 | [diff] [blame] | 1241 | spin_lock_irq(&qdio->req_q_lock); |
Christof Schmitt | 6b9e152 | 2010-04-30 18:09:35 +0200 | [diff] [blame] | 1242 | if (zfcp_qdio_sbal_get(qdio)) |
Christof Schmitt | ada81b7 | 2009-04-17 15:08:03 +0200 | [diff] [blame] | 1243 | goto out_unlock; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1244 | |
Christof Schmitt | 1674b40 | 2010-04-30 18:09:34 +0200 | [diff] [blame] | 1245 | req = zfcp_fsf_req_create(qdio, FSF_QTCB_EXCHANGE_CONFIG_DATA, |
Jan Glauber | 3ec90878 | 2011-06-06 14:14:40 +0200 | [diff] [blame] | 1246 | SBAL_SFLAGS0_TYPE_READ, NULL); |
Swen Schillig | 09a46c6 | 2009-08-18 15:43:16 +0200 | [diff] [blame] | 1247 | |
Hirofumi Nakagawa | 025270f | 2008-08-21 13:43:37 +0200 | [diff] [blame] | 1248 | if (IS_ERR(req)) { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1249 | retval = PTR_ERR(req); |
Christof Schmitt | ada81b7 | 2009-04-17 15:08:03 +0200 | [diff] [blame] | 1250 | goto out_unlock; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1251 | } |
| 1252 | |
Christof Schmitt | 1674b40 | 2010-04-30 18:09:34 +0200 | [diff] [blame] | 1253 | zfcp_qdio_set_sbale_last(qdio, &req->qdio_req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1254 | req->handler = zfcp_fsf_exchange_config_data_handler; |
| 1255 | |
| 1256 | req->qtcb->bottom.config.feature_selection = |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1257 | FSF_FEATURE_NOTIFICATION_LOST | |
| 1258 | FSF_FEATURE_UPDATE_ALERT; |
| 1259 | |
| 1260 | if (data) |
| 1261 | req->data = data; |
| 1262 | |
| 1263 | zfcp_fsf_start_timer(req, ZFCP_FSF_REQUEST_TIMEOUT); |
| 1264 | retval = zfcp_fsf_req_send(req); |
Christof Schmitt | 44a24cb | 2010-09-08 14:39:57 +0200 | [diff] [blame] | 1265 | spin_unlock_irq(&qdio->req_q_lock); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1266 | if (!retval) |
Swen Schillig | 058b864 | 2009-08-18 15:43:14 +0200 | [diff] [blame] | 1267 | wait_for_completion(&req->completion); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1268 | |
| 1269 | zfcp_fsf_req_free(req); |
Christof Schmitt | ada81b7 | 2009-04-17 15:08:03 +0200 | [diff] [blame] | 1270 | return retval; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1271 | |
Christof Schmitt | ada81b7 | 2009-04-17 15:08:03 +0200 | [diff] [blame] | 1272 | out_unlock: |
Christof Schmitt | 44a24cb | 2010-09-08 14:39:57 +0200 | [diff] [blame] | 1273 | spin_unlock_irq(&qdio->req_q_lock); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1274 | return retval; |
| 1275 | } |
| 1276 | |
| 1277 | /** |
| 1278 | * zfcp_fsf_exchange_port_data - request information about local port |
| 1279 | * @erp_action: ERP action for the adapter for which port data is requested |
| 1280 | * Returns: 0 on success, error otherwise |
| 1281 | */ |
| 1282 | int zfcp_fsf_exchange_port_data(struct zfcp_erp_action *erp_action) |
| 1283 | { |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 1284 | struct zfcp_qdio *qdio = erp_action->adapter->qdio; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1285 | struct zfcp_fsf_req *req; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1286 | int retval = -EIO; |
| 1287 | |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 1288 | if (!(qdio->adapter->adapter_features & FSF_FEATURE_HBAAPI_MANAGEMENT)) |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1289 | return -EOPNOTSUPP; |
| 1290 | |
Christof Schmitt | 44a24cb | 2010-09-08 14:39:57 +0200 | [diff] [blame] | 1291 | spin_lock_irq(&qdio->req_q_lock); |
Christof Schmitt | 6b9e152 | 2010-04-30 18:09:35 +0200 | [diff] [blame] | 1292 | if (zfcp_qdio_sbal_get(qdio)) |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1293 | goto out; |
Swen Schillig | 09a46c6 | 2009-08-18 15:43:16 +0200 | [diff] [blame] | 1294 | |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 1295 | req = zfcp_fsf_req_create(qdio, FSF_QTCB_EXCHANGE_PORT_DATA, |
Jan Glauber | 3ec90878 | 2011-06-06 14:14:40 +0200 | [diff] [blame] | 1296 | SBAL_SFLAGS0_TYPE_READ, |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 1297 | qdio->adapter->pool.erp_req); |
Swen Schillig | 09a46c6 | 2009-08-18 15:43:16 +0200 | [diff] [blame] | 1298 | |
Hirofumi Nakagawa | 025270f | 2008-08-21 13:43:37 +0200 | [diff] [blame] | 1299 | if (IS_ERR(req)) { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1300 | retval = PTR_ERR(req); |
| 1301 | goto out; |
| 1302 | } |
| 1303 | |
Swen Schillig | 09a46c6 | 2009-08-18 15:43:16 +0200 | [diff] [blame] | 1304 | req->status |= ZFCP_STATUS_FSFREQ_CLEANUP; |
Christof Schmitt | 1674b40 | 2010-04-30 18:09:34 +0200 | [diff] [blame] | 1305 | zfcp_qdio_set_sbale_last(qdio, &req->qdio_req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1306 | |
| 1307 | req->handler = zfcp_fsf_exchange_port_data_handler; |
| 1308 | req->erp_action = erp_action; |
Christof Schmitt | e60a6d6 | 2010-02-17 11:18:49 +0100 | [diff] [blame] | 1309 | erp_action->fsf_req_id = req->req_id; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1310 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1311 | zfcp_fsf_start_erp_timer(req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1312 | retval = zfcp_fsf_req_send(req); |
| 1313 | if (retval) { |
| 1314 | zfcp_fsf_req_free(req); |
Christof Schmitt | e60a6d6 | 2010-02-17 11:18:49 +0100 | [diff] [blame] | 1315 | erp_action->fsf_req_id = 0; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1316 | } |
| 1317 | out: |
Christof Schmitt | 44a24cb | 2010-09-08 14:39:57 +0200 | [diff] [blame] | 1318 | spin_unlock_irq(&qdio->req_q_lock); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1319 | return retval; |
| 1320 | } |
| 1321 | |
| 1322 | /** |
| 1323 | * zfcp_fsf_exchange_port_data_sync - request information about local port |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 1324 | * @qdio: pointer to struct zfcp_qdio |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1325 | * @data: pointer to struct fsf_qtcb_bottom_port |
| 1326 | * Returns: 0 on success, error otherwise |
| 1327 | */ |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 1328 | int zfcp_fsf_exchange_port_data_sync(struct zfcp_qdio *qdio, |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1329 | struct fsf_qtcb_bottom_port *data) |
| 1330 | { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1331 | struct zfcp_fsf_req *req = NULL; |
| 1332 | int retval = -EIO; |
| 1333 | |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 1334 | if (!(qdio->adapter->adapter_features & FSF_FEATURE_HBAAPI_MANAGEMENT)) |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1335 | return -EOPNOTSUPP; |
| 1336 | |
Christof Schmitt | 44a24cb | 2010-09-08 14:39:57 +0200 | [diff] [blame] | 1337 | spin_lock_irq(&qdio->req_q_lock); |
Christof Schmitt | 6b9e152 | 2010-04-30 18:09:35 +0200 | [diff] [blame] | 1338 | if (zfcp_qdio_sbal_get(qdio)) |
Christof Schmitt | ada81b7 | 2009-04-17 15:08:03 +0200 | [diff] [blame] | 1339 | goto out_unlock; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1340 | |
Christof Schmitt | 1674b40 | 2010-04-30 18:09:34 +0200 | [diff] [blame] | 1341 | req = zfcp_fsf_req_create(qdio, FSF_QTCB_EXCHANGE_PORT_DATA, |
Jan Glauber | 3ec90878 | 2011-06-06 14:14:40 +0200 | [diff] [blame] | 1342 | SBAL_SFLAGS0_TYPE_READ, NULL); |
Swen Schillig | 09a46c6 | 2009-08-18 15:43:16 +0200 | [diff] [blame] | 1343 | |
Hirofumi Nakagawa | 025270f | 2008-08-21 13:43:37 +0200 | [diff] [blame] | 1344 | if (IS_ERR(req)) { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1345 | retval = PTR_ERR(req); |
Christof Schmitt | ada81b7 | 2009-04-17 15:08:03 +0200 | [diff] [blame] | 1346 | goto out_unlock; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1347 | } |
| 1348 | |
| 1349 | if (data) |
| 1350 | req->data = data; |
| 1351 | |
Christof Schmitt | 1674b40 | 2010-04-30 18:09:34 +0200 | [diff] [blame] | 1352 | zfcp_qdio_set_sbale_last(qdio, &req->qdio_req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1353 | |
| 1354 | req->handler = zfcp_fsf_exchange_port_data_handler; |
| 1355 | zfcp_fsf_start_timer(req, ZFCP_FSF_REQUEST_TIMEOUT); |
| 1356 | retval = zfcp_fsf_req_send(req); |
Christof Schmitt | 44a24cb | 2010-09-08 14:39:57 +0200 | [diff] [blame] | 1357 | spin_unlock_irq(&qdio->req_q_lock); |
Christof Schmitt | ada81b7 | 2009-04-17 15:08:03 +0200 | [diff] [blame] | 1358 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1359 | if (!retval) |
Swen Schillig | 058b864 | 2009-08-18 15:43:14 +0200 | [diff] [blame] | 1360 | wait_for_completion(&req->completion); |
| 1361 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1362 | zfcp_fsf_req_free(req); |
| 1363 | |
| 1364 | return retval; |
Christof Schmitt | ada81b7 | 2009-04-17 15:08:03 +0200 | [diff] [blame] | 1365 | |
| 1366 | out_unlock: |
Christof Schmitt | 44a24cb | 2010-09-08 14:39:57 +0200 | [diff] [blame] | 1367 | spin_unlock_irq(&qdio->req_q_lock); |
Christof Schmitt | ada81b7 | 2009-04-17 15:08:03 +0200 | [diff] [blame] | 1368 | return retval; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1369 | } |
| 1370 | |
| 1371 | static void zfcp_fsf_open_port_handler(struct zfcp_fsf_req *req) |
| 1372 | { |
| 1373 | struct zfcp_port *port = req->data; |
| 1374 | struct fsf_qtcb_header *header = &req->qtcb->header; |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 1375 | struct fc_els_flogi *plogi; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1376 | |
| 1377 | if (req->status & ZFCP_STATUS_FSFREQ_ERROR) |
Martin Petermann | a17c585 | 2009-05-15 13:18:19 +0200 | [diff] [blame] | 1378 | goto out; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1379 | |
| 1380 | switch (header->fsf_status) { |
| 1381 | case FSF_PORT_ALREADY_OPEN: |
| 1382 | break; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1383 | case FSF_MAXIMUM_NUMBER_OF_PORTS_EXCEEDED: |
| 1384 | dev_warn(&req->adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 1385 | "Not enough FCP adapter resources to open " |
Swen Schillig | 7ba58c9 | 2008-10-01 12:42:18 +0200 | [diff] [blame] | 1386 | "remote port 0x%016Lx\n", |
| 1387 | (unsigned long long)port->wwpn); |
Swen Schillig | edaed85 | 2010-09-08 14:40:01 +0200 | [diff] [blame] | 1388 | zfcp_erp_set_port_status(port, |
| 1389 | ZFCP_STATUS_COMMON_ERP_FAILED); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1390 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
| 1391 | break; |
| 1392 | case FSF_ADAPTER_STATUS_AVAILABLE: |
| 1393 | switch (header->fsf_status_qual.word[0]) { |
| 1394 | case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE: |
Steffen Maier | 394134f | 2017-07-28 12:31:00 +0200 | [diff] [blame] | 1395 | /* no zfcp_fc_test_link() with failed open port */ |
| 1396 | /* fall through */ |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1397 | case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1398 | case FSF_SQ_NO_RETRY_POSSIBLE: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1399 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
| 1400 | break; |
| 1401 | } |
| 1402 | break; |
| 1403 | case FSF_GOOD: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1404 | port->handle = header->port_handle; |
Peter Zijlstra | 805de8f4 | 2015-04-24 01:12:32 +0200 | [diff] [blame] | 1405 | atomic_or(ZFCP_STATUS_COMMON_OPEN | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1406 | ZFCP_STATUS_PORT_PHYS_OPEN, &port->status); |
Peter Zijlstra | 805de8f4 | 2015-04-24 01:12:32 +0200 | [diff] [blame] | 1407 | atomic_andnot(ZFCP_STATUS_COMMON_ACCESS_BOXED, |
Andreas Herrmann | d736a27b | 2005-06-13 13:23:57 +0200 | [diff] [blame] | 1408 | &port->status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1409 | /* check whether D_ID has changed during open */ |
| 1410 | /* |
| 1411 | * FIXME: This check is not airtight, as the FCP channel does |
| 1412 | * not monitor closures of target port connections caused on |
| 1413 | * the remote side. Thus, they might miss out on invalidating |
| 1414 | * locally cached WWPNs (and other N_Port parameters) of gone |
| 1415 | * target ports. So, our heroic attempt to make things safe |
| 1416 | * could be undermined by 'open port' response data tagged with |
| 1417 | * obsolete WWPNs. Another reason to monitor potential |
| 1418 | * connection closures ourself at least (by interpreting |
| 1419 | * incoming ELS' and unsolicited status). It just crosses my |
| 1420 | * mind that one should be able to cross-check by means of |
| 1421 | * another GID_PN straight after a port has been opened. |
| 1422 | * Alternately, an ADISC/PDISC ELS should suffice, as well. |
| 1423 | */ |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 1424 | plogi = (struct fc_els_flogi *) req->qtcb->bottom.support.els; |
Christof Schmitt | 39eb7e9a | 2008-12-19 16:57:01 +0100 | [diff] [blame] | 1425 | if (req->qtcb->bottom.support.els1_length >= |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 1426 | FSF_PLOGI_MIN_LEN) |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1427 | zfcp_fc_plogi_evaluate(port, plogi); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1428 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1429 | case FSF_UNKNOWN_OP_SUBTYPE: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1430 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1431 | break; |
| 1432 | } |
Martin Petermann | a17c585 | 2009-05-15 13:18:19 +0200 | [diff] [blame] | 1433 | |
| 1434 | out: |
Christof Schmitt | 615f59e | 2010-02-17 11:18:56 +0100 | [diff] [blame] | 1435 | put_device(&port->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1436 | } |
| 1437 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1438 | /** |
| 1439 | * zfcp_fsf_open_port - create and send open port request |
| 1440 | * @erp_action: pointer to struct zfcp_erp_action |
| 1441 | * Returns: 0 on success, error otherwise |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1442 | */ |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1443 | int zfcp_fsf_open_port(struct zfcp_erp_action *erp_action) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1444 | { |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 1445 | struct zfcp_qdio *qdio = erp_action->adapter->qdio; |
Martin Petermann | a17c585 | 2009-05-15 13:18:19 +0200 | [diff] [blame] | 1446 | struct zfcp_port *port = erp_action->port; |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 1447 | struct zfcp_fsf_req *req; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1448 | int retval = -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1449 | |
Christof Schmitt | 44a24cb | 2010-09-08 14:39:57 +0200 | [diff] [blame] | 1450 | spin_lock_irq(&qdio->req_q_lock); |
Christof Schmitt | 6b9e152 | 2010-04-30 18:09:35 +0200 | [diff] [blame] | 1451 | if (zfcp_qdio_sbal_get(qdio)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1452 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1453 | |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 1454 | req = zfcp_fsf_req_create(qdio, FSF_QTCB_OPEN_PORT_WITH_DID, |
Jan Glauber | 3ec90878 | 2011-06-06 14:14:40 +0200 | [diff] [blame] | 1455 | SBAL_SFLAGS0_TYPE_READ, |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 1456 | qdio->adapter->pool.erp_req); |
Swen Schillig | 09a46c6 | 2009-08-18 15:43:16 +0200 | [diff] [blame] | 1457 | |
Hirofumi Nakagawa | 025270f | 2008-08-21 13:43:37 +0200 | [diff] [blame] | 1458 | if (IS_ERR(req)) { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1459 | retval = PTR_ERR(req); |
| 1460 | goto out; |
| 1461 | } |
| 1462 | |
Swen Schillig | 09a46c6 | 2009-08-18 15:43:16 +0200 | [diff] [blame] | 1463 | req->status |= ZFCP_STATUS_FSFREQ_CLEANUP; |
Christof Schmitt | 1674b40 | 2010-04-30 18:09:34 +0200 | [diff] [blame] | 1464 | zfcp_qdio_set_sbale_last(qdio, &req->qdio_req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1465 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1466 | req->handler = zfcp_fsf_open_port_handler; |
Christof Schmitt | 800c0ca | 2009-11-24 16:54:12 +0100 | [diff] [blame] | 1467 | hton24(req->qtcb->bottom.support.d_id, port->d_id); |
Martin Petermann | a17c585 | 2009-05-15 13:18:19 +0200 | [diff] [blame] | 1468 | req->data = port; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1469 | req->erp_action = erp_action; |
Christof Schmitt | e60a6d6 | 2010-02-17 11:18:49 +0100 | [diff] [blame] | 1470 | erp_action->fsf_req_id = req->req_id; |
Christof Schmitt | 615f59e | 2010-02-17 11:18:56 +0100 | [diff] [blame] | 1471 | get_device(&port->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1472 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1473 | zfcp_fsf_start_erp_timer(req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1474 | retval = zfcp_fsf_req_send(req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1475 | if (retval) { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1476 | zfcp_fsf_req_free(req); |
Christof Schmitt | e60a6d6 | 2010-02-17 11:18:49 +0100 | [diff] [blame] | 1477 | erp_action->fsf_req_id = 0; |
Christof Schmitt | 615f59e | 2010-02-17 11:18:56 +0100 | [diff] [blame] | 1478 | put_device(&port->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1479 | } |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1480 | out: |
Christof Schmitt | 44a24cb | 2010-09-08 14:39:57 +0200 | [diff] [blame] | 1481 | spin_unlock_irq(&qdio->req_q_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1482 | return retval; |
| 1483 | } |
| 1484 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1485 | static void zfcp_fsf_close_port_handler(struct zfcp_fsf_req *req) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1486 | { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1487 | struct zfcp_port *port = req->data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1488 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1489 | if (req->status & ZFCP_STATUS_FSFREQ_ERROR) |
Swen Schillig | 44cc76f | 2008-10-01 12:42:16 +0200 | [diff] [blame] | 1490 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1491 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1492 | switch (req->qtcb->header.fsf_status) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1493 | case FSF_PORT_HANDLE_NOT_VALID: |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 1494 | zfcp_erp_adapter_reopen(port->adapter, 0, "fscph_1"); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1495 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1496 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1497 | case FSF_ADAPTER_STATUS_AVAILABLE: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1498 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1499 | case FSF_GOOD: |
Swen Schillig | edaed85 | 2010-09-08 14:40:01 +0200 | [diff] [blame] | 1500 | zfcp_erp_clear_port_status(port, ZFCP_STATUS_COMMON_OPEN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1501 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1502 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1503 | } |
| 1504 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1505 | /** |
| 1506 | * zfcp_fsf_close_port - create and send close port request |
| 1507 | * @erp_action: pointer to struct zfcp_erp_action |
| 1508 | * Returns: 0 on success, error otherwise |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1509 | */ |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1510 | int zfcp_fsf_close_port(struct zfcp_erp_action *erp_action) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1511 | { |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 1512 | struct zfcp_qdio *qdio = erp_action->adapter->qdio; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1513 | struct zfcp_fsf_req *req; |
| 1514 | int retval = -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1515 | |
Christof Schmitt | 44a24cb | 2010-09-08 14:39:57 +0200 | [diff] [blame] | 1516 | spin_lock_irq(&qdio->req_q_lock); |
Christof Schmitt | 6b9e152 | 2010-04-30 18:09:35 +0200 | [diff] [blame] | 1517 | if (zfcp_qdio_sbal_get(qdio)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1518 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1519 | |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 1520 | req = zfcp_fsf_req_create(qdio, FSF_QTCB_CLOSE_PORT, |
Jan Glauber | 3ec90878 | 2011-06-06 14:14:40 +0200 | [diff] [blame] | 1521 | SBAL_SFLAGS0_TYPE_READ, |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 1522 | qdio->adapter->pool.erp_req); |
Swen Schillig | 09a46c6 | 2009-08-18 15:43:16 +0200 | [diff] [blame] | 1523 | |
Hirofumi Nakagawa | 025270f | 2008-08-21 13:43:37 +0200 | [diff] [blame] | 1524 | if (IS_ERR(req)) { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1525 | retval = PTR_ERR(req); |
| 1526 | goto out; |
| 1527 | } |
| 1528 | |
Swen Schillig | 09a46c6 | 2009-08-18 15:43:16 +0200 | [diff] [blame] | 1529 | req->status |= ZFCP_STATUS_FSFREQ_CLEANUP; |
Christof Schmitt | 1674b40 | 2010-04-30 18:09:34 +0200 | [diff] [blame] | 1530 | zfcp_qdio_set_sbale_last(qdio, &req->qdio_req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1531 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1532 | req->handler = zfcp_fsf_close_port_handler; |
| 1533 | req->data = erp_action->port; |
| 1534 | req->erp_action = erp_action; |
| 1535 | req->qtcb->header.port_handle = erp_action->port->handle; |
Christof Schmitt | e60a6d6 | 2010-02-17 11:18:49 +0100 | [diff] [blame] | 1536 | erp_action->fsf_req_id = req->req_id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1537 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1538 | zfcp_fsf_start_erp_timer(req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1539 | retval = zfcp_fsf_req_send(req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1540 | if (retval) { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1541 | zfcp_fsf_req_free(req); |
Christof Schmitt | e60a6d6 | 2010-02-17 11:18:49 +0100 | [diff] [blame] | 1542 | erp_action->fsf_req_id = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1543 | } |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1544 | out: |
Christof Schmitt | 44a24cb | 2010-09-08 14:39:57 +0200 | [diff] [blame] | 1545 | spin_unlock_irq(&qdio->req_q_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1546 | return retval; |
| 1547 | } |
| 1548 | |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 1549 | static void zfcp_fsf_open_wka_port_handler(struct zfcp_fsf_req *req) |
| 1550 | { |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 1551 | struct zfcp_fc_wka_port *wka_port = req->data; |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 1552 | struct fsf_qtcb_header *header = &req->qtcb->header; |
| 1553 | |
| 1554 | if (req->status & ZFCP_STATUS_FSFREQ_ERROR) { |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 1555 | wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE; |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 1556 | goto out; |
| 1557 | } |
| 1558 | |
| 1559 | switch (header->fsf_status) { |
| 1560 | case FSF_MAXIMUM_NUMBER_OF_PORTS_EXCEEDED: |
| 1561 | dev_warn(&req->adapter->ccw_device->dev, |
| 1562 | "Opening WKA port 0x%x failed\n", wka_port->d_id); |
Christof Schmitt | dceab65 | 2009-05-15 13:18:18 +0200 | [diff] [blame] | 1563 | /* fall through */ |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 1564 | case FSF_ADAPTER_STATUS_AVAILABLE: |
| 1565 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 1566 | wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE; |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 1567 | break; |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 1568 | case FSF_GOOD: |
| 1569 | wka_port->handle = header->port_handle; |
Swen Schillig | 27f492c | 2009-07-13 15:06:13 +0200 | [diff] [blame] | 1570 | /* fall through */ |
| 1571 | case FSF_PORT_ALREADY_OPEN: |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 1572 | wka_port->status = ZFCP_FC_WKA_PORT_ONLINE; |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 1573 | } |
| 1574 | out: |
| 1575 | wake_up(&wka_port->completion_wq); |
| 1576 | } |
| 1577 | |
| 1578 | /** |
| 1579 | * zfcp_fsf_open_wka_port - create and send open wka-port request |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 1580 | * @wka_port: pointer to struct zfcp_fc_wka_port |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 1581 | * Returns: 0 on success, error otherwise |
| 1582 | */ |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 1583 | int zfcp_fsf_open_wka_port(struct zfcp_fc_wka_port *wka_port) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 1584 | { |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 1585 | struct zfcp_qdio *qdio = wka_port->adapter->qdio; |
Steffen Maier | 2dfa668 | 2017-02-08 15:34:22 +0100 | [diff] [blame] | 1586 | struct zfcp_fsf_req *req; |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 1587 | int retval = -EIO; |
| 1588 | |
Christof Schmitt | 44a24cb | 2010-09-08 14:39:57 +0200 | [diff] [blame] | 1589 | spin_lock_irq(&qdio->req_q_lock); |
Christof Schmitt | 6b9e152 | 2010-04-30 18:09:35 +0200 | [diff] [blame] | 1590 | if (zfcp_qdio_sbal_get(qdio)) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 1591 | goto out; |
| 1592 | |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 1593 | req = zfcp_fsf_req_create(qdio, FSF_QTCB_OPEN_PORT_WITH_DID, |
Jan Glauber | 3ec90878 | 2011-06-06 14:14:40 +0200 | [diff] [blame] | 1594 | SBAL_SFLAGS0_TYPE_READ, |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 1595 | qdio->adapter->pool.erp_req); |
Swen Schillig | 09a46c6 | 2009-08-18 15:43:16 +0200 | [diff] [blame] | 1596 | |
Tobias Klauser | 4e7d7af | 2011-02-22 19:54:38 +0100 | [diff] [blame] | 1597 | if (IS_ERR(req)) { |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 1598 | retval = PTR_ERR(req); |
| 1599 | goto out; |
| 1600 | } |
| 1601 | |
Swen Schillig | 09a46c6 | 2009-08-18 15:43:16 +0200 | [diff] [blame] | 1602 | req->status |= ZFCP_STATUS_FSFREQ_CLEANUP; |
Christof Schmitt | 1674b40 | 2010-04-30 18:09:34 +0200 | [diff] [blame] | 1603 | zfcp_qdio_set_sbale_last(qdio, &req->qdio_req); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 1604 | |
| 1605 | req->handler = zfcp_fsf_open_wka_port_handler; |
Christof Schmitt | 800c0ca | 2009-11-24 16:54:12 +0100 | [diff] [blame] | 1606 | hton24(req->qtcb->bottom.support.d_id, wka_port->d_id); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 1607 | req->data = wka_port; |
| 1608 | |
| 1609 | zfcp_fsf_start_timer(req, ZFCP_FSF_REQUEST_TIMEOUT); |
| 1610 | retval = zfcp_fsf_req_send(req); |
| 1611 | if (retval) |
| 1612 | zfcp_fsf_req_free(req); |
| 1613 | out: |
Christof Schmitt | 44a24cb | 2010-09-08 14:39:57 +0200 | [diff] [blame] | 1614 | spin_unlock_irq(&qdio->req_q_lock); |
Steffen Maier | 2dfa668 | 2017-02-08 15:34:22 +0100 | [diff] [blame] | 1615 | if (!retval) |
Steffen Maier | d27a7cb | 2016-08-10 18:30:49 +0200 | [diff] [blame] | 1616 | zfcp_dbf_rec_run_wka("fsowp_1", wka_port, req->req_id); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 1617 | return retval; |
| 1618 | } |
| 1619 | |
| 1620 | static void zfcp_fsf_close_wka_port_handler(struct zfcp_fsf_req *req) |
| 1621 | { |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 1622 | struct zfcp_fc_wka_port *wka_port = req->data; |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 1623 | |
| 1624 | if (req->qtcb->header.fsf_status == FSF_PORT_HANDLE_NOT_VALID) { |
| 1625 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 1626 | zfcp_erp_adapter_reopen(wka_port->adapter, 0, "fscwph1"); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 1627 | } |
| 1628 | |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 1629 | wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE; |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 1630 | wake_up(&wka_port->completion_wq); |
| 1631 | } |
| 1632 | |
| 1633 | /** |
| 1634 | * zfcp_fsf_close_wka_port - create and send close wka port request |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 1635 | * @wka_port: WKA port to open |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 1636 | * Returns: 0 on success, error otherwise |
| 1637 | */ |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 1638 | int zfcp_fsf_close_wka_port(struct zfcp_fc_wka_port *wka_port) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 1639 | { |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 1640 | struct zfcp_qdio *qdio = wka_port->adapter->qdio; |
Steffen Maier | 2dfa668 | 2017-02-08 15:34:22 +0100 | [diff] [blame] | 1641 | struct zfcp_fsf_req *req; |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 1642 | int retval = -EIO; |
| 1643 | |
Christof Schmitt | 44a24cb | 2010-09-08 14:39:57 +0200 | [diff] [blame] | 1644 | spin_lock_irq(&qdio->req_q_lock); |
Christof Schmitt | 6b9e152 | 2010-04-30 18:09:35 +0200 | [diff] [blame] | 1645 | if (zfcp_qdio_sbal_get(qdio)) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 1646 | goto out; |
| 1647 | |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 1648 | req = zfcp_fsf_req_create(qdio, FSF_QTCB_CLOSE_PORT, |
Jan Glauber | 3ec90878 | 2011-06-06 14:14:40 +0200 | [diff] [blame] | 1649 | SBAL_SFLAGS0_TYPE_READ, |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 1650 | qdio->adapter->pool.erp_req); |
Swen Schillig | 09a46c6 | 2009-08-18 15:43:16 +0200 | [diff] [blame] | 1651 | |
Tobias Klauser | 4e7d7af | 2011-02-22 19:54:38 +0100 | [diff] [blame] | 1652 | if (IS_ERR(req)) { |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 1653 | retval = PTR_ERR(req); |
| 1654 | goto out; |
| 1655 | } |
| 1656 | |
Swen Schillig | 09a46c6 | 2009-08-18 15:43:16 +0200 | [diff] [blame] | 1657 | req->status |= ZFCP_STATUS_FSFREQ_CLEANUP; |
Christof Schmitt | 1674b40 | 2010-04-30 18:09:34 +0200 | [diff] [blame] | 1658 | zfcp_qdio_set_sbale_last(qdio, &req->qdio_req); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 1659 | |
| 1660 | req->handler = zfcp_fsf_close_wka_port_handler; |
| 1661 | req->data = wka_port; |
| 1662 | req->qtcb->header.port_handle = wka_port->handle; |
| 1663 | |
| 1664 | zfcp_fsf_start_timer(req, ZFCP_FSF_REQUEST_TIMEOUT); |
| 1665 | retval = zfcp_fsf_req_send(req); |
| 1666 | if (retval) |
| 1667 | zfcp_fsf_req_free(req); |
| 1668 | out: |
Christof Schmitt | 44a24cb | 2010-09-08 14:39:57 +0200 | [diff] [blame] | 1669 | spin_unlock_irq(&qdio->req_q_lock); |
Steffen Maier | 2dfa668 | 2017-02-08 15:34:22 +0100 | [diff] [blame] | 1670 | if (!retval) |
Steffen Maier | d27a7cb | 2016-08-10 18:30:49 +0200 | [diff] [blame] | 1671 | zfcp_dbf_rec_run_wka("fscwp_1", wka_port, req->req_id); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 1672 | return retval; |
| 1673 | } |
| 1674 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1675 | static void zfcp_fsf_close_physical_port_handler(struct zfcp_fsf_req *req) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1676 | { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1677 | struct zfcp_port *port = req->data; |
| 1678 | struct fsf_qtcb_header *header = &req->qtcb->header; |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 1679 | struct scsi_device *sdev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1680 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1681 | if (req->status & ZFCP_STATUS_FSFREQ_ERROR) |
Christof Schmitt | a5b11dd | 2009-03-02 13:08:54 +0100 | [diff] [blame] | 1682 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1683 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1684 | switch (header->fsf_status) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1685 | case FSF_PORT_HANDLE_NOT_VALID: |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 1686 | zfcp_erp_adapter_reopen(port->adapter, 0, "fscpph1"); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1687 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1688 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1689 | case FSF_PORT_BOXED: |
Christof Schmitt | 5c815d1 | 2008-03-10 16:18:54 +0100 | [diff] [blame] | 1690 | /* can't use generic zfcp_erp_modify_port_status because |
| 1691 | * ZFCP_STATUS_COMMON_OPEN must not be reset for the port */ |
Peter Zijlstra | 805de8f4 | 2015-04-24 01:12:32 +0200 | [diff] [blame] | 1692 | atomic_andnot(ZFCP_STATUS_PORT_PHYS_OPEN, &port->status); |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 1693 | shost_for_each_device(sdev, port->adapter->scsi_host) |
| 1694 | if (sdev_to_zfcp(sdev)->port == port) |
Peter Zijlstra | 805de8f4 | 2015-04-24 01:12:32 +0200 | [diff] [blame] | 1695 | atomic_andnot(ZFCP_STATUS_COMMON_OPEN, |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 1696 | &sdev_to_zfcp(sdev)->status); |
Swen Schillig | edaed85 | 2010-09-08 14:40:01 +0200 | [diff] [blame] | 1697 | zfcp_erp_set_port_status(port, ZFCP_STATUS_COMMON_ACCESS_BOXED); |
| 1698 | zfcp_erp_port_reopen(port, ZFCP_STATUS_COMMON_ERP_FAILED, |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 1699 | "fscpph2"); |
Christof Schmitt | 4c571c6 | 2009-11-24 16:54:15 +0100 | [diff] [blame] | 1700 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1701 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1702 | case FSF_ADAPTER_STATUS_AVAILABLE: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1703 | switch (header->fsf_status_qual.word[0]) { |
| 1704 | case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1705 | /* fall through */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1706 | case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1707 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1708 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1709 | } |
| 1710 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1711 | case FSF_GOOD: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1712 | /* can't use generic zfcp_erp_modify_port_status because |
| 1713 | * ZFCP_STATUS_COMMON_OPEN must not be reset for the port |
| 1714 | */ |
Peter Zijlstra | 805de8f4 | 2015-04-24 01:12:32 +0200 | [diff] [blame] | 1715 | atomic_andnot(ZFCP_STATUS_PORT_PHYS_OPEN, &port->status); |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 1716 | shost_for_each_device(sdev, port->adapter->scsi_host) |
| 1717 | if (sdev_to_zfcp(sdev)->port == port) |
Peter Zijlstra | 805de8f4 | 2015-04-24 01:12:32 +0200 | [diff] [blame] | 1718 | atomic_andnot(ZFCP_STATUS_COMMON_OPEN, |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 1719 | &sdev_to_zfcp(sdev)->status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1720 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1721 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1722 | } |
| 1723 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1724 | /** |
| 1725 | * zfcp_fsf_close_physical_port - close physical port |
| 1726 | * @erp_action: pointer to struct zfcp_erp_action |
| 1727 | * Returns: 0 on success |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1728 | */ |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1729 | int zfcp_fsf_close_physical_port(struct zfcp_erp_action *erp_action) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1730 | { |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 1731 | struct zfcp_qdio *qdio = erp_action->adapter->qdio; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1732 | struct zfcp_fsf_req *req; |
| 1733 | int retval = -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1734 | |
Christof Schmitt | 44a24cb | 2010-09-08 14:39:57 +0200 | [diff] [blame] | 1735 | spin_lock_irq(&qdio->req_q_lock); |
Christof Schmitt | 6b9e152 | 2010-04-30 18:09:35 +0200 | [diff] [blame] | 1736 | if (zfcp_qdio_sbal_get(qdio)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1737 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1738 | |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 1739 | req = zfcp_fsf_req_create(qdio, FSF_QTCB_CLOSE_PHYSICAL_PORT, |
Jan Glauber | 3ec90878 | 2011-06-06 14:14:40 +0200 | [diff] [blame] | 1740 | SBAL_SFLAGS0_TYPE_READ, |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 1741 | qdio->adapter->pool.erp_req); |
Swen Schillig | 09a46c6 | 2009-08-18 15:43:16 +0200 | [diff] [blame] | 1742 | |
Hirofumi Nakagawa | 025270f | 2008-08-21 13:43:37 +0200 | [diff] [blame] | 1743 | if (IS_ERR(req)) { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1744 | retval = PTR_ERR(req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1745 | goto out; |
| 1746 | } |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1747 | |
Swen Schillig | 09a46c6 | 2009-08-18 15:43:16 +0200 | [diff] [blame] | 1748 | req->status |= ZFCP_STATUS_FSFREQ_CLEANUP; |
Christof Schmitt | 1674b40 | 2010-04-30 18:09:34 +0200 | [diff] [blame] | 1749 | zfcp_qdio_set_sbale_last(qdio, &req->qdio_req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1750 | |
| 1751 | req->data = erp_action->port; |
| 1752 | req->qtcb->header.port_handle = erp_action->port->handle; |
| 1753 | req->erp_action = erp_action; |
| 1754 | req->handler = zfcp_fsf_close_physical_port_handler; |
Christof Schmitt | e60a6d6 | 2010-02-17 11:18:49 +0100 | [diff] [blame] | 1755 | erp_action->fsf_req_id = req->req_id; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1756 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1757 | zfcp_fsf_start_erp_timer(req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1758 | retval = zfcp_fsf_req_send(req); |
| 1759 | if (retval) { |
| 1760 | zfcp_fsf_req_free(req); |
Christof Schmitt | e60a6d6 | 2010-02-17 11:18:49 +0100 | [diff] [blame] | 1761 | erp_action->fsf_req_id = 0; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1762 | } |
| 1763 | out: |
Christof Schmitt | 44a24cb | 2010-09-08 14:39:57 +0200 | [diff] [blame] | 1764 | spin_unlock_irq(&qdio->req_q_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1765 | return retval; |
| 1766 | } |
| 1767 | |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 1768 | static void zfcp_fsf_open_lun_handler(struct zfcp_fsf_req *req) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1769 | { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1770 | struct zfcp_adapter *adapter = req->adapter; |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 1771 | struct scsi_device *sdev = req->data; |
Martin Peschke | d436de8 | 2012-09-04 15:23:36 +0200 | [diff] [blame] | 1772 | struct zfcp_scsi_dev *zfcp_sdev; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1773 | struct fsf_qtcb_header *header = &req->qtcb->header; |
Martin Peschke | 663e089 | 2013-04-26 16:13:54 +0200 | [diff] [blame] | 1774 | union fsf_status_qual *qual = &header->fsf_status_qual; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1775 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1776 | if (req->status & ZFCP_STATUS_FSFREQ_ERROR) |
Swen Schillig | 44cc76f | 2008-10-01 12:42:16 +0200 | [diff] [blame] | 1777 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1778 | |
Martin Peschke | d436de8 | 2012-09-04 15:23:36 +0200 | [diff] [blame] | 1779 | zfcp_sdev = sdev_to_zfcp(sdev); |
| 1780 | |
Peter Zijlstra | 805de8f4 | 2015-04-24 01:12:32 +0200 | [diff] [blame] | 1781 | atomic_andnot(ZFCP_STATUS_COMMON_ACCESS_DENIED | |
Martin Peschke | 663e089 | 2013-04-26 16:13:54 +0200 | [diff] [blame] | 1782 | ZFCP_STATUS_COMMON_ACCESS_BOXED, |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 1783 | &zfcp_sdev->status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1784 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1785 | switch (header->fsf_status) { |
| 1786 | |
| 1787 | case FSF_PORT_HANDLE_NOT_VALID: |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 1788 | zfcp_erp_adapter_reopen(adapter, 0, "fsouh_1"); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1789 | /* fall through */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1790 | case FSF_LUN_ALREADY_OPEN: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1791 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1792 | case FSF_PORT_BOXED: |
Swen Schillig | edaed85 | 2010-09-08 14:40:01 +0200 | [diff] [blame] | 1793 | zfcp_erp_set_port_status(zfcp_sdev->port, |
| 1794 | ZFCP_STATUS_COMMON_ACCESS_BOXED); |
| 1795 | zfcp_erp_port_reopen(zfcp_sdev->port, |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 1796 | ZFCP_STATUS_COMMON_ERP_FAILED, "fsouh_2"); |
Christof Schmitt | 4c571c6 | 2009-11-24 16:54:15 +0100 | [diff] [blame] | 1797 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1798 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1799 | case FSF_LUN_SHARING_VIOLATION: |
Martin Peschke | 663e089 | 2013-04-26 16:13:54 +0200 | [diff] [blame] | 1800 | if (qual->word[0]) |
| 1801 | dev_warn(&zfcp_sdev->port->adapter->ccw_device->dev, |
| 1802 | "LUN 0x%Lx on port 0x%Lx is already in " |
| 1803 | "use by CSS%d, MIF Image ID %x\n", |
| 1804 | zfcp_scsi_dev_lun(sdev), |
| 1805 | (unsigned long long)zfcp_sdev->port->wwpn, |
| 1806 | qual->fsf_queue_designator.cssid, |
| 1807 | qual->fsf_queue_designator.hla); |
| 1808 | zfcp_erp_set_lun_status(sdev, |
| 1809 | ZFCP_STATUS_COMMON_ERP_FAILED | |
| 1810 | ZFCP_STATUS_COMMON_ACCESS_DENIED); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1811 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1812 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1813 | case FSF_MAXIMUM_NUMBER_OF_LUNS_EXCEEDED: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1814 | dev_warn(&adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 1815 | "No handle is available for LUN " |
| 1816 | "0x%016Lx on port 0x%016Lx\n", |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 1817 | (unsigned long long)zfcp_scsi_dev_lun(sdev), |
| 1818 | (unsigned long long)zfcp_sdev->port->wwpn); |
Swen Schillig | edaed85 | 2010-09-08 14:40:01 +0200 | [diff] [blame] | 1819 | zfcp_erp_set_lun_status(sdev, ZFCP_STATUS_COMMON_ERP_FAILED); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1820 | /* fall through */ |
| 1821 | case FSF_INVALID_COMMAND_OPTION: |
| 1822 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1823 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1824 | case FSF_ADAPTER_STATUS_AVAILABLE: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1825 | switch (header->fsf_status_qual.word[0]) { |
| 1826 | case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE: |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 1827 | zfcp_fc_test_link(zfcp_sdev->port); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1828 | /* fall through */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1829 | case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1830 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1831 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1832 | } |
| 1833 | break; |
| 1834 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1835 | case FSF_GOOD: |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 1836 | zfcp_sdev->lun_handle = header->lun_handle; |
Peter Zijlstra | 805de8f4 | 2015-04-24 01:12:32 +0200 | [diff] [blame] | 1837 | atomic_or(ZFCP_STATUS_COMMON_OPEN, &zfcp_sdev->status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1838 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1839 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1840 | } |
| 1841 | |
| 1842 | /** |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 1843 | * zfcp_fsf_open_lun - open LUN |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1844 | * @erp_action: pointer to struct zfcp_erp_action |
| 1845 | * Returns: 0 on success, error otherwise |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1846 | */ |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 1847 | int zfcp_fsf_open_lun(struct zfcp_erp_action *erp_action) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1848 | { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1849 | struct zfcp_adapter *adapter = erp_action->adapter; |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 1850 | struct zfcp_qdio *qdio = adapter->qdio; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1851 | struct zfcp_fsf_req *req; |
| 1852 | int retval = -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1853 | |
Christof Schmitt | 44a24cb | 2010-09-08 14:39:57 +0200 | [diff] [blame] | 1854 | spin_lock_irq(&qdio->req_q_lock); |
Christof Schmitt | 6b9e152 | 2010-04-30 18:09:35 +0200 | [diff] [blame] | 1855 | if (zfcp_qdio_sbal_get(qdio)) |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1856 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1857 | |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 1858 | req = zfcp_fsf_req_create(qdio, FSF_QTCB_OPEN_LUN, |
Jan Glauber | 3ec90878 | 2011-06-06 14:14:40 +0200 | [diff] [blame] | 1859 | SBAL_SFLAGS0_TYPE_READ, |
Swen Schillig | a4623c4 | 2009-08-18 15:43:15 +0200 | [diff] [blame] | 1860 | adapter->pool.erp_req); |
Swen Schillig | 09a46c6 | 2009-08-18 15:43:16 +0200 | [diff] [blame] | 1861 | |
Hirofumi Nakagawa | 025270f | 2008-08-21 13:43:37 +0200 | [diff] [blame] | 1862 | if (IS_ERR(req)) { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1863 | retval = PTR_ERR(req); |
| 1864 | goto out; |
Christof Schmitt | ba17242 | 2007-12-20 12:30:26 +0100 | [diff] [blame] | 1865 | } |
| 1866 | |
Swen Schillig | 09a46c6 | 2009-08-18 15:43:16 +0200 | [diff] [blame] | 1867 | req->status |= ZFCP_STATUS_FSFREQ_CLEANUP; |
Christof Schmitt | 1674b40 | 2010-04-30 18:09:34 +0200 | [diff] [blame] | 1868 | zfcp_qdio_set_sbale_last(qdio, &req->qdio_req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1869 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1870 | req->qtcb->header.port_handle = erp_action->port->handle; |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 1871 | req->qtcb->bottom.support.fcp_lun = zfcp_scsi_dev_lun(erp_action->sdev); |
| 1872 | req->handler = zfcp_fsf_open_lun_handler; |
| 1873 | req->data = erp_action->sdev; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1874 | req->erp_action = erp_action; |
Christof Schmitt | e60a6d6 | 2010-02-17 11:18:49 +0100 | [diff] [blame] | 1875 | erp_action->fsf_req_id = req->req_id; |
Andreas Herrmann | 059c97d | 2005-09-13 21:47:52 +0200 | [diff] [blame] | 1876 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1877 | if (!(adapter->connection_features & FSF_FEATURE_NPIV_MODE)) |
| 1878 | req->qtcb->bottom.support.option = FSF_OPEN_LUN_SUPPRESS_BOXING; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1879 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1880 | zfcp_fsf_start_erp_timer(req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1881 | retval = zfcp_fsf_req_send(req); |
| 1882 | if (retval) { |
| 1883 | zfcp_fsf_req_free(req); |
Christof Schmitt | e60a6d6 | 2010-02-17 11:18:49 +0100 | [diff] [blame] | 1884 | erp_action->fsf_req_id = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1885 | } |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1886 | out: |
Christof Schmitt | 44a24cb | 2010-09-08 14:39:57 +0200 | [diff] [blame] | 1887 | spin_unlock_irq(&qdio->req_q_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1888 | return retval; |
| 1889 | } |
| 1890 | |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 1891 | static void zfcp_fsf_close_lun_handler(struct zfcp_fsf_req *req) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1892 | { |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 1893 | struct scsi_device *sdev = req->data; |
Martin Peschke | d436de8 | 2012-09-04 15:23:36 +0200 | [diff] [blame] | 1894 | struct zfcp_scsi_dev *zfcp_sdev; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1895 | |
| 1896 | if (req->status & ZFCP_STATUS_FSFREQ_ERROR) |
Swen Schillig | 44cc76f | 2008-10-01 12:42:16 +0200 | [diff] [blame] | 1897 | return; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1898 | |
Martin Peschke | d436de8 | 2012-09-04 15:23:36 +0200 | [diff] [blame] | 1899 | zfcp_sdev = sdev_to_zfcp(sdev); |
| 1900 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1901 | switch (req->qtcb->header.fsf_status) { |
| 1902 | case FSF_PORT_HANDLE_NOT_VALID: |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 1903 | zfcp_erp_adapter_reopen(zfcp_sdev->port->adapter, 0, "fscuh_1"); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1904 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
| 1905 | break; |
| 1906 | case FSF_LUN_HANDLE_NOT_VALID: |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 1907 | zfcp_erp_port_reopen(zfcp_sdev->port, 0, "fscuh_2"); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1908 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
| 1909 | break; |
| 1910 | case FSF_PORT_BOXED: |
Swen Schillig | edaed85 | 2010-09-08 14:40:01 +0200 | [diff] [blame] | 1911 | zfcp_erp_set_port_status(zfcp_sdev->port, |
| 1912 | ZFCP_STATUS_COMMON_ACCESS_BOXED); |
| 1913 | zfcp_erp_port_reopen(zfcp_sdev->port, |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 1914 | ZFCP_STATUS_COMMON_ERP_FAILED, "fscuh_3"); |
Christof Schmitt | 4c571c6 | 2009-11-24 16:54:15 +0100 | [diff] [blame] | 1915 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1916 | break; |
| 1917 | case FSF_ADAPTER_STATUS_AVAILABLE: |
| 1918 | switch (req->qtcb->header.fsf_status_qual.word[0]) { |
| 1919 | case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE: |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 1920 | zfcp_fc_test_link(zfcp_sdev->port); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1921 | /* fall through */ |
| 1922 | case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED: |
| 1923 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
| 1924 | break; |
| 1925 | } |
| 1926 | break; |
| 1927 | case FSF_GOOD: |
Peter Zijlstra | 805de8f4 | 2015-04-24 01:12:32 +0200 | [diff] [blame] | 1928 | atomic_andnot(ZFCP_STATUS_COMMON_OPEN, &zfcp_sdev->status); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1929 | break; |
| 1930 | } |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1931 | } |
| 1932 | |
| 1933 | /** |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 1934 | * zfcp_fsf_close_LUN - close LUN |
| 1935 | * @erp_action: pointer to erp_action triggering the "close LUN" |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1936 | * Returns: 0 on success, error otherwise |
| 1937 | */ |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 1938 | int zfcp_fsf_close_lun(struct zfcp_erp_action *erp_action) |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1939 | { |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 1940 | struct zfcp_qdio *qdio = erp_action->adapter->qdio; |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 1941 | struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(erp_action->sdev); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1942 | struct zfcp_fsf_req *req; |
| 1943 | int retval = -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1944 | |
Christof Schmitt | 44a24cb | 2010-09-08 14:39:57 +0200 | [diff] [blame] | 1945 | spin_lock_irq(&qdio->req_q_lock); |
Christof Schmitt | 6b9e152 | 2010-04-30 18:09:35 +0200 | [diff] [blame] | 1946 | if (zfcp_qdio_sbal_get(qdio)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1947 | goto out; |
Swen Schillig | 09a46c6 | 2009-08-18 15:43:16 +0200 | [diff] [blame] | 1948 | |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 1949 | req = zfcp_fsf_req_create(qdio, FSF_QTCB_CLOSE_LUN, |
Jan Glauber | 3ec90878 | 2011-06-06 14:14:40 +0200 | [diff] [blame] | 1950 | SBAL_SFLAGS0_TYPE_READ, |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 1951 | qdio->adapter->pool.erp_req); |
Swen Schillig | 09a46c6 | 2009-08-18 15:43:16 +0200 | [diff] [blame] | 1952 | |
Hirofumi Nakagawa | 025270f | 2008-08-21 13:43:37 +0200 | [diff] [blame] | 1953 | if (IS_ERR(req)) { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1954 | retval = PTR_ERR(req); |
| 1955 | goto out; |
| 1956 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1957 | |
Swen Schillig | 09a46c6 | 2009-08-18 15:43:16 +0200 | [diff] [blame] | 1958 | req->status |= ZFCP_STATUS_FSFREQ_CLEANUP; |
Christof Schmitt | 1674b40 | 2010-04-30 18:09:34 +0200 | [diff] [blame] | 1959 | zfcp_qdio_set_sbale_last(qdio, &req->qdio_req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1960 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1961 | req->qtcb->header.port_handle = erp_action->port->handle; |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 1962 | req->qtcb->header.lun_handle = zfcp_sdev->lun_handle; |
| 1963 | req->handler = zfcp_fsf_close_lun_handler; |
| 1964 | req->data = erp_action->sdev; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1965 | req->erp_action = erp_action; |
Christof Schmitt | e60a6d6 | 2010-02-17 11:18:49 +0100 | [diff] [blame] | 1966 | erp_action->fsf_req_id = req->req_id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1967 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1968 | zfcp_fsf_start_erp_timer(req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1969 | retval = zfcp_fsf_req_send(req); |
| 1970 | if (retval) { |
| 1971 | zfcp_fsf_req_free(req); |
Christof Schmitt | e60a6d6 | 2010-02-17 11:18:49 +0100 | [diff] [blame] | 1972 | erp_action->fsf_req_id = 0; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1973 | } |
| 1974 | out: |
Christof Schmitt | 44a24cb | 2010-09-08 14:39:57 +0200 | [diff] [blame] | 1975 | spin_unlock_irq(&qdio->req_q_lock); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1976 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1977 | } |
| 1978 | |
Christof Schmitt | c961585 | 2008-05-06 11:00:05 +0200 | [diff] [blame] | 1979 | static void zfcp_fsf_update_lat(struct fsf_latency_record *lat_rec, u32 lat) |
| 1980 | { |
| 1981 | lat_rec->sum += lat; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1982 | lat_rec->min = min(lat_rec->min, lat); |
| 1983 | lat_rec->max = max(lat_rec->max, lat); |
Christof Schmitt | c961585 | 2008-05-06 11:00:05 +0200 | [diff] [blame] | 1984 | } |
| 1985 | |
Christof Schmitt | d9742b4 | 2009-11-24 16:54:03 +0100 | [diff] [blame] | 1986 | static void zfcp_fsf_req_trace(struct zfcp_fsf_req *req, struct scsi_cmnd *scsi) |
Christof Schmitt | c961585 | 2008-05-06 11:00:05 +0200 | [diff] [blame] | 1987 | { |
Christof Schmitt | d9742b4 | 2009-11-24 16:54:03 +0100 | [diff] [blame] | 1988 | struct fsf_qual_latency_info *lat_in; |
| 1989 | struct latency_cont *lat = NULL; |
Martin Peschke | d436de8 | 2012-09-04 15:23:36 +0200 | [diff] [blame] | 1990 | struct zfcp_scsi_dev *zfcp_sdev; |
Christof Schmitt | d9742b4 | 2009-11-24 16:54:03 +0100 | [diff] [blame] | 1991 | struct zfcp_blk_drv_data blktrc; |
| 1992 | int ticks = req->adapter->timer_ticks; |
Christof Schmitt | c961585 | 2008-05-06 11:00:05 +0200 | [diff] [blame] | 1993 | |
Christof Schmitt | d9742b4 | 2009-11-24 16:54:03 +0100 | [diff] [blame] | 1994 | lat_in = &req->qtcb->prefix.prot_status_qual.latency_info; |
Christof Schmitt | c961585 | 2008-05-06 11:00:05 +0200 | [diff] [blame] | 1995 | |
Christof Schmitt | d9742b4 | 2009-11-24 16:54:03 +0100 | [diff] [blame] | 1996 | blktrc.flags = 0; |
| 1997 | blktrc.magic = ZFCP_BLK_DRV_DATA_MAGIC; |
| 1998 | if (req->status & ZFCP_STATUS_FSFREQ_ERROR) |
| 1999 | blktrc.flags |= ZFCP_BLK_REQ_ERROR; |
Swen Schillig | 706eca4 | 2010-07-16 15:37:38 +0200 | [diff] [blame] | 2000 | blktrc.inb_usage = 0; |
Christof Schmitt | 34c2b71 | 2010-02-17 11:18:59 +0100 | [diff] [blame] | 2001 | blktrc.outb_usage = req->qdio_req.qdio_outb_usage; |
Christof Schmitt | d9742b4 | 2009-11-24 16:54:03 +0100 | [diff] [blame] | 2002 | |
Christof Schmitt | 5bbf297 | 2010-04-01 13:04:08 +0200 | [diff] [blame] | 2003 | if (req->adapter->adapter_features & FSF_FEATURE_MEASUREMENT_DATA && |
| 2004 | !(req->status & ZFCP_STATUS_FSFREQ_ERROR)) { |
Martin Peschke | d436de8 | 2012-09-04 15:23:36 +0200 | [diff] [blame] | 2005 | zfcp_sdev = sdev_to_zfcp(scsi->device); |
Christof Schmitt | d9742b4 | 2009-11-24 16:54:03 +0100 | [diff] [blame] | 2006 | blktrc.flags |= ZFCP_BLK_LAT_VALID; |
| 2007 | blktrc.channel_lat = lat_in->channel_lat * ticks; |
| 2008 | blktrc.fabric_lat = lat_in->fabric_lat * ticks; |
| 2009 | |
| 2010 | switch (req->qtcb->bottom.io.data_direction) { |
Felix Beck | ef3eb71 | 2010-07-16 15:37:42 +0200 | [diff] [blame] | 2011 | case FSF_DATADIR_DIF_READ_STRIP: |
| 2012 | case FSF_DATADIR_DIF_READ_CONVERT: |
Christof Schmitt | d9742b4 | 2009-11-24 16:54:03 +0100 | [diff] [blame] | 2013 | case FSF_DATADIR_READ: |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 2014 | lat = &zfcp_sdev->latencies.read; |
Christof Schmitt | d9742b4 | 2009-11-24 16:54:03 +0100 | [diff] [blame] | 2015 | break; |
Felix Beck | ef3eb71 | 2010-07-16 15:37:42 +0200 | [diff] [blame] | 2016 | case FSF_DATADIR_DIF_WRITE_INSERT: |
| 2017 | case FSF_DATADIR_DIF_WRITE_CONVERT: |
Christof Schmitt | d9742b4 | 2009-11-24 16:54:03 +0100 | [diff] [blame] | 2018 | case FSF_DATADIR_WRITE: |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 2019 | lat = &zfcp_sdev->latencies.write; |
Christof Schmitt | d9742b4 | 2009-11-24 16:54:03 +0100 | [diff] [blame] | 2020 | break; |
| 2021 | case FSF_DATADIR_CMND: |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 2022 | lat = &zfcp_sdev->latencies.cmd; |
Christof Schmitt | d9742b4 | 2009-11-24 16:54:03 +0100 | [diff] [blame] | 2023 | break; |
| 2024 | } |
| 2025 | |
| 2026 | if (lat) { |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 2027 | spin_lock(&zfcp_sdev->latencies.lock); |
Christof Schmitt | d9742b4 | 2009-11-24 16:54:03 +0100 | [diff] [blame] | 2028 | zfcp_fsf_update_lat(&lat->channel, lat_in->channel_lat); |
| 2029 | zfcp_fsf_update_lat(&lat->fabric, lat_in->fabric_lat); |
| 2030 | lat->counter++; |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 2031 | spin_unlock(&zfcp_sdev->latencies.lock); |
Christof Schmitt | d9742b4 | 2009-11-24 16:54:03 +0100 | [diff] [blame] | 2032 | } |
Christof Schmitt | c961585 | 2008-05-06 11:00:05 +0200 | [diff] [blame] | 2033 | } |
| 2034 | |
Christof Schmitt | d9742b4 | 2009-11-24 16:54:03 +0100 | [diff] [blame] | 2035 | blk_add_driver_data(scsi->request->q, scsi->request, &blktrc, |
| 2036 | sizeof(blktrc)); |
Christof Schmitt | c961585 | 2008-05-06 11:00:05 +0200 | [diff] [blame] | 2037 | } |
| 2038 | |
Christof Schmitt | c61b536 | 2010-09-08 14:39:58 +0200 | [diff] [blame] | 2039 | static void zfcp_fsf_fcp_handler_common(struct zfcp_fsf_req *req) |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2040 | { |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 2041 | struct scsi_cmnd *scmnd = req->data; |
| 2042 | struct scsi_device *sdev = scmnd->device; |
Martin Peschke | d436de8 | 2012-09-04 15:23:36 +0200 | [diff] [blame] | 2043 | struct zfcp_scsi_dev *zfcp_sdev; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2044 | struct fsf_qtcb_header *header = &req->qtcb->header; |
| 2045 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2046 | if (unlikely(req->status & ZFCP_STATUS_FSFREQ_ERROR)) |
Christof Schmitt | c61b536 | 2010-09-08 14:39:58 +0200 | [diff] [blame] | 2047 | return; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2048 | |
Martin Peschke | d436de8 | 2012-09-04 15:23:36 +0200 | [diff] [blame] | 2049 | zfcp_sdev = sdev_to_zfcp(sdev); |
| 2050 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2051 | switch (header->fsf_status) { |
| 2052 | case FSF_HANDLE_MISMATCH: |
| 2053 | case FSF_PORT_HANDLE_NOT_VALID: |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 2054 | zfcp_erp_adapter_reopen(zfcp_sdev->port->adapter, 0, "fssfch1"); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2055 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
| 2056 | break; |
| 2057 | case FSF_FCPLUN_NOT_VALID: |
| 2058 | case FSF_LUN_HANDLE_NOT_VALID: |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 2059 | zfcp_erp_port_reopen(zfcp_sdev->port, 0, "fssfch2"); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2060 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
| 2061 | break; |
| 2062 | case FSF_SERVICE_CLASS_NOT_SUPPORTED: |
| 2063 | zfcp_fsf_class_not_supp(req); |
| 2064 | break; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2065 | case FSF_DIRECTION_INDICATOR_NOT_VALID: |
| 2066 | dev_err(&req->adapter->ccw_device->dev, |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 2067 | "Incorrect direction %d, LUN 0x%016Lx on port " |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 2068 | "0x%016Lx closed\n", |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2069 | req->qtcb->bottom.io.data_direction, |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 2070 | (unsigned long long)zfcp_scsi_dev_lun(sdev), |
| 2071 | (unsigned long long)zfcp_sdev->port->wwpn); |
| 2072 | zfcp_erp_adapter_shutdown(zfcp_sdev->port->adapter, 0, |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 2073 | "fssfch3"); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2074 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
| 2075 | break; |
| 2076 | case FSF_CMND_LENGTH_NOT_VALID: |
| 2077 | dev_err(&req->adapter->ccw_device->dev, |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 2078 | "Incorrect CDB length %d, LUN 0x%016Lx on " |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 2079 | "port 0x%016Lx closed\n", |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2080 | req->qtcb->bottom.io.fcp_cmnd_length, |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 2081 | (unsigned long long)zfcp_scsi_dev_lun(sdev), |
| 2082 | (unsigned long long)zfcp_sdev->port->wwpn); |
| 2083 | zfcp_erp_adapter_shutdown(zfcp_sdev->port->adapter, 0, |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 2084 | "fssfch4"); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2085 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
| 2086 | break; |
| 2087 | case FSF_PORT_BOXED: |
Swen Schillig | edaed85 | 2010-09-08 14:40:01 +0200 | [diff] [blame] | 2088 | zfcp_erp_set_port_status(zfcp_sdev->port, |
| 2089 | ZFCP_STATUS_COMMON_ACCESS_BOXED); |
| 2090 | zfcp_erp_port_reopen(zfcp_sdev->port, |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 2091 | ZFCP_STATUS_COMMON_ERP_FAILED, "fssfch5"); |
Christof Schmitt | 4c571c6 | 2009-11-24 16:54:15 +0100 | [diff] [blame] | 2092 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2093 | break; |
| 2094 | case FSF_LUN_BOXED: |
Swen Schillig | edaed85 | 2010-09-08 14:40:01 +0200 | [diff] [blame] | 2095 | zfcp_erp_set_lun_status(sdev, ZFCP_STATUS_COMMON_ACCESS_BOXED); |
| 2096 | zfcp_erp_lun_reopen(sdev, ZFCP_STATUS_COMMON_ERP_FAILED, |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 2097 | "fssfch6"); |
Christof Schmitt | 4c571c6 | 2009-11-24 16:54:15 +0100 | [diff] [blame] | 2098 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2099 | break; |
| 2100 | case FSF_ADAPTER_STATUS_AVAILABLE: |
| 2101 | if (header->fsf_status_qual.word[0] == |
| 2102 | FSF_SQ_INVOKE_LINK_TEST_PROCEDURE) |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 2103 | zfcp_fc_test_link(zfcp_sdev->port); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2104 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
| 2105 | break; |
| 2106 | } |
Christof Schmitt | c61b536 | 2010-09-08 14:39:58 +0200 | [diff] [blame] | 2107 | } |
| 2108 | |
| 2109 | static void zfcp_fsf_fcp_cmnd_handler(struct zfcp_fsf_req *req) |
| 2110 | { |
| 2111 | struct scsi_cmnd *scpnt; |
| 2112 | struct fcp_resp_with_ext *fcp_rsp; |
| 2113 | unsigned long flags; |
| 2114 | |
Christof Schmitt | c61b536 | 2010-09-08 14:39:58 +0200 | [diff] [blame] | 2115 | read_lock_irqsave(&req->adapter->abort_lock, flags); |
| 2116 | |
| 2117 | scpnt = req->data; |
| 2118 | if (unlikely(!scpnt)) { |
| 2119 | read_unlock_irqrestore(&req->adapter->abort_lock, flags); |
| 2120 | return; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2121 | } |
Christof Schmitt | c61b536 | 2010-09-08 14:39:58 +0200 | [diff] [blame] | 2122 | |
Swen Schillig | 5bfb2c3 | 2010-11-17 14:23:40 +0100 | [diff] [blame] | 2123 | zfcp_fsf_fcp_handler_common(req); |
| 2124 | |
Christof Schmitt | c61b536 | 2010-09-08 14:39:58 +0200 | [diff] [blame] | 2125 | if (unlikely(req->status & ZFCP_STATUS_FSFREQ_ERROR)) { |
| 2126 | set_host_byte(scpnt, DID_TRANSPORT_DISRUPTED); |
| 2127 | goto skip_fsfstatus; |
| 2128 | } |
| 2129 | |
| 2130 | switch (req->qtcb->header.fsf_status) { |
| 2131 | case FSF_INCONSISTENT_PROT_DATA: |
| 2132 | case FSF_INVALID_PROT_PARM: |
| 2133 | set_host_byte(scpnt, DID_ERROR); |
| 2134 | goto skip_fsfstatus; |
| 2135 | case FSF_BLOCK_GUARD_CHECK_FAILURE: |
| 2136 | zfcp_scsi_dif_sense_error(scpnt, 0x1); |
| 2137 | goto skip_fsfstatus; |
| 2138 | case FSF_APP_TAG_CHECK_FAILURE: |
| 2139 | zfcp_scsi_dif_sense_error(scpnt, 0x2); |
| 2140 | goto skip_fsfstatus; |
| 2141 | case FSF_REF_TAG_CHECK_FAILURE: |
| 2142 | zfcp_scsi_dif_sense_error(scpnt, 0x3); |
| 2143 | goto skip_fsfstatus; |
| 2144 | } |
Steffen Maier | df00d7b | 2017-07-28 12:31:01 +0200 | [diff] [blame] | 2145 | BUILD_BUG_ON(sizeof(struct fcp_resp_with_ext) > FSF_FCP_RSP_SIZE); |
| 2146 | fcp_rsp = &req->qtcb->bottom.io.fcp_rsp.iu; |
Christof Schmitt | c61b536 | 2010-09-08 14:39:58 +0200 | [diff] [blame] | 2147 | zfcp_fc_eval_fcp_rsp(fcp_rsp, scpnt); |
| 2148 | |
| 2149 | skip_fsfstatus: |
| 2150 | zfcp_fsf_req_trace(req, scpnt); |
Swen Schillig | 250a135 | 2010-12-02 15:16:15 +0100 | [diff] [blame] | 2151 | zfcp_dbf_scsi_result(scpnt, req); |
Christof Schmitt | c61b536 | 2010-09-08 14:39:58 +0200 | [diff] [blame] | 2152 | |
| 2153 | scpnt->host_scribble = NULL; |
| 2154 | (scpnt->scsi_done) (scpnt); |
| 2155 | /* |
| 2156 | * We must hold this lock until scsi_done has been called. |
| 2157 | * Otherwise we may call scsi_done after abort regarding this |
| 2158 | * command has completed. |
| 2159 | * Note: scsi_done must not block! |
| 2160 | */ |
| 2161 | read_unlock_irqrestore(&req->adapter->abort_lock, flags); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2162 | } |
| 2163 | |
Felix Beck | ef3eb71 | 2010-07-16 15:37:42 +0200 | [diff] [blame] | 2164 | static int zfcp_fsf_set_data_dir(struct scsi_cmnd *scsi_cmnd, u32 *data_dir) |
| 2165 | { |
| 2166 | switch (scsi_get_prot_op(scsi_cmnd)) { |
| 2167 | case SCSI_PROT_NORMAL: |
| 2168 | switch (scsi_cmnd->sc_data_direction) { |
| 2169 | case DMA_NONE: |
| 2170 | *data_dir = FSF_DATADIR_CMND; |
| 2171 | break; |
| 2172 | case DMA_FROM_DEVICE: |
| 2173 | *data_dir = FSF_DATADIR_READ; |
| 2174 | break; |
| 2175 | case DMA_TO_DEVICE: |
| 2176 | *data_dir = FSF_DATADIR_WRITE; |
| 2177 | break; |
| 2178 | case DMA_BIDIRECTIONAL: |
| 2179 | return -EINVAL; |
| 2180 | } |
| 2181 | break; |
| 2182 | |
| 2183 | case SCSI_PROT_READ_STRIP: |
| 2184 | *data_dir = FSF_DATADIR_DIF_READ_STRIP; |
| 2185 | break; |
| 2186 | case SCSI_PROT_WRITE_INSERT: |
| 2187 | *data_dir = FSF_DATADIR_DIF_WRITE_INSERT; |
| 2188 | break; |
| 2189 | case SCSI_PROT_READ_PASS: |
| 2190 | *data_dir = FSF_DATADIR_DIF_READ_CONVERT; |
| 2191 | break; |
| 2192 | case SCSI_PROT_WRITE_PASS: |
| 2193 | *data_dir = FSF_DATADIR_DIF_WRITE_CONVERT; |
| 2194 | break; |
| 2195 | default: |
| 2196 | return -EINVAL; |
| 2197 | } |
| 2198 | |
| 2199 | return 0; |
| 2200 | } |
| 2201 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2202 | /** |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 2203 | * zfcp_fsf_fcp_cmnd - initiate an FCP command (for a SCSI command) |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2204 | * @scsi_cmnd: scsi command to be sent |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2205 | */ |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 2206 | int zfcp_fsf_fcp_cmnd(struct scsi_cmnd *scsi_cmnd) |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2207 | { |
| 2208 | struct zfcp_fsf_req *req; |
Christof Schmitt | 4318e08 | 2009-11-24 16:54:08 +0100 | [diff] [blame] | 2209 | struct fcp_cmnd *fcp_cmnd; |
Jan Glauber | 3ec90878 | 2011-06-06 14:14:40 +0200 | [diff] [blame] | 2210 | u8 sbtype = SBAL_SFLAGS0_TYPE_READ; |
Swen Schillig | 86a9668 | 2011-08-15 14:40:32 +0200 | [diff] [blame] | 2211 | int retval = -EIO; |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 2212 | struct scsi_device *sdev = scsi_cmnd->device; |
| 2213 | struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev); |
| 2214 | struct zfcp_adapter *adapter = zfcp_sdev->port->adapter; |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 2215 | struct zfcp_qdio *qdio = adapter->qdio; |
Felix Beck | ef3eb71 | 2010-07-16 15:37:42 +0200 | [diff] [blame] | 2216 | struct fsf_qtcb_bottom_io *io; |
Christof Schmitt | e55f875 | 2010-11-18 14:53:18 +0100 | [diff] [blame] | 2217 | unsigned long flags; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2218 | |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 2219 | if (unlikely(!(atomic_read(&zfcp_sdev->status) & |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2220 | ZFCP_STATUS_COMMON_UNBLOCKED))) |
| 2221 | return -EBUSY; |
| 2222 | |
Christof Schmitt | e55f875 | 2010-11-18 14:53:18 +0100 | [diff] [blame] | 2223 | spin_lock_irqsave(&qdio->req_q_lock, flags); |
Swen Schillig | 706eca4 | 2010-07-16 15:37:38 +0200 | [diff] [blame] | 2224 | if (atomic_read(&qdio->req_q_free) <= 0) { |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 2225 | atomic_inc(&qdio->req_q_full); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2226 | goto out; |
Christof Schmitt | 8fdf30d | 2009-03-02 13:09:01 +0100 | [diff] [blame] | 2227 | } |
Swen Schillig | 09a46c6 | 2009-08-18 15:43:16 +0200 | [diff] [blame] | 2228 | |
Christof Schmitt | 1674b40 | 2010-04-30 18:09:34 +0200 | [diff] [blame] | 2229 | if (scsi_cmnd->sc_data_direction == DMA_TO_DEVICE) |
Jan Glauber | 3ec90878 | 2011-06-06 14:14:40 +0200 | [diff] [blame] | 2230 | sbtype = SBAL_SFLAGS0_TYPE_WRITE; |
Christof Schmitt | 1674b40 | 2010-04-30 18:09:34 +0200 | [diff] [blame] | 2231 | |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 2232 | req = zfcp_fsf_req_create(qdio, FSF_QTCB_FCP_CMND, |
Christof Schmitt | 1674b40 | 2010-04-30 18:09:34 +0200 | [diff] [blame] | 2233 | sbtype, adapter->pool.scsi_req); |
Swen Schillig | 09a46c6 | 2009-08-18 15:43:16 +0200 | [diff] [blame] | 2234 | |
Hirofumi Nakagawa | 025270f | 2008-08-21 13:43:37 +0200 | [diff] [blame] | 2235 | if (IS_ERR(req)) { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2236 | retval = PTR_ERR(req); |
| 2237 | goto out; |
| 2238 | } |
| 2239 | |
Felix Beck | ef3eb71 | 2010-07-16 15:37:42 +0200 | [diff] [blame] | 2240 | scsi_cmnd->host_scribble = (unsigned char *) req->req_id; |
| 2241 | |
| 2242 | io = &req->qtcb->bottom.io; |
Swen Schillig | 09a46c6 | 2009-08-18 15:43:16 +0200 | [diff] [blame] | 2243 | req->status |= ZFCP_STATUS_FSFREQ_CLEANUP; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2244 | req->data = scsi_cmnd; |
Christof Schmitt | c61b536 | 2010-09-08 14:39:58 +0200 | [diff] [blame] | 2245 | req->handler = zfcp_fsf_fcp_cmnd_handler; |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 2246 | req->qtcb->header.lun_handle = zfcp_sdev->lun_handle; |
| 2247 | req->qtcb->header.port_handle = zfcp_sdev->port->handle; |
Felix Beck | ef3eb71 | 2010-07-16 15:37:42 +0200 | [diff] [blame] | 2248 | io->service_class = FSF_CLASS_3; |
| 2249 | io->fcp_cmnd_length = FCP_CMND_LEN; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2250 | |
Felix Beck | ef3eb71 | 2010-07-16 15:37:42 +0200 | [diff] [blame] | 2251 | if (scsi_get_prot_op(scsi_cmnd) != SCSI_PROT_NORMAL) { |
| 2252 | io->data_block_length = scsi_cmnd->device->sector_size; |
| 2253 | io->ref_tag_value = scsi_get_lba(scsi_cmnd) & 0xFFFFFFFF; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2254 | } |
| 2255 | |
Steffen Maier | cc405ac | 2011-08-15 14:40:30 +0200 | [diff] [blame] | 2256 | if (zfcp_fsf_set_data_dir(scsi_cmnd, &io->data_direction)) |
| 2257 | goto failed_scsi_cmnd; |
Felix Beck | ef3eb71 | 2010-07-16 15:37:42 +0200 | [diff] [blame] | 2258 | |
Steffen Maier | df00d7b | 2017-07-28 12:31:01 +0200 | [diff] [blame] | 2259 | BUILD_BUG_ON(sizeof(struct fcp_cmnd) > FSF_FCP_CMND_SIZE); |
| 2260 | fcp_cmnd = &req->qtcb->bottom.io.fcp_cmnd.iu; |
Christof Schmitt | 2443c8b | 2011-02-22 19:54:45 +0100 | [diff] [blame] | 2261 | zfcp_fc_scsi_to_fcp(fcp_cmnd, scsi_cmnd, 0); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2262 | |
Steffen Maier | 71b8e45 | 2017-07-28 12:30:51 +0200 | [diff] [blame] | 2263 | if ((scsi_get_prot_op(scsi_cmnd) != SCSI_PROT_NORMAL) && |
| 2264 | scsi_prot_sg_count(scsi_cmnd)) { |
Felix Beck | ef3eb71 | 2010-07-16 15:37:42 +0200 | [diff] [blame] | 2265 | zfcp_qdio_set_data_div(qdio, &req->qdio_req, |
| 2266 | scsi_prot_sg_count(scsi_cmnd)); |
Swen Schillig | 86a9668 | 2011-08-15 14:40:32 +0200 | [diff] [blame] | 2267 | retval = zfcp_qdio_sbals_from_sg(qdio, &req->qdio_req, |
| 2268 | scsi_prot_sglist(scsi_cmnd)); |
| 2269 | if (retval) |
| 2270 | goto failed_scsi_cmnd; |
| 2271 | io->prot_data_length = zfcp_qdio_real_bytes( |
Felix Beck | ef3eb71 | 2010-07-16 15:37:42 +0200 | [diff] [blame] | 2272 | scsi_prot_sglist(scsi_cmnd)); |
Felix Beck | ef3eb71 | 2010-07-16 15:37:42 +0200 | [diff] [blame] | 2273 | } |
| 2274 | |
Swen Schillig | 86a9668 | 2011-08-15 14:40:32 +0200 | [diff] [blame] | 2275 | retval = zfcp_qdio_sbals_from_sg(qdio, &req->qdio_req, |
| 2276 | scsi_sglist(scsi_cmnd)); |
| 2277 | if (unlikely(retval)) |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2278 | goto failed_scsi_cmnd; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2279 | |
Felix Beck | ef3eb71 | 2010-07-16 15:37:42 +0200 | [diff] [blame] | 2280 | zfcp_qdio_set_sbale_last(adapter->qdio, &req->qdio_req); |
Swen Schillig | 86a9668 | 2011-08-15 14:40:32 +0200 | [diff] [blame] | 2281 | if (zfcp_adapter_multi_buffer_active(adapter)) |
| 2282 | zfcp_qdio_set_scount(qdio, &req->qdio_req); |
Felix Beck | ef3eb71 | 2010-07-16 15:37:42 +0200 | [diff] [blame] | 2283 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2284 | retval = zfcp_fsf_req_send(req); |
| 2285 | if (unlikely(retval)) |
| 2286 | goto failed_scsi_cmnd; |
| 2287 | |
| 2288 | goto out; |
| 2289 | |
| 2290 | failed_scsi_cmnd: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2291 | zfcp_fsf_req_free(req); |
| 2292 | scsi_cmnd->host_scribble = NULL; |
| 2293 | out: |
Christof Schmitt | e55f875 | 2010-11-18 14:53:18 +0100 | [diff] [blame] | 2294 | spin_unlock_irqrestore(&qdio->req_q_lock, flags); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2295 | return retval; |
| 2296 | } |
| 2297 | |
Christof Schmitt | c61b536 | 2010-09-08 14:39:58 +0200 | [diff] [blame] | 2298 | static void zfcp_fsf_fcp_task_mgmt_handler(struct zfcp_fsf_req *req) |
| 2299 | { |
| 2300 | struct fcp_resp_with_ext *fcp_rsp; |
| 2301 | struct fcp_resp_rsp_info *rsp_info; |
| 2302 | |
| 2303 | zfcp_fsf_fcp_handler_common(req); |
| 2304 | |
Steffen Maier | df00d7b | 2017-07-28 12:31:01 +0200 | [diff] [blame] | 2305 | fcp_rsp = &req->qtcb->bottom.io.fcp_rsp.iu; |
Christof Schmitt | c61b536 | 2010-09-08 14:39:58 +0200 | [diff] [blame] | 2306 | rsp_info = (struct fcp_resp_rsp_info *) &fcp_rsp[1]; |
| 2307 | |
| 2308 | if ((rsp_info->rsp_code != FCP_TMF_CMPL) || |
| 2309 | (req->status & ZFCP_STATUS_FSFREQ_ERROR)) |
| 2310 | req->status |= ZFCP_STATUS_FSFREQ_TMFUNCFAILED; |
| 2311 | } |
| 2312 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2313 | /** |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 2314 | * zfcp_fsf_fcp_task_mgmt - send SCSI task management command |
| 2315 | * @scmnd: SCSI command to send the task management command for |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2316 | * @tm_flags: unsigned byte for task management flags |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2317 | * Returns: on success pointer to struct fsf_req, NULL otherwise |
| 2318 | */ |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 2319 | struct zfcp_fsf_req *zfcp_fsf_fcp_task_mgmt(struct scsi_cmnd *scmnd, |
| 2320 | u8 tm_flags) |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2321 | { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2322 | struct zfcp_fsf_req *req = NULL; |
Christof Schmitt | 4318e08 | 2009-11-24 16:54:08 +0100 | [diff] [blame] | 2323 | struct fcp_cmnd *fcp_cmnd; |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 2324 | struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(scmnd->device); |
| 2325 | struct zfcp_qdio *qdio = zfcp_sdev->port->adapter->qdio; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2326 | |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 2327 | if (unlikely(!(atomic_read(&zfcp_sdev->status) & |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2328 | ZFCP_STATUS_COMMON_UNBLOCKED))) |
| 2329 | return NULL; |
| 2330 | |
Christof Schmitt | 44a24cb | 2010-09-08 14:39:57 +0200 | [diff] [blame] | 2331 | spin_lock_irq(&qdio->req_q_lock); |
Christof Schmitt | 6b9e152 | 2010-04-30 18:09:35 +0200 | [diff] [blame] | 2332 | if (zfcp_qdio_sbal_get(qdio)) |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2333 | goto out; |
Swen Schillig | 09a46c6 | 2009-08-18 15:43:16 +0200 | [diff] [blame] | 2334 | |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 2335 | req = zfcp_fsf_req_create(qdio, FSF_QTCB_FCP_CMND, |
Jan Glauber | 3ec90878 | 2011-06-06 14:14:40 +0200 | [diff] [blame] | 2336 | SBAL_SFLAGS0_TYPE_WRITE, |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 2337 | qdio->adapter->pool.scsi_req); |
Swen Schillig | 09a46c6 | 2009-08-18 15:43:16 +0200 | [diff] [blame] | 2338 | |
Swen Schillig | 633528c | 2008-11-26 18:07:37 +0100 | [diff] [blame] | 2339 | if (IS_ERR(req)) { |
| 2340 | req = NULL; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2341 | goto out; |
Swen Schillig | 633528c | 2008-11-26 18:07:37 +0100 | [diff] [blame] | 2342 | } |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2343 | |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 2344 | req->data = scmnd; |
Christof Schmitt | c61b536 | 2010-09-08 14:39:58 +0200 | [diff] [blame] | 2345 | req->handler = zfcp_fsf_fcp_task_mgmt_handler; |
Christof Schmitt | b62a8d9 | 2010-09-08 14:39:55 +0200 | [diff] [blame] | 2346 | req->qtcb->header.lun_handle = zfcp_sdev->lun_handle; |
| 2347 | req->qtcb->header.port_handle = zfcp_sdev->port->handle; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2348 | req->qtcb->bottom.io.data_direction = FSF_DATADIR_CMND; |
| 2349 | req->qtcb->bottom.io.service_class = FSF_CLASS_3; |
Christof Schmitt | 4318e08 | 2009-11-24 16:54:08 +0100 | [diff] [blame] | 2350 | req->qtcb->bottom.io.fcp_cmnd_length = FCP_CMND_LEN; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2351 | |
Christof Schmitt | 1674b40 | 2010-04-30 18:09:34 +0200 | [diff] [blame] | 2352 | zfcp_qdio_set_sbale_last(qdio, &req->qdio_req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2353 | |
Steffen Maier | df00d7b | 2017-07-28 12:31:01 +0200 | [diff] [blame] | 2354 | fcp_cmnd = &req->qtcb->bottom.io.fcp_cmnd.iu; |
Christof Schmitt | 2443c8b | 2011-02-22 19:54:45 +0100 | [diff] [blame] | 2355 | zfcp_fc_scsi_to_fcp(fcp_cmnd, scmnd, tm_flags); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2356 | |
| 2357 | zfcp_fsf_start_timer(req, ZFCP_SCSI_ER_TIMEOUT); |
| 2358 | if (!zfcp_fsf_req_send(req)) |
| 2359 | goto out; |
| 2360 | |
| 2361 | zfcp_fsf_req_free(req); |
| 2362 | req = NULL; |
| 2363 | out: |
Christof Schmitt | 44a24cb | 2010-09-08 14:39:57 +0200 | [diff] [blame] | 2364 | spin_unlock_irq(&qdio->req_q_lock); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2365 | return req; |
| 2366 | } |
| 2367 | |
Swen Schillig | bd63eaf | 2009-08-18 15:43:13 +0200 | [diff] [blame] | 2368 | /** |
| 2369 | * zfcp_fsf_reqid_check - validate req_id contained in SBAL returned by QDIO |
| 2370 | * @adapter: pointer to struct zfcp_adapter |
| 2371 | * @sbal_idx: response queue index of SBAL to be processed |
| 2372 | */ |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 2373 | void zfcp_fsf_reqid_check(struct zfcp_qdio *qdio, int sbal_idx) |
Swen Schillig | bd63eaf | 2009-08-18 15:43:13 +0200 | [diff] [blame] | 2374 | { |
Swen Schillig | 564e1c8 | 2009-08-18 15:43:19 +0200 | [diff] [blame] | 2375 | struct zfcp_adapter *adapter = qdio->adapter; |
Swen Schillig | 706eca4 | 2010-07-16 15:37:38 +0200 | [diff] [blame] | 2376 | struct qdio_buffer *sbal = qdio->res_q[sbal_idx]; |
Swen Schillig | bd63eaf | 2009-08-18 15:43:13 +0200 | [diff] [blame] | 2377 | struct qdio_buffer_element *sbale; |
| 2378 | struct zfcp_fsf_req *fsf_req; |
Christof Schmitt | b6bd2fb9 | 2010-02-17 11:18:50 +0100 | [diff] [blame] | 2379 | unsigned long req_id; |
Swen Schillig | bd63eaf | 2009-08-18 15:43:13 +0200 | [diff] [blame] | 2380 | int idx; |
| 2381 | |
| 2382 | for (idx = 0; idx < QDIO_MAX_ELEMENTS_PER_BUFFER; idx++) { |
| 2383 | |
| 2384 | sbale = &sbal->element[idx]; |
| 2385 | req_id = (unsigned long) sbale->addr; |
Christof Schmitt | b6bd2fb9 | 2010-02-17 11:18:50 +0100 | [diff] [blame] | 2386 | fsf_req = zfcp_reqlist_find_rm(adapter->req_list, req_id); |
Swen Schillig | bd63eaf | 2009-08-18 15:43:13 +0200 | [diff] [blame] | 2387 | |
Christof Schmitt | 339f4f4 | 2010-07-16 15:37:43 +0200 | [diff] [blame] | 2388 | if (!fsf_req) { |
Swen Schillig | bd63eaf | 2009-08-18 15:43:13 +0200 | [diff] [blame] | 2389 | /* |
| 2390 | * Unknown request means that we have potentially memory |
| 2391 | * corruption and must stop the machine immediately. |
| 2392 | */ |
Christof Schmitt | 339f4f4 | 2010-07-16 15:37:43 +0200 | [diff] [blame] | 2393 | zfcp_qdio_siosl(adapter); |
Swen Schillig | bd63eaf | 2009-08-18 15:43:13 +0200 | [diff] [blame] | 2394 | panic("error: unknown req_id (%lx) on adapter %s.\n", |
| 2395 | req_id, dev_name(&adapter->ccw_device->dev)); |
Christof Schmitt | 339f4f4 | 2010-07-16 15:37:43 +0200 | [diff] [blame] | 2396 | } |
Swen Schillig | bd63eaf | 2009-08-18 15:43:13 +0200 | [diff] [blame] | 2397 | |
Swen Schillig | bd63eaf | 2009-08-18 15:43:13 +0200 | [diff] [blame] | 2398 | zfcp_fsf_req_complete(fsf_req); |
| 2399 | |
Jan Glauber | 3ec90878 | 2011-06-06 14:14:40 +0200 | [diff] [blame] | 2400 | if (likely(sbale->eflags & SBAL_EFLAGS_LAST_ENTRY)) |
Swen Schillig | bd63eaf | 2009-08-18 15:43:13 +0200 | [diff] [blame] | 2401 | break; |
| 2402 | } |
| 2403 | } |