Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Christof Schmitt | 553448f | 2008-06-10 18:20:58 +0200 | [diff] [blame] | 2 | * zfcp device driver |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
Christof Schmitt | 553448f | 2008-06-10 18:20:58 +0200 | [diff] [blame] | 4 | * Implementation of FSF commands. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 6 | * Copyright IBM Corporation 2002, 2009 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | */ |
| 8 | |
Christof Schmitt | ecf39d4 | 2008-12-25 13:39:53 +0100 | [diff] [blame] | 9 | #define KMSG_COMPONENT "zfcp" |
| 10 | #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt |
| 11 | |
Stefan Raspl | 0997f1c | 2008-10-16 08:23:39 +0200 | [diff] [blame] | 12 | #include <linux/blktrace_api.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include "zfcp_ext.h" |
| 14 | |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 15 | #define ZFCP_REQ_AUTO_CLEANUP 0x00000002 |
| 16 | #define ZFCP_REQ_NO_QTCB 0x00000008 |
| 17 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 18 | static void zfcp_fsf_request_timeout_handler(unsigned long data) |
| 19 | { |
| 20 | struct zfcp_adapter *adapter = (struct zfcp_adapter *) data; |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 21 | zfcp_erp_adapter_reopen(adapter, ZFCP_STATUS_COMMON_ERP_FAILED, |
| 22 | "fsrth_1", NULL); |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 23 | } |
| 24 | |
| 25 | static void zfcp_fsf_start_timer(struct zfcp_fsf_req *fsf_req, |
| 26 | unsigned long timeout) |
| 27 | { |
| 28 | fsf_req->timer.function = zfcp_fsf_request_timeout_handler; |
| 29 | fsf_req->timer.data = (unsigned long) fsf_req->adapter; |
| 30 | fsf_req->timer.expires = jiffies + timeout; |
| 31 | add_timer(&fsf_req->timer); |
| 32 | } |
| 33 | |
| 34 | static void zfcp_fsf_start_erp_timer(struct zfcp_fsf_req *fsf_req) |
| 35 | { |
| 36 | BUG_ON(!fsf_req->erp_action); |
| 37 | fsf_req->timer.function = zfcp_erp_timeout_handler; |
| 38 | fsf_req->timer.data = (unsigned long) fsf_req->erp_action; |
| 39 | fsf_req->timer.expires = jiffies + 30 * HZ; |
| 40 | add_timer(&fsf_req->timer); |
| 41 | } |
| 42 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | /* association between FSF command and FSF QTCB type */ |
| 44 | static u32 fsf_qtcb_type[] = { |
| 45 | [FSF_QTCB_FCP_CMND] = FSF_IO_COMMAND, |
| 46 | [FSF_QTCB_ABORT_FCP_CMND] = FSF_SUPPORT_COMMAND, |
| 47 | [FSF_QTCB_OPEN_PORT_WITH_DID] = FSF_SUPPORT_COMMAND, |
| 48 | [FSF_QTCB_OPEN_LUN] = FSF_SUPPORT_COMMAND, |
| 49 | [FSF_QTCB_CLOSE_LUN] = FSF_SUPPORT_COMMAND, |
| 50 | [FSF_QTCB_CLOSE_PORT] = FSF_SUPPORT_COMMAND, |
| 51 | [FSF_QTCB_CLOSE_PHYSICAL_PORT] = FSF_SUPPORT_COMMAND, |
| 52 | [FSF_QTCB_SEND_ELS] = FSF_SUPPORT_COMMAND, |
| 53 | [FSF_QTCB_SEND_GENERIC] = FSF_SUPPORT_COMMAND, |
| 54 | [FSF_QTCB_EXCHANGE_CONFIG_DATA] = FSF_CONFIG_COMMAND, |
| 55 | [FSF_QTCB_EXCHANGE_PORT_DATA] = FSF_PORT_COMMAND, |
| 56 | [FSF_QTCB_DOWNLOAD_CONTROL_FILE] = FSF_SUPPORT_COMMAND, |
| 57 | [FSF_QTCB_UPLOAD_CONTROL_FILE] = FSF_SUPPORT_COMMAND |
| 58 | }; |
| 59 | |
Christof Schmitt | 553448f | 2008-06-10 18:20:58 +0200 | [diff] [blame] | 60 | static void zfcp_act_eval_err(struct zfcp_adapter *adapter, u32 table) |
| 61 | { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 62 | u16 subtable = table >> 16; |
Christof Schmitt | 553448f | 2008-06-10 18:20:58 +0200 | [diff] [blame] | 63 | u16 rule = table & 0xffff; |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 64 | const char *act_type[] = { "unknown", "OS", "WWPN", "DID", "LUN" }; |
Christof Schmitt | 553448f | 2008-06-10 18:20:58 +0200 | [diff] [blame] | 65 | |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 66 | if (subtable && subtable < ARRAY_SIZE(act_type)) |
Christof Schmitt | 553448f | 2008-06-10 18:20:58 +0200 | [diff] [blame] | 67 | dev_warn(&adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 68 | "Access denied according to ACT rule type %s, " |
| 69 | "rule %d\n", act_type[subtable], rule); |
Christof Schmitt | 553448f | 2008-06-10 18:20:58 +0200 | [diff] [blame] | 70 | } |
| 71 | |
| 72 | static void zfcp_fsf_access_denied_port(struct zfcp_fsf_req *req, |
| 73 | struct zfcp_port *port) |
| 74 | { |
| 75 | struct fsf_qtcb_header *header = &req->qtcb->header; |
| 76 | dev_warn(&req->adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 77 | "Access denied to port 0x%016Lx\n", |
Swen Schillig | 7ba58c9 | 2008-10-01 12:42:18 +0200 | [diff] [blame] | 78 | (unsigned long long)port->wwpn); |
Christof Schmitt | 553448f | 2008-06-10 18:20:58 +0200 | [diff] [blame] | 79 | zfcp_act_eval_err(req->adapter, header->fsf_status_qual.halfword[0]); |
| 80 | zfcp_act_eval_err(req->adapter, header->fsf_status_qual.halfword[1]); |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 81 | zfcp_erp_port_access_denied(port, "fspad_1", req); |
Christof Schmitt | 553448f | 2008-06-10 18:20:58 +0200 | [diff] [blame] | 82 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
| 83 | } |
| 84 | |
| 85 | static void zfcp_fsf_access_denied_unit(struct zfcp_fsf_req *req, |
| 86 | struct zfcp_unit *unit) |
| 87 | { |
| 88 | struct fsf_qtcb_header *header = &req->qtcb->header; |
| 89 | dev_warn(&req->adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 90 | "Access denied to unit 0x%016Lx on port 0x%016Lx\n", |
Swen Schillig | 7ba58c9 | 2008-10-01 12:42:18 +0200 | [diff] [blame] | 91 | (unsigned long long)unit->fcp_lun, |
| 92 | (unsigned long long)unit->port->wwpn); |
Christof Schmitt | 553448f | 2008-06-10 18:20:58 +0200 | [diff] [blame] | 93 | zfcp_act_eval_err(req->adapter, header->fsf_status_qual.halfword[0]); |
| 94 | zfcp_act_eval_err(req->adapter, header->fsf_status_qual.halfword[1]); |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 95 | zfcp_erp_unit_access_denied(unit, "fsuad_1", req); |
Christof Schmitt | 553448f | 2008-06-10 18:20:58 +0200 | [diff] [blame] | 96 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
| 97 | } |
| 98 | |
| 99 | static void zfcp_fsf_class_not_supp(struct zfcp_fsf_req *req) |
| 100 | { |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 101 | dev_err(&req->adapter->ccw_device->dev, "FCP device not " |
| 102 | "operational because of an unsupported FC class\n"); |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 103 | zfcp_erp_adapter_shutdown(req->adapter, 0, "fscns_1", req); |
Christof Schmitt | 553448f | 2008-06-10 18:20:58 +0200 | [diff] [blame] | 104 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
| 105 | } |
| 106 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 107 | /** |
| 108 | * zfcp_fsf_req_free - free memory used by fsf request |
| 109 | * @fsf_req: pointer to struct zfcp_fsf_req |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | */ |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 111 | void zfcp_fsf_req_free(struct zfcp_fsf_req *req) |
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 | if (likely(req->pool)) { |
| 114 | mempool_free(req, req->pool); |
Heiko Carstens | dd52e0e | 2006-09-18 22:28:49 +0200 | [diff] [blame] | 115 | return; |
| 116 | } |
| 117 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 118 | if (req->qtcb) { |
| 119 | kmem_cache_free(zfcp_data.fsf_req_qtcb_cache, req); |
Heiko Carstens | dd52e0e | 2006-09-18 22:28:49 +0200 | [diff] [blame] | 120 | return; |
| 121 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | } |
| 123 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 124 | /** |
| 125 | * zfcp_fsf_req_dismiss_all - dismiss all fsf requests |
| 126 | * @adapter: pointer to struct zfcp_adapter |
| 127 | * |
Martin Peschke | 869b2b4 | 2007-05-09 11:01:20 +0200 | [diff] [blame] | 128 | * Never ever call this without shutting down the adapter first. |
| 129 | * Otherwise the adapter would continue using and corrupting s390 storage. |
| 130 | * Included BUG_ON() call to ensure this is done. |
| 131 | * ERP is supposed to be the only user of this function. |
Volker Sameske | fea9d6c | 2006-08-02 11:05:16 +0200 | [diff] [blame] | 132 | */ |
Swen Schillig | 6fcc471 | 2007-02-07 13:17:57 +0100 | [diff] [blame] | 133 | void zfcp_fsf_req_dismiss_all(struct zfcp_adapter *adapter) |
Volker Sameske | fea9d6c | 2006-08-02 11:05:16 +0200 | [diff] [blame] | 134 | { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 135 | struct zfcp_fsf_req *req, *tmp; |
Volker Sameske | fea9d6c | 2006-08-02 11:05:16 +0200 | [diff] [blame] | 136 | unsigned long flags; |
Swen Schillig | 6fcc471 | 2007-02-07 13:17:57 +0100 | [diff] [blame] | 137 | LIST_HEAD(remove_queue); |
Martin Peschke | 869b2b4 | 2007-05-09 11:01:20 +0200 | [diff] [blame] | 138 | unsigned int i; |
Volker Sameske | fea9d6c | 2006-08-02 11:05:16 +0200 | [diff] [blame] | 139 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 140 | BUG_ON(atomic_read(&adapter->status) & ZFCP_STATUS_ADAPTER_QDIOUP); |
Volker Sameske | fea9d6c | 2006-08-02 11:05:16 +0200 | [diff] [blame] | 141 | spin_lock_irqsave(&adapter->req_list_lock, flags); |
Martin Peschke | 869b2b4 | 2007-05-09 11:01:20 +0200 | [diff] [blame] | 142 | for (i = 0; i < REQUEST_LIST_SIZE; i++) |
Swen Schillig | 6fcc471 | 2007-02-07 13:17:57 +0100 | [diff] [blame] | 143 | list_splice_init(&adapter->req_list[i], &remove_queue); |
Volker Sameske | fea9d6c | 2006-08-02 11:05:16 +0200 | [diff] [blame] | 144 | spin_unlock_irqrestore(&adapter->req_list_lock, flags); |
| 145 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 146 | list_for_each_entry_safe(req, tmp, &remove_queue, list) { |
| 147 | list_del(&req->list); |
| 148 | req->status |= ZFCP_STATUS_FSFREQ_DISMISSED; |
| 149 | zfcp_fsf_req_complete(req); |
Swen Schillig | 6fcc471 | 2007-02-07 13:17:57 +0100 | [diff] [blame] | 150 | } |
Volker Sameske | fea9d6c | 2006-08-02 11:05:16 +0200 | [diff] [blame] | 151 | } |
| 152 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 153 | 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] | 154 | { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 155 | struct fsf_status_read_buffer *sr_buf = req->data; |
| 156 | struct zfcp_adapter *adapter = req->adapter; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | struct zfcp_port *port; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 158 | int d_id = sr_buf->d_id & ZFCP_DID_MASK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | unsigned long flags; |
| 160 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | read_lock_irqsave(&zfcp_data.config_lock, flags); |
| 162 | list_for_each_entry(port, &adapter->port_list_head, list) |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 163 | if (port->d_id == d_id) { |
| 164 | read_unlock_irqrestore(&zfcp_data.config_lock, flags); |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 165 | zfcp_erp_port_reopen(port, 0, "fssrpc1", req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 166 | return; |
| 167 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | read_unlock_irqrestore(&zfcp_data.config_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | } |
| 170 | |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 171 | static void zfcp_fsf_link_down_info_eval(struct zfcp_fsf_req *req, char *id, |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 172 | struct fsf_link_down_info *link_down) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 174 | struct zfcp_adapter *adapter = req->adapter; |
Christof Schmitt | 7093293 | 2009-04-17 15:08:15 +0200 | [diff] [blame] | 175 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 177 | if (atomic_read(&adapter->status) & ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED) |
| 178 | return; |
| 179 | |
| 180 | atomic_set_mask(ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED, &adapter->status); |
Christof Schmitt | 7093293 | 2009-04-17 15:08:15 +0200 | [diff] [blame] | 181 | |
| 182 | read_lock_irqsave(&zfcp_data.config_lock, flags); |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 183 | zfcp_scsi_schedule_rports_block(adapter); |
Christof Schmitt | 7093293 | 2009-04-17 15:08:15 +0200 | [diff] [blame] | 184 | read_unlock_irqrestore(&zfcp_data.config_lock, flags); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 185 | |
| 186 | if (!link_down) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | goto out; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 188 | |
| 189 | switch (link_down->error_code) { |
| 190 | case FSF_PSQ_LINK_NO_LIGHT: |
| 191 | dev_warn(&req->adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 192 | "There is no light signal from the local " |
| 193 | "fibre channel cable\n"); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 194 | break; |
| 195 | case FSF_PSQ_LINK_WRAP_PLUG: |
| 196 | dev_warn(&req->adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 197 | "There is a wrap plug instead of a fibre " |
| 198 | "channel cable\n"); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 199 | break; |
| 200 | case FSF_PSQ_LINK_NO_FCP: |
| 201 | dev_warn(&req->adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 202 | "The adjacent fibre channel node does not " |
| 203 | "support FCP\n"); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 204 | break; |
| 205 | case FSF_PSQ_LINK_FIRMWARE_UPDATE: |
| 206 | dev_warn(&req->adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 207 | "The FCP device is suspended because of a " |
| 208 | "firmware update\n"); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 209 | break; |
| 210 | case FSF_PSQ_LINK_INVALID_WWPN: |
| 211 | dev_warn(&req->adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 212 | "The FCP device detected a WWPN that is " |
| 213 | "duplicate or not valid\n"); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 214 | break; |
| 215 | case FSF_PSQ_LINK_NO_NPIV_SUPPORT: |
| 216 | dev_warn(&req->adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 217 | "The fibre channel fabric does not support NPIV\n"); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 218 | break; |
| 219 | case FSF_PSQ_LINK_NO_FCP_RESOURCES: |
| 220 | dev_warn(&req->adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 221 | "The FCP adapter cannot support more NPIV ports\n"); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 222 | break; |
| 223 | case FSF_PSQ_LINK_NO_FABRIC_RESOURCES: |
| 224 | dev_warn(&req->adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 225 | "The adjacent switch cannot support " |
| 226 | "more NPIV ports\n"); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 227 | break; |
| 228 | case FSF_PSQ_LINK_FABRIC_LOGIN_UNABLE: |
| 229 | dev_warn(&req->adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 230 | "The FCP adapter could not log in to the " |
| 231 | "fibre channel fabric\n"); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 232 | break; |
| 233 | case FSF_PSQ_LINK_WWPN_ASSIGNMENT_CORRUPTED: |
| 234 | dev_warn(&req->adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 235 | "The WWPN assignment file on the FCP adapter " |
| 236 | "has been damaged\n"); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 237 | break; |
| 238 | case FSF_PSQ_LINK_MODE_TABLE_CURRUPTED: |
| 239 | dev_warn(&req->adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 240 | "The mode table on the FCP adapter " |
| 241 | "has been damaged\n"); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 242 | break; |
| 243 | case FSF_PSQ_LINK_NO_WWPN_ASSIGNMENT: |
| 244 | dev_warn(&req->adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 245 | "All NPIV ports on the FCP adapter have " |
| 246 | "been assigned\n"); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 247 | break; |
| 248 | default: |
| 249 | dev_warn(&req->adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 250 | "The link between the FCP adapter and " |
| 251 | "the FC fabric is down\n"); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 252 | } |
| 253 | out: |
| 254 | zfcp_erp_adapter_failed(adapter, id, req); |
| 255 | } |
| 256 | |
| 257 | static void zfcp_fsf_status_read_link_down(struct zfcp_fsf_req *req) |
| 258 | { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 259 | struct fsf_status_read_buffer *sr_buf = req->data; |
| 260 | struct fsf_link_down_info *ldi = |
| 261 | (struct fsf_link_down_info *) &sr_buf->payload; |
| 262 | |
| 263 | switch (sr_buf->status_subtype) { |
| 264 | case FSF_STATUS_READ_SUB_NO_PHYSICAL_LINK: |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 265 | zfcp_fsf_link_down_info_eval(req, "fssrld1", ldi); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 266 | break; |
| 267 | case FSF_STATUS_READ_SUB_FDISC_FAILED: |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 268 | zfcp_fsf_link_down_info_eval(req, "fssrld2", ldi); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 269 | break; |
| 270 | case FSF_STATUS_READ_SUB_FIRMWARE_UPDATE: |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 271 | zfcp_fsf_link_down_info_eval(req, "fssrld3", NULL); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 272 | }; |
| 273 | } |
| 274 | |
| 275 | static void zfcp_fsf_status_read_handler(struct zfcp_fsf_req *req) |
| 276 | { |
| 277 | struct zfcp_adapter *adapter = req->adapter; |
| 278 | struct fsf_status_read_buffer *sr_buf = req->data; |
| 279 | |
| 280 | if (req->status & ZFCP_STATUS_FSFREQ_DISMISSED) { |
| 281 | zfcp_hba_dbf_event_fsf_unsol("dism", adapter, sr_buf); |
| 282 | mempool_free(sr_buf, adapter->pool.data_status_read); |
| 283 | zfcp_fsf_req_free(req); |
| 284 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | } |
| 286 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 287 | zfcp_hba_dbf_event_fsf_unsol("read", adapter, sr_buf); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 288 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 289 | switch (sr_buf->status_type) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | case FSF_STATUS_READ_PORT_CLOSED: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 291 | zfcp_fsf_status_read_port_closed(req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | case FSF_STATUS_READ_INCOMING_ELS: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 294 | zfcp_fc_incoming_els(req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | case FSF_STATUS_READ_SENSE_DATA_AVAIL: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | case FSF_STATUS_READ_BIT_ERROR_THRESHOLD: |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 299 | dev_warn(&adapter->ccw_device->dev, |
| 300 | "The error threshold for checksum statistics " |
| 301 | "has been exceeded\n"); |
Swen Schillig | 5706938 | 2008-10-01 12:42:21 +0200 | [diff] [blame] | 302 | zfcp_hba_dbf_event_berr(adapter, req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | case FSF_STATUS_READ_LINK_DOWN: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 305 | zfcp_fsf_status_read_link_down(req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | case FSF_STATUS_READ_LINK_UP: |
Christof Schmitt | 553448f | 2008-06-10 18:20:58 +0200 | [diff] [blame] | 308 | dev_info(&adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 309 | "The local link has been restored\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | /* All ports should be marked as ready to run again */ |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 311 | zfcp_erp_modify_adapter_status(adapter, "fssrh_1", NULL, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | ZFCP_STATUS_COMMON_RUNNING, |
| 313 | ZFCP_SET); |
| 314 | zfcp_erp_adapter_reopen(adapter, |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 315 | ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED | |
| 316 | ZFCP_STATUS_COMMON_ERP_FAILED, |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 317 | "fssrh_2", req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | break; |
Maxim Shchetynin | 9eb69af | 2006-01-05 09:56:47 +0100 | [diff] [blame] | 319 | case FSF_STATUS_READ_NOTIFICATION_LOST: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 320 | if (sr_buf->status_subtype & FSF_STATUS_READ_SUB_ACT_UPDATED) |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 321 | zfcp_erp_adapter_access_changed(adapter, "fssrh_3", |
| 322 | req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 323 | if (sr_buf->status_subtype & FSF_STATUS_READ_SUB_INCOMING_ELS) |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 324 | schedule_work(&adapter->scan_work); |
Maxim Shchetynin | 9eb69af | 2006-01-05 09:56:47 +0100 | [diff] [blame] | 325 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | case FSF_STATUS_READ_CFDC_UPDATED: |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 327 | zfcp_erp_adapter_access_changed(adapter, "fssrh_4", req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | break; |
Maxim Shchetynin | aef4a98 | 2005-09-13 21:51:16 +0200 | [diff] [blame] | 329 | case FSF_STATUS_READ_FEATURE_UPDATE_ALERT: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 330 | adapter->adapter_features = sr_buf->payload.word[0]; |
Maxim Shchetynin | aef4a98 | 2005-09-13 21:51:16 +0200 | [diff] [blame] | 331 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | } |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 333 | |
| 334 | mempool_free(sr_buf, adapter->pool.data_status_read); |
| 335 | zfcp_fsf_req_free(req); |
Swen Schillig | d26ab06 | 2008-05-19 12:17:37 +0200 | [diff] [blame] | 336 | |
| 337 | atomic_inc(&adapter->stat_miss); |
Swen Schillig | b7f15f3 | 2008-10-01 12:42:22 +0200 | [diff] [blame] | 338 | queue_work(zfcp_data.work_queue, &adapter->stat_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | } |
| 340 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 341 | static void zfcp_fsf_fsfstatus_qual_eval(struct zfcp_fsf_req *req) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 343 | switch (req->qtcb->header.fsf_status_qual.word[0]) { |
| 344 | case FSF_SQ_FCP_RSP_AVAILABLE: |
| 345 | case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE: |
| 346 | case FSF_SQ_NO_RETRY_POSSIBLE: |
| 347 | case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED: |
| 348 | return; |
| 349 | case FSF_SQ_COMMAND_ABORTED: |
| 350 | req->status |= ZFCP_STATUS_FSFREQ_ABORTED; |
| 351 | break; |
| 352 | case FSF_SQ_NO_RECOM: |
| 353 | dev_err(&req->adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 354 | "The FCP adapter reported a problem " |
| 355 | "that cannot be recovered\n"); |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 356 | zfcp_erp_adapter_shutdown(req->adapter, 0, "fsfsqe1", req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 357 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | } |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 359 | /* all non-return stats set FSFREQ_ERROR*/ |
| 360 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
| 361 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 363 | static void zfcp_fsf_fsfstatus_eval(struct zfcp_fsf_req *req) |
| 364 | { |
| 365 | if (unlikely(req->status & ZFCP_STATUS_FSFREQ_ERROR)) |
| 366 | return; |
Andreas Herrmann | 059c97d | 2005-09-13 21:47:52 +0200 | [diff] [blame] | 367 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 368 | switch (req->qtcb->header.fsf_status) { |
| 369 | case FSF_UNKNOWN_COMMAND: |
| 370 | dev_err(&req->adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 371 | "The FCP adapter does not recognize the command 0x%x\n", |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 372 | req->qtcb->header.fsf_command); |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 373 | zfcp_erp_adapter_shutdown(req->adapter, 0, "fsfse_1", req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 374 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | case FSF_ADAPTER_STATUS_AVAILABLE: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 377 | zfcp_fsf_fsfstatus_qual_eval(req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | } |
| 381 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 382 | static void zfcp_fsf_protstatus_eval(struct zfcp_fsf_req *req) |
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 | struct zfcp_adapter *adapter = req->adapter; |
| 385 | struct fsf_qtcb *qtcb = req->qtcb; |
| 386 | union fsf_prot_status_qual *psq = &qtcb->prefix.prot_status_qual; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 388 | zfcp_hba_dbf_event_fsf_response(req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 390 | if (req->status & ZFCP_STATUS_FSFREQ_DISMISSED) { |
| 391 | req->status |= ZFCP_STATUS_FSFREQ_ERROR | |
| 392 | ZFCP_STATUS_FSFREQ_RETRY; /* only for SCSI cmnds. */ |
| 393 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | } |
| 395 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 396 | switch (qtcb->prefix.prot_status) { |
| 397 | case FSF_PROT_GOOD: |
| 398 | case FSF_PROT_FSF_STATUS_PRESENTED: |
| 399 | return; |
| 400 | case FSF_PROT_QTCB_VERSION_ERROR: |
| 401 | dev_err(&adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 402 | "QTCB version 0x%x not supported by FCP adapter " |
| 403 | "(0x%x to 0x%x)\n", FSF_QTCB_CURRENT_VERSION, |
| 404 | psq->word[0], psq->word[1]); |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 405 | zfcp_erp_adapter_shutdown(adapter, 0, "fspse_1", req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | break; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 407 | case FSF_PROT_ERROR_STATE: |
| 408 | case FSF_PROT_SEQ_NUMB_ERROR: |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 409 | zfcp_erp_adapter_reopen(adapter, 0, "fspse_2", req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 410 | req->status |= ZFCP_STATUS_FSFREQ_RETRY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | break; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 412 | case FSF_PROT_UNSUPP_QTCB_TYPE: |
| 413 | dev_err(&adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 414 | "The QTCB type is not supported by the FCP adapter\n"); |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 415 | zfcp_erp_adapter_shutdown(adapter, 0, "fspse_3", req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | break; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 417 | case FSF_PROT_HOST_CONNECTION_INITIALIZING: |
| 418 | atomic_set_mask(ZFCP_STATUS_ADAPTER_HOST_CON_INIT, |
| 419 | &adapter->status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | break; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 421 | case FSF_PROT_DUPLICATE_REQUEST_ID: |
| 422 | dev_err(&adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 423 | "0x%Lx is an ambiguous request identifier\n", |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 424 | (unsigned long long)qtcb->bottom.support.req_handle); |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 425 | zfcp_erp_adapter_shutdown(adapter, 0, "fspse_4", req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | break; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 427 | case FSF_PROT_LINK_DOWN: |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 428 | zfcp_fsf_link_down_info_eval(req, "fspse_5", |
| 429 | &psq->link_down_info); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 430 | /* FIXME: reopening adapter now? better wait for link up */ |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 431 | zfcp_erp_adapter_reopen(adapter, 0, "fspse_6", req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | break; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 433 | case FSF_PROT_REEST_QUEUE: |
| 434 | /* All ports should be marked as ready to run again */ |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 435 | zfcp_erp_modify_adapter_status(adapter, "fspse_7", NULL, |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 436 | ZFCP_STATUS_COMMON_RUNNING, |
| 437 | ZFCP_SET); |
| 438 | zfcp_erp_adapter_reopen(adapter, |
| 439 | ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED | |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 440 | ZFCP_STATUS_COMMON_ERP_FAILED, |
| 441 | "fspse_8", req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 442 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | default: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 444 | dev_err(&adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 445 | "0x%x is not a valid transfer protocol status\n", |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 446 | qtcb->prefix.prot_status); |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 447 | zfcp_erp_adapter_shutdown(adapter, 0, "fspse_9", req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 | } |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 449 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | } |
| 451 | |
| 452 | /** |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 453 | * zfcp_fsf_req_complete - process completion of a FSF request |
| 454 | * @fsf_req: The FSF request that has been completed. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | * |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 456 | * When a request has been completed either from the FCP adapter, |
| 457 | * or it has been dismissed due to a queue shutdown, this function |
| 458 | * is called to process the completion status and trigger further |
| 459 | * events related to the FSF request. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | */ |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 461 | void zfcp_fsf_req_complete(struct zfcp_fsf_req *req) |
| 462 | { |
| 463 | if (unlikely(req->fsf_command == FSF_QTCB_UNSOLICITED_STATUS)) { |
| 464 | zfcp_fsf_status_read_handler(req); |
| 465 | return; |
| 466 | } |
| 467 | |
| 468 | del_timer(&req->timer); |
| 469 | zfcp_fsf_protstatus_eval(req); |
| 470 | zfcp_fsf_fsfstatus_eval(req); |
| 471 | req->handler(req); |
| 472 | |
| 473 | if (req->erp_action) |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 474 | zfcp_erp_notify(req->erp_action, 0); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 475 | req->status |= ZFCP_STATUS_FSFREQ_COMPLETED; |
| 476 | |
| 477 | if (likely(req->status & ZFCP_STATUS_FSFREQ_CLEANUP)) |
| 478 | zfcp_fsf_req_free(req); |
| 479 | else |
| 480 | /* notify initiator waiting for the requests completion */ |
| 481 | /* |
| 482 | * FIXME: Race! We must not access fsf_req here as it might have been |
| 483 | * cleaned up already due to the set ZFCP_STATUS_FSFREQ_COMPLETED |
| 484 | * flag. It's an improbable case. But, we have the same paranoia for |
| 485 | * the cleanup flag already. |
| 486 | * Might better be handled using complete()? |
| 487 | * (setting the flag and doing wakeup ought to be atomic |
| 488 | * with regard to checking the flag as long as waitqueue is |
| 489 | * part of the to be released structure) |
| 490 | */ |
| 491 | wake_up(&req->completion_wq); |
| 492 | } |
| 493 | |
| 494 | static int zfcp_fsf_exchange_config_evaluate(struct zfcp_fsf_req *req) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | { |
| 496 | struct fsf_qtcb_bottom_config *bottom; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 497 | struct zfcp_adapter *adapter = req->adapter; |
Andreas Herrmann | 13e1e1f | 2005-09-19 16:56:17 +0200 | [diff] [blame] | 498 | struct Scsi_Host *shost = adapter->scsi_host; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 500 | bottom = &req->qtcb->bottom.config; |
| 501 | |
| 502 | if (req->data) |
| 503 | memcpy(req->data, bottom, sizeof(*bottom)); |
| 504 | |
| 505 | fc_host_node_name(shost) = bottom->nport_serv_param.wwnn; |
| 506 | fc_host_port_name(shost) = bottom->nport_serv_param.wwpn; |
| 507 | fc_host_port_id(shost) = bottom->s_id & ZFCP_DID_MASK; |
| 508 | fc_host_speed(shost) = bottom->fc_link_speed; |
| 509 | fc_host_supported_classes(shost) = FC_COS_CLASS2 | FC_COS_CLASS3; |
| 510 | |
| 511 | adapter->hydra_version = bottom->adapter_type; |
| 512 | adapter->timer_ticks = bottom->timer_interval; |
| 513 | |
| 514 | if (fc_host_permanent_port_name(shost) == -1) |
| 515 | fc_host_permanent_port_name(shost) = fc_host_port_name(shost); |
| 516 | |
| 517 | switch (bottom->fc_topology) { |
| 518 | case FSF_TOPO_P2P: |
| 519 | adapter->peer_d_id = bottom->peer_d_id & ZFCP_DID_MASK; |
| 520 | adapter->peer_wwpn = bottom->plogi_payload.wwpn; |
| 521 | adapter->peer_wwnn = bottom->plogi_payload.wwnn; |
| 522 | fc_host_port_type(shost) = FC_PORTTYPE_PTP; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 523 | break; |
| 524 | case FSF_TOPO_FABRIC: |
| 525 | fc_host_port_type(shost) = FC_PORTTYPE_NPORT; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 526 | break; |
| 527 | case FSF_TOPO_AL: |
| 528 | fc_host_port_type(shost) = FC_PORTTYPE_NLPORT; |
Christof Schmitt | dceab65 | 2009-05-15 13:18:18 +0200 | [diff] [blame] | 529 | /* fall through */ |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 530 | default: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 531 | dev_err(&adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 532 | "Unknown or unsupported arbitrated loop " |
| 533 | "fibre channel topology detected\n"); |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 534 | zfcp_erp_adapter_shutdown(adapter, 0, "fsece_1", req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 535 | return -EIO; |
| 536 | } |
| 537 | |
| 538 | return 0; |
| 539 | } |
| 540 | |
| 541 | static void zfcp_fsf_exchange_config_data_handler(struct zfcp_fsf_req *req) |
| 542 | { |
| 543 | struct zfcp_adapter *adapter = req->adapter; |
| 544 | struct fsf_qtcb *qtcb = req->qtcb; |
| 545 | struct fsf_qtcb_bottom_config *bottom = &qtcb->bottom.config; |
| 546 | struct Scsi_Host *shost = adapter->scsi_host; |
| 547 | |
| 548 | if (req->status & ZFCP_STATUS_FSFREQ_ERROR) |
| 549 | return; |
| 550 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 551 | adapter->fsf_lic_version = bottom->lic_version; |
Maxim Shchetynin | aef4a98 | 2005-09-13 21:51:16 +0200 | [diff] [blame] | 552 | adapter->adapter_features = bottom->adapter_features; |
| 553 | adapter->connection_features = bottom->connection_features; |
| 6f71d9b | 2005-04-10 23:04:28 -0500 | [diff] [blame] | 554 | adapter->peer_wwpn = 0; |
| 555 | adapter->peer_wwnn = 0; |
| 556 | adapter->peer_d_id = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 558 | switch (qtcb->header.fsf_status) { |
| 559 | case FSF_GOOD: |
| 560 | if (zfcp_fsf_exchange_config_evaluate(req)) |
| 561 | return; |
Swen Schillig | 52ef11a | 2007-08-28 09:31:09 +0200 | [diff] [blame] | 562 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 563 | if (bottom->max_qtcb_size < sizeof(struct fsf_qtcb)) { |
| 564 | dev_err(&adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 565 | "FCP adapter maximum QTCB size (%d bytes) " |
| 566 | "is too small\n", |
| 567 | bottom->max_qtcb_size); |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 568 | zfcp_erp_adapter_shutdown(adapter, 0, "fsecdh1", req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 569 | return; |
| 570 | } |
| 571 | atomic_set_mask(ZFCP_STATUS_ADAPTER_XCONFIG_OK, |
| 572 | &adapter->status); |
| 573 | break; |
| 574 | case FSF_EXCHANGE_CONFIG_DATA_INCOMPLETE: |
Andreas Herrmann | 13e1e1f | 2005-09-19 16:56:17 +0200 | [diff] [blame] | 575 | fc_host_node_name(shost) = 0; |
| 576 | fc_host_port_name(shost) = 0; |
| 577 | fc_host_port_id(shost) = 0; |
| 578 | fc_host_speed(shost) = FC_PORTSPEED_UNKNOWN; |
Andreas Herrmann | ad757cd | 2006-01-13 02:26:11 +0100 | [diff] [blame] | 579 | fc_host_port_type(shost) = FC_PORTTYPE_UNKNOWN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | adapter->hydra_version = 0; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 581 | |
| 582 | atomic_set_mask(ZFCP_STATUS_ADAPTER_XCONFIG_OK, |
| 583 | &adapter->status); |
| 584 | |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 585 | zfcp_fsf_link_down_info_eval(req, "fsecdh2", |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 586 | &qtcb->header.fsf_status_qual.link_down_info); |
| 587 | break; |
| 588 | default: |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 589 | zfcp_erp_adapter_shutdown(adapter, 0, "fsecdh3", req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 590 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | } |
| 592 | |
Maxim Shchetynin | aef4a98 | 2005-09-13 21:51:16 +0200 | [diff] [blame] | 593 | if (adapter->adapter_features & FSF_FEATURE_HBAAPI_MANAGEMENT) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | adapter->hardware_version = bottom->hardware_version; |
Andreas Herrmann | 13e1e1f | 2005-09-19 16:56:17 +0200 | [diff] [blame] | 595 | memcpy(fc_host_serial_number(shost), bottom->serial_number, |
| 596 | min(FC_SERIAL_NUMBER_SIZE, 17)); |
| 597 | EBCASC(fc_host_serial_number(shost), |
| 598 | min(FC_SERIAL_NUMBER_SIZE, 17)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | } |
| 600 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 601 | if (FSF_QTCB_CURRENT_VERSION < bottom->low_qtcb_version) { |
Christof Schmitt | 553448f | 2008-06-10 18:20:58 +0200 | [diff] [blame] | 602 | dev_err(&adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 603 | "The FCP adapter only supports newer " |
| 604 | "control block versions\n"); |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 605 | zfcp_erp_adapter_shutdown(adapter, 0, "fsecdh4", req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 606 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | } |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 608 | if (FSF_QTCB_CURRENT_VERSION > bottom->high_qtcb_version) { |
Christof Schmitt | 553448f | 2008-06-10 18:20:58 +0200 | [diff] [blame] | 609 | dev_err(&adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 610 | "The FCP adapter only supports older " |
| 611 | "control block versions\n"); |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 612 | zfcp_erp_adapter_shutdown(adapter, 0, "fsecdh5", req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | } |
| 615 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 616 | static void zfcp_fsf_exchange_port_evaluate(struct zfcp_fsf_req *req) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 618 | struct zfcp_adapter *adapter = req->adapter; |
| 619 | struct fsf_qtcb_bottom_port *bottom = &req->qtcb->bottom.port; |
| 620 | struct Scsi_Host *shost = adapter->scsi_host; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 622 | if (req->data) |
| 623 | memcpy(req->data, bottom, sizeof(*bottom)); |
Andreas Herrmann | 2f8f3ed | 2006-02-11 01:41:50 +0100 | [diff] [blame] | 624 | |
Christof Schmitt | 0282985 | 2009-03-02 13:09:06 +0100 | [diff] [blame] | 625 | if (adapter->connection_features & FSF_FEATURE_NPIV_MODE) { |
Andreas Herrmann | 2f8f3ed | 2006-02-11 01:41:50 +0100 | [diff] [blame] | 626 | fc_host_permanent_port_name(shost) = bottom->wwpn; |
Christof Schmitt | 0282985 | 2009-03-02 13:09:06 +0100 | [diff] [blame] | 627 | fc_host_port_type(shost) = FC_PORTTYPE_NPIV; |
| 628 | } else |
Andreas Herrmann | 2f8f3ed | 2006-02-11 01:41:50 +0100 | [diff] [blame] | 629 | fc_host_permanent_port_name(shost) = fc_host_port_name(shost); |
| 630 | fc_host_maxframe_size(shost) = bottom->maximum_frame_size; |
| 631 | fc_host_supported_speeds(shost) = bottom->supported_speed; |
| 632 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 633 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 634 | 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] | 635 | { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 636 | struct fsf_qtcb *qtcb = req->qtcb; |
Andreas Herrmann | 2f8f3ed | 2006-02-11 01:41:50 +0100 | [diff] [blame] | 637 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 638 | if (req->status & ZFCP_STATUS_FSFREQ_ERROR) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | return; |
| 640 | |
Maxim Shchetynin | aef4a98 | 2005-09-13 21:51:16 +0200 | [diff] [blame] | 641 | switch (qtcb->header.fsf_status) { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 642 | case FSF_GOOD: |
| 643 | zfcp_fsf_exchange_port_evaluate(req); |
Maxim Shchetynin | aef4a98 | 2005-09-13 21:51:16 +0200 | [diff] [blame] | 644 | break; |
Maxim Shchetynin | aef4a98 | 2005-09-13 21:51:16 +0200 | [diff] [blame] | 645 | case FSF_EXCHANGE_CONFIG_DATA_INCOMPLETE: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 646 | zfcp_fsf_exchange_port_evaluate(req); |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 647 | zfcp_fsf_link_down_info_eval(req, "fsepdh1", |
Maxim Shchetynin | aef4a98 | 2005-09-13 21:51:16 +0200 | [diff] [blame] | 648 | &qtcb->header.fsf_status_qual.link_down_info); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 649 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | } |
| 651 | } |
| 652 | |
Martin Petermann | 7001f0c | 2009-04-17 15:08:12 +0200 | [diff] [blame] | 653 | static int zfcp_fsf_sbal_check(struct zfcp_adapter *adapter) |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 654 | { |
Christof Schmitt | dedbc2b | 2008-12-19 16:56:54 +0100 | [diff] [blame] | 655 | struct zfcp_qdio_queue *req_q = &adapter->req_q; |
Martin Petermann | 7001f0c | 2009-04-17 15:08:12 +0200 | [diff] [blame] | 656 | |
| 657 | spin_lock_bh(&adapter->req_q_lock); |
| 658 | if (atomic_read(&req_q->count)) |
| 659 | return 1; |
| 660 | spin_unlock_bh(&adapter->req_q_lock); |
| 661 | return 0; |
| 662 | } |
| 663 | |
| 664 | static int zfcp_fsf_req_sbal_get(struct zfcp_adapter *adapter) |
| 665 | { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 666 | long ret; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 667 | |
Christof Schmitt | 0406289 | 2008-10-01 12:42:20 +0200 | [diff] [blame] | 668 | spin_unlock_bh(&adapter->req_q_lock); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 669 | ret = wait_event_interruptible_timeout(adapter->request_wq, |
Martin Petermann | 7001f0c | 2009-04-17 15:08:12 +0200 | [diff] [blame] | 670 | zfcp_fsf_sbal_check(adapter), 5 * HZ); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 671 | if (ret > 0) |
| 672 | return 0; |
Stefan Raspl | 2450d3e | 2008-10-01 12:42:14 +0200 | [diff] [blame] | 673 | if (!ret) |
| 674 | atomic_inc(&adapter->qdio_outb_full); |
Martin Petermann | 7001f0c | 2009-04-17 15:08:12 +0200 | [diff] [blame] | 675 | |
| 676 | spin_lock_bh(&adapter->req_q_lock); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 677 | return -EIO; |
| 678 | } |
| 679 | |
| 680 | static struct zfcp_fsf_req *zfcp_fsf_alloc_noqtcb(mempool_t *pool) |
| 681 | { |
| 682 | struct zfcp_fsf_req *req; |
| 683 | req = mempool_alloc(pool, GFP_ATOMIC); |
| 684 | if (!req) |
| 685 | return NULL; |
| 686 | memset(req, 0, sizeof(*req)); |
Christof Schmitt | 88f2a97 | 2008-11-04 16:35:07 +0100 | [diff] [blame] | 687 | req->pool = pool; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 688 | return req; |
| 689 | } |
| 690 | |
| 691 | static struct zfcp_fsf_req *zfcp_fsf_alloc_qtcb(mempool_t *pool) |
| 692 | { |
| 693 | struct zfcp_fsf_req_qtcb *qtcb; |
| 694 | |
| 695 | if (likely(pool)) |
| 696 | qtcb = mempool_alloc(pool, GFP_ATOMIC); |
| 697 | else |
| 698 | qtcb = kmem_cache_alloc(zfcp_data.fsf_req_qtcb_cache, |
| 699 | GFP_ATOMIC); |
| 700 | if (unlikely(!qtcb)) |
| 701 | return NULL; |
| 702 | |
| 703 | memset(qtcb, 0, sizeof(*qtcb)); |
| 704 | qtcb->fsf_req.qtcb = &qtcb->qtcb; |
| 705 | qtcb->fsf_req.pool = pool; |
| 706 | |
| 707 | return &qtcb->fsf_req; |
| 708 | } |
| 709 | |
| 710 | static struct zfcp_fsf_req *zfcp_fsf_req_create(struct zfcp_adapter *adapter, |
| 711 | u32 fsf_cmd, int req_flags, |
| 712 | mempool_t *pool) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 713 | { |
Swen Schillig | 44cc76f | 2008-10-01 12:42:16 +0200 | [diff] [blame] | 714 | struct qdio_buffer_element *sbale; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 715 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 716 | struct zfcp_fsf_req *req; |
| 717 | struct zfcp_qdio_queue *req_q = &adapter->req_q; |
| 718 | |
| 719 | if (req_flags & ZFCP_REQ_NO_QTCB) |
| 720 | req = zfcp_fsf_alloc_noqtcb(pool); |
| 721 | else |
| 722 | req = zfcp_fsf_alloc_qtcb(pool); |
| 723 | |
| 724 | if (unlikely(!req)) |
| 725 | return ERR_PTR(-EIO); |
| 726 | |
| 727 | if (adapter->req_no == 0) |
| 728 | adapter->req_no++; |
| 729 | |
| 730 | INIT_LIST_HEAD(&req->list); |
| 731 | init_timer(&req->timer); |
| 732 | init_waitqueue_head(&req->completion_wq); |
| 733 | |
| 734 | req->adapter = adapter; |
| 735 | req->fsf_command = fsf_cmd; |
Christof Schmitt | 52bfb55 | 2009-03-02 13:08:58 +0100 | [diff] [blame] | 736 | req->req_id = adapter->req_no; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 737 | req->sbal_number = 1; |
| 738 | req->sbal_first = req_q->first; |
| 739 | req->sbal_last = req_q->first; |
| 740 | req->sbale_curr = 1; |
| 741 | |
| 742 | sbale = zfcp_qdio_sbale_req(req); |
| 743 | sbale[0].addr = (void *) req->req_id; |
| 744 | sbale[0].flags |= SBAL_FLAGS0_COMMAND; |
| 745 | |
| 746 | if (likely(req->qtcb)) { |
| 747 | req->qtcb->prefix.req_seq_no = req->adapter->fsf_req_seq_no; |
| 748 | req->qtcb->prefix.req_id = req->req_id; |
| 749 | req->qtcb->prefix.ulp_info = 26; |
| 750 | req->qtcb->prefix.qtcb_type = fsf_qtcb_type[req->fsf_command]; |
| 751 | req->qtcb->prefix.qtcb_version = FSF_QTCB_CURRENT_VERSION; |
| 752 | req->qtcb->header.req_handle = req->req_id; |
| 753 | req->qtcb->header.fsf_command = req->fsf_command; |
| 754 | req->seq_no = adapter->fsf_req_seq_no; |
| 755 | req->qtcb->prefix.req_seq_no = adapter->fsf_req_seq_no; |
| 756 | sbale[1].addr = (void *) req->qtcb; |
| 757 | sbale[1].length = sizeof(struct fsf_qtcb); |
| 758 | } |
| 759 | |
| 760 | if (!(atomic_read(&adapter->status) & ZFCP_STATUS_ADAPTER_QDIOUP)) { |
| 761 | zfcp_fsf_req_free(req); |
| 762 | return ERR_PTR(-EIO); |
| 763 | } |
| 764 | |
| 765 | if (likely(req_flags & ZFCP_REQ_AUTO_CLEANUP)) |
| 766 | req->status |= ZFCP_STATUS_FSFREQ_CLEANUP; |
| 767 | |
| 768 | return req; |
| 769 | } |
| 770 | |
| 771 | static int zfcp_fsf_req_send(struct zfcp_fsf_req *req) |
| 772 | { |
| 773 | struct zfcp_adapter *adapter = req->adapter; |
Martin Petermann | 135ea13 | 2009-04-17 15:08:01 +0200 | [diff] [blame] | 774 | unsigned long flags; |
| 775 | int idx; |
| 776 | int with_qtcb = (req->qtcb != NULL); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 777 | |
| 778 | /* put allocated FSF request into hash table */ |
Heiko Carstens | 45316a8 | 2008-11-04 16:35:06 +0100 | [diff] [blame] | 779 | spin_lock_irqsave(&adapter->req_list_lock, flags); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 780 | idx = zfcp_reqlist_hash(req->req_id); |
| 781 | list_add_tail(&req->list, &adapter->req_list[idx]); |
Heiko Carstens | 45316a8 | 2008-11-04 16:35:06 +0100 | [diff] [blame] | 782 | spin_unlock_irqrestore(&adapter->req_list_lock, flags); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 783 | |
Christof Schmitt | 3765138 | 2008-11-04 16:35:08 +0100 | [diff] [blame] | 784 | req->qdio_outb_usage = atomic_read(&adapter->req_q.count); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 785 | req->issued = get_clock(); |
| 786 | if (zfcp_qdio_send(req)) { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 787 | del_timer(&req->timer); |
Christof Schmitt | 3765138 | 2008-11-04 16:35:08 +0100 | [diff] [blame] | 788 | spin_lock_irqsave(&adapter->req_list_lock, flags); |
| 789 | /* lookup request again, list might have changed */ |
| 790 | if (zfcp_reqlist_find_safe(adapter, req)) |
| 791 | zfcp_reqlist_remove(adapter, req); |
| 792 | spin_unlock_irqrestore(&adapter->req_list_lock, flags); |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 793 | zfcp_erp_adapter_reopen(adapter, 0, "fsrs__1", req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 794 | return -EIO; |
| 795 | } |
| 796 | |
| 797 | /* Don't increase for unsolicited status */ |
Martin Petermann | 135ea13 | 2009-04-17 15:08:01 +0200 | [diff] [blame] | 798 | if (with_qtcb) |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 799 | adapter->fsf_req_seq_no++; |
Christof Schmitt | 52bfb55 | 2009-03-02 13:08:58 +0100 | [diff] [blame] | 800 | adapter->req_no++; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 801 | |
| 802 | return 0; |
| 803 | } |
| 804 | |
| 805 | /** |
| 806 | * zfcp_fsf_status_read - send status read request |
| 807 | * @adapter: pointer to struct zfcp_adapter |
| 808 | * @req_flags: request flags |
| 809 | * Returns: 0 on success, ERROR otherwise |
| 810 | */ |
| 811 | int zfcp_fsf_status_read(struct zfcp_adapter *adapter) |
| 812 | { |
| 813 | struct zfcp_fsf_req *req; |
| 814 | struct fsf_status_read_buffer *sr_buf; |
Swen Schillig | 44cc76f | 2008-10-01 12:42:16 +0200 | [diff] [blame] | 815 | struct qdio_buffer_element *sbale; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 816 | int retval = -EIO; |
| 817 | |
Christof Schmitt | 0406289 | 2008-10-01 12:42:20 +0200 | [diff] [blame] | 818 | spin_lock_bh(&adapter->req_q_lock); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 819 | if (zfcp_fsf_req_sbal_get(adapter)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 820 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 822 | req = zfcp_fsf_req_create(adapter, FSF_QTCB_UNSOLICITED_STATUS, |
| 823 | ZFCP_REQ_NO_QTCB, |
| 824 | adapter->pool.fsf_req_status_read); |
Hirofumi Nakagawa | 025270f | 2008-08-21 13:43:37 +0200 | [diff] [blame] | 825 | if (IS_ERR(req)) { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 826 | retval = PTR_ERR(req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 827 | goto out; |
| 828 | } |
| 829 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 830 | sbale = zfcp_qdio_sbale_req(req); |
| 831 | sbale[0].flags |= SBAL_FLAGS0_TYPE_STATUS; |
| 832 | sbale[2].flags |= SBAL_FLAGS_LAST_ENTRY; |
| 833 | req->sbale_curr = 2; |
| 834 | |
| 835 | sr_buf = mempool_alloc(adapter->pool.data_status_read, GFP_ATOMIC); |
| 836 | if (!sr_buf) { |
| 837 | retval = -ENOMEM; |
| 838 | goto failed_buf; |
| 839 | } |
| 840 | memset(sr_buf, 0, sizeof(*sr_buf)); |
| 841 | req->data = sr_buf; |
| 842 | sbale = zfcp_qdio_sbale_curr(req); |
| 843 | sbale->addr = (void *) sr_buf; |
| 844 | sbale->length = sizeof(*sr_buf); |
| 845 | |
| 846 | retval = zfcp_fsf_req_send(req); |
| 847 | if (retval) |
| 848 | goto failed_req_send; |
| 849 | |
| 850 | goto out; |
| 851 | |
| 852 | failed_req_send: |
| 853 | mempool_free(sr_buf, adapter->pool.data_status_read); |
| 854 | failed_buf: |
| 855 | zfcp_fsf_req_free(req); |
| 856 | zfcp_hba_dbf_event_fsf_unsol("fail", adapter, NULL); |
| 857 | out: |
Christof Schmitt | 0406289 | 2008-10-01 12:42:20 +0200 | [diff] [blame] | 858 | spin_unlock_bh(&adapter->req_q_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 859 | return retval; |
| 860 | } |
| 861 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 862 | 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] | 863 | { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 864 | struct zfcp_unit *unit = req->data; |
| 865 | union fsf_status_qual *fsq = &req->qtcb->header.fsf_status_qual; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 866 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 867 | if (req->status & ZFCP_STATUS_FSFREQ_ERROR) |
| 868 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 869 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 870 | switch (req->qtcb->header.fsf_status) { |
| 871 | case FSF_PORT_HANDLE_NOT_VALID: |
| 872 | if (fsq->word[0] == fsq->word[1]) { |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 873 | zfcp_erp_adapter_reopen(unit->port->adapter, 0, |
| 874 | "fsafch1", req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 875 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
| 876 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 877 | break; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 878 | case FSF_LUN_HANDLE_NOT_VALID: |
| 879 | if (fsq->word[0] == fsq->word[1]) { |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 880 | zfcp_erp_port_reopen(unit->port, 0, "fsafch2", req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 881 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
| 882 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 883 | break; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 884 | case FSF_FCP_COMMAND_DOES_NOT_EXIST: |
| 885 | req->status |= ZFCP_STATUS_FSFREQ_ABORTNOTNEEDED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 886 | break; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 887 | case FSF_PORT_BOXED: |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 888 | zfcp_erp_port_boxed(unit->port, "fsafch3", req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 889 | req->status |= ZFCP_STATUS_FSFREQ_ERROR | |
| 890 | ZFCP_STATUS_FSFREQ_RETRY; |
| 891 | break; |
| 892 | case FSF_LUN_BOXED: |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 893 | zfcp_erp_unit_boxed(unit, "fsafch4", req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 894 | req->status |= ZFCP_STATUS_FSFREQ_ERROR | |
| 895 | ZFCP_STATUS_FSFREQ_RETRY; |
| 896 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 897 | case FSF_ADAPTER_STATUS_AVAILABLE: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 898 | switch (fsq->word[0]) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 899 | case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 900 | zfcp_test_link(unit->port); |
Christof Schmitt | dceab65 | 2009-05-15 13:18:18 +0200 | [diff] [blame] | 901 | /* fall through */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 902 | case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 903 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 904 | break; |
| 905 | } |
| 906 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 907 | case FSF_GOOD: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 908 | req->status |= ZFCP_STATUS_FSFREQ_ABORTSUCCEEDED; |
| 909 | break; |
| 910 | } |
| 911 | } |
| 912 | |
| 913 | /** |
| 914 | * zfcp_fsf_abort_fcp_command - abort running SCSI command |
| 915 | * @old_req_id: unsigned long |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 916 | * @unit: pointer to struct zfcp_unit |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 917 | * Returns: pointer to struct zfcp_fsf_req |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 918 | */ |
| 919 | |
| 920 | struct zfcp_fsf_req *zfcp_fsf_abort_fcp_command(unsigned long old_req_id, |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 921 | struct zfcp_unit *unit) |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 922 | { |
Swen Schillig | 44cc76f | 2008-10-01 12:42:16 +0200 | [diff] [blame] | 923 | struct qdio_buffer_element *sbale; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 924 | struct zfcp_fsf_req *req = NULL; |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 925 | struct zfcp_adapter *adapter = unit->port->adapter; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 926 | |
Christof Schmitt | 92cab0d | 2009-03-02 13:08:59 +0100 | [diff] [blame] | 927 | spin_lock_bh(&adapter->req_q_lock); |
| 928 | if (zfcp_fsf_req_sbal_get(adapter)) |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 929 | goto out; |
| 930 | req = zfcp_fsf_req_create(adapter, FSF_QTCB_ABORT_FCP_CMND, |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 931 | 0, adapter->pool.fsf_req_abort); |
Swen Schillig | 633528c | 2008-11-26 18:07:37 +0100 | [diff] [blame] | 932 | if (IS_ERR(req)) { |
| 933 | req = NULL; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 934 | goto out; |
Swen Schillig | 633528c | 2008-11-26 18:07:37 +0100 | [diff] [blame] | 935 | } |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 936 | |
| 937 | if (unlikely(!(atomic_read(&unit->status) & |
| 938 | ZFCP_STATUS_COMMON_UNBLOCKED))) |
| 939 | goto out_error_free; |
| 940 | |
| 941 | sbale = zfcp_qdio_sbale_req(req); |
| 942 | sbale[0].flags |= SBAL_FLAGS0_TYPE_READ; |
| 943 | sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY; |
| 944 | |
| 945 | req->data = unit; |
| 946 | req->handler = zfcp_fsf_abort_fcp_command_handler; |
| 947 | req->qtcb->header.lun_handle = unit->handle; |
| 948 | req->qtcb->header.port_handle = unit->port->handle; |
| 949 | req->qtcb->bottom.support.req_handle = (u64) old_req_id; |
| 950 | |
| 951 | zfcp_fsf_start_timer(req, ZFCP_SCSI_ER_TIMEOUT); |
| 952 | if (!zfcp_fsf_req_send(req)) |
| 953 | goto out; |
| 954 | |
| 955 | out_error_free: |
| 956 | zfcp_fsf_req_free(req); |
| 957 | req = NULL; |
| 958 | out: |
Christof Schmitt | 92cab0d | 2009-03-02 13:08:59 +0100 | [diff] [blame] | 959 | spin_unlock_bh(&adapter->req_q_lock); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 960 | return req; |
| 961 | } |
| 962 | |
| 963 | static void zfcp_fsf_send_ct_handler(struct zfcp_fsf_req *req) |
| 964 | { |
| 965 | struct zfcp_adapter *adapter = req->adapter; |
| 966 | struct zfcp_send_ct *send_ct = req->data; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 967 | struct fsf_qtcb_header *header = &req->qtcb->header; |
| 968 | |
| 969 | send_ct->status = -EINVAL; |
| 970 | |
| 971 | if (req->status & ZFCP_STATUS_FSFREQ_ERROR) |
| 972 | goto skip_fsfstatus; |
| 973 | |
| 974 | switch (header->fsf_status) { |
| 975 | case FSF_GOOD: |
| 976 | zfcp_san_dbf_event_ct_response(req); |
| 977 | send_ct->status = 0; |
| 978 | break; |
| 979 | case FSF_SERVICE_CLASS_NOT_SUPPORTED: |
| 980 | zfcp_fsf_class_not_supp(req); |
| 981 | break; |
| 982 | case FSF_ADAPTER_STATUS_AVAILABLE: |
| 983 | switch (header->fsf_status_qual.word[0]){ |
| 984 | case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 985 | case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED: |
| 986 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
| 987 | break; |
| 988 | } |
| 989 | break; |
| 990 | case FSF_ACCESS_DENIED: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 991 | break; |
| 992 | case FSF_PORT_BOXED: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 993 | req->status |= ZFCP_STATUS_FSFREQ_ERROR | |
| 994 | ZFCP_STATUS_FSFREQ_RETRY; |
| 995 | break; |
| 996 | case FSF_PORT_HANDLE_NOT_VALID: |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 997 | zfcp_erp_adapter_reopen(adapter, 0, "fsscth1", req); |
Christof Schmitt | dceab65 | 2009-05-15 13:18:18 +0200 | [diff] [blame] | 998 | /* fall through */ |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 999 | case FSF_GENERIC_COMMAND_REJECTED: |
| 1000 | case FSF_PAYLOAD_SIZE_MISMATCH: |
| 1001 | case FSF_REQUEST_SIZE_TOO_LARGE: |
| 1002 | case FSF_RESPONSE_SIZE_TOO_LARGE: |
| 1003 | case FSF_SBAL_MISMATCH: |
| 1004 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
| 1005 | break; |
| 1006 | } |
| 1007 | |
| 1008 | skip_fsfstatus: |
| 1009 | if (send_ct->handler) |
| 1010 | send_ct->handler(send_ct->handler_data); |
| 1011 | } |
| 1012 | |
Christof Schmitt | 39eb7e9 | 2008-12-19 16:57:01 +0100 | [diff] [blame] | 1013 | static int zfcp_fsf_setup_ct_els_sbals(struct zfcp_fsf_req *req, |
| 1014 | struct scatterlist *sg_req, |
| 1015 | struct scatterlist *sg_resp, |
| 1016 | int max_sbals) |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1017 | { |
Christof Schmitt | 39eb7e9 | 2008-12-19 16:57:01 +0100 | [diff] [blame] | 1018 | struct qdio_buffer_element *sbale = zfcp_qdio_sbale_req(req); |
| 1019 | u32 feat = req->adapter->adapter_features; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1020 | int bytes; |
| 1021 | |
Christof Schmitt | 39eb7e9 | 2008-12-19 16:57:01 +0100 | [diff] [blame] | 1022 | if (!(feat & FSF_FEATURE_ELS_CT_CHAINED_SBALS)) { |
| 1023 | if (sg_req->length > PAGE_SIZE || sg_resp->length > PAGE_SIZE || |
| 1024 | !sg_is_last(sg_req) || !sg_is_last(sg_resp)) |
| 1025 | return -EOPNOTSUPP; |
| 1026 | |
| 1027 | sbale[0].flags |= SBAL_FLAGS0_TYPE_WRITE_READ; |
| 1028 | sbale[2].addr = sg_virt(sg_req); |
| 1029 | sbale[2].length = sg_req->length; |
| 1030 | sbale[3].addr = sg_virt(sg_resp); |
| 1031 | sbale[3].length = sg_resp->length; |
| 1032 | sbale[3].flags |= SBAL_FLAGS_LAST_ENTRY; |
| 1033 | return 0; |
| 1034 | } |
| 1035 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1036 | bytes = zfcp_qdio_sbals_from_sg(req, SBAL_FLAGS0_TYPE_WRITE_READ, |
| 1037 | sg_req, max_sbals); |
| 1038 | if (bytes <= 0) |
| 1039 | return -ENOMEM; |
| 1040 | req->qtcb->bottom.support.req_buf_length = bytes; |
| 1041 | req->sbale_curr = ZFCP_LAST_SBALE_PER_SBAL; |
| 1042 | |
| 1043 | bytes = zfcp_qdio_sbals_from_sg(req, SBAL_FLAGS0_TYPE_WRITE_READ, |
| 1044 | sg_resp, max_sbals); |
| 1045 | if (bytes <= 0) |
| 1046 | return -ENOMEM; |
| 1047 | req->qtcb->bottom.support.resp_buf_length = bytes; |
| 1048 | |
| 1049 | return 0; |
| 1050 | } |
| 1051 | |
| 1052 | /** |
| 1053 | * zfcp_fsf_send_ct - initiate a Generic Service request (FC-GS) |
| 1054 | * @ct: pointer to struct zfcp_send_ct with data for request |
| 1055 | * @pool: if non-null this mempool is used to allocate struct zfcp_fsf_req |
| 1056 | * @erp_action: if non-null the Generic Service request sent within ERP |
| 1057 | */ |
| 1058 | int zfcp_fsf_send_ct(struct zfcp_send_ct *ct, mempool_t *pool, |
| 1059 | struct zfcp_erp_action *erp_action) |
| 1060 | { |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 1061 | struct zfcp_wka_port *wka_port = ct->wka_port; |
| 1062 | struct zfcp_adapter *adapter = wka_port->adapter; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1063 | struct zfcp_fsf_req *req; |
| 1064 | int ret = -EIO; |
| 1065 | |
Christof Schmitt | 0406289 | 2008-10-01 12:42:20 +0200 | [diff] [blame] | 1066 | spin_lock_bh(&adapter->req_q_lock); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1067 | if (zfcp_fsf_req_sbal_get(adapter)) |
| 1068 | goto out; |
| 1069 | |
| 1070 | req = zfcp_fsf_req_create(adapter, FSF_QTCB_SEND_GENERIC, |
| 1071 | ZFCP_REQ_AUTO_CLEANUP, pool); |
Hirofumi Nakagawa | 025270f | 2008-08-21 13:43:37 +0200 | [diff] [blame] | 1072 | if (IS_ERR(req)) { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1073 | ret = PTR_ERR(req); |
| 1074 | goto out; |
| 1075 | } |
| 1076 | |
Christof Schmitt | 39eb7e9 | 2008-12-19 16:57:01 +0100 | [diff] [blame] | 1077 | ret = zfcp_fsf_setup_ct_els_sbals(req, ct->req, ct->resp, |
| 1078 | FSF_MAX_SBALS_PER_REQ); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1079 | if (ret) |
| 1080 | goto failed_send; |
| 1081 | |
| 1082 | req->handler = zfcp_fsf_send_ct_handler; |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 1083 | req->qtcb->header.port_handle = wka_port->handle; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1084 | req->qtcb->bottom.support.service_class = FSF_CLASS_3; |
| 1085 | req->qtcb->bottom.support.timeout = ct->timeout; |
| 1086 | req->data = ct; |
| 1087 | |
| 1088 | zfcp_san_dbf_event_ct_request(req); |
| 1089 | |
| 1090 | if (erp_action) { |
| 1091 | erp_action->fsf_req = req; |
| 1092 | req->erp_action = erp_action; |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1093 | zfcp_fsf_start_erp_timer(req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1094 | } else |
| 1095 | zfcp_fsf_start_timer(req, ZFCP_FSF_REQUEST_TIMEOUT); |
| 1096 | |
| 1097 | ret = zfcp_fsf_req_send(req); |
| 1098 | if (ret) |
| 1099 | goto failed_send; |
| 1100 | |
| 1101 | goto out; |
| 1102 | |
| 1103 | failed_send: |
| 1104 | zfcp_fsf_req_free(req); |
| 1105 | if (erp_action) |
| 1106 | erp_action->fsf_req = NULL; |
| 1107 | out: |
Christof Schmitt | 0406289 | 2008-10-01 12:42:20 +0200 | [diff] [blame] | 1108 | spin_unlock_bh(&adapter->req_q_lock); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1109 | return ret; |
| 1110 | } |
| 1111 | |
| 1112 | static void zfcp_fsf_send_els_handler(struct zfcp_fsf_req *req) |
| 1113 | { |
| 1114 | struct zfcp_send_els *send_els = req->data; |
| 1115 | struct zfcp_port *port = send_els->port; |
| 1116 | struct fsf_qtcb_header *header = &req->qtcb->header; |
| 1117 | |
| 1118 | send_els->status = -EINVAL; |
| 1119 | |
| 1120 | if (req->status & ZFCP_STATUS_FSFREQ_ERROR) |
| 1121 | goto skip_fsfstatus; |
| 1122 | |
| 1123 | switch (header->fsf_status) { |
| 1124 | case FSF_GOOD: |
| 1125 | zfcp_san_dbf_event_els_response(req); |
| 1126 | send_els->status = 0; |
| 1127 | break; |
| 1128 | case FSF_SERVICE_CLASS_NOT_SUPPORTED: |
| 1129 | zfcp_fsf_class_not_supp(req); |
| 1130 | break; |
| 1131 | case FSF_ADAPTER_STATUS_AVAILABLE: |
| 1132 | switch (header->fsf_status_qual.word[0]){ |
| 1133 | case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE: |
| 1134 | if (port && (send_els->ls_code != ZFCP_LS_ADISC)) |
| 1135 | zfcp_test_link(port); |
| 1136 | /*fall through */ |
| 1137 | case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED: |
| 1138 | case FSF_SQ_RETRY_IF_POSSIBLE: |
| 1139 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
| 1140 | break; |
| 1141 | } |
| 1142 | break; |
| 1143 | case FSF_ELS_COMMAND_REJECTED: |
| 1144 | case FSF_PAYLOAD_SIZE_MISMATCH: |
| 1145 | case FSF_REQUEST_SIZE_TOO_LARGE: |
| 1146 | case FSF_RESPONSE_SIZE_TOO_LARGE: |
| 1147 | break; |
| 1148 | case FSF_ACCESS_DENIED: |
Christof Schmitt | dc577d5 | 2009-05-15 13:18:22 +0200 | [diff] [blame] | 1149 | if (port) |
| 1150 | zfcp_fsf_access_denied_port(req, port); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1151 | break; |
| 1152 | case FSF_SBAL_MISMATCH: |
| 1153 | /* should never occure, avoided in zfcp_fsf_send_els */ |
| 1154 | /* fall through */ |
| 1155 | default: |
| 1156 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
| 1157 | break; |
| 1158 | } |
| 1159 | skip_fsfstatus: |
| 1160 | if (send_els->handler) |
| 1161 | send_els->handler(send_els->handler_data); |
| 1162 | } |
| 1163 | |
| 1164 | /** |
| 1165 | * zfcp_fsf_send_els - initiate an ELS command (FC-FS) |
| 1166 | * @els: pointer to struct zfcp_send_els with data for the command |
| 1167 | */ |
| 1168 | int zfcp_fsf_send_els(struct zfcp_send_els *els) |
| 1169 | { |
| 1170 | struct zfcp_fsf_req *req; |
| 1171 | struct zfcp_adapter *adapter = els->adapter; |
| 1172 | struct fsf_qtcb_bottom_support *bottom; |
| 1173 | int ret = -EIO; |
| 1174 | |
Christof Schmitt | 8fdf30d | 2009-03-02 13:09:01 +0100 | [diff] [blame] | 1175 | spin_lock_bh(&adapter->req_q_lock); |
| 1176 | if (zfcp_fsf_req_sbal_get(adapter)) |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1177 | goto out; |
| 1178 | req = zfcp_fsf_req_create(adapter, FSF_QTCB_SEND_ELS, |
| 1179 | ZFCP_REQ_AUTO_CLEANUP, NULL); |
Hirofumi Nakagawa | 025270f | 2008-08-21 13:43:37 +0200 | [diff] [blame] | 1180 | if (IS_ERR(req)) { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1181 | ret = PTR_ERR(req); |
| 1182 | goto out; |
| 1183 | } |
| 1184 | |
Christof Schmitt | 39eb7e9 | 2008-12-19 16:57:01 +0100 | [diff] [blame] | 1185 | ret = zfcp_fsf_setup_ct_els_sbals(req, els->req, els->resp, 2); |
Swen Schillig | 44cc76f | 2008-10-01 12:42:16 +0200 | [diff] [blame] | 1186 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1187 | if (ret) |
| 1188 | goto failed_send; |
| 1189 | |
| 1190 | bottom = &req->qtcb->bottom.support; |
| 1191 | req->handler = zfcp_fsf_send_els_handler; |
| 1192 | bottom->d_id = els->d_id; |
| 1193 | bottom->service_class = FSF_CLASS_3; |
| 1194 | bottom->timeout = 2 * R_A_TOV; |
| 1195 | req->data = els; |
| 1196 | |
| 1197 | zfcp_san_dbf_event_els_request(req); |
| 1198 | |
| 1199 | zfcp_fsf_start_timer(req, ZFCP_FSF_REQUEST_TIMEOUT); |
| 1200 | ret = zfcp_fsf_req_send(req); |
| 1201 | if (ret) |
| 1202 | goto failed_send; |
| 1203 | |
| 1204 | goto out; |
| 1205 | |
| 1206 | failed_send: |
| 1207 | zfcp_fsf_req_free(req); |
| 1208 | out: |
Christof Schmitt | 8fdf30d | 2009-03-02 13:09:01 +0100 | [diff] [blame] | 1209 | spin_unlock_bh(&adapter->req_q_lock); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1210 | return ret; |
| 1211 | } |
| 1212 | |
| 1213 | int zfcp_fsf_exchange_config_data(struct zfcp_erp_action *erp_action) |
| 1214 | { |
Swen Schillig | 44cc76f | 2008-10-01 12:42:16 +0200 | [diff] [blame] | 1215 | struct qdio_buffer_element *sbale; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1216 | struct zfcp_fsf_req *req; |
| 1217 | struct zfcp_adapter *adapter = erp_action->adapter; |
| 1218 | int retval = -EIO; |
| 1219 | |
Christof Schmitt | 0406289 | 2008-10-01 12:42:20 +0200 | [diff] [blame] | 1220 | spin_lock_bh(&adapter->req_q_lock); |
Christof Schmitt | 92cab0d | 2009-03-02 13:08:59 +0100 | [diff] [blame] | 1221 | if (zfcp_fsf_req_sbal_get(adapter)) |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1222 | goto out; |
| 1223 | req = zfcp_fsf_req_create(adapter, |
| 1224 | FSF_QTCB_EXCHANGE_CONFIG_DATA, |
| 1225 | ZFCP_REQ_AUTO_CLEANUP, |
| 1226 | adapter->pool.fsf_req_erp); |
Hirofumi Nakagawa | 025270f | 2008-08-21 13:43:37 +0200 | [diff] [blame] | 1227 | if (IS_ERR(req)) { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1228 | retval = PTR_ERR(req); |
| 1229 | goto out; |
| 1230 | } |
| 1231 | |
| 1232 | sbale = zfcp_qdio_sbale_req(req); |
| 1233 | sbale[0].flags |= SBAL_FLAGS0_TYPE_READ; |
| 1234 | sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY; |
| 1235 | |
| 1236 | req->qtcb->bottom.config.feature_selection = |
| 1237 | FSF_FEATURE_CFDC | |
| 1238 | FSF_FEATURE_LUN_SHARING | |
| 1239 | FSF_FEATURE_NOTIFICATION_LOST | |
| 1240 | FSF_FEATURE_UPDATE_ALERT; |
| 1241 | req->erp_action = erp_action; |
| 1242 | req->handler = zfcp_fsf_exchange_config_data_handler; |
| 1243 | erp_action->fsf_req = req; |
| 1244 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1245 | zfcp_fsf_start_erp_timer(req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1246 | retval = zfcp_fsf_req_send(req); |
| 1247 | if (retval) { |
| 1248 | zfcp_fsf_req_free(req); |
| 1249 | erp_action->fsf_req = NULL; |
| 1250 | } |
| 1251 | out: |
Christof Schmitt | 0406289 | 2008-10-01 12:42:20 +0200 | [diff] [blame] | 1252 | spin_unlock_bh(&adapter->req_q_lock); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1253 | return retval; |
| 1254 | } |
| 1255 | |
| 1256 | int zfcp_fsf_exchange_config_data_sync(struct zfcp_adapter *adapter, |
| 1257 | struct fsf_qtcb_bottom_config *data) |
| 1258 | { |
Swen Schillig | 44cc76f | 2008-10-01 12:42:16 +0200 | [diff] [blame] | 1259 | struct qdio_buffer_element *sbale; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1260 | struct zfcp_fsf_req *req = NULL; |
| 1261 | int retval = -EIO; |
| 1262 | |
Christof Schmitt | 0406289 | 2008-10-01 12:42:20 +0200 | [diff] [blame] | 1263 | spin_lock_bh(&adapter->req_q_lock); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1264 | if (zfcp_fsf_req_sbal_get(adapter)) |
Christof Schmitt | ada81b7 | 2009-04-17 15:08:03 +0200 | [diff] [blame] | 1265 | goto out_unlock; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1266 | |
| 1267 | req = zfcp_fsf_req_create(adapter, FSF_QTCB_EXCHANGE_CONFIG_DATA, |
| 1268 | 0, NULL); |
Hirofumi Nakagawa | 025270f | 2008-08-21 13:43:37 +0200 | [diff] [blame] | 1269 | if (IS_ERR(req)) { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1270 | retval = PTR_ERR(req); |
Christof Schmitt | ada81b7 | 2009-04-17 15:08:03 +0200 | [diff] [blame] | 1271 | goto out_unlock; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1272 | } |
| 1273 | |
| 1274 | sbale = zfcp_qdio_sbale_req(req); |
| 1275 | sbale[0].flags |= SBAL_FLAGS0_TYPE_READ; |
| 1276 | sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY; |
| 1277 | req->handler = zfcp_fsf_exchange_config_data_handler; |
| 1278 | |
| 1279 | req->qtcb->bottom.config.feature_selection = |
| 1280 | FSF_FEATURE_CFDC | |
| 1281 | FSF_FEATURE_LUN_SHARING | |
| 1282 | FSF_FEATURE_NOTIFICATION_LOST | |
| 1283 | FSF_FEATURE_UPDATE_ALERT; |
| 1284 | |
| 1285 | if (data) |
| 1286 | req->data = data; |
| 1287 | |
| 1288 | zfcp_fsf_start_timer(req, ZFCP_FSF_REQUEST_TIMEOUT); |
| 1289 | retval = zfcp_fsf_req_send(req); |
Christof Schmitt | 0406289 | 2008-10-01 12:42:20 +0200 | [diff] [blame] | 1290 | spin_unlock_bh(&adapter->req_q_lock); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1291 | if (!retval) |
| 1292 | wait_event(req->completion_wq, |
| 1293 | req->status & ZFCP_STATUS_FSFREQ_COMPLETED); |
| 1294 | |
| 1295 | zfcp_fsf_req_free(req); |
Christof Schmitt | ada81b7 | 2009-04-17 15:08:03 +0200 | [diff] [blame] | 1296 | return retval; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1297 | |
Christof Schmitt | ada81b7 | 2009-04-17 15:08:03 +0200 | [diff] [blame] | 1298 | out_unlock: |
| 1299 | spin_unlock_bh(&adapter->req_q_lock); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1300 | return retval; |
| 1301 | } |
| 1302 | |
| 1303 | /** |
| 1304 | * zfcp_fsf_exchange_port_data - request information about local port |
| 1305 | * @erp_action: ERP action for the adapter for which port data is requested |
| 1306 | * Returns: 0 on success, error otherwise |
| 1307 | */ |
| 1308 | int zfcp_fsf_exchange_port_data(struct zfcp_erp_action *erp_action) |
| 1309 | { |
Swen Schillig | 44cc76f | 2008-10-01 12:42:16 +0200 | [diff] [blame] | 1310 | struct qdio_buffer_element *sbale; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1311 | struct zfcp_fsf_req *req; |
| 1312 | struct zfcp_adapter *adapter = erp_action->adapter; |
| 1313 | int retval = -EIO; |
| 1314 | |
| 1315 | if (!(adapter->adapter_features & FSF_FEATURE_HBAAPI_MANAGEMENT)) |
| 1316 | return -EOPNOTSUPP; |
| 1317 | |
Christof Schmitt | 0406289 | 2008-10-01 12:42:20 +0200 | [diff] [blame] | 1318 | spin_lock_bh(&adapter->req_q_lock); |
Christof Schmitt | 92cab0d | 2009-03-02 13:08:59 +0100 | [diff] [blame] | 1319 | if (zfcp_fsf_req_sbal_get(adapter)) |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1320 | goto out; |
| 1321 | req = zfcp_fsf_req_create(adapter, FSF_QTCB_EXCHANGE_PORT_DATA, |
| 1322 | ZFCP_REQ_AUTO_CLEANUP, |
| 1323 | adapter->pool.fsf_req_erp); |
Hirofumi Nakagawa | 025270f | 2008-08-21 13:43:37 +0200 | [diff] [blame] | 1324 | if (IS_ERR(req)) { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1325 | retval = PTR_ERR(req); |
| 1326 | goto out; |
| 1327 | } |
| 1328 | |
| 1329 | sbale = zfcp_qdio_sbale_req(req); |
| 1330 | sbale[0].flags |= SBAL_FLAGS0_TYPE_READ; |
| 1331 | sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY; |
| 1332 | |
| 1333 | req->handler = zfcp_fsf_exchange_port_data_handler; |
| 1334 | req->erp_action = erp_action; |
| 1335 | erp_action->fsf_req = req; |
| 1336 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1337 | zfcp_fsf_start_erp_timer(req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1338 | retval = zfcp_fsf_req_send(req); |
| 1339 | if (retval) { |
| 1340 | zfcp_fsf_req_free(req); |
| 1341 | erp_action->fsf_req = NULL; |
| 1342 | } |
| 1343 | out: |
Christof Schmitt | 0406289 | 2008-10-01 12:42:20 +0200 | [diff] [blame] | 1344 | spin_unlock_bh(&adapter->req_q_lock); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1345 | return retval; |
| 1346 | } |
| 1347 | |
| 1348 | /** |
| 1349 | * zfcp_fsf_exchange_port_data_sync - request information about local port |
| 1350 | * @adapter: pointer to struct zfcp_adapter |
| 1351 | * @data: pointer to struct fsf_qtcb_bottom_port |
| 1352 | * Returns: 0 on success, error otherwise |
| 1353 | */ |
| 1354 | int zfcp_fsf_exchange_port_data_sync(struct zfcp_adapter *adapter, |
| 1355 | struct fsf_qtcb_bottom_port *data) |
| 1356 | { |
Swen Schillig | 44cc76f | 2008-10-01 12:42:16 +0200 | [diff] [blame] | 1357 | struct qdio_buffer_element *sbale; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1358 | struct zfcp_fsf_req *req = NULL; |
| 1359 | int retval = -EIO; |
| 1360 | |
| 1361 | if (!(adapter->adapter_features & FSF_FEATURE_HBAAPI_MANAGEMENT)) |
| 1362 | return -EOPNOTSUPP; |
| 1363 | |
Christof Schmitt | 0406289 | 2008-10-01 12:42:20 +0200 | [diff] [blame] | 1364 | spin_lock_bh(&adapter->req_q_lock); |
Christof Schmitt | 92cab0d | 2009-03-02 13:08:59 +0100 | [diff] [blame] | 1365 | if (zfcp_fsf_req_sbal_get(adapter)) |
Christof Schmitt | ada81b7 | 2009-04-17 15:08:03 +0200 | [diff] [blame] | 1366 | goto out_unlock; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1367 | |
| 1368 | req = zfcp_fsf_req_create(adapter, FSF_QTCB_EXCHANGE_PORT_DATA, 0, |
| 1369 | NULL); |
Hirofumi Nakagawa | 025270f | 2008-08-21 13:43:37 +0200 | [diff] [blame] | 1370 | if (IS_ERR(req)) { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1371 | retval = PTR_ERR(req); |
Christof Schmitt | ada81b7 | 2009-04-17 15:08:03 +0200 | [diff] [blame] | 1372 | goto out_unlock; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1373 | } |
| 1374 | |
| 1375 | if (data) |
| 1376 | req->data = data; |
| 1377 | |
| 1378 | sbale = zfcp_qdio_sbale_req(req); |
| 1379 | sbale[0].flags |= SBAL_FLAGS0_TYPE_READ; |
| 1380 | sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY; |
| 1381 | |
| 1382 | req->handler = zfcp_fsf_exchange_port_data_handler; |
| 1383 | zfcp_fsf_start_timer(req, ZFCP_FSF_REQUEST_TIMEOUT); |
| 1384 | retval = zfcp_fsf_req_send(req); |
Christof Schmitt | 0406289 | 2008-10-01 12:42:20 +0200 | [diff] [blame] | 1385 | spin_unlock_bh(&adapter->req_q_lock); |
Christof Schmitt | ada81b7 | 2009-04-17 15:08:03 +0200 | [diff] [blame] | 1386 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1387 | if (!retval) |
| 1388 | wait_event(req->completion_wq, |
| 1389 | req->status & ZFCP_STATUS_FSFREQ_COMPLETED); |
| 1390 | zfcp_fsf_req_free(req); |
| 1391 | |
| 1392 | return retval; |
Christof Schmitt | ada81b7 | 2009-04-17 15:08:03 +0200 | [diff] [blame] | 1393 | |
| 1394 | out_unlock: |
| 1395 | spin_unlock_bh(&adapter->req_q_lock); |
| 1396 | return retval; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1397 | } |
| 1398 | |
| 1399 | static void zfcp_fsf_open_port_handler(struct zfcp_fsf_req *req) |
| 1400 | { |
| 1401 | struct zfcp_port *port = req->data; |
| 1402 | struct fsf_qtcb_header *header = &req->qtcb->header; |
| 1403 | struct fsf_plogi *plogi; |
| 1404 | |
| 1405 | if (req->status & ZFCP_STATUS_FSFREQ_ERROR) |
Martin Petermann | a17c585 | 2009-05-15 13:18:19 +0200 | [diff] [blame] | 1406 | goto out; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1407 | |
| 1408 | switch (header->fsf_status) { |
| 1409 | case FSF_PORT_ALREADY_OPEN: |
| 1410 | break; |
| 1411 | case FSF_ACCESS_DENIED: |
| 1412 | zfcp_fsf_access_denied_port(req, port); |
| 1413 | break; |
| 1414 | case FSF_MAXIMUM_NUMBER_OF_PORTS_EXCEEDED: |
| 1415 | dev_warn(&req->adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 1416 | "Not enough FCP adapter resources to open " |
Swen Schillig | 7ba58c9 | 2008-10-01 12:42:18 +0200 | [diff] [blame] | 1417 | "remote port 0x%016Lx\n", |
| 1418 | (unsigned long long)port->wwpn); |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 1419 | zfcp_erp_port_failed(port, "fsoph_1", req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1420 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
| 1421 | break; |
| 1422 | case FSF_ADAPTER_STATUS_AVAILABLE: |
| 1423 | switch (header->fsf_status_qual.word[0]) { |
| 1424 | case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE: |
| 1425 | case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1426 | case FSF_SQ_NO_RETRY_POSSIBLE: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1427 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
| 1428 | break; |
| 1429 | } |
| 1430 | break; |
| 1431 | case FSF_GOOD: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1432 | port->handle = header->port_handle; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1433 | atomic_set_mask(ZFCP_STATUS_COMMON_OPEN | |
| 1434 | ZFCP_STATUS_PORT_PHYS_OPEN, &port->status); |
Andreas Herrmann | d736a27 | 2005-06-13 13:23:57 +0200 | [diff] [blame] | 1435 | atomic_clear_mask(ZFCP_STATUS_COMMON_ACCESS_DENIED | |
| 1436 | ZFCP_STATUS_COMMON_ACCESS_BOXED, |
| 1437 | &port->status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1438 | /* check whether D_ID has changed during open */ |
| 1439 | /* |
| 1440 | * FIXME: This check is not airtight, as the FCP channel does |
| 1441 | * not monitor closures of target port connections caused on |
| 1442 | * the remote side. Thus, they might miss out on invalidating |
| 1443 | * locally cached WWPNs (and other N_Port parameters) of gone |
| 1444 | * target ports. So, our heroic attempt to make things safe |
| 1445 | * could be undermined by 'open port' response data tagged with |
| 1446 | * obsolete WWPNs. Another reason to monitor potential |
| 1447 | * connection closures ourself at least (by interpreting |
| 1448 | * incoming ELS' and unsolicited status). It just crosses my |
| 1449 | * mind that one should be able to cross-check by means of |
| 1450 | * another GID_PN straight after a port has been opened. |
| 1451 | * Alternately, an ADISC/PDISC ELS should suffice, as well. |
| 1452 | */ |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1453 | plogi = (struct fsf_plogi *) req->qtcb->bottom.support.els; |
Christof Schmitt | 39eb7e9 | 2008-12-19 16:57:01 +0100 | [diff] [blame] | 1454 | if (req->qtcb->bottom.support.els1_length >= |
| 1455 | FSF_PLOGI_MIN_LEN) { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1456 | if (plogi->serv_param.wwpn != port->wwpn) |
Christof Schmitt | b98478d | 2008-12-19 16:56:59 +0100 | [diff] [blame] | 1457 | port->d_id = 0; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1458 | else { |
| 1459 | port->wwnn = plogi->serv_param.wwnn; |
| 1460 | zfcp_fc_plogi_evaluate(port, plogi); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1461 | } |
| 1462 | } |
| 1463 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1464 | case FSF_UNKNOWN_OP_SUBTYPE: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1465 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1466 | break; |
| 1467 | } |
Martin Petermann | a17c585 | 2009-05-15 13:18:19 +0200 | [diff] [blame] | 1468 | |
| 1469 | out: |
| 1470 | zfcp_port_put(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1471 | } |
| 1472 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1473 | /** |
| 1474 | * zfcp_fsf_open_port - create and send open port request |
| 1475 | * @erp_action: pointer to struct zfcp_erp_action |
| 1476 | * Returns: 0 on success, error otherwise |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1477 | */ |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1478 | int zfcp_fsf_open_port(struct zfcp_erp_action *erp_action) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1479 | { |
Swen Schillig | 44cc76f | 2008-10-01 12:42:16 +0200 | [diff] [blame] | 1480 | struct qdio_buffer_element *sbale; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1481 | struct zfcp_adapter *adapter = erp_action->adapter; |
| 1482 | struct zfcp_fsf_req *req; |
Martin Petermann | a17c585 | 2009-05-15 13:18:19 +0200 | [diff] [blame] | 1483 | struct zfcp_port *port = erp_action->port; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1484 | int retval = -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1485 | |
Christof Schmitt | 0406289 | 2008-10-01 12:42:20 +0200 | [diff] [blame] | 1486 | spin_lock_bh(&adapter->req_q_lock); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1487 | if (zfcp_fsf_req_sbal_get(adapter)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1488 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1489 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1490 | req = zfcp_fsf_req_create(adapter, |
| 1491 | FSF_QTCB_OPEN_PORT_WITH_DID, |
| 1492 | ZFCP_REQ_AUTO_CLEANUP, |
| 1493 | adapter->pool.fsf_req_erp); |
Hirofumi Nakagawa | 025270f | 2008-08-21 13:43:37 +0200 | [diff] [blame] | 1494 | if (IS_ERR(req)) { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1495 | retval = PTR_ERR(req); |
| 1496 | goto out; |
| 1497 | } |
| 1498 | |
| 1499 | sbale = zfcp_qdio_sbale_req(req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1500 | sbale[0].flags |= SBAL_FLAGS0_TYPE_READ; |
| 1501 | sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY; |
| 1502 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1503 | req->handler = zfcp_fsf_open_port_handler; |
Martin Petermann | a17c585 | 2009-05-15 13:18:19 +0200 | [diff] [blame] | 1504 | req->qtcb->bottom.support.d_id = port->d_id; |
| 1505 | req->data = port; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1506 | req->erp_action = erp_action; |
| 1507 | erp_action->fsf_req = req; |
Martin Petermann | a17c585 | 2009-05-15 13:18:19 +0200 | [diff] [blame] | 1508 | zfcp_port_get(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1509 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1510 | zfcp_fsf_start_erp_timer(req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1511 | retval = zfcp_fsf_req_send(req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1512 | if (retval) { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1513 | zfcp_fsf_req_free(req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1514 | erp_action->fsf_req = NULL; |
Martin Petermann | a17c585 | 2009-05-15 13:18:19 +0200 | [diff] [blame] | 1515 | zfcp_port_put(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1516 | } |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1517 | out: |
Christof Schmitt | 0406289 | 2008-10-01 12:42:20 +0200 | [diff] [blame] | 1518 | spin_unlock_bh(&adapter->req_q_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1519 | return retval; |
| 1520 | } |
| 1521 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1522 | static void zfcp_fsf_close_port_handler(struct zfcp_fsf_req *req) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1523 | { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1524 | struct zfcp_port *port = req->data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1525 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1526 | if (req->status & ZFCP_STATUS_FSFREQ_ERROR) |
Swen Schillig | 44cc76f | 2008-10-01 12:42:16 +0200 | [diff] [blame] | 1527 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1528 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1529 | switch (req->qtcb->header.fsf_status) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1530 | case FSF_PORT_HANDLE_NOT_VALID: |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 1531 | zfcp_erp_adapter_reopen(port->adapter, 0, "fscph_1", req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1532 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1533 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1534 | case FSF_ADAPTER_STATUS_AVAILABLE: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1535 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1536 | case FSF_GOOD: |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 1537 | zfcp_erp_modify_port_status(port, "fscph_2", req, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1538 | ZFCP_STATUS_COMMON_OPEN, |
| 1539 | ZFCP_CLEAR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1540 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1541 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1542 | } |
| 1543 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1544 | /** |
| 1545 | * zfcp_fsf_close_port - create and send close port request |
| 1546 | * @erp_action: pointer to struct zfcp_erp_action |
| 1547 | * Returns: 0 on success, error otherwise |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1548 | */ |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1549 | int zfcp_fsf_close_port(struct zfcp_erp_action *erp_action) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1550 | { |
Swen Schillig | 44cc76f | 2008-10-01 12:42:16 +0200 | [diff] [blame] | 1551 | struct qdio_buffer_element *sbale; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1552 | struct zfcp_adapter *adapter = erp_action->adapter; |
| 1553 | struct zfcp_fsf_req *req; |
| 1554 | int retval = -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1555 | |
Christof Schmitt | 0406289 | 2008-10-01 12:42:20 +0200 | [diff] [blame] | 1556 | spin_lock_bh(&adapter->req_q_lock); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1557 | if (zfcp_fsf_req_sbal_get(adapter)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1558 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1559 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1560 | req = zfcp_fsf_req_create(adapter, FSF_QTCB_CLOSE_PORT, |
| 1561 | ZFCP_REQ_AUTO_CLEANUP, |
| 1562 | adapter->pool.fsf_req_erp); |
Hirofumi Nakagawa | 025270f | 2008-08-21 13:43:37 +0200 | [diff] [blame] | 1563 | if (IS_ERR(req)) { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1564 | retval = PTR_ERR(req); |
| 1565 | goto out; |
| 1566 | } |
| 1567 | |
| 1568 | sbale = zfcp_qdio_sbale_req(req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1569 | sbale[0].flags |= SBAL_FLAGS0_TYPE_READ; |
| 1570 | sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY; |
| 1571 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1572 | req->handler = zfcp_fsf_close_port_handler; |
| 1573 | req->data = erp_action->port; |
| 1574 | req->erp_action = erp_action; |
| 1575 | req->qtcb->header.port_handle = erp_action->port->handle; |
| 1576 | erp_action->fsf_req = req; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1577 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1578 | zfcp_fsf_start_erp_timer(req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1579 | retval = zfcp_fsf_req_send(req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1580 | if (retval) { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1581 | zfcp_fsf_req_free(req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1582 | erp_action->fsf_req = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1583 | } |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1584 | out: |
Christof Schmitt | 0406289 | 2008-10-01 12:42:20 +0200 | [diff] [blame] | 1585 | spin_unlock_bh(&adapter->req_q_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1586 | return retval; |
| 1587 | } |
| 1588 | |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 1589 | static void zfcp_fsf_open_wka_port_handler(struct zfcp_fsf_req *req) |
| 1590 | { |
| 1591 | struct zfcp_wka_port *wka_port = req->data; |
| 1592 | struct fsf_qtcb_header *header = &req->qtcb->header; |
| 1593 | |
| 1594 | if (req->status & ZFCP_STATUS_FSFREQ_ERROR) { |
| 1595 | wka_port->status = ZFCP_WKA_PORT_OFFLINE; |
| 1596 | goto out; |
| 1597 | } |
| 1598 | |
| 1599 | switch (header->fsf_status) { |
| 1600 | case FSF_MAXIMUM_NUMBER_OF_PORTS_EXCEEDED: |
| 1601 | dev_warn(&req->adapter->ccw_device->dev, |
| 1602 | "Opening WKA port 0x%x failed\n", wka_port->d_id); |
Christof Schmitt | dceab65 | 2009-05-15 13:18:18 +0200 | [diff] [blame] | 1603 | /* fall through */ |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 1604 | case FSF_ADAPTER_STATUS_AVAILABLE: |
| 1605 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
Christof Schmitt | dceab65 | 2009-05-15 13:18:18 +0200 | [diff] [blame] | 1606 | /* fall through */ |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 1607 | case FSF_ACCESS_DENIED: |
| 1608 | wka_port->status = ZFCP_WKA_PORT_OFFLINE; |
| 1609 | break; |
| 1610 | case FSF_PORT_ALREADY_OPEN: |
Christof Schmitt | 1c1cba1 | 2008-11-26 18:07:36 +0100 | [diff] [blame] | 1611 | break; |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 1612 | case FSF_GOOD: |
| 1613 | wka_port->handle = header->port_handle; |
| 1614 | wka_port->status = ZFCP_WKA_PORT_ONLINE; |
| 1615 | } |
| 1616 | out: |
| 1617 | wake_up(&wka_port->completion_wq); |
| 1618 | } |
| 1619 | |
| 1620 | /** |
| 1621 | * zfcp_fsf_open_wka_port - create and send open wka-port request |
| 1622 | * @wka_port: pointer to struct zfcp_wka_port |
| 1623 | * Returns: 0 on success, error otherwise |
| 1624 | */ |
| 1625 | int zfcp_fsf_open_wka_port(struct zfcp_wka_port *wka_port) |
| 1626 | { |
| 1627 | struct qdio_buffer_element *sbale; |
| 1628 | struct zfcp_adapter *adapter = wka_port->adapter; |
| 1629 | struct zfcp_fsf_req *req; |
| 1630 | int retval = -EIO; |
| 1631 | |
Christof Schmitt | 0406289 | 2008-10-01 12:42:20 +0200 | [diff] [blame] | 1632 | spin_lock_bh(&adapter->req_q_lock); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 1633 | if (zfcp_fsf_req_sbal_get(adapter)) |
| 1634 | goto out; |
| 1635 | |
| 1636 | req = zfcp_fsf_req_create(adapter, |
| 1637 | FSF_QTCB_OPEN_PORT_WITH_DID, |
| 1638 | ZFCP_REQ_AUTO_CLEANUP, |
| 1639 | adapter->pool.fsf_req_erp); |
| 1640 | if (unlikely(IS_ERR(req))) { |
| 1641 | retval = PTR_ERR(req); |
| 1642 | goto out; |
| 1643 | } |
| 1644 | |
| 1645 | sbale = zfcp_qdio_sbale_req(req); |
| 1646 | sbale[0].flags |= SBAL_FLAGS0_TYPE_READ; |
| 1647 | sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY; |
| 1648 | |
| 1649 | req->handler = zfcp_fsf_open_wka_port_handler; |
| 1650 | req->qtcb->bottom.support.d_id = wka_port->d_id; |
| 1651 | req->data = wka_port; |
| 1652 | |
| 1653 | zfcp_fsf_start_timer(req, ZFCP_FSF_REQUEST_TIMEOUT); |
| 1654 | retval = zfcp_fsf_req_send(req); |
| 1655 | if (retval) |
| 1656 | zfcp_fsf_req_free(req); |
| 1657 | out: |
Christof Schmitt | 0406289 | 2008-10-01 12:42:20 +0200 | [diff] [blame] | 1658 | spin_unlock_bh(&adapter->req_q_lock); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 1659 | return retval; |
| 1660 | } |
| 1661 | |
| 1662 | static void zfcp_fsf_close_wka_port_handler(struct zfcp_fsf_req *req) |
| 1663 | { |
| 1664 | struct zfcp_wka_port *wka_port = req->data; |
| 1665 | |
| 1666 | if (req->qtcb->header.fsf_status == FSF_PORT_HANDLE_NOT_VALID) { |
| 1667 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 1668 | zfcp_erp_adapter_reopen(wka_port->adapter, 0, "fscwph1", req); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 1669 | } |
| 1670 | |
| 1671 | wka_port->status = ZFCP_WKA_PORT_OFFLINE; |
| 1672 | wake_up(&wka_port->completion_wq); |
| 1673 | } |
| 1674 | |
| 1675 | /** |
| 1676 | * zfcp_fsf_close_wka_port - create and send close wka port request |
| 1677 | * @erp_action: pointer to struct zfcp_erp_action |
| 1678 | * Returns: 0 on success, error otherwise |
| 1679 | */ |
| 1680 | int zfcp_fsf_close_wka_port(struct zfcp_wka_port *wka_port) |
| 1681 | { |
| 1682 | struct qdio_buffer_element *sbale; |
| 1683 | struct zfcp_adapter *adapter = wka_port->adapter; |
| 1684 | struct zfcp_fsf_req *req; |
| 1685 | int retval = -EIO; |
| 1686 | |
Christof Schmitt | 0406289 | 2008-10-01 12:42:20 +0200 | [diff] [blame] | 1687 | spin_lock_bh(&adapter->req_q_lock); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 1688 | if (zfcp_fsf_req_sbal_get(adapter)) |
| 1689 | goto out; |
| 1690 | |
| 1691 | req = zfcp_fsf_req_create(adapter, FSF_QTCB_CLOSE_PORT, |
| 1692 | ZFCP_REQ_AUTO_CLEANUP, |
| 1693 | adapter->pool.fsf_req_erp); |
| 1694 | if (unlikely(IS_ERR(req))) { |
| 1695 | retval = PTR_ERR(req); |
| 1696 | goto out; |
| 1697 | } |
| 1698 | |
| 1699 | sbale = zfcp_qdio_sbale_req(req); |
| 1700 | sbale[0].flags |= SBAL_FLAGS0_TYPE_READ; |
| 1701 | sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY; |
| 1702 | |
| 1703 | req->handler = zfcp_fsf_close_wka_port_handler; |
| 1704 | req->data = wka_port; |
| 1705 | req->qtcb->header.port_handle = wka_port->handle; |
| 1706 | |
| 1707 | zfcp_fsf_start_timer(req, ZFCP_FSF_REQUEST_TIMEOUT); |
| 1708 | retval = zfcp_fsf_req_send(req); |
| 1709 | if (retval) |
| 1710 | zfcp_fsf_req_free(req); |
| 1711 | out: |
Christof Schmitt | 0406289 | 2008-10-01 12:42:20 +0200 | [diff] [blame] | 1712 | spin_unlock_bh(&adapter->req_q_lock); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 1713 | return retval; |
| 1714 | } |
| 1715 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1716 | 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] | 1717 | { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1718 | struct zfcp_port *port = req->data; |
| 1719 | struct fsf_qtcb_header *header = &req->qtcb->header; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1720 | struct zfcp_unit *unit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1721 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1722 | if (req->status & ZFCP_STATUS_FSFREQ_ERROR) |
Christof Schmitt | a5b11dd | 2009-03-02 13:08:54 +0100 | [diff] [blame] | 1723 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1724 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1725 | switch (header->fsf_status) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1726 | case FSF_PORT_HANDLE_NOT_VALID: |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 1727 | zfcp_erp_adapter_reopen(port->adapter, 0, "fscpph1", req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1728 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1729 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1730 | case FSF_ACCESS_DENIED: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1731 | zfcp_fsf_access_denied_port(req, port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1732 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1733 | case FSF_PORT_BOXED: |
Christof Schmitt | 5c815d1 | 2008-03-10 16:18:54 +0100 | [diff] [blame] | 1734 | /* can't use generic zfcp_erp_modify_port_status because |
| 1735 | * ZFCP_STATUS_COMMON_OPEN must not be reset for the port */ |
| 1736 | atomic_clear_mask(ZFCP_STATUS_PORT_PHYS_OPEN, &port->status); |
| 1737 | list_for_each_entry(unit, &port->unit_list_head, list) |
| 1738 | atomic_clear_mask(ZFCP_STATUS_COMMON_OPEN, |
| 1739 | &unit->status); |
Swen Schillig | dfb3cf0 | 2009-07-13 15:06:02 +0200 | [diff] [blame^] | 1740 | zfcp_erp_port_boxed(port, "fscpph2", req); |
| 1741 | req->status |= ZFCP_STATUS_FSFREQ_ERROR | |
| 1742 | ZFCP_STATUS_FSFREQ_RETRY; |
| 1743 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1744 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1745 | case FSF_ADAPTER_STATUS_AVAILABLE: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1746 | switch (header->fsf_status_qual.word[0]) { |
| 1747 | case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1748 | /* fall through */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1749 | case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1750 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1751 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1752 | } |
| 1753 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1754 | case FSF_GOOD: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1755 | /* can't use generic zfcp_erp_modify_port_status because |
| 1756 | * ZFCP_STATUS_COMMON_OPEN must not be reset for the port |
| 1757 | */ |
| 1758 | atomic_clear_mask(ZFCP_STATUS_PORT_PHYS_OPEN, &port->status); |
| 1759 | list_for_each_entry(unit, &port->unit_list_head, list) |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1760 | atomic_clear_mask(ZFCP_STATUS_COMMON_OPEN, |
| 1761 | &unit->status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1762 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1763 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1764 | } |
| 1765 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1766 | /** |
| 1767 | * zfcp_fsf_close_physical_port - close physical port |
| 1768 | * @erp_action: pointer to struct zfcp_erp_action |
| 1769 | * Returns: 0 on success |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1770 | */ |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1771 | int zfcp_fsf_close_physical_port(struct zfcp_erp_action *erp_action) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1772 | { |
Swen Schillig | 44cc76f | 2008-10-01 12:42:16 +0200 | [diff] [blame] | 1773 | struct qdio_buffer_element *sbale; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1774 | struct zfcp_adapter *adapter = erp_action->adapter; |
| 1775 | struct zfcp_fsf_req *req; |
| 1776 | int retval = -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1777 | |
Christof Schmitt | 0406289 | 2008-10-01 12:42:20 +0200 | [diff] [blame] | 1778 | spin_lock_bh(&adapter->req_q_lock); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1779 | if (zfcp_fsf_req_sbal_get(adapter)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1780 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1781 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1782 | req = zfcp_fsf_req_create(adapter, FSF_QTCB_CLOSE_PHYSICAL_PORT, |
| 1783 | ZFCP_REQ_AUTO_CLEANUP, |
| 1784 | adapter->pool.fsf_req_erp); |
Hirofumi Nakagawa | 025270f | 2008-08-21 13:43:37 +0200 | [diff] [blame] | 1785 | if (IS_ERR(req)) { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1786 | retval = PTR_ERR(req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1787 | goto out; |
| 1788 | } |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1789 | |
| 1790 | sbale = zfcp_qdio_sbale_req(req); |
| 1791 | sbale[0].flags |= SBAL_FLAGS0_TYPE_READ; |
| 1792 | sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY; |
| 1793 | |
| 1794 | req->data = erp_action->port; |
| 1795 | req->qtcb->header.port_handle = erp_action->port->handle; |
| 1796 | req->erp_action = erp_action; |
| 1797 | req->handler = zfcp_fsf_close_physical_port_handler; |
| 1798 | erp_action->fsf_req = req; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1799 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1800 | zfcp_fsf_start_erp_timer(req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1801 | retval = zfcp_fsf_req_send(req); |
| 1802 | if (retval) { |
| 1803 | zfcp_fsf_req_free(req); |
| 1804 | erp_action->fsf_req = NULL; |
| 1805 | } |
| 1806 | out: |
Christof Schmitt | 0406289 | 2008-10-01 12:42:20 +0200 | [diff] [blame] | 1807 | spin_unlock_bh(&adapter->req_q_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1808 | return retval; |
| 1809 | } |
| 1810 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1811 | static void zfcp_fsf_open_unit_handler(struct zfcp_fsf_req *req) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1812 | { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1813 | struct zfcp_adapter *adapter = req->adapter; |
| 1814 | struct zfcp_unit *unit = req->data; |
| 1815 | struct fsf_qtcb_header *header = &req->qtcb->header; |
| 1816 | struct fsf_qtcb_bottom_support *bottom = &req->qtcb->bottom.support; |
| 1817 | struct fsf_queue_designator *queue_designator = |
| 1818 | &header->fsf_status_qual.fsf_queue_designator; |
Maxim Shchetynin | aef4a98 | 2005-09-13 21:51:16 +0200 | [diff] [blame] | 1819 | int exclusive, readwrite; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1820 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1821 | if (req->status & ZFCP_STATUS_FSFREQ_ERROR) |
Swen Schillig | 44cc76f | 2008-10-01 12:42:16 +0200 | [diff] [blame] | 1822 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1823 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1824 | atomic_clear_mask(ZFCP_STATUS_COMMON_ACCESS_DENIED | |
Heiko Carstens | b64ddf9 | 2007-05-08 11:19:57 +0200 | [diff] [blame] | 1825 | ZFCP_STATUS_COMMON_ACCESS_BOXED | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1826 | ZFCP_STATUS_UNIT_SHARED | |
| 1827 | ZFCP_STATUS_UNIT_READONLY, |
| 1828 | &unit->status); |
| 1829 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1830 | switch (header->fsf_status) { |
| 1831 | |
| 1832 | case FSF_PORT_HANDLE_NOT_VALID: |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 1833 | zfcp_erp_adapter_reopen(unit->port->adapter, 0, "fsouh_1", req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1834 | /* fall through */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1835 | case FSF_LUN_ALREADY_OPEN: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1836 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1837 | case FSF_ACCESS_DENIED: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1838 | zfcp_fsf_access_denied_unit(req, unit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1839 | atomic_clear_mask(ZFCP_STATUS_UNIT_SHARED, &unit->status); |
Christof Schmitt | 553448f | 2008-06-10 18:20:58 +0200 | [diff] [blame] | 1840 | atomic_clear_mask(ZFCP_STATUS_UNIT_READONLY, &unit->status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1841 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1842 | case FSF_PORT_BOXED: |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 1843 | zfcp_erp_port_boxed(unit->port, "fsouh_2", req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1844 | req->status |= ZFCP_STATUS_FSFREQ_ERROR | |
| 1845 | ZFCP_STATUS_FSFREQ_RETRY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1846 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1847 | case FSF_LUN_SHARING_VIOLATION: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1848 | if (header->fsf_status_qual.word[0]) |
Christof Schmitt | 553448f | 2008-06-10 18:20:58 +0200 | [diff] [blame] | 1849 | dev_warn(&adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 1850 | "LUN 0x%Lx on port 0x%Lx is already in " |
| 1851 | "use by CSS%d, MIF Image ID %x\n", |
Swen Schillig | 7ba58c9 | 2008-10-01 12:42:18 +0200 | [diff] [blame] | 1852 | (unsigned long long)unit->fcp_lun, |
| 1853 | (unsigned long long)unit->port->wwpn, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 1854 | queue_designator->cssid, |
| 1855 | queue_designator->hla); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1856 | else |
Christof Schmitt | 553448f | 2008-06-10 18:20:58 +0200 | [diff] [blame] | 1857 | zfcp_act_eval_err(adapter, |
| 1858 | header->fsf_status_qual.word[2]); |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 1859 | zfcp_erp_unit_access_denied(unit, "fsouh_3", req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1860 | atomic_clear_mask(ZFCP_STATUS_UNIT_SHARED, &unit->status); |
| 1861 | atomic_clear_mask(ZFCP_STATUS_UNIT_READONLY, &unit->status); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1862 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1863 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1864 | case FSF_MAXIMUM_NUMBER_OF_LUNS_EXCEEDED: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1865 | dev_warn(&adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 1866 | "No handle is available for LUN " |
| 1867 | "0x%016Lx on port 0x%016Lx\n", |
Swen Schillig | 7ba58c9 | 2008-10-01 12:42:18 +0200 | [diff] [blame] | 1868 | (unsigned long long)unit->fcp_lun, |
| 1869 | (unsigned long long)unit->port->wwpn); |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 1870 | zfcp_erp_unit_failed(unit, "fsouh_4", req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1871 | /* fall through */ |
| 1872 | case FSF_INVALID_COMMAND_OPTION: |
| 1873 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1874 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1875 | case FSF_ADAPTER_STATUS_AVAILABLE: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1876 | switch (header->fsf_status_qual.word[0]) { |
| 1877 | case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE: |
Andreas Herrmann | 65a8d4e | 2005-06-13 13:16:27 +0200 | [diff] [blame] | 1878 | zfcp_test_link(unit->port); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1879 | /* fall through */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1880 | case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1881 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1882 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1883 | } |
| 1884 | break; |
| 1885 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1886 | case FSF_GOOD: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1887 | unit->handle = header->lun_handle; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1888 | atomic_set_mask(ZFCP_STATUS_COMMON_OPEN, &unit->status); |
Maxim Shchetynin | aef4a98 | 2005-09-13 21:51:16 +0200 | [diff] [blame] | 1889 | |
| 1890 | if (!(adapter->connection_features & FSF_FEATURE_NPIV_MODE) && |
| 1891 | (adapter->adapter_features & FSF_FEATURE_LUN_SHARING) && |
Christof Schmitt | 6fcf41d | 2009-05-15 13:18:21 +0200 | [diff] [blame] | 1892 | !zfcp_ccw_priv_sch(adapter)) { |
Maxim Shchetynin | aef4a98 | 2005-09-13 21:51:16 +0200 | [diff] [blame] | 1893 | exclusive = (bottom->lun_access_info & |
| 1894 | FSF_UNIT_ACCESS_EXCLUSIVE); |
| 1895 | readwrite = (bottom->lun_access_info & |
| 1896 | FSF_UNIT_ACCESS_OUTBOUND_TRANSFER); |
| 1897 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1898 | if (!exclusive) |
| 1899 | atomic_set_mask(ZFCP_STATUS_UNIT_SHARED, |
| 1900 | &unit->status); |
| 1901 | |
| 1902 | if (!readwrite) { |
| 1903 | atomic_set_mask(ZFCP_STATUS_UNIT_READONLY, |
| 1904 | &unit->status); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1905 | dev_info(&adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 1906 | "SCSI device at LUN 0x%016Lx on port " |
| 1907 | "0x%016Lx opened read-only\n", |
Swen Schillig | 7ba58c9 | 2008-10-01 12:42:18 +0200 | [diff] [blame] | 1908 | (unsigned long long)unit->fcp_lun, |
| 1909 | (unsigned long long)unit->port->wwpn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1910 | } |
| 1911 | |
| 1912 | if (exclusive && !readwrite) { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1913 | dev_err(&adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 1914 | "Exclusive read-only access not " |
| 1915 | "supported (unit 0x%016Lx, " |
| 1916 | "port 0x%016Lx)\n", |
Swen Schillig | 7ba58c9 | 2008-10-01 12:42:18 +0200 | [diff] [blame] | 1917 | (unsigned long long)unit->fcp_lun, |
| 1918 | (unsigned long long)unit->port->wwpn); |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 1919 | zfcp_erp_unit_failed(unit, "fsouh_5", req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1920 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 1921 | zfcp_erp_unit_shutdown(unit, 0, "fsouh_6", req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1922 | } else if (!exclusive && readwrite) { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1923 | dev_err(&adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 1924 | "Shared read-write access not " |
| 1925 | "supported (unit 0x%016Lx, port " |
Christof Schmitt | 27c3f0a | 2008-12-19 16:56:52 +0100 | [diff] [blame] | 1926 | "0x%016Lx)\n", |
Swen Schillig | 7ba58c9 | 2008-10-01 12:42:18 +0200 | [diff] [blame] | 1927 | (unsigned long long)unit->fcp_lun, |
| 1928 | (unsigned long long)unit->port->wwpn); |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 1929 | zfcp_erp_unit_failed(unit, "fsouh_7", req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1930 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 1931 | zfcp_erp_unit_shutdown(unit, 0, "fsouh_8", req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1932 | } |
| 1933 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1934 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1935 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1936 | } |
| 1937 | |
| 1938 | /** |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1939 | * zfcp_fsf_open_unit - open unit |
| 1940 | * @erp_action: pointer to struct zfcp_erp_action |
| 1941 | * Returns: 0 on success, error otherwise |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1942 | */ |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1943 | int zfcp_fsf_open_unit(struct zfcp_erp_action *erp_action) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1944 | { |
Swen Schillig | 44cc76f | 2008-10-01 12:42:16 +0200 | [diff] [blame] | 1945 | struct qdio_buffer_element *sbale; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1946 | struct zfcp_adapter *adapter = erp_action->adapter; |
| 1947 | struct zfcp_fsf_req *req; |
| 1948 | int retval = -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1949 | |
Christof Schmitt | 0406289 | 2008-10-01 12:42:20 +0200 | [diff] [blame] | 1950 | spin_lock_bh(&adapter->req_q_lock); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1951 | if (zfcp_fsf_req_sbal_get(adapter)) |
| 1952 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1953 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1954 | req = zfcp_fsf_req_create(adapter, FSF_QTCB_OPEN_LUN, |
| 1955 | ZFCP_REQ_AUTO_CLEANUP, |
| 1956 | adapter->pool.fsf_req_erp); |
Hirofumi Nakagawa | 025270f | 2008-08-21 13:43:37 +0200 | [diff] [blame] | 1957 | if (IS_ERR(req)) { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1958 | retval = PTR_ERR(req); |
| 1959 | goto out; |
Christof Schmitt | ba17242 | 2007-12-20 12:30:26 +0100 | [diff] [blame] | 1960 | } |
| 1961 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1962 | sbale = zfcp_qdio_sbale_req(req); |
| 1963 | sbale[0].flags |= SBAL_FLAGS0_TYPE_READ; |
| 1964 | sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1965 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1966 | req->qtcb->header.port_handle = erp_action->port->handle; |
| 1967 | req->qtcb->bottom.support.fcp_lun = erp_action->unit->fcp_lun; |
| 1968 | req->handler = zfcp_fsf_open_unit_handler; |
| 1969 | req->data = erp_action->unit; |
| 1970 | req->erp_action = erp_action; |
| 1971 | erp_action->fsf_req = req; |
Andreas Herrmann | 059c97d | 2005-09-13 21:47:52 +0200 | [diff] [blame] | 1972 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1973 | if (!(adapter->connection_features & FSF_FEATURE_NPIV_MODE)) |
| 1974 | req->qtcb->bottom.support.option = FSF_OPEN_LUN_SUPPRESS_BOXING; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1975 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 1976 | zfcp_fsf_start_erp_timer(req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1977 | retval = zfcp_fsf_req_send(req); |
| 1978 | if (retval) { |
| 1979 | zfcp_fsf_req_free(req); |
| 1980 | erp_action->fsf_req = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1981 | } |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1982 | out: |
Christof Schmitt | 0406289 | 2008-10-01 12:42:20 +0200 | [diff] [blame] | 1983 | spin_unlock_bh(&adapter->req_q_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1984 | return retval; |
| 1985 | } |
| 1986 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1987 | static void zfcp_fsf_close_unit_handler(struct zfcp_fsf_req *req) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1988 | { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1989 | struct zfcp_unit *unit = req->data; |
| 1990 | |
| 1991 | if (req->status & ZFCP_STATUS_FSFREQ_ERROR) |
Swen Schillig | 44cc76f | 2008-10-01 12:42:16 +0200 | [diff] [blame] | 1992 | return; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1993 | |
| 1994 | switch (req->qtcb->header.fsf_status) { |
| 1995 | case FSF_PORT_HANDLE_NOT_VALID: |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 1996 | zfcp_erp_adapter_reopen(unit->port->adapter, 0, "fscuh_1", req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 1997 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
| 1998 | break; |
| 1999 | case FSF_LUN_HANDLE_NOT_VALID: |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 2000 | zfcp_erp_port_reopen(unit->port, 0, "fscuh_2", req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2001 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
| 2002 | break; |
| 2003 | case FSF_PORT_BOXED: |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 2004 | zfcp_erp_port_boxed(unit->port, "fscuh_3", req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2005 | req->status |= ZFCP_STATUS_FSFREQ_ERROR | |
| 2006 | ZFCP_STATUS_FSFREQ_RETRY; |
| 2007 | break; |
| 2008 | case FSF_ADAPTER_STATUS_AVAILABLE: |
| 2009 | switch (req->qtcb->header.fsf_status_qual.word[0]) { |
| 2010 | case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE: |
| 2011 | zfcp_test_link(unit->port); |
| 2012 | /* fall through */ |
| 2013 | case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED: |
| 2014 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
| 2015 | break; |
| 2016 | } |
| 2017 | break; |
| 2018 | case FSF_GOOD: |
| 2019 | atomic_clear_mask(ZFCP_STATUS_COMMON_OPEN, &unit->status); |
| 2020 | break; |
| 2021 | } |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2022 | } |
| 2023 | |
| 2024 | /** |
| 2025 | * zfcp_fsf_close_unit - close zfcp unit |
| 2026 | * @erp_action: pointer to struct zfcp_unit |
| 2027 | * Returns: 0 on success, error otherwise |
| 2028 | */ |
| 2029 | int zfcp_fsf_close_unit(struct zfcp_erp_action *erp_action) |
| 2030 | { |
Swen Schillig | 44cc76f | 2008-10-01 12:42:16 +0200 | [diff] [blame] | 2031 | struct qdio_buffer_element *sbale; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2032 | struct zfcp_adapter *adapter = erp_action->adapter; |
| 2033 | struct zfcp_fsf_req *req; |
| 2034 | int retval = -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2035 | |
Christof Schmitt | 0406289 | 2008-10-01 12:42:20 +0200 | [diff] [blame] | 2036 | spin_lock_bh(&adapter->req_q_lock); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2037 | if (zfcp_fsf_req_sbal_get(adapter)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2038 | goto out; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2039 | req = zfcp_fsf_req_create(adapter, FSF_QTCB_CLOSE_LUN, |
| 2040 | ZFCP_REQ_AUTO_CLEANUP, |
| 2041 | adapter->pool.fsf_req_erp); |
Hirofumi Nakagawa | 025270f | 2008-08-21 13:43:37 +0200 | [diff] [blame] | 2042 | if (IS_ERR(req)) { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2043 | retval = PTR_ERR(req); |
| 2044 | goto out; |
| 2045 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2046 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2047 | sbale = zfcp_qdio_sbale_req(req); |
| 2048 | sbale[0].flags |= SBAL_FLAGS0_TYPE_READ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2049 | sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY; |
| 2050 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2051 | req->qtcb->header.port_handle = erp_action->port->handle; |
| 2052 | req->qtcb->header.lun_handle = erp_action->unit->handle; |
| 2053 | req->handler = zfcp_fsf_close_unit_handler; |
| 2054 | req->data = erp_action->unit; |
| 2055 | req->erp_action = erp_action; |
| 2056 | erp_action->fsf_req = req; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2057 | |
Christof Schmitt | 287ac01 | 2008-07-02 10:56:40 +0200 | [diff] [blame] | 2058 | zfcp_fsf_start_erp_timer(req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2059 | retval = zfcp_fsf_req_send(req); |
| 2060 | if (retval) { |
| 2061 | zfcp_fsf_req_free(req); |
| 2062 | erp_action->fsf_req = NULL; |
| 2063 | } |
| 2064 | out: |
Christof Schmitt | 0406289 | 2008-10-01 12:42:20 +0200 | [diff] [blame] | 2065 | spin_unlock_bh(&adapter->req_q_lock); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2066 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2067 | } |
| 2068 | |
Christof Schmitt | c961585 | 2008-05-06 11:00:05 +0200 | [diff] [blame] | 2069 | static void zfcp_fsf_update_lat(struct fsf_latency_record *lat_rec, u32 lat) |
| 2070 | { |
| 2071 | lat_rec->sum += lat; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2072 | lat_rec->min = min(lat_rec->min, lat); |
| 2073 | lat_rec->max = max(lat_rec->max, lat); |
Christof Schmitt | c961585 | 2008-05-06 11:00:05 +0200 | [diff] [blame] | 2074 | } |
| 2075 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2076 | static void zfcp_fsf_req_latency(struct zfcp_fsf_req *req) |
Christof Schmitt | c961585 | 2008-05-06 11:00:05 +0200 | [diff] [blame] | 2077 | { |
| 2078 | struct fsf_qual_latency_info *lat_inf; |
| 2079 | struct latency_cont *lat; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2080 | struct zfcp_unit *unit = req->unit; |
Christof Schmitt | c961585 | 2008-05-06 11:00:05 +0200 | [diff] [blame] | 2081 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2082 | lat_inf = &req->qtcb->prefix.prot_status_qual.latency_info; |
Christof Schmitt | c961585 | 2008-05-06 11:00:05 +0200 | [diff] [blame] | 2083 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2084 | switch (req->qtcb->bottom.io.data_direction) { |
Christof Schmitt | c961585 | 2008-05-06 11:00:05 +0200 | [diff] [blame] | 2085 | case FSF_DATADIR_READ: |
| 2086 | lat = &unit->latencies.read; |
| 2087 | break; |
| 2088 | case FSF_DATADIR_WRITE: |
| 2089 | lat = &unit->latencies.write; |
| 2090 | break; |
| 2091 | case FSF_DATADIR_CMND: |
| 2092 | lat = &unit->latencies.cmd; |
| 2093 | break; |
| 2094 | default: |
| 2095 | return; |
| 2096 | } |
| 2097 | |
Christof Schmitt | 49f0f01 | 2009-03-02 13:08:57 +0100 | [diff] [blame] | 2098 | spin_lock(&unit->latencies.lock); |
Christof Schmitt | c961585 | 2008-05-06 11:00:05 +0200 | [diff] [blame] | 2099 | zfcp_fsf_update_lat(&lat->channel, lat_inf->channel_lat); |
| 2100 | zfcp_fsf_update_lat(&lat->fabric, lat_inf->fabric_lat); |
| 2101 | lat->counter++; |
Christof Schmitt | 49f0f01 | 2009-03-02 13:08:57 +0100 | [diff] [blame] | 2102 | spin_unlock(&unit->latencies.lock); |
Christof Schmitt | c961585 | 2008-05-06 11:00:05 +0200 | [diff] [blame] | 2103 | } |
| 2104 | |
Stefan Raspl | 0997f1c | 2008-10-16 08:23:39 +0200 | [diff] [blame] | 2105 | #ifdef CONFIG_BLK_DEV_IO_TRACE |
| 2106 | static void zfcp_fsf_trace_latency(struct zfcp_fsf_req *fsf_req) |
| 2107 | { |
| 2108 | struct fsf_qual_latency_info *lat_inf; |
| 2109 | struct scsi_cmnd *scsi_cmnd = (struct scsi_cmnd *)fsf_req->data; |
| 2110 | struct request *req = scsi_cmnd->request; |
| 2111 | struct zfcp_blk_drv_data trace; |
| 2112 | int ticks = fsf_req->adapter->timer_ticks; |
| 2113 | |
| 2114 | trace.flags = 0; |
| 2115 | trace.magic = ZFCP_BLK_DRV_DATA_MAGIC; |
| 2116 | if (fsf_req->adapter->adapter_features & FSF_FEATURE_MEASUREMENT_DATA) { |
| 2117 | trace.flags |= ZFCP_BLK_LAT_VALID; |
| 2118 | lat_inf = &fsf_req->qtcb->prefix.prot_status_qual.latency_info; |
| 2119 | trace.channel_lat = lat_inf->channel_lat * ticks; |
| 2120 | trace.fabric_lat = lat_inf->fabric_lat * ticks; |
| 2121 | } |
| 2122 | if (fsf_req->status & ZFCP_STATUS_FSFREQ_ERROR) |
| 2123 | trace.flags |= ZFCP_BLK_REQ_ERROR; |
| 2124 | trace.inb_usage = fsf_req->qdio_inb_usage; |
| 2125 | trace.outb_usage = fsf_req->qdio_outb_usage; |
| 2126 | |
| 2127 | blk_add_driver_data(req->q, req, &trace, sizeof(trace)); |
| 2128 | } |
| 2129 | #else |
| 2130 | static inline void zfcp_fsf_trace_latency(struct zfcp_fsf_req *fsf_req) |
| 2131 | { |
| 2132 | } |
| 2133 | #endif |
| 2134 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2135 | static void zfcp_fsf_send_fcp_command_task_handler(struct zfcp_fsf_req *req) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2136 | { |
Swen Schillig | 0ac55aa | 2008-11-26 18:07:39 +0100 | [diff] [blame] | 2137 | struct scsi_cmnd *scpnt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2138 | struct fcp_rsp_iu *fcp_rsp_iu = (struct fcp_rsp_iu *) |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2139 | &(req->qtcb->bottom.io.fcp_rsp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2140 | u32 sns_len; |
Martin Petermann | f76af7d | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 2141 | char *fcp_rsp_info = (unsigned char *) &fcp_rsp_iu[1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2142 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2143 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2144 | read_lock_irqsave(&req->adapter->abort_lock, flags); |
| 2145 | |
Swen Schillig | 0ac55aa | 2008-11-26 18:07:39 +0100 | [diff] [blame] | 2146 | scpnt = req->data; |
| 2147 | if (unlikely(!scpnt)) { |
| 2148 | read_unlock_irqrestore(&req->adapter->abort_lock, flags); |
| 2149 | return; |
| 2150 | } |
| 2151 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2152 | if (unlikely(req->status & ZFCP_STATUS_FSFREQ_ABORTED)) { |
Martin Petermann | feac6a0 | 2008-07-02 10:56:35 +0200 | [diff] [blame] | 2153 | set_host_byte(scpnt, DID_SOFT_ERROR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2154 | goto skip_fsfstatus; |
| 2155 | } |
| 2156 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2157 | if (unlikely(req->status & ZFCP_STATUS_FSFREQ_ERROR)) { |
Martin Petermann | feac6a0 | 2008-07-02 10:56:35 +0200 | [diff] [blame] | 2158 | set_host_byte(scpnt, DID_ERROR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2159 | goto skip_fsfstatus; |
| 2160 | } |
| 2161 | |
Martin Petermann | feac6a0 | 2008-07-02 10:56:35 +0200 | [diff] [blame] | 2162 | set_msg_byte(scpnt, COMMAND_COMPLETE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2163 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2164 | scpnt->result |= fcp_rsp_iu->scsi_status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2165 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2166 | if (req->adapter->adapter_features & FSF_FEATURE_MEASUREMENT_DATA) |
| 2167 | zfcp_fsf_req_latency(req); |
Christof Schmitt | c961585 | 2008-05-06 11:00:05 +0200 | [diff] [blame] | 2168 | |
Stefan Raspl | 0997f1c | 2008-10-16 08:23:39 +0200 | [diff] [blame] | 2169 | zfcp_fsf_trace_latency(req); |
| 2170 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2171 | if (unlikely(fcp_rsp_iu->validity.bits.fcp_rsp_len_valid)) { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2172 | if (fcp_rsp_info[3] == RSP_CODE_GOOD) |
Martin Petermann | feac6a0 | 2008-07-02 10:56:35 +0200 | [diff] [blame] | 2173 | set_host_byte(scpnt, DID_OK); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2174 | else { |
Martin Petermann | feac6a0 | 2008-07-02 10:56:35 +0200 | [diff] [blame] | 2175 | set_host_byte(scpnt, DID_ERROR); |
| 6f71d9b | 2005-04-10 23:04:28 -0500 | [diff] [blame] | 2176 | goto skip_fsfstatus; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2177 | } |
| 2178 | } |
| 2179 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2180 | if (unlikely(fcp_rsp_iu->validity.bits.fcp_sns_len_valid)) { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2181 | sns_len = FSF_FCP_RSP_SIZE - sizeof(struct fcp_rsp_iu) + |
| 2182 | fcp_rsp_iu->fcp_rsp_len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2183 | sns_len = min(sns_len, (u32) SCSI_SENSE_BUFFERSIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2184 | sns_len = min(sns_len, fcp_rsp_iu->fcp_sns_len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2185 | |
FUJITA Tomonori | 9d058ec | 2008-01-27 12:41:50 +0900 | [diff] [blame] | 2186 | memcpy(scpnt->sense_buffer, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2187 | zfcp_get_fcp_sns_info_ptr(fcp_rsp_iu), sns_len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2188 | } |
| 2189 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2190 | if (unlikely(fcp_rsp_iu->validity.bits.fcp_resid_under)) { |
FUJITA Tomonori | 7936a89 | 2007-07-29 16:46:28 +0900 | [diff] [blame] | 2191 | scsi_set_resid(scpnt, fcp_rsp_iu->fcp_resid); |
| 2192 | if (scsi_bufflen(scpnt) - scsi_get_resid(scpnt) < |
| 2193 | scpnt->underflow) |
Martin Petermann | feac6a0 | 2008-07-02 10:56:35 +0200 | [diff] [blame] | 2194 | set_host_byte(scpnt, DID_ERROR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2195 | } |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2196 | skip_fsfstatus: |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 2197 | if (scpnt->result != 0) |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2198 | zfcp_scsi_dbf_event_result("erro", 3, req->adapter, scpnt, req); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 2199 | else if (scpnt->retries > 0) |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2200 | zfcp_scsi_dbf_event_result("retr", 4, req->adapter, scpnt, req); |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 2201 | else |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2202 | zfcp_scsi_dbf_event_result("norm", 6, req->adapter, scpnt, req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2203 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2204 | scpnt->host_scribble = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2205 | (scpnt->scsi_done) (scpnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2206 | /* |
| 2207 | * We must hold this lock until scsi_done has been called. |
| 2208 | * Otherwise we may call scsi_done after abort regarding this |
| 2209 | * command has completed. |
| 2210 | * Note: scsi_done must not block! |
| 2211 | */ |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2212 | read_unlock_irqrestore(&req->adapter->abort_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2213 | } |
| 2214 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2215 | static void zfcp_fsf_send_fcp_ctm_handler(struct zfcp_fsf_req *req) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2216 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2217 | struct fcp_rsp_iu *fcp_rsp_iu = (struct fcp_rsp_iu *) |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2218 | &(req->qtcb->bottom.io.fcp_rsp); |
Martin Petermann | f76af7d | 2008-07-02 10:56:36 +0200 | [diff] [blame] | 2219 | char *fcp_rsp_info = (unsigned char *) &fcp_rsp_iu[1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2220 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2221 | if ((fcp_rsp_info[3] != RSP_CODE_GOOD) || |
| 2222 | (req->status & ZFCP_STATUS_FSFREQ_ERROR)) |
| 2223 | req->status |= ZFCP_STATUS_FSFREQ_TMFUNCFAILED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2224 | } |
| 2225 | |
| 2226 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2227 | static void zfcp_fsf_send_fcp_command_handler(struct zfcp_fsf_req *req) |
| 2228 | { |
| 2229 | struct zfcp_unit *unit; |
| 2230 | struct fsf_qtcb_header *header = &req->qtcb->header; |
| 2231 | |
| 2232 | if (unlikely(req->status & ZFCP_STATUS_FSFREQ_TASK_MANAGEMENT)) |
| 2233 | unit = req->data; |
| 2234 | else |
| 2235 | unit = req->unit; |
| 2236 | |
| 2237 | if (unlikely(req->status & ZFCP_STATUS_FSFREQ_ERROR)) |
| 2238 | goto skip_fsfstatus; |
| 2239 | |
| 2240 | switch (header->fsf_status) { |
| 2241 | case FSF_HANDLE_MISMATCH: |
| 2242 | case FSF_PORT_HANDLE_NOT_VALID: |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 2243 | zfcp_erp_adapter_reopen(unit->port->adapter, 0, "fssfch1", req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2244 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
| 2245 | break; |
| 2246 | case FSF_FCPLUN_NOT_VALID: |
| 2247 | case FSF_LUN_HANDLE_NOT_VALID: |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 2248 | zfcp_erp_port_reopen(unit->port, 0, "fssfch2", req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2249 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
| 2250 | break; |
| 2251 | case FSF_SERVICE_CLASS_NOT_SUPPORTED: |
| 2252 | zfcp_fsf_class_not_supp(req); |
| 2253 | break; |
| 2254 | case FSF_ACCESS_DENIED: |
| 2255 | zfcp_fsf_access_denied_unit(req, unit); |
| 2256 | break; |
| 2257 | case FSF_DIRECTION_INDICATOR_NOT_VALID: |
| 2258 | dev_err(&req->adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 2259 | "Incorrect direction %d, unit 0x%016Lx on port " |
| 2260 | "0x%016Lx closed\n", |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2261 | req->qtcb->bottom.io.data_direction, |
Swen Schillig | 7ba58c9 | 2008-10-01 12:42:18 +0200 | [diff] [blame] | 2262 | (unsigned long long)unit->fcp_lun, |
| 2263 | (unsigned long long)unit->port->wwpn); |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 2264 | zfcp_erp_adapter_shutdown(unit->port->adapter, 0, "fssfch3", |
| 2265 | req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2266 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
| 2267 | break; |
| 2268 | case FSF_CMND_LENGTH_NOT_VALID: |
| 2269 | dev_err(&req->adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 2270 | "Incorrect CDB length %d, unit 0x%016Lx on " |
| 2271 | "port 0x%016Lx closed\n", |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2272 | req->qtcb->bottom.io.fcp_cmnd_length, |
Swen Schillig | 7ba58c9 | 2008-10-01 12:42:18 +0200 | [diff] [blame] | 2273 | (unsigned long long)unit->fcp_lun, |
| 2274 | (unsigned long long)unit->port->wwpn); |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 2275 | zfcp_erp_adapter_shutdown(unit->port->adapter, 0, "fssfch4", |
| 2276 | req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2277 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
| 2278 | break; |
| 2279 | case FSF_PORT_BOXED: |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 2280 | zfcp_erp_port_boxed(unit->port, "fssfch5", req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2281 | req->status |= ZFCP_STATUS_FSFREQ_ERROR | |
| 2282 | ZFCP_STATUS_FSFREQ_RETRY; |
| 2283 | break; |
| 2284 | case FSF_LUN_BOXED: |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 2285 | zfcp_erp_unit_boxed(unit, "fssfch6", req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2286 | req->status |= ZFCP_STATUS_FSFREQ_ERROR | |
| 2287 | ZFCP_STATUS_FSFREQ_RETRY; |
| 2288 | break; |
| 2289 | case FSF_ADAPTER_STATUS_AVAILABLE: |
| 2290 | if (header->fsf_status_qual.word[0] == |
| 2291 | FSF_SQ_INVOKE_LINK_TEST_PROCEDURE) |
| 2292 | zfcp_test_link(unit->port); |
| 2293 | req->status |= ZFCP_STATUS_FSFREQ_ERROR; |
| 2294 | break; |
| 2295 | } |
| 2296 | skip_fsfstatus: |
| 2297 | if (req->status & ZFCP_STATUS_FSFREQ_TASK_MANAGEMENT) |
| 2298 | zfcp_fsf_send_fcp_ctm_handler(req); |
| 2299 | else { |
| 2300 | zfcp_fsf_send_fcp_command_task_handler(req); |
| 2301 | req->unit = NULL; |
| 2302 | zfcp_unit_put(unit); |
| 2303 | } |
| 2304 | } |
| 2305 | |
Swen Schillig | 7ba58c9 | 2008-10-01 12:42:18 +0200 | [diff] [blame] | 2306 | static void zfcp_set_fcp_dl(struct fcp_cmnd_iu *fcp_cmd, u32 fcp_dl) |
| 2307 | { |
| 2308 | u32 *fcp_dl_ptr; |
| 2309 | |
| 2310 | /* |
| 2311 | * fcp_dl_addr = start address of fcp_cmnd structure + |
| 2312 | * size of fixed part + size of dynamically sized add_dcp_cdb field |
| 2313 | * SEE FCP-2 documentation |
| 2314 | */ |
| 2315 | fcp_dl_ptr = (u32 *) ((unsigned char *) &fcp_cmd[1] + |
| 2316 | (fcp_cmd->add_fcp_cdb_length << 2)); |
| 2317 | *fcp_dl_ptr = fcp_dl; |
| 2318 | } |
| 2319 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2320 | /** |
| 2321 | * zfcp_fsf_send_fcp_command_task - initiate an FCP command (for a SCSI command) |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2322 | * @unit: unit where command is sent to |
| 2323 | * @scsi_cmnd: scsi command to be sent |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2324 | */ |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 2325 | int zfcp_fsf_send_fcp_command_task(struct zfcp_unit *unit, |
| 2326 | struct scsi_cmnd *scsi_cmnd) |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2327 | { |
| 2328 | struct zfcp_fsf_req *req; |
| 2329 | struct fcp_cmnd_iu *fcp_cmnd_iu; |
Christof Schmitt | bc90c86 | 2009-05-15 13:18:17 +0200 | [diff] [blame] | 2330 | unsigned int sbtype = SBAL_FLAGS0_TYPE_READ; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2331 | int real_bytes, retval = -EIO; |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 2332 | struct zfcp_adapter *adapter = unit->port->adapter; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2333 | |
| 2334 | if (unlikely(!(atomic_read(&unit->status) & |
| 2335 | ZFCP_STATUS_COMMON_UNBLOCKED))) |
| 2336 | return -EBUSY; |
| 2337 | |
Christof Schmitt | 0406289 | 2008-10-01 12:42:20 +0200 | [diff] [blame] | 2338 | spin_lock(&adapter->req_q_lock); |
Christof Schmitt | 8fdf30d | 2009-03-02 13:09:01 +0100 | [diff] [blame] | 2339 | if (atomic_read(&adapter->req_q.count) <= 0) { |
| 2340 | atomic_inc(&adapter->qdio_outb_full); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2341 | goto out; |
Christof Schmitt | 8fdf30d | 2009-03-02 13:09:01 +0100 | [diff] [blame] | 2342 | } |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 2343 | req = zfcp_fsf_req_create(adapter, FSF_QTCB_FCP_CMND, |
| 2344 | ZFCP_REQ_AUTO_CLEANUP, |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2345 | adapter->pool.fsf_req_scsi); |
Hirofumi Nakagawa | 025270f | 2008-08-21 13:43:37 +0200 | [diff] [blame] | 2346 | if (IS_ERR(req)) { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2347 | retval = PTR_ERR(req); |
| 2348 | goto out; |
| 2349 | } |
| 2350 | |
| 2351 | zfcp_unit_get(unit); |
| 2352 | req->unit = unit; |
| 2353 | req->data = scsi_cmnd; |
| 2354 | req->handler = zfcp_fsf_send_fcp_command_handler; |
| 2355 | req->qtcb->header.lun_handle = unit->handle; |
| 2356 | req->qtcb->header.port_handle = unit->port->handle; |
| 2357 | req->qtcb->bottom.io.service_class = FSF_CLASS_3; |
| 2358 | |
| 2359 | scsi_cmnd->host_scribble = (unsigned char *) req->req_id; |
| 2360 | |
| 2361 | fcp_cmnd_iu = (struct fcp_cmnd_iu *) &(req->qtcb->bottom.io.fcp_cmnd); |
| 2362 | fcp_cmnd_iu->fcp_lun = unit->fcp_lun; |
| 2363 | /* |
| 2364 | * set depending on data direction: |
| 2365 | * data direction bits in SBALE (SB Type) |
| 2366 | * data direction bits in QTCB |
| 2367 | * data direction bits in FCP_CMND IU |
| 2368 | */ |
| 2369 | switch (scsi_cmnd->sc_data_direction) { |
| 2370 | case DMA_NONE: |
| 2371 | req->qtcb->bottom.io.data_direction = FSF_DATADIR_CMND; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2372 | break; |
| 2373 | case DMA_FROM_DEVICE: |
| 2374 | req->qtcb->bottom.io.data_direction = FSF_DATADIR_READ; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2375 | fcp_cmnd_iu->rddata = 1; |
| 2376 | break; |
| 2377 | case DMA_TO_DEVICE: |
| 2378 | req->qtcb->bottom.io.data_direction = FSF_DATADIR_WRITE; |
| 2379 | sbtype = SBAL_FLAGS0_TYPE_WRITE; |
| 2380 | fcp_cmnd_iu->wddata = 1; |
| 2381 | break; |
| 2382 | case DMA_BIDIRECTIONAL: |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2383 | goto failed_scsi_cmnd; |
| 2384 | } |
| 2385 | |
| 2386 | if (likely((scsi_cmnd->device->simple_tags) || |
| 2387 | ((atomic_read(&unit->status) & ZFCP_STATUS_UNIT_READONLY) && |
| 2388 | (atomic_read(&unit->status) & ZFCP_STATUS_UNIT_SHARED)))) |
| 2389 | fcp_cmnd_iu->task_attribute = SIMPLE_Q; |
| 2390 | else |
| 2391 | fcp_cmnd_iu->task_attribute = UNTAGGED; |
| 2392 | |
| 2393 | if (unlikely(scsi_cmnd->cmd_len > FCP_CDB_LENGTH)) |
| 2394 | fcp_cmnd_iu->add_fcp_cdb_length = |
| 2395 | (scsi_cmnd->cmd_len - FCP_CDB_LENGTH) >> 2; |
| 2396 | |
| 2397 | memcpy(fcp_cmnd_iu->fcp_cdb, scsi_cmnd->cmnd, scsi_cmnd->cmd_len); |
| 2398 | |
| 2399 | req->qtcb->bottom.io.fcp_cmnd_length = sizeof(struct fcp_cmnd_iu) + |
Swen Schillig | 7ba58c9 | 2008-10-01 12:42:18 +0200 | [diff] [blame] | 2400 | fcp_cmnd_iu->add_fcp_cdb_length + sizeof(u32); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2401 | |
| 2402 | real_bytes = zfcp_qdio_sbals_from_sg(req, sbtype, |
| 2403 | scsi_sglist(scsi_cmnd), |
| 2404 | FSF_MAX_SBALS_PER_REQ); |
| 2405 | if (unlikely(real_bytes < 0)) { |
Christof Schmitt | bc90c86 | 2009-05-15 13:18:17 +0200 | [diff] [blame] | 2406 | if (req->sbal_number >= FSF_MAX_SBALS_PER_REQ) { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2407 | dev_err(&adapter->ccw_device->dev, |
Christof Schmitt | ff3b24f | 2008-10-01 12:42:15 +0200 | [diff] [blame] | 2408 | "Oversize data package, unit 0x%016Lx " |
| 2409 | "on port 0x%016Lx closed\n", |
Swen Schillig | 7ba58c9 | 2008-10-01 12:42:18 +0200 | [diff] [blame] | 2410 | (unsigned long long)unit->fcp_lun, |
| 2411 | (unsigned long long)unit->port->wwpn); |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 2412 | zfcp_erp_unit_shutdown(unit, 0, "fssfct1", req); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2413 | retval = -EINVAL; |
| 2414 | } |
| 2415 | goto failed_scsi_cmnd; |
| 2416 | } |
| 2417 | |
| 2418 | zfcp_set_fcp_dl(fcp_cmnd_iu, real_bytes); |
| 2419 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2420 | retval = zfcp_fsf_req_send(req); |
| 2421 | if (unlikely(retval)) |
| 2422 | goto failed_scsi_cmnd; |
| 2423 | |
| 2424 | goto out; |
| 2425 | |
| 2426 | failed_scsi_cmnd: |
| 2427 | zfcp_unit_put(unit); |
| 2428 | zfcp_fsf_req_free(req); |
| 2429 | scsi_cmnd->host_scribble = NULL; |
| 2430 | out: |
Christof Schmitt | 0406289 | 2008-10-01 12:42:20 +0200 | [diff] [blame] | 2431 | spin_unlock(&adapter->req_q_lock); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2432 | return retval; |
| 2433 | } |
| 2434 | |
| 2435 | /** |
| 2436 | * zfcp_fsf_send_fcp_ctm - send SCSI task management command |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2437 | * @unit: pointer to struct zfcp_unit |
| 2438 | * @tm_flags: unsigned byte for task management flags |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2439 | * Returns: on success pointer to struct fsf_req, NULL otherwise |
| 2440 | */ |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 2441 | struct zfcp_fsf_req *zfcp_fsf_send_fcp_ctm(struct zfcp_unit *unit, u8 tm_flags) |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2442 | { |
Swen Schillig | 44cc76f | 2008-10-01 12:42:16 +0200 | [diff] [blame] | 2443 | struct qdio_buffer_element *sbale; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2444 | struct zfcp_fsf_req *req = NULL; |
| 2445 | struct fcp_cmnd_iu *fcp_cmnd_iu; |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 2446 | struct zfcp_adapter *adapter = unit->port->adapter; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2447 | |
| 2448 | if (unlikely(!(atomic_read(&unit->status) & |
| 2449 | ZFCP_STATUS_COMMON_UNBLOCKED))) |
| 2450 | return NULL; |
| 2451 | |
Christof Schmitt | 92cab0d | 2009-03-02 13:08:59 +0100 | [diff] [blame] | 2452 | spin_lock_bh(&adapter->req_q_lock); |
| 2453 | if (zfcp_fsf_req_sbal_get(adapter)) |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2454 | goto out; |
Christof Schmitt | 63caf36 | 2009-03-02 13:09:00 +0100 | [diff] [blame] | 2455 | req = zfcp_fsf_req_create(adapter, FSF_QTCB_FCP_CMND, 0, |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2456 | adapter->pool.fsf_req_scsi); |
Swen Schillig | 633528c | 2008-11-26 18:07:37 +0100 | [diff] [blame] | 2457 | if (IS_ERR(req)) { |
| 2458 | req = NULL; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2459 | goto out; |
Swen Schillig | 633528c | 2008-11-26 18:07:37 +0100 | [diff] [blame] | 2460 | } |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2461 | |
| 2462 | req->status |= ZFCP_STATUS_FSFREQ_TASK_MANAGEMENT; |
| 2463 | req->data = unit; |
| 2464 | req->handler = zfcp_fsf_send_fcp_command_handler; |
| 2465 | req->qtcb->header.lun_handle = unit->handle; |
| 2466 | req->qtcb->header.port_handle = unit->port->handle; |
| 2467 | req->qtcb->bottom.io.data_direction = FSF_DATADIR_CMND; |
| 2468 | req->qtcb->bottom.io.service_class = FSF_CLASS_3; |
| 2469 | req->qtcb->bottom.io.fcp_cmnd_length = sizeof(struct fcp_cmnd_iu) + |
Swen Schillig | 7ba58c9 | 2008-10-01 12:42:18 +0200 | [diff] [blame] | 2470 | sizeof(u32); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2471 | |
| 2472 | sbale = zfcp_qdio_sbale_req(req); |
| 2473 | sbale[0].flags |= SBAL_FLAGS0_TYPE_WRITE; |
| 2474 | sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY; |
| 2475 | |
| 2476 | fcp_cmnd_iu = (struct fcp_cmnd_iu *) &req->qtcb->bottom.io.fcp_cmnd; |
| 2477 | fcp_cmnd_iu->fcp_lun = unit->fcp_lun; |
| 2478 | fcp_cmnd_iu->task_management_flags = tm_flags; |
| 2479 | |
| 2480 | zfcp_fsf_start_timer(req, ZFCP_SCSI_ER_TIMEOUT); |
| 2481 | if (!zfcp_fsf_req_send(req)) |
| 2482 | goto out; |
| 2483 | |
| 2484 | zfcp_fsf_req_free(req); |
| 2485 | req = NULL; |
| 2486 | out: |
Christof Schmitt | 92cab0d | 2009-03-02 13:08:59 +0100 | [diff] [blame] | 2487 | spin_unlock_bh(&adapter->req_q_lock); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2488 | return req; |
| 2489 | } |
| 2490 | |
| 2491 | static void zfcp_fsf_control_file_handler(struct zfcp_fsf_req *req) |
| 2492 | { |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2493 | } |
| 2494 | |
| 2495 | /** |
| 2496 | * zfcp_fsf_control_file - control file upload/download |
| 2497 | * @adapter: pointer to struct zfcp_adapter |
| 2498 | * @fsf_cfdc: pointer to struct zfcp_fsf_cfdc |
| 2499 | * Returns: on success pointer to struct zfcp_fsf_req, NULL otherwise |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2500 | */ |
Christof Schmitt | 45633fd | 2008-06-10 18:20:55 +0200 | [diff] [blame] | 2501 | struct zfcp_fsf_req *zfcp_fsf_control_file(struct zfcp_adapter *adapter, |
| 2502 | struct zfcp_fsf_cfdc *fsf_cfdc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2503 | { |
Swen Schillig | 44cc76f | 2008-10-01 12:42:16 +0200 | [diff] [blame] | 2504 | struct qdio_buffer_element *sbale; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2505 | struct zfcp_fsf_req *req = NULL; |
| 2506 | struct fsf_qtcb_bottom_support *bottom; |
| 2507 | int direction, retval = -EIO, bytes; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2508 | |
Christof Schmitt | 45633fd | 2008-06-10 18:20:55 +0200 | [diff] [blame] | 2509 | if (!(adapter->adapter_features & FSF_FEATURE_CFDC)) |
| 2510 | return ERR_PTR(-EOPNOTSUPP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2511 | |
Christof Schmitt | 45633fd | 2008-06-10 18:20:55 +0200 | [diff] [blame] | 2512 | switch (fsf_cfdc->command) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2513 | case FSF_QTCB_DOWNLOAD_CONTROL_FILE: |
| 2514 | direction = SBAL_FLAGS0_TYPE_WRITE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2515 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2516 | case FSF_QTCB_UPLOAD_CONTROL_FILE: |
| 2517 | direction = SBAL_FLAGS0_TYPE_READ; |
| 2518 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2519 | default: |
Christof Schmitt | 45633fd | 2008-06-10 18:20:55 +0200 | [diff] [blame] | 2520 | return ERR_PTR(-EINVAL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2521 | } |
| 2522 | |
Christof Schmitt | 0406289 | 2008-10-01 12:42:20 +0200 | [diff] [blame] | 2523 | spin_lock_bh(&adapter->req_q_lock); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2524 | if (zfcp_fsf_req_sbal_get(adapter)) |
| 2525 | goto out; |
| 2526 | |
| 2527 | req = zfcp_fsf_req_create(adapter, fsf_cfdc->command, 0, NULL); |
Hirofumi Nakagawa | 025270f | 2008-08-21 13:43:37 +0200 | [diff] [blame] | 2528 | if (IS_ERR(req)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2529 | retval = -EPERM; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2530 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2531 | } |
| 2532 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2533 | req->handler = zfcp_fsf_control_file_handler; |
| 2534 | |
| 2535 | sbale = zfcp_qdio_sbale_req(req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2536 | sbale[0].flags |= direction; |
| 2537 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2538 | bottom = &req->qtcb->bottom.support; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2539 | bottom->operation_subtype = FSF_CFDC_OPERATION_SUBTYPE; |
Christof Schmitt | 45633fd | 2008-06-10 18:20:55 +0200 | [diff] [blame] | 2540 | bottom->option = fsf_cfdc->option; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2541 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2542 | bytes = zfcp_qdio_sbals_from_sg(req, direction, fsf_cfdc->sg, |
| 2543 | FSF_MAX_SBALS_PER_REQ); |
Christof Schmitt | 45633fd | 2008-06-10 18:20:55 +0200 | [diff] [blame] | 2544 | if (bytes != ZFCP_CFDC_MAX_SIZE) { |
| 2545 | retval = -ENOMEM; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2546 | zfcp_fsf_req_free(req); |
| 2547 | goto out; |
Christof Schmitt | 45633fd | 2008-06-10 18:20:55 +0200 | [diff] [blame] | 2548 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2549 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2550 | zfcp_fsf_start_timer(req, ZFCP_FSF_REQUEST_TIMEOUT); |
| 2551 | retval = zfcp_fsf_req_send(req); |
| 2552 | out: |
Christof Schmitt | 0406289 | 2008-10-01 12:42:20 +0200 | [diff] [blame] | 2553 | spin_unlock_bh(&adapter->req_q_lock); |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 2554 | |
| 2555 | if (!retval) { |
| 2556 | wait_event(req->completion_wq, |
| 2557 | req->status & ZFCP_STATUS_FSFREQ_COMPLETED); |
| 2558 | return req; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2559 | } |
Christof Schmitt | 45633fd | 2008-06-10 18:20:55 +0200 | [diff] [blame] | 2560 | return ERR_PTR(retval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2561 | } |