blob: 21ec5e2f584ce44851560394870cf9b56163a3b1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Christof Schmitt553448f2008-06-10 18:20:58 +02002 * zfcp device driver
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Christof Schmitt553448f2008-06-10 18:20:58 +02004 * Implementation of FSF commands.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
Steffen Maier9edf7d72013-04-26 17:34:54 +02006 * Copyright IBM Corp. 2002, 2013
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 */
8
Christof Schmittecf39d42008-12-25 13:39:53 +01009#define KMSG_COMPONENT "zfcp"
10#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
11
Stefan Raspl0997f1c2008-10-16 08:23:39 +020012#include <linux/blktrace_api.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Christof Schmitt9d05ce22009-11-24 16:54:09 +010014#include <scsi/fc/fc_els.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include "zfcp_ext.h"
Christof Schmitt4318e082009-11-24 16:54:08 +010016#include "zfcp_fc.h"
Christof Schmittdcd20e22009-08-18 15:43:08 +020017#include "zfcp_dbf.h"
Christof Schmitt34c2b712010-02-17 11:18:59 +010018#include "zfcp_qdio.h"
Christof Schmittb6bd2fb2010-02-17 11:18:50 +010019#include "zfcp_reqlist.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Christof Schmitt259afe22011-02-22 19:54:44 +010021struct kmem_cache *zfcp_fsf_qtcb_cache;
22
Christof Schmitt287ac012008-07-02 10:56:40 +020023static void zfcp_fsf_request_timeout_handler(unsigned long data)
24{
25 struct zfcp_adapter *adapter = (struct zfcp_adapter *) data;
Christof Schmitt339f4f42010-07-16 15:37:43 +020026 zfcp_qdio_siosl(adapter);
Swen Schillig5ffd51a2009-03-02 13:09:04 +010027 zfcp_erp_adapter_reopen(adapter, ZFCP_STATUS_COMMON_ERP_FAILED,
Swen Schilligea4a3a62010-12-02 15:16:16 +010028 "fsrth_1");
Christof Schmitt287ac012008-07-02 10:56:40 +020029}
30
31static void zfcp_fsf_start_timer(struct zfcp_fsf_req *fsf_req,
32 unsigned long timeout)
33{
34 fsf_req->timer.function = zfcp_fsf_request_timeout_handler;
35 fsf_req->timer.data = (unsigned long) fsf_req->adapter;
36 fsf_req->timer.expires = jiffies + timeout;
37 add_timer(&fsf_req->timer);
38}
39
40static void zfcp_fsf_start_erp_timer(struct zfcp_fsf_req *fsf_req)
41{
42 BUG_ON(!fsf_req->erp_action);
43 fsf_req->timer.function = zfcp_erp_timeout_handler;
44 fsf_req->timer.data = (unsigned long) fsf_req->erp_action;
45 fsf_req->timer.expires = jiffies + 30 * HZ;
46 add_timer(&fsf_req->timer);
47}
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049/* association between FSF command and FSF QTCB type */
50static u32 fsf_qtcb_type[] = {
51 [FSF_QTCB_FCP_CMND] = FSF_IO_COMMAND,
52 [FSF_QTCB_ABORT_FCP_CMND] = FSF_SUPPORT_COMMAND,
53 [FSF_QTCB_OPEN_PORT_WITH_DID] = FSF_SUPPORT_COMMAND,
54 [FSF_QTCB_OPEN_LUN] = FSF_SUPPORT_COMMAND,
55 [FSF_QTCB_CLOSE_LUN] = FSF_SUPPORT_COMMAND,
56 [FSF_QTCB_CLOSE_PORT] = FSF_SUPPORT_COMMAND,
57 [FSF_QTCB_CLOSE_PHYSICAL_PORT] = FSF_SUPPORT_COMMAND,
58 [FSF_QTCB_SEND_ELS] = FSF_SUPPORT_COMMAND,
59 [FSF_QTCB_SEND_GENERIC] = FSF_SUPPORT_COMMAND,
60 [FSF_QTCB_EXCHANGE_CONFIG_DATA] = FSF_CONFIG_COMMAND,
61 [FSF_QTCB_EXCHANGE_PORT_DATA] = FSF_PORT_COMMAND,
62 [FSF_QTCB_DOWNLOAD_CONTROL_FILE] = FSF_SUPPORT_COMMAND,
63 [FSF_QTCB_UPLOAD_CONTROL_FILE] = FSF_SUPPORT_COMMAND
64};
65
Christof Schmitt553448f2008-06-10 18:20:58 +020066static void zfcp_fsf_class_not_supp(struct zfcp_fsf_req *req)
67{
Christof Schmittff3b24f2008-10-01 12:42:15 +020068 dev_err(&req->adapter->ccw_device->dev, "FCP device not "
69 "operational because of an unsupported FC class\n");
Swen Schilligea4a3a62010-12-02 15:16:16 +010070 zfcp_erp_adapter_shutdown(req->adapter, 0, "fscns_1");
Christof Schmitt553448f2008-06-10 18:20:58 +020071 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
72}
73
Swen Schilligc41f8cb2008-07-02 10:56:39 +020074/**
75 * zfcp_fsf_req_free - free memory used by fsf request
76 * @fsf_req: pointer to struct zfcp_fsf_req
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 */
Swen Schilligc41f8cb2008-07-02 10:56:39 +020078void zfcp_fsf_req_free(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079{
Swen Schilligc41f8cb2008-07-02 10:56:39 +020080 if (likely(req->pool)) {
Swen Schilliga4623c42009-08-18 15:43:15 +020081 if (likely(req->qtcb))
82 mempool_free(req->qtcb, req->adapter->pool.qtcb_pool);
Swen Schilligc41f8cb2008-07-02 10:56:39 +020083 mempool_free(req, req->pool);
Heiko Carstensdd52e0e2006-09-18 22:28:49 +020084 return;
85 }
86
Swen Schilliga4623c42009-08-18 15:43:15 +020087 if (likely(req->qtcb))
Christof Schmitt259afe22011-02-22 19:54:44 +010088 kmem_cache_free(zfcp_fsf_qtcb_cache, req->qtcb);
Swen Schilliga4623c42009-08-18 15:43:15 +020089 kfree(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090}
91
Swen Schilligc41f8cb2008-07-02 10:56:39 +020092static void zfcp_fsf_status_read_port_closed(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093{
Swen Schilligecf0c772009-11-24 16:53:58 +010094 unsigned long flags;
Swen Schilligc41f8cb2008-07-02 10:56:39 +020095 struct fsf_status_read_buffer *sr_buf = req->data;
96 struct zfcp_adapter *adapter = req->adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 struct zfcp_port *port;
Christof Schmitt800c0ca2009-11-24 16:54:12 +010098 int d_id = ntoh24(sr_buf->d_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Swen Schilligecf0c772009-11-24 16:53:58 +0100100 read_lock_irqsave(&adapter->port_list_lock, flags);
101 list_for_each_entry(port, &adapter->port_list, list)
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200102 if (port->d_id == d_id) {
Swen Schilligea4a3a62010-12-02 15:16:16 +0100103 zfcp_erp_port_reopen(port, 0, "fssrpc1");
Swen Schilligecf0c772009-11-24 16:53:58 +0100104 break;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200105 }
Swen Schilligecf0c772009-11-24 16:53:58 +0100106 read_unlock_irqrestore(&adapter->port_list_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107}
108
Swen Schilligedaed852010-09-08 14:40:01 +0200109static void zfcp_fsf_link_down_info_eval(struct zfcp_fsf_req *req,
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200110 struct fsf_link_down_info *link_down)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200112 struct zfcp_adapter *adapter = req->adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200114 if (atomic_read(&adapter->status) & ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED)
115 return;
116
117 atomic_set_mask(ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED, &adapter->status);
Christof Schmitt70932932009-04-17 15:08:15 +0200118
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100119 zfcp_scsi_schedule_rports_block(adapter);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200120
121 if (!link_down)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 goto out;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200123
124 switch (link_down->error_code) {
125 case FSF_PSQ_LINK_NO_LIGHT:
126 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200127 "There is no light signal from the local "
128 "fibre channel cable\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200129 break;
130 case FSF_PSQ_LINK_WRAP_PLUG:
131 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200132 "There is a wrap plug instead of a fibre "
133 "channel cable\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200134 break;
135 case FSF_PSQ_LINK_NO_FCP:
136 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200137 "The adjacent fibre channel node does not "
138 "support FCP\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200139 break;
140 case FSF_PSQ_LINK_FIRMWARE_UPDATE:
141 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200142 "The FCP device is suspended because of a "
143 "firmware update\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200144 break;
145 case FSF_PSQ_LINK_INVALID_WWPN:
146 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200147 "The FCP device detected a WWPN that is "
148 "duplicate or not valid\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200149 break;
150 case FSF_PSQ_LINK_NO_NPIV_SUPPORT:
151 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200152 "The fibre channel fabric does not support NPIV\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200153 break;
154 case FSF_PSQ_LINK_NO_FCP_RESOURCES:
155 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200156 "The FCP adapter cannot support more NPIV ports\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200157 break;
158 case FSF_PSQ_LINK_NO_FABRIC_RESOURCES:
159 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200160 "The adjacent switch cannot support "
161 "more NPIV ports\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200162 break;
163 case FSF_PSQ_LINK_FABRIC_LOGIN_UNABLE:
164 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200165 "The FCP adapter could not log in to the "
166 "fibre channel fabric\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200167 break;
168 case FSF_PSQ_LINK_WWPN_ASSIGNMENT_CORRUPTED:
169 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200170 "The WWPN assignment file on the FCP adapter "
171 "has been damaged\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200172 break;
173 case FSF_PSQ_LINK_MODE_TABLE_CURRUPTED:
174 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200175 "The mode table on the FCP adapter "
176 "has been damaged\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200177 break;
178 case FSF_PSQ_LINK_NO_WWPN_ASSIGNMENT:
179 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200180 "All NPIV ports on the FCP adapter have "
181 "been assigned\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200182 break;
183 default:
184 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200185 "The link between the FCP adapter and "
186 "the FC fabric is down\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200187 }
188out:
Swen Schilligedaed852010-09-08 14:40:01 +0200189 zfcp_erp_set_adapter_status(adapter, ZFCP_STATUS_COMMON_ERP_FAILED);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200190}
191
192static void zfcp_fsf_status_read_link_down(struct zfcp_fsf_req *req)
193{
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200194 struct fsf_status_read_buffer *sr_buf = req->data;
195 struct fsf_link_down_info *ldi =
196 (struct fsf_link_down_info *) &sr_buf->payload;
197
198 switch (sr_buf->status_subtype) {
199 case FSF_STATUS_READ_SUB_NO_PHYSICAL_LINK:
Swen Schilligedaed852010-09-08 14:40:01 +0200200 zfcp_fsf_link_down_info_eval(req, ldi);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200201 break;
202 case FSF_STATUS_READ_SUB_FDISC_FAILED:
Swen Schilligedaed852010-09-08 14:40:01 +0200203 zfcp_fsf_link_down_info_eval(req, ldi);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200204 break;
205 case FSF_STATUS_READ_SUB_FIRMWARE_UPDATE:
Swen Schilligedaed852010-09-08 14:40:01 +0200206 zfcp_fsf_link_down_info_eval(req, NULL);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200207 };
208}
209
210static void zfcp_fsf_status_read_handler(struct zfcp_fsf_req *req)
211{
212 struct zfcp_adapter *adapter = req->adapter;
213 struct fsf_status_read_buffer *sr_buf = req->data;
214
215 if (req->status & ZFCP_STATUS_FSFREQ_DISMISSED) {
Swen Schilliga54ca0f2010-12-02 15:16:14 +0100216 zfcp_dbf_hba_fsf_uss("fssrh_1", req);
Christof Schmittc7b279a2011-02-22 19:54:40 +0100217 mempool_free(virt_to_page(sr_buf), adapter->pool.sr_data);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200218 zfcp_fsf_req_free(req);
219 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 }
221
Steffen Maier01009982012-09-04 15:23:30 +0200222 zfcp_dbf_hba_fsf_uss("fssrh_4", req);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200223
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200224 switch (sr_buf->status_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 case FSF_STATUS_READ_PORT_CLOSED:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200226 zfcp_fsf_status_read_port_closed(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 case FSF_STATUS_READ_INCOMING_ELS:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200229 zfcp_fc_incoming_els(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 case FSF_STATUS_READ_SENSE_DATA_AVAIL:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 case FSF_STATUS_READ_BIT_ERROR_THRESHOLD:
Christof Schmittff3b24f2008-10-01 12:42:15 +0200234 dev_warn(&adapter->ccw_device->dev,
235 "The error threshold for checksum statistics "
236 "has been exceeded\n");
Swen Schilliga54ca0f2010-12-02 15:16:14 +0100237 zfcp_dbf_hba_bit_err("fssrh_3", req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 case FSF_STATUS_READ_LINK_DOWN:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200240 zfcp_fsf_status_read_link_down(req);
Sven Schuetz2d1e5472010-07-16 15:37:39 +0200241 zfcp_fc_enqueue_event(adapter, FCH_EVT_LINKDOWN, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 case FSF_STATUS_READ_LINK_UP:
Christof Schmitt553448f2008-06-10 18:20:58 +0200244 dev_info(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200245 "The local link has been restored\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 /* All ports should be marked as ready to run again */
Swen Schilligedaed852010-09-08 14:40:01 +0200247 zfcp_erp_set_adapter_status(adapter,
248 ZFCP_STATUS_COMMON_RUNNING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 zfcp_erp_adapter_reopen(adapter,
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200250 ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED |
251 ZFCP_STATUS_COMMON_ERP_FAILED,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100252 "fssrh_2");
Sven Schuetz2d1e5472010-07-16 15:37:39 +0200253 zfcp_fc_enqueue_event(adapter, FCH_EVT_LINKUP, 0);
254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 break;
Maxim Shchetynin9eb69af2006-01-05 09:56:47 +0100256 case FSF_STATUS_READ_NOTIFICATION_LOST:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200257 if (sr_buf->status_subtype & FSF_STATUS_READ_SUB_INCOMING_ELS)
Steffen Maier43f60cb2012-09-04 15:23:35 +0200258 zfcp_fc_conditional_port_scan(adapter);
Maxim Shchetynin9eb69af2006-01-05 09:56:47 +0100259 break;
Maxim Shchetyninaef4a982005-09-13 21:51:16 +0200260 case FSF_STATUS_READ_FEATURE_UPDATE_ALERT:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200261 adapter->adapter_features = sr_buf->payload.word[0];
Maxim Shchetyninaef4a982005-09-13 21:51:16 +0200262 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200264
Christof Schmittc7b279a2011-02-22 19:54:40 +0100265 mempool_free(virt_to_page(sr_buf), adapter->pool.sr_data);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200266 zfcp_fsf_req_free(req);
Swen Schilligd26ab062008-05-19 12:17:37 +0200267
268 atomic_inc(&adapter->stat_miss);
Swen Schillig45446832009-08-18 15:43:17 +0200269 queue_work(adapter->work_queue, &adapter->stat_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270}
271
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200272static void zfcp_fsf_fsfstatus_qual_eval(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200274 switch (req->qtcb->header.fsf_status_qual.word[0]) {
275 case FSF_SQ_FCP_RSP_AVAILABLE:
276 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
277 case FSF_SQ_NO_RETRY_POSSIBLE:
278 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
279 return;
280 case FSF_SQ_COMMAND_ABORTED:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200281 break;
282 case FSF_SQ_NO_RECOM:
283 dev_err(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200284 "The FCP adapter reported a problem "
285 "that cannot be recovered\n");
Christof Schmitt339f4f42010-07-16 15:37:43 +0200286 zfcp_qdio_siosl(req->adapter);
Swen Schilligea4a3a62010-12-02 15:16:16 +0100287 zfcp_erp_adapter_shutdown(req->adapter, 0, "fsfsqe1");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200288 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200290 /* all non-return stats set FSFREQ_ERROR*/
291 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
292}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200294static void zfcp_fsf_fsfstatus_eval(struct zfcp_fsf_req *req)
295{
296 if (unlikely(req->status & ZFCP_STATUS_FSFREQ_ERROR))
297 return;
Andreas Herrmann059c97d2005-09-13 21:47:52 +0200298
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200299 switch (req->qtcb->header.fsf_status) {
300 case FSF_UNKNOWN_COMMAND:
301 dev_err(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200302 "The FCP adapter does not recognize the command 0x%x\n",
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200303 req->qtcb->header.fsf_command);
Swen Schilligea4a3a62010-12-02 15:16:16 +0100304 zfcp_erp_adapter_shutdown(req->adapter, 0, "fsfse_1");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200305 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 case FSF_ADAPTER_STATUS_AVAILABLE:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200308 zfcp_fsf_fsfstatus_qual_eval(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311}
312
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200313static void zfcp_fsf_protstatus_eval(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200315 struct zfcp_adapter *adapter = req->adapter;
316 struct fsf_qtcb *qtcb = req->qtcb;
317 union fsf_prot_status_qual *psq = &qtcb->prefix.prot_status_qual;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Swen Schillig57717102009-08-18 15:43:21 +0200319 zfcp_dbf_hba_fsf_response(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200321 if (req->status & ZFCP_STATUS_FSFREQ_DISMISSED) {
Christof Schmitt4c571c62009-11-24 16:54:15 +0100322 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200323 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 }
325
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200326 switch (qtcb->prefix.prot_status) {
327 case FSF_PROT_GOOD:
328 case FSF_PROT_FSF_STATUS_PRESENTED:
329 return;
330 case FSF_PROT_QTCB_VERSION_ERROR:
331 dev_err(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200332 "QTCB version 0x%x not supported by FCP adapter "
333 "(0x%x to 0x%x)\n", FSF_QTCB_CURRENT_VERSION,
334 psq->word[0], psq->word[1]);
Swen Schilligea4a3a62010-12-02 15:16:16 +0100335 zfcp_erp_adapter_shutdown(adapter, 0, "fspse_1");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 break;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200337 case FSF_PROT_ERROR_STATE:
338 case FSF_PROT_SEQ_NUMB_ERROR:
Swen Schilligea4a3a62010-12-02 15:16:16 +0100339 zfcp_erp_adapter_reopen(adapter, 0, "fspse_2");
Christof Schmitt4c571c62009-11-24 16:54:15 +0100340 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 break;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200342 case FSF_PROT_UNSUPP_QTCB_TYPE:
343 dev_err(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200344 "The QTCB type is not supported by the FCP adapter\n");
Swen Schilligea4a3a62010-12-02 15:16:16 +0100345 zfcp_erp_adapter_shutdown(adapter, 0, "fspse_3");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 break;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200347 case FSF_PROT_HOST_CONNECTION_INITIALIZING:
348 atomic_set_mask(ZFCP_STATUS_ADAPTER_HOST_CON_INIT,
349 &adapter->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 break;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200351 case FSF_PROT_DUPLICATE_REQUEST_ID:
352 dev_err(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200353 "0x%Lx is an ambiguous request identifier\n",
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200354 (unsigned long long)qtcb->bottom.support.req_handle);
Swen Schilligea4a3a62010-12-02 15:16:16 +0100355 zfcp_erp_adapter_shutdown(adapter, 0, "fspse_4");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 break;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200357 case FSF_PROT_LINK_DOWN:
Swen Schilligedaed852010-09-08 14:40:01 +0200358 zfcp_fsf_link_down_info_eval(req, &psq->link_down_info);
Christof Schmitt452b5052010-02-17 11:18:51 +0100359 /* go through reopen to flush pending requests */
Swen Schilligea4a3a62010-12-02 15:16:16 +0100360 zfcp_erp_adapter_reopen(adapter, 0, "fspse_6");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 break;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200362 case FSF_PROT_REEST_QUEUE:
363 /* All ports should be marked as ready to run again */
Swen Schilligedaed852010-09-08 14:40:01 +0200364 zfcp_erp_set_adapter_status(adapter,
365 ZFCP_STATUS_COMMON_RUNNING);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200366 zfcp_erp_adapter_reopen(adapter,
367 ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED |
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100368 ZFCP_STATUS_COMMON_ERP_FAILED,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100369 "fspse_8");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200370 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 default:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200372 dev_err(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200373 "0x%x is not a valid transfer protocol status\n",
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200374 qtcb->prefix.prot_status);
Christof Schmitt339f4f42010-07-16 15:37:43 +0200375 zfcp_qdio_siosl(adapter);
Swen Schilligea4a3a62010-12-02 15:16:16 +0100376 zfcp_erp_adapter_shutdown(adapter, 0, "fspse_9");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200378 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379}
380
381/**
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200382 * zfcp_fsf_req_complete - process completion of a FSF request
383 * @fsf_req: The FSF request that has been completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 *
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200385 * When a request has been completed either from the FCP adapter,
386 * or it has been dismissed due to a queue shutdown, this function
387 * is called to process the completion status and trigger further
388 * events related to the FSF request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 */
Swen Schilligbd63eaf2009-08-18 15:43:13 +0200390static void zfcp_fsf_req_complete(struct zfcp_fsf_req *req)
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200391{
392 if (unlikely(req->fsf_command == FSF_QTCB_UNSOLICITED_STATUS)) {
393 zfcp_fsf_status_read_handler(req);
394 return;
395 }
396
397 del_timer(&req->timer);
398 zfcp_fsf_protstatus_eval(req);
399 zfcp_fsf_fsfstatus_eval(req);
400 req->handler(req);
401
402 if (req->erp_action)
Christof Schmitt287ac012008-07-02 10:56:40 +0200403 zfcp_erp_notify(req->erp_action, 0);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200404
405 if (likely(req->status & ZFCP_STATUS_FSFREQ_CLEANUP))
406 zfcp_fsf_req_free(req);
407 else
Swen Schillig058b8642009-08-18 15:43:14 +0200408 complete(&req->completion);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200409}
410
Swen Schilligbd63eaf2009-08-18 15:43:13 +0200411/**
412 * zfcp_fsf_req_dismiss_all - dismiss all fsf requests
413 * @adapter: pointer to struct zfcp_adapter
414 *
415 * Never ever call this without shutting down the adapter first.
416 * Otherwise the adapter would continue using and corrupting s390 storage.
417 * Included BUG_ON() call to ensure this is done.
418 * ERP is supposed to be the only user of this function.
419 */
420void zfcp_fsf_req_dismiss_all(struct zfcp_adapter *adapter)
421{
422 struct zfcp_fsf_req *req, *tmp;
Swen Schilligbd63eaf2009-08-18 15:43:13 +0200423 LIST_HEAD(remove_queue);
Swen Schilligbd63eaf2009-08-18 15:43:13 +0200424
425 BUG_ON(atomic_read(&adapter->status) & ZFCP_STATUS_ADAPTER_QDIOUP);
Christof Schmittb6bd2fb2010-02-17 11:18:50 +0100426 zfcp_reqlist_move(adapter->req_list, &remove_queue);
Swen Schilligbd63eaf2009-08-18 15:43:13 +0200427
428 list_for_each_entry_safe(req, tmp, &remove_queue, list) {
429 list_del(&req->list);
430 req->status |= ZFCP_STATUS_FSFREQ_DISMISSED;
431 zfcp_fsf_req_complete(req);
432 }
433}
434
Steffen Maierd2201972012-09-04 15:23:29 +0200435#define ZFCP_FSF_PORTSPEED_1GBIT (1 << 0)
436#define ZFCP_FSF_PORTSPEED_2GBIT (1 << 1)
437#define ZFCP_FSF_PORTSPEED_4GBIT (1 << 2)
438#define ZFCP_FSF_PORTSPEED_10GBIT (1 << 3)
439#define ZFCP_FSF_PORTSPEED_8GBIT (1 << 4)
440#define ZFCP_FSF_PORTSPEED_16GBIT (1 << 5)
441#define ZFCP_FSF_PORTSPEED_NOT_NEGOTIATED (1 << 15)
442
443static u32 zfcp_fsf_convert_portspeed(u32 fsf_speed)
444{
445 u32 fdmi_speed = 0;
446 if (fsf_speed & ZFCP_FSF_PORTSPEED_1GBIT)
447 fdmi_speed |= FC_PORTSPEED_1GBIT;
448 if (fsf_speed & ZFCP_FSF_PORTSPEED_2GBIT)
449 fdmi_speed |= FC_PORTSPEED_2GBIT;
450 if (fsf_speed & ZFCP_FSF_PORTSPEED_4GBIT)
451 fdmi_speed |= FC_PORTSPEED_4GBIT;
452 if (fsf_speed & ZFCP_FSF_PORTSPEED_10GBIT)
453 fdmi_speed |= FC_PORTSPEED_10GBIT;
454 if (fsf_speed & ZFCP_FSF_PORTSPEED_8GBIT)
455 fdmi_speed |= FC_PORTSPEED_8GBIT;
456 if (fsf_speed & ZFCP_FSF_PORTSPEED_16GBIT)
457 fdmi_speed |= FC_PORTSPEED_16GBIT;
458 if (fsf_speed & ZFCP_FSF_PORTSPEED_NOT_NEGOTIATED)
459 fdmi_speed |= FC_PORTSPEED_NOT_NEGOTIATED;
460 return fdmi_speed;
461}
462
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200463static int zfcp_fsf_exchange_config_evaluate(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464{
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100465 struct fsf_qtcb_bottom_config *bottom = &req->qtcb->bottom.config;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200466 struct zfcp_adapter *adapter = req->adapter;
Andreas Herrmann13e1e1f2005-09-19 16:56:17 +0200467 struct Scsi_Host *shost = adapter->scsi_host;
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100468 struct fc_els_flogi *nsp, *plogi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100470 /* adjust pointers for missing command code */
471 nsp = (struct fc_els_flogi *) ((u8 *)&bottom->nport_serv_param
472 - sizeof(u32));
473 plogi = (struct fc_els_flogi *) ((u8 *)&bottom->plogi_payload
474 - sizeof(u32));
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200475
476 if (req->data)
477 memcpy(req->data, bottom, sizeof(*bottom));
478
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100479 fc_host_port_name(shost) = nsp->fl_wwpn;
480 fc_host_node_name(shost) = nsp->fl_wwnn;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200481 fc_host_supported_classes(shost) = FC_COS_CLASS2 | FC_COS_CLASS3;
482
Christof Schmittfaf4cd82010-07-16 15:37:36 +0200483 adapter->timer_ticks = bottom->timer_interval & ZFCP_FSF_TIMER_INT_MASK;
Christof Schmitt8d88cf32010-06-21 10:11:33 +0200484 adapter->stat_read_buf_num = max(bottom->status_read_buf_num,
485 (u16)FSF_STATUS_READS_RECOM);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200486
487 if (fc_host_permanent_port_name(shost) == -1)
488 fc_host_permanent_port_name(shost) = fc_host_port_name(shost);
489
Steffen Maier9edf7d72013-04-26 17:34:54 +0200490 zfcp_scsi_set_prot(adapter);
491
492 /* no error return above here, otherwise must fix call chains */
493 /* do not evaluate invalid fields */
494 if (req->qtcb->header.fsf_status == FSF_EXCHANGE_CONFIG_DATA_INCOMPLETE)
495 return 0;
496
497 fc_host_port_id(shost) = ntoh24(bottom->s_id);
498 fc_host_speed(shost) =
499 zfcp_fsf_convert_portspeed(bottom->fc_link_speed);
500
501 adapter->hydra_version = bottom->adapter_type;
502
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200503 switch (bottom->fc_topology) {
504 case FSF_TOPO_P2P:
Christof Schmitt800c0ca2009-11-24 16:54:12 +0100505 adapter->peer_d_id = ntoh24(bottom->peer_d_id);
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100506 adapter->peer_wwpn = plogi->fl_wwpn;
507 adapter->peer_wwnn = plogi->fl_wwnn;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200508 fc_host_port_type(shost) = FC_PORTTYPE_PTP;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200509 break;
510 case FSF_TOPO_FABRIC:
511 fc_host_port_type(shost) = FC_PORTTYPE_NPORT;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200512 break;
513 case FSF_TOPO_AL:
514 fc_host_port_type(shost) = FC_PORTTYPE_NLPORT;
Christof Schmittdceab652009-05-15 13:18:18 +0200515 /* fall through */
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200516 default:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200517 dev_err(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200518 "Unknown or unsupported arbitrated loop "
519 "fibre channel topology detected\n");
Swen Schilligea4a3a62010-12-02 15:16:16 +0100520 zfcp_erp_adapter_shutdown(adapter, 0, "fsece_1");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200521 return -EIO;
522 }
523
524 return 0;
525}
526
527static void zfcp_fsf_exchange_config_data_handler(struct zfcp_fsf_req *req)
528{
529 struct zfcp_adapter *adapter = req->adapter;
530 struct fsf_qtcb *qtcb = req->qtcb;
531 struct fsf_qtcb_bottom_config *bottom = &qtcb->bottom.config;
532 struct Scsi_Host *shost = adapter->scsi_host;
533
534 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
535 return;
536
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 adapter->fsf_lic_version = bottom->lic_version;
Maxim Shchetyninaef4a982005-09-13 21:51:16 +0200538 adapter->adapter_features = bottom->adapter_features;
539 adapter->connection_features = bottom->connection_features;
6f71d9b2005-04-10 23:04:28 -0500540 adapter->peer_wwpn = 0;
541 adapter->peer_wwnn = 0;
542 adapter->peer_d_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200544 switch (qtcb->header.fsf_status) {
545 case FSF_GOOD:
546 if (zfcp_fsf_exchange_config_evaluate(req))
547 return;
Swen Schillig52ef11a2007-08-28 09:31:09 +0200548
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200549 if (bottom->max_qtcb_size < sizeof(struct fsf_qtcb)) {
550 dev_err(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200551 "FCP adapter maximum QTCB size (%d bytes) "
552 "is too small\n",
553 bottom->max_qtcb_size);
Swen Schilligea4a3a62010-12-02 15:16:16 +0100554 zfcp_erp_adapter_shutdown(adapter, 0, "fsecdh1");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200555 return;
556 }
557 atomic_set_mask(ZFCP_STATUS_ADAPTER_XCONFIG_OK,
558 &adapter->status);
559 break;
560 case FSF_EXCHANGE_CONFIG_DATA_INCOMPLETE:
Andreas Herrmann13e1e1f2005-09-19 16:56:17 +0200561 fc_host_node_name(shost) = 0;
562 fc_host_port_name(shost) = 0;
563 fc_host_port_id(shost) = 0;
564 fc_host_speed(shost) = FC_PORTSPEED_UNKNOWN;
Andreas Herrmannad757cd2006-01-13 02:26:11 +0100565 fc_host_port_type(shost) = FC_PORTTYPE_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 adapter->hydra_version = 0;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200567
Daniel Hanself76ccaa2013-04-26 17:32:14 +0200568 /* avoids adapter shutdown to be able to recognize
569 * events such as LINK UP */
570 atomic_set_mask(ZFCP_STATUS_ADAPTER_XCONFIG_OK,
571 &adapter->status);
Swen Schilligedaed852010-09-08 14:40:01 +0200572 zfcp_fsf_link_down_info_eval(req,
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200573 &qtcb->header.fsf_status_qual.link_down_info);
Steffen Maier9edf7d72013-04-26 17:34:54 +0200574 if (zfcp_fsf_exchange_config_evaluate(req))
575 return;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200576 break;
577 default:
Swen Schilligea4a3a62010-12-02 15:16:16 +0100578 zfcp_erp_adapter_shutdown(adapter, 0, "fsecdh3");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200579 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 }
581
Maxim Shchetyninaef4a982005-09-13 21:51:16 +0200582 if (adapter->adapter_features & FSF_FEATURE_HBAAPI_MANAGEMENT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 adapter->hardware_version = bottom->hardware_version;
Andreas Herrmann13e1e1f2005-09-19 16:56:17 +0200584 memcpy(fc_host_serial_number(shost), bottom->serial_number,
585 min(FC_SERIAL_NUMBER_SIZE, 17));
586 EBCASC(fc_host_serial_number(shost),
587 min(FC_SERIAL_NUMBER_SIZE, 17));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 }
589
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200590 if (FSF_QTCB_CURRENT_VERSION < bottom->low_qtcb_version) {
Christof Schmitt553448f2008-06-10 18:20:58 +0200591 dev_err(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200592 "The FCP adapter only supports newer "
593 "control block versions\n");
Swen Schilligea4a3a62010-12-02 15:16:16 +0100594 zfcp_erp_adapter_shutdown(adapter, 0, "fsecdh4");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200595 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200597 if (FSF_QTCB_CURRENT_VERSION > bottom->high_qtcb_version) {
Christof Schmitt553448f2008-06-10 18:20:58 +0200598 dev_err(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200599 "The FCP adapter only supports older "
600 "control block versions\n");
Swen Schilligea4a3a62010-12-02 15:16:16 +0100601 zfcp_erp_adapter_shutdown(adapter, 0, "fsecdh5");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603}
604
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200605static void zfcp_fsf_exchange_port_evaluate(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606{
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200607 struct zfcp_adapter *adapter = req->adapter;
608 struct fsf_qtcb_bottom_port *bottom = &req->qtcb->bottom.port;
609 struct Scsi_Host *shost = adapter->scsi_host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200611 if (req->data)
612 memcpy(req->data, bottom, sizeof(*bottom));
Andreas Herrmann2f8f3ed2006-02-11 01:41:50 +0100613
Christof Schmitt02829852009-03-02 13:09:06 +0100614 if (adapter->connection_features & FSF_FEATURE_NPIV_MODE) {
Andreas Herrmann2f8f3ed2006-02-11 01:41:50 +0100615 fc_host_permanent_port_name(shost) = bottom->wwpn;
Christof Schmitt02829852009-03-02 13:09:06 +0100616 fc_host_port_type(shost) = FC_PORTTYPE_NPIV;
617 } else
Andreas Herrmann2f8f3ed2006-02-11 01:41:50 +0100618 fc_host_permanent_port_name(shost) = fc_host_port_name(shost);
619 fc_host_maxframe_size(shost) = bottom->maximum_frame_size;
Steffen Maierd2201972012-09-04 15:23:29 +0200620 fc_host_supported_speeds(shost) =
621 zfcp_fsf_convert_portspeed(bottom->supported_speed);
Christof Schmitt2d8e62b2010-02-17 11:18:58 +0100622 memcpy(fc_host_supported_fc4s(shost), bottom->supported_fc4_types,
623 FC_FC4_LIST_SIZE);
624 memcpy(fc_host_active_fc4s(shost), bottom->active_fc4_types,
625 FC_FC4_LIST_SIZE);
Andreas Herrmann2f8f3ed2006-02-11 01:41:50 +0100626}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200628static void zfcp_fsf_exchange_port_data_handler(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629{
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200630 struct fsf_qtcb *qtcb = req->qtcb;
Andreas Herrmann2f8f3ed2006-02-11 01:41:50 +0100631
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200632 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 return;
634
Maxim Shchetyninaef4a982005-09-13 21:51:16 +0200635 switch (qtcb->header.fsf_status) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200636 case FSF_GOOD:
637 zfcp_fsf_exchange_port_evaluate(req);
Maxim Shchetyninaef4a982005-09-13 21:51:16 +0200638 break;
Maxim Shchetyninaef4a982005-09-13 21:51:16 +0200639 case FSF_EXCHANGE_CONFIG_DATA_INCOMPLETE:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200640 zfcp_fsf_exchange_port_evaluate(req);
Swen Schilligedaed852010-09-08 14:40:01 +0200641 zfcp_fsf_link_down_info_eval(req,
Maxim Shchetyninaef4a982005-09-13 21:51:16 +0200642 &qtcb->header.fsf_status_qual.link_down_info);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200643 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 }
645}
646
Swen Schilliga4623c42009-08-18 15:43:15 +0200647static struct zfcp_fsf_req *zfcp_fsf_alloc(mempool_t *pool)
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200648{
649 struct zfcp_fsf_req *req;
Swen Schilliga4623c42009-08-18 15:43:15 +0200650
651 if (likely(pool))
652 req = mempool_alloc(pool, GFP_ATOMIC);
653 else
654 req = kmalloc(sizeof(*req), GFP_ATOMIC);
655
656 if (unlikely(!req))
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200657 return NULL;
Swen Schilliga4623c42009-08-18 15:43:15 +0200658
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200659 memset(req, 0, sizeof(*req));
Christof Schmitt88f2a972008-11-04 16:35:07 +0100660 req->pool = pool;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200661 return req;
662}
663
Swen Schilliga4623c42009-08-18 15:43:15 +0200664static struct fsf_qtcb *zfcp_qtcb_alloc(mempool_t *pool)
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200665{
Swen Schilliga4623c42009-08-18 15:43:15 +0200666 struct fsf_qtcb *qtcb;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200667
668 if (likely(pool))
669 qtcb = mempool_alloc(pool, GFP_ATOMIC);
670 else
Christof Schmitt259afe22011-02-22 19:54:44 +0100671 qtcb = kmem_cache_alloc(zfcp_fsf_qtcb_cache, GFP_ATOMIC);
Swen Schilliga4623c42009-08-18 15:43:15 +0200672
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200673 if (unlikely(!qtcb))
674 return NULL;
675
676 memset(qtcb, 0, sizeof(*qtcb));
Swen Schilliga4623c42009-08-18 15:43:15 +0200677 return qtcb;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200678}
679
Swen Schillig564e1c82009-08-18 15:43:19 +0200680static struct zfcp_fsf_req *zfcp_fsf_req_create(struct zfcp_qdio *qdio,
Jan Glauber3ec908782011-06-06 14:14:40 +0200681 u32 fsf_cmd, u8 sbtype,
Christof Schmitt1674b402010-04-30 18:09:34 +0200682 mempool_t *pool)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683{
Swen Schillig564e1c82009-08-18 15:43:19 +0200684 struct zfcp_adapter *adapter = qdio->adapter;
Swen Schilliga4623c42009-08-18 15:43:15 +0200685 struct zfcp_fsf_req *req = zfcp_fsf_alloc(pool);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200686
687 if (unlikely(!req))
Christof Schmitt1e9b1642009-07-13 15:06:04 +0200688 return ERR_PTR(-ENOMEM);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200689
690 if (adapter->req_no == 0)
691 adapter->req_no++;
692
693 INIT_LIST_HEAD(&req->list);
694 init_timer(&req->timer);
Swen Schillig058b8642009-08-18 15:43:14 +0200695 init_completion(&req->completion);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200696
697 req->adapter = adapter;
698 req->fsf_command = fsf_cmd;
Christof Schmitt52bfb552009-03-02 13:08:58 +0100699 req->req_id = adapter->req_no;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200700
Swen Schilliga4623c42009-08-18 15:43:15 +0200701 if (likely(fsf_cmd != FSF_QTCB_UNSOLICITED_STATUS)) {
702 if (likely(pool))
703 req->qtcb = zfcp_qtcb_alloc(adapter->pool.qtcb_pool);
704 else
705 req->qtcb = zfcp_qtcb_alloc(NULL);
706
707 if (unlikely(!req->qtcb)) {
708 zfcp_fsf_req_free(req);
709 return ERR_PTR(-ENOMEM);
710 }
711
Christof Schmitt5bdecd22010-02-17 11:18:55 +0100712 req->seq_no = adapter->fsf_req_seq_no;
Swen Schillig564e1c82009-08-18 15:43:19 +0200713 req->qtcb->prefix.req_seq_no = adapter->fsf_req_seq_no;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200714 req->qtcb->prefix.req_id = req->req_id;
715 req->qtcb->prefix.ulp_info = 26;
716 req->qtcb->prefix.qtcb_type = fsf_qtcb_type[req->fsf_command];
717 req->qtcb->prefix.qtcb_version = FSF_QTCB_CURRENT_VERSION;
718 req->qtcb->header.req_handle = req->req_id;
719 req->qtcb->header.fsf_command = req->fsf_command;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200720 }
721
Christof Schmitt1674b402010-04-30 18:09:34 +0200722 zfcp_qdio_req_init(adapter->qdio, &req->qdio_req, req->req_id, sbtype,
723 req->qtcb, sizeof(struct fsf_qtcb));
724
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200725 return req;
726}
727
728static int zfcp_fsf_req_send(struct zfcp_fsf_req *req)
729{
730 struct zfcp_adapter *adapter = req->adapter;
Swen Schillig564e1c82009-08-18 15:43:19 +0200731 struct zfcp_qdio *qdio = adapter->qdio;
Christof Schmittb6bd2fb2010-02-17 11:18:50 +0100732 int with_qtcb = (req->qtcb != NULL);
Christof Schmitte60a6d62010-02-17 11:18:49 +0100733 int req_id = req->req_id;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200734
Christof Schmittb6bd2fb2010-02-17 11:18:50 +0100735 zfcp_reqlist_add(adapter->req_list, req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200736
Swen Schillig706eca42010-07-16 15:37:38 +0200737 req->qdio_req.qdio_outb_usage = atomic_read(&qdio->req_q_free);
Heiko Carstens1aae0562013-01-30 09:49:40 +0100738 req->issued = get_tod_clock();
Christof Schmitt34c2b712010-02-17 11:18:59 +0100739 if (zfcp_qdio_send(qdio, &req->qdio_req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200740 del_timer(&req->timer);
Christof Schmitt37651382008-11-04 16:35:08 +0100741 /* lookup request again, list might have changed */
Christof Schmittb6bd2fb2010-02-17 11:18:50 +0100742 zfcp_reqlist_find_rm(adapter->req_list, req_id);
Swen Schilligea4a3a62010-12-02 15:16:16 +0100743 zfcp_erp_adapter_reopen(adapter, 0, "fsrs__1");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200744 return -EIO;
745 }
746
747 /* Don't increase for unsolicited status */
Martin Petermann135ea132009-04-17 15:08:01 +0200748 if (with_qtcb)
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200749 adapter->fsf_req_seq_no++;
Christof Schmitt52bfb552009-03-02 13:08:58 +0100750 adapter->req_no++;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200751
752 return 0;
753}
754
755/**
756 * zfcp_fsf_status_read - send status read request
757 * @adapter: pointer to struct zfcp_adapter
758 * @req_flags: request flags
759 * Returns: 0 on success, ERROR otherwise
760 */
Swen Schillig564e1c82009-08-18 15:43:19 +0200761int zfcp_fsf_status_read(struct zfcp_qdio *qdio)
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200762{
Swen Schillig564e1c82009-08-18 15:43:19 +0200763 struct zfcp_adapter *adapter = qdio->adapter;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200764 struct zfcp_fsf_req *req;
765 struct fsf_status_read_buffer *sr_buf;
Christof Schmittc7b279a2011-02-22 19:54:40 +0100766 struct page *page;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200767 int retval = -EIO;
768
Christof Schmitt44a24cb2010-09-08 14:39:57 +0200769 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +0200770 if (zfcp_qdio_sbal_get(qdio))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
Martin Peschke75a14082013-08-22 17:49:31 +0200773 req = zfcp_fsf_req_create(qdio, FSF_QTCB_UNSOLICITED_STATUS,
774 SBAL_SFLAGS0_TYPE_STATUS,
Swen Schilliga4623c42009-08-18 15:43:15 +0200775 adapter->pool.status_read_req);
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +0200776 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200777 retval = PTR_ERR(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 goto out;
779 }
780
Christof Schmittc7b279a2011-02-22 19:54:40 +0100781 page = mempool_alloc(adapter->pool.sr_data, GFP_ATOMIC);
782 if (!page) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200783 retval = -ENOMEM;
784 goto failed_buf;
785 }
Christof Schmittc7b279a2011-02-22 19:54:40 +0100786 sr_buf = page_address(page);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200787 memset(sr_buf, 0, sizeof(*sr_buf));
788 req->data = sr_buf;
Christof Schmitt1674b402010-04-30 18:09:34 +0200789
790 zfcp_qdio_fill_next(qdio, &req->qdio_req, sr_buf, sizeof(*sr_buf));
791 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200792
793 retval = zfcp_fsf_req_send(req);
794 if (retval)
795 goto failed_req_send;
796
797 goto out;
798
799failed_req_send:
Swen Schilliga54ca0f2010-12-02 15:16:14 +0100800 req->data = NULL;
Christof Schmittc7b279a2011-02-22 19:54:40 +0100801 mempool_free(virt_to_page(sr_buf), adapter->pool.sr_data);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200802failed_buf:
Swen Schilliga54ca0f2010-12-02 15:16:14 +0100803 zfcp_dbf_hba_fsf_uss("fssr__1", req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200804 zfcp_fsf_req_free(req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200805out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +0200806 spin_unlock_irq(&qdio->req_q_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 return retval;
808}
809
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200810static void zfcp_fsf_abort_fcp_command_handler(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811{
Christof Schmittb62a8d92010-09-08 14:39:55 +0200812 struct scsi_device *sdev = req->data;
Martin Peschked436de82012-09-04 15:23:36 +0200813 struct zfcp_scsi_dev *zfcp_sdev;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200814 union fsf_status_qual *fsq = &req->qtcb->header.fsf_status_qual;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200816 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
817 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Martin Peschked436de82012-09-04 15:23:36 +0200819 zfcp_sdev = sdev_to_zfcp(sdev);
820
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200821 switch (req->qtcb->header.fsf_status) {
822 case FSF_PORT_HANDLE_NOT_VALID:
823 if (fsq->word[0] == fsq->word[1]) {
Christof Schmittb62a8d92010-09-08 14:39:55 +0200824 zfcp_erp_adapter_reopen(zfcp_sdev->port->adapter, 0,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100825 "fsafch1");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200826 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
827 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 break;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200829 case FSF_LUN_HANDLE_NOT_VALID:
830 if (fsq->word[0] == fsq->word[1]) {
Swen Schilligea4a3a62010-12-02 15:16:16 +0100831 zfcp_erp_port_reopen(zfcp_sdev->port, 0, "fsafch2");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200832 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
833 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 break;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200835 case FSF_FCP_COMMAND_DOES_NOT_EXIST:
836 req->status |= ZFCP_STATUS_FSFREQ_ABORTNOTNEEDED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 break;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200838 case FSF_PORT_BOXED:
Swen Schilligedaed852010-09-08 14:40:01 +0200839 zfcp_erp_set_port_status(zfcp_sdev->port,
840 ZFCP_STATUS_COMMON_ACCESS_BOXED);
841 zfcp_erp_port_reopen(zfcp_sdev->port,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100842 ZFCP_STATUS_COMMON_ERP_FAILED, "fsafch3");
Christof Schmitt4c571c62009-11-24 16:54:15 +0100843 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200844 break;
845 case FSF_LUN_BOXED:
Swen Schilligedaed852010-09-08 14:40:01 +0200846 zfcp_erp_set_lun_status(sdev, ZFCP_STATUS_COMMON_ACCESS_BOXED);
847 zfcp_erp_lun_reopen(sdev, ZFCP_STATUS_COMMON_ERP_FAILED,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100848 "fsafch4");
Christof Schmitt4c571c62009-11-24 16:54:15 +0100849 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200850 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 case FSF_ADAPTER_STATUS_AVAILABLE:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200852 switch (fsq->word[0]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
Christof Schmittb62a8d92010-09-08 14:39:55 +0200854 zfcp_fc_test_link(zfcp_sdev->port);
Christof Schmittdceab652009-05-15 13:18:18 +0200855 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200857 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 break;
859 }
860 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 case FSF_GOOD:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200862 req->status |= ZFCP_STATUS_FSFREQ_ABORTSUCCEEDED;
863 break;
864 }
865}
866
867/**
Christof Schmittb62a8d92010-09-08 14:39:55 +0200868 * zfcp_fsf_abort_fcp_cmnd - abort running SCSI command
869 * @scmnd: The SCSI command to abort
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200870 * Returns: pointer to struct zfcp_fsf_req
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200871 */
872
Christof Schmittb62a8d92010-09-08 14:39:55 +0200873struct zfcp_fsf_req *zfcp_fsf_abort_fcp_cmnd(struct scsi_cmnd *scmnd)
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200874{
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200875 struct zfcp_fsf_req *req = NULL;
Christof Schmittb62a8d92010-09-08 14:39:55 +0200876 struct scsi_device *sdev = scmnd->device;
877 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
878 struct zfcp_qdio *qdio = zfcp_sdev->port->adapter->qdio;
879 unsigned long old_req_id = (unsigned long) scmnd->host_scribble;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200880
Christof Schmitt44a24cb2010-09-08 14:39:57 +0200881 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +0200882 if (zfcp_qdio_sbal_get(qdio))
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200883 goto out;
Swen Schillig564e1c82009-08-18 15:43:19 +0200884 req = zfcp_fsf_req_create(qdio, FSF_QTCB_ABORT_FCP_CMND,
Jan Glauber3ec908782011-06-06 14:14:40 +0200885 SBAL_SFLAGS0_TYPE_READ,
Swen Schillig564e1c82009-08-18 15:43:19 +0200886 qdio->adapter->pool.scsi_abort);
Swen Schillig633528c2008-11-26 18:07:37 +0100887 if (IS_ERR(req)) {
888 req = NULL;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200889 goto out;
Swen Schillig633528c2008-11-26 18:07:37 +0100890 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200891
Christof Schmittb62a8d92010-09-08 14:39:55 +0200892 if (unlikely(!(atomic_read(&zfcp_sdev->status) &
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200893 ZFCP_STATUS_COMMON_UNBLOCKED)))
894 goto out_error_free;
895
Christof Schmitt1674b402010-04-30 18:09:34 +0200896 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200897
Swen Schillig6fbf25e2010-11-17 14:23:41 +0100898 req->data = sdev;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200899 req->handler = zfcp_fsf_abort_fcp_command_handler;
Christof Schmittb62a8d92010-09-08 14:39:55 +0200900 req->qtcb->header.lun_handle = zfcp_sdev->lun_handle;
901 req->qtcb->header.port_handle = zfcp_sdev->port->handle;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200902 req->qtcb->bottom.support.req_handle = (u64) old_req_id;
903
904 zfcp_fsf_start_timer(req, ZFCP_SCSI_ER_TIMEOUT);
905 if (!zfcp_fsf_req_send(req))
906 goto out;
907
908out_error_free:
909 zfcp_fsf_req_free(req);
910 req = NULL;
911out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +0200912 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200913 return req;
914}
915
916static void zfcp_fsf_send_ct_handler(struct zfcp_fsf_req *req)
917{
918 struct zfcp_adapter *adapter = req->adapter;
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100919 struct zfcp_fsf_ct_els *ct = req->data;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200920 struct fsf_qtcb_header *header = &req->qtcb->header;
921
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100922 ct->status = -EINVAL;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200923
924 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
925 goto skip_fsfstatus;
926
927 switch (header->fsf_status) {
928 case FSF_GOOD:
Steffen Maier01009982012-09-04 15:23:30 +0200929 zfcp_dbf_san_res("fsscth2", req);
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100930 ct->status = 0;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200931 break;
932 case FSF_SERVICE_CLASS_NOT_SUPPORTED:
933 zfcp_fsf_class_not_supp(req);
934 break;
935 case FSF_ADAPTER_STATUS_AVAILABLE:
936 switch (header->fsf_status_qual.word[0]){
937 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200938 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
939 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
940 break;
941 }
942 break;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200943 case FSF_PORT_BOXED:
Christof Schmitt4c571c62009-11-24 16:54:15 +0100944 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200945 break;
946 case FSF_PORT_HANDLE_NOT_VALID:
Swen Schilligea4a3a62010-12-02 15:16:16 +0100947 zfcp_erp_adapter_reopen(adapter, 0, "fsscth1");
Christof Schmittdceab652009-05-15 13:18:18 +0200948 /* fall through */
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200949 case FSF_GENERIC_COMMAND_REJECTED:
950 case FSF_PAYLOAD_SIZE_MISMATCH:
951 case FSF_REQUEST_SIZE_TOO_LARGE:
952 case FSF_RESPONSE_SIZE_TOO_LARGE:
953 case FSF_SBAL_MISMATCH:
954 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
955 break;
956 }
957
958skip_fsfstatus:
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100959 if (ct->handler)
960 ct->handler(ct->handler_data);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200961}
962
Christof Schmitt1674b402010-04-30 18:09:34 +0200963static void zfcp_fsf_setup_ct_els_unchained(struct zfcp_qdio *qdio,
964 struct zfcp_qdio_req *q_req,
Christof Schmitt426f6052009-07-13 15:06:06 +0200965 struct scatterlist *sg_req,
966 struct scatterlist *sg_resp)
967{
Christof Schmitt1674b402010-04-30 18:09:34 +0200968 zfcp_qdio_fill_next(qdio, q_req, sg_virt(sg_req), sg_req->length);
969 zfcp_qdio_fill_next(qdio, q_req, sg_virt(sg_resp), sg_resp->length);
970 zfcp_qdio_set_sbale_last(qdio, q_req);
Christof Schmitt426f6052009-07-13 15:06:06 +0200971}
972
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100973static int zfcp_fsf_setup_ct_els_sbals(struct zfcp_fsf_req *req,
974 struct scatterlist *sg_req,
Swen Schillig01b04752010-07-16 15:37:37 +0200975 struct scatterlist *sg_resp)
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200976{
Swen Schillig42428f72009-08-18 15:43:18 +0200977 struct zfcp_adapter *adapter = req->adapter;
Swen Schillig86a96682011-08-15 14:40:32 +0200978 struct zfcp_qdio *qdio = adapter->qdio;
979 struct fsf_qtcb *qtcb = req->qtcb;
Swen Schillig42428f72009-08-18 15:43:18 +0200980 u32 feat = adapter->adapter_features;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200981
Swen Schillig86a96682011-08-15 14:40:32 +0200982 if (zfcp_adapter_multi_buffer_active(adapter)) {
983 if (zfcp_qdio_sbals_from_sg(qdio, &req->qdio_req, sg_req))
984 return -EIO;
985 if (zfcp_qdio_sbals_from_sg(qdio, &req->qdio_req, sg_resp))
986 return -EIO;
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100987
Swen Schillig86a96682011-08-15 14:40:32 +0200988 zfcp_qdio_set_data_div(qdio, &req->qdio_req,
989 zfcp_qdio_sbale_count(sg_req));
990 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
991 zfcp_qdio_set_scount(qdio, &req->qdio_req);
Christof Schmitt426f6052009-07-13 15:06:06 +0200992 return 0;
993 }
994
995 /* use single, unchained SBAL if it can hold the request */
Swen Schillig30b67772010-06-21 10:11:31 +0200996 if (zfcp_qdio_sg_one_sbale(sg_req) && zfcp_qdio_sg_one_sbale(sg_resp)) {
Swen Schillig86a96682011-08-15 14:40:32 +0200997 zfcp_fsf_setup_ct_els_unchained(qdio, &req->qdio_req,
Christof Schmitt1674b402010-04-30 18:09:34 +0200998 sg_req, sg_resp);
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100999 return 0;
1000 }
1001
Swen Schillig86a96682011-08-15 14:40:32 +02001002 if (!(feat & FSF_FEATURE_ELS_CT_CHAINED_SBALS))
1003 return -EOPNOTSUPP;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001004
Swen Schillig86a96682011-08-15 14:40:32 +02001005 if (zfcp_qdio_sbals_from_sg(qdio, &req->qdio_req, sg_req))
Christof Schmitt9072df42009-07-13 15:06:07 +02001006 return -EIO;
Swen Schillig86a96682011-08-15 14:40:32 +02001007
1008 qtcb->bottom.support.req_buf_length = zfcp_qdio_real_bytes(sg_req);
1009
1010 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
1011 zfcp_qdio_skip_to_last_sbale(qdio, &req->qdio_req);
1012
1013 if (zfcp_qdio_sbals_from_sg(qdio, &req->qdio_req, sg_resp))
1014 return -EIO;
1015
1016 qtcb->bottom.support.resp_buf_length = zfcp_qdio_real_bytes(sg_resp);
1017
1018 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Christof Schmitt98fc4d52009-08-18 15:43:26 +02001019
Christof Schmittb1a58982009-09-24 10:23:21 +02001020 return 0;
1021}
1022
1023static int zfcp_fsf_setup_ct_els(struct zfcp_fsf_req *req,
1024 struct scatterlist *sg_req,
1025 struct scatterlist *sg_resp,
Swen Schillig01b04752010-07-16 15:37:37 +02001026 unsigned int timeout)
Christof Schmittb1a58982009-09-24 10:23:21 +02001027{
1028 int ret;
1029
Swen Schillig01b04752010-07-16 15:37:37 +02001030 ret = zfcp_fsf_setup_ct_els_sbals(req, sg_req, sg_resp);
Christof Schmittb1a58982009-09-24 10:23:21 +02001031 if (ret)
1032 return ret;
1033
Christof Schmitt98fc4d52009-08-18 15:43:26 +02001034 /* common settings for ct/gs and els requests */
Swen Schillig51375ee2010-01-14 17:19:02 +01001035 if (timeout > 255)
1036 timeout = 255; /* max value accepted by hardware */
Christof Schmitt98fc4d52009-08-18 15:43:26 +02001037 req->qtcb->bottom.support.service_class = FSF_CLASS_3;
Swen Schillig51375ee2010-01-14 17:19:02 +01001038 req->qtcb->bottom.support.timeout = timeout;
1039 zfcp_fsf_start_timer(req, (timeout + 10) * HZ);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001040
1041 return 0;
1042}
1043
1044/**
1045 * zfcp_fsf_send_ct - initiate a Generic Service request (FC-GS)
1046 * @ct: pointer to struct zfcp_send_ct with data for request
1047 * @pool: if non-null this mempool is used to allocate struct zfcp_fsf_req
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001048 */
Christof Schmitt7c7dc192009-11-24 16:54:13 +01001049int zfcp_fsf_send_ct(struct zfcp_fc_wka_port *wka_port,
Swen Schillig51375ee2010-01-14 17:19:02 +01001050 struct zfcp_fsf_ct_els *ct, mempool_t *pool,
1051 unsigned int timeout)
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001052{
Swen Schillig564e1c82009-08-18 15:43:19 +02001053 struct zfcp_qdio *qdio = wka_port->adapter->qdio;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001054 struct zfcp_fsf_req *req;
1055 int ret = -EIO;
1056
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001057 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001058 if (zfcp_qdio_sbal_get(qdio))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001059 goto out;
1060
Christof Schmitt1674b402010-04-30 18:09:34 +02001061 req = zfcp_fsf_req_create(qdio, FSF_QTCB_SEND_GENERIC,
Jan Glauber3ec908782011-06-06 14:14:40 +02001062 SBAL_SFLAGS0_TYPE_WRITE_READ, pool);
Swen Schillig09a46c62009-08-18 15:43:16 +02001063
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001064 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001065 ret = PTR_ERR(req);
1066 goto out;
1067 }
1068
Swen Schillig09a46c62009-08-18 15:43:16 +02001069 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Swen Schillig01b04752010-07-16 15:37:37 +02001070 ret = zfcp_fsf_setup_ct_els(req, ct->req, ct->resp, timeout);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001071 if (ret)
1072 goto failed_send;
1073
1074 req->handler = zfcp_fsf_send_ct_handler;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001075 req->qtcb->header.port_handle = wka_port->handle;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001076 req->data = ct;
1077
Swen Schillig2c55b752010-12-02 15:16:13 +01001078 zfcp_dbf_san_req("fssct_1", req, wka_port->d_id);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001079
1080 ret = zfcp_fsf_req_send(req);
1081 if (ret)
1082 goto failed_send;
1083
1084 goto out;
1085
1086failed_send:
1087 zfcp_fsf_req_free(req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001088out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001089 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001090 return ret;
1091}
1092
1093static void zfcp_fsf_send_els_handler(struct zfcp_fsf_req *req)
1094{
Christof Schmitt7c7dc192009-11-24 16:54:13 +01001095 struct zfcp_fsf_ct_els *send_els = req->data;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001096 struct fsf_qtcb_header *header = &req->qtcb->header;
1097
1098 send_els->status = -EINVAL;
1099
1100 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
1101 goto skip_fsfstatus;
1102
1103 switch (header->fsf_status) {
1104 case FSF_GOOD:
Swen Schillig2c55b752010-12-02 15:16:13 +01001105 zfcp_dbf_san_res("fsselh1", req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001106 send_els->status = 0;
1107 break;
1108 case FSF_SERVICE_CLASS_NOT_SUPPORTED:
1109 zfcp_fsf_class_not_supp(req);
1110 break;
1111 case FSF_ADAPTER_STATUS_AVAILABLE:
1112 switch (header->fsf_status_qual.word[0]){
1113 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001114 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
1115 case FSF_SQ_RETRY_IF_POSSIBLE:
1116 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1117 break;
1118 }
1119 break;
1120 case FSF_ELS_COMMAND_REJECTED:
1121 case FSF_PAYLOAD_SIZE_MISMATCH:
1122 case FSF_REQUEST_SIZE_TOO_LARGE:
1123 case FSF_RESPONSE_SIZE_TOO_LARGE:
1124 break;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001125 case FSF_SBAL_MISMATCH:
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001126 /* should never occur, avoided in zfcp_fsf_send_els */
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001127 /* fall through */
1128 default:
1129 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1130 break;
1131 }
1132skip_fsfstatus:
1133 if (send_els->handler)
1134 send_els->handler(send_els->handler_data);
1135}
1136
1137/**
1138 * zfcp_fsf_send_els - initiate an ELS command (FC-FS)
1139 * @els: pointer to struct zfcp_send_els with data for the command
1140 */
Christof Schmitt7c7dc192009-11-24 16:54:13 +01001141int zfcp_fsf_send_els(struct zfcp_adapter *adapter, u32 d_id,
Swen Schillig51375ee2010-01-14 17:19:02 +01001142 struct zfcp_fsf_ct_els *els, unsigned int timeout)
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001143{
1144 struct zfcp_fsf_req *req;
Christof Schmitt7c7dc192009-11-24 16:54:13 +01001145 struct zfcp_qdio *qdio = adapter->qdio;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001146 int ret = -EIO;
1147
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001148 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001149 if (zfcp_qdio_sbal_get(qdio))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001150 goto out;
Swen Schillig09a46c62009-08-18 15:43:16 +02001151
Christof Schmitt1674b402010-04-30 18:09:34 +02001152 req = zfcp_fsf_req_create(qdio, FSF_QTCB_SEND_ELS,
Jan Glauber3ec908782011-06-06 14:14:40 +02001153 SBAL_SFLAGS0_TYPE_WRITE_READ, NULL);
Swen Schillig09a46c62009-08-18 15:43:16 +02001154
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001155 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001156 ret = PTR_ERR(req);
1157 goto out;
1158 }
1159
Swen Schillig09a46c62009-08-18 15:43:16 +02001160 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Swen Schillig01b04752010-07-16 15:37:37 +02001161
Swen Schillig86a96682011-08-15 14:40:32 +02001162 if (!zfcp_adapter_multi_buffer_active(adapter))
1163 zfcp_qdio_sbal_limit(qdio, &req->qdio_req, 2);
Swen Schillig01b04752010-07-16 15:37:37 +02001164
1165 ret = zfcp_fsf_setup_ct_els(req, els->req, els->resp, timeout);
Swen Schillig44cc76f2008-10-01 12:42:16 +02001166
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001167 if (ret)
1168 goto failed_send;
1169
Christof Schmitt7c7dc192009-11-24 16:54:13 +01001170 hton24(req->qtcb->bottom.support.d_id, d_id);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001171 req->handler = zfcp_fsf_send_els_handler;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001172 req->data = els;
1173
Swen Schillig2c55b752010-12-02 15:16:13 +01001174 zfcp_dbf_san_req("fssels1", req, d_id);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001175
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001176 ret = zfcp_fsf_req_send(req);
1177 if (ret)
1178 goto failed_send;
1179
1180 goto out;
1181
1182failed_send:
1183 zfcp_fsf_req_free(req);
1184out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001185 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001186 return ret;
1187}
1188
1189int zfcp_fsf_exchange_config_data(struct zfcp_erp_action *erp_action)
1190{
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001191 struct zfcp_fsf_req *req;
Swen Schillig564e1c82009-08-18 15:43:19 +02001192 struct zfcp_qdio *qdio = erp_action->adapter->qdio;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001193 int retval = -EIO;
1194
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001195 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001196 if (zfcp_qdio_sbal_get(qdio))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001197 goto out;
Swen Schillig09a46c62009-08-18 15:43:16 +02001198
Swen Schillig564e1c82009-08-18 15:43:19 +02001199 req = zfcp_fsf_req_create(qdio, FSF_QTCB_EXCHANGE_CONFIG_DATA,
Jan Glauber3ec908782011-06-06 14:14:40 +02001200 SBAL_SFLAGS0_TYPE_READ,
Swen Schillig564e1c82009-08-18 15:43:19 +02001201 qdio->adapter->pool.erp_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02001202
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001203 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001204 retval = PTR_ERR(req);
1205 goto out;
1206 }
1207
Swen Schillig09a46c62009-08-18 15:43:16 +02001208 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Christof Schmitt1674b402010-04-30 18:09:34 +02001209 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001210
1211 req->qtcb->bottom.config.feature_selection =
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001212 FSF_FEATURE_NOTIFICATION_LOST |
1213 FSF_FEATURE_UPDATE_ALERT;
1214 req->erp_action = erp_action;
1215 req->handler = zfcp_fsf_exchange_config_data_handler;
Christof Schmitte60a6d62010-02-17 11:18:49 +01001216 erp_action->fsf_req_id = req->req_id;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001217
Christof Schmitt287ac012008-07-02 10:56:40 +02001218 zfcp_fsf_start_erp_timer(req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001219 retval = zfcp_fsf_req_send(req);
1220 if (retval) {
1221 zfcp_fsf_req_free(req);
Christof Schmitte60a6d62010-02-17 11:18:49 +01001222 erp_action->fsf_req_id = 0;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001223 }
1224out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001225 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001226 return retval;
1227}
1228
Swen Schillig564e1c82009-08-18 15:43:19 +02001229int zfcp_fsf_exchange_config_data_sync(struct zfcp_qdio *qdio,
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001230 struct fsf_qtcb_bottom_config *data)
1231{
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001232 struct zfcp_fsf_req *req = NULL;
1233 int retval = -EIO;
1234
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001235 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001236 if (zfcp_qdio_sbal_get(qdio))
Christof Schmittada81b72009-04-17 15:08:03 +02001237 goto out_unlock;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001238
Christof Schmitt1674b402010-04-30 18:09:34 +02001239 req = zfcp_fsf_req_create(qdio, FSF_QTCB_EXCHANGE_CONFIG_DATA,
Jan Glauber3ec908782011-06-06 14:14:40 +02001240 SBAL_SFLAGS0_TYPE_READ, NULL);
Swen Schillig09a46c62009-08-18 15:43:16 +02001241
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001242 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001243 retval = PTR_ERR(req);
Christof Schmittada81b72009-04-17 15:08:03 +02001244 goto out_unlock;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001245 }
1246
Christof Schmitt1674b402010-04-30 18:09:34 +02001247 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001248 req->handler = zfcp_fsf_exchange_config_data_handler;
1249
1250 req->qtcb->bottom.config.feature_selection =
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001251 FSF_FEATURE_NOTIFICATION_LOST |
1252 FSF_FEATURE_UPDATE_ALERT;
1253
1254 if (data)
1255 req->data = data;
1256
1257 zfcp_fsf_start_timer(req, ZFCP_FSF_REQUEST_TIMEOUT);
1258 retval = zfcp_fsf_req_send(req);
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001259 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001260 if (!retval)
Swen Schillig058b8642009-08-18 15:43:14 +02001261 wait_for_completion(&req->completion);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001262
1263 zfcp_fsf_req_free(req);
Christof Schmittada81b72009-04-17 15:08:03 +02001264 return retval;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001265
Christof Schmittada81b72009-04-17 15:08:03 +02001266out_unlock:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001267 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001268 return retval;
1269}
1270
1271/**
1272 * zfcp_fsf_exchange_port_data - request information about local port
1273 * @erp_action: ERP action for the adapter for which port data is requested
1274 * Returns: 0 on success, error otherwise
1275 */
1276int zfcp_fsf_exchange_port_data(struct zfcp_erp_action *erp_action)
1277{
Swen Schillig564e1c82009-08-18 15:43:19 +02001278 struct zfcp_qdio *qdio = erp_action->adapter->qdio;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001279 struct zfcp_fsf_req *req;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001280 int retval = -EIO;
1281
Swen Schillig564e1c82009-08-18 15:43:19 +02001282 if (!(qdio->adapter->adapter_features & FSF_FEATURE_HBAAPI_MANAGEMENT))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001283 return -EOPNOTSUPP;
1284
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001285 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001286 if (zfcp_qdio_sbal_get(qdio))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001287 goto out;
Swen Schillig09a46c62009-08-18 15:43:16 +02001288
Swen Schillig564e1c82009-08-18 15:43:19 +02001289 req = zfcp_fsf_req_create(qdio, FSF_QTCB_EXCHANGE_PORT_DATA,
Jan Glauber3ec908782011-06-06 14:14:40 +02001290 SBAL_SFLAGS0_TYPE_READ,
Swen Schillig564e1c82009-08-18 15:43:19 +02001291 qdio->adapter->pool.erp_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02001292
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001293 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001294 retval = PTR_ERR(req);
1295 goto out;
1296 }
1297
Swen Schillig09a46c62009-08-18 15:43:16 +02001298 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Christof Schmitt1674b402010-04-30 18:09:34 +02001299 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001300
1301 req->handler = zfcp_fsf_exchange_port_data_handler;
1302 req->erp_action = erp_action;
Christof Schmitte60a6d62010-02-17 11:18:49 +01001303 erp_action->fsf_req_id = req->req_id;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001304
Christof Schmitt287ac012008-07-02 10:56:40 +02001305 zfcp_fsf_start_erp_timer(req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001306 retval = zfcp_fsf_req_send(req);
1307 if (retval) {
1308 zfcp_fsf_req_free(req);
Christof Schmitte60a6d62010-02-17 11:18:49 +01001309 erp_action->fsf_req_id = 0;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001310 }
1311out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001312 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001313 return retval;
1314}
1315
1316/**
1317 * zfcp_fsf_exchange_port_data_sync - request information about local port
Swen Schillig564e1c82009-08-18 15:43:19 +02001318 * @qdio: pointer to struct zfcp_qdio
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001319 * @data: pointer to struct fsf_qtcb_bottom_port
1320 * Returns: 0 on success, error otherwise
1321 */
Swen Schillig564e1c82009-08-18 15:43:19 +02001322int zfcp_fsf_exchange_port_data_sync(struct zfcp_qdio *qdio,
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001323 struct fsf_qtcb_bottom_port *data)
1324{
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001325 struct zfcp_fsf_req *req = NULL;
1326 int retval = -EIO;
1327
Swen Schillig564e1c82009-08-18 15:43:19 +02001328 if (!(qdio->adapter->adapter_features & FSF_FEATURE_HBAAPI_MANAGEMENT))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001329 return -EOPNOTSUPP;
1330
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001331 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001332 if (zfcp_qdio_sbal_get(qdio))
Christof Schmittada81b72009-04-17 15:08:03 +02001333 goto out_unlock;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001334
Christof Schmitt1674b402010-04-30 18:09:34 +02001335 req = zfcp_fsf_req_create(qdio, FSF_QTCB_EXCHANGE_PORT_DATA,
Jan Glauber3ec908782011-06-06 14:14:40 +02001336 SBAL_SFLAGS0_TYPE_READ, NULL);
Swen Schillig09a46c62009-08-18 15:43:16 +02001337
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001338 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001339 retval = PTR_ERR(req);
Christof Schmittada81b72009-04-17 15:08:03 +02001340 goto out_unlock;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001341 }
1342
1343 if (data)
1344 req->data = data;
1345
Christof Schmitt1674b402010-04-30 18:09:34 +02001346 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001347
1348 req->handler = zfcp_fsf_exchange_port_data_handler;
1349 zfcp_fsf_start_timer(req, ZFCP_FSF_REQUEST_TIMEOUT);
1350 retval = zfcp_fsf_req_send(req);
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001351 spin_unlock_irq(&qdio->req_q_lock);
Christof Schmittada81b72009-04-17 15:08:03 +02001352
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001353 if (!retval)
Swen Schillig058b8642009-08-18 15:43:14 +02001354 wait_for_completion(&req->completion);
1355
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001356 zfcp_fsf_req_free(req);
1357
1358 return retval;
Christof Schmittada81b72009-04-17 15:08:03 +02001359
1360out_unlock:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001361 spin_unlock_irq(&qdio->req_q_lock);
Christof Schmittada81b72009-04-17 15:08:03 +02001362 return retval;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001363}
1364
1365static void zfcp_fsf_open_port_handler(struct zfcp_fsf_req *req)
1366{
1367 struct zfcp_port *port = req->data;
1368 struct fsf_qtcb_header *header = &req->qtcb->header;
Christof Schmitt9d05ce22009-11-24 16:54:09 +01001369 struct fc_els_flogi *plogi;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001370
1371 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
Martin Petermanna17c5852009-05-15 13:18:19 +02001372 goto out;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001373
1374 switch (header->fsf_status) {
1375 case FSF_PORT_ALREADY_OPEN:
1376 break;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001377 case FSF_MAXIMUM_NUMBER_OF_PORTS_EXCEEDED:
1378 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +02001379 "Not enough FCP adapter resources to open "
Swen Schillig7ba58c92008-10-01 12:42:18 +02001380 "remote port 0x%016Lx\n",
1381 (unsigned long long)port->wwpn);
Swen Schilligedaed852010-09-08 14:40:01 +02001382 zfcp_erp_set_port_status(port,
1383 ZFCP_STATUS_COMMON_ERP_FAILED);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001384 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1385 break;
1386 case FSF_ADAPTER_STATUS_AVAILABLE:
1387 switch (header->fsf_status_qual.word[0]) {
1388 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
1389 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001390 case FSF_SQ_NO_RETRY_POSSIBLE:
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001391 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1392 break;
1393 }
1394 break;
1395 case FSF_GOOD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 port->handle = header->port_handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 atomic_set_mask(ZFCP_STATUS_COMMON_OPEN |
1398 ZFCP_STATUS_PORT_PHYS_OPEN, &port->status);
Martin Peschke1b33ef22014-11-13 14:59:46 +01001399 atomic_clear_mask(ZFCP_STATUS_COMMON_ACCESS_BOXED,
Andreas Herrmannd736a27b2005-06-13 13:23:57 +02001400 &port->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 /* check whether D_ID has changed during open */
1402 /*
1403 * FIXME: This check is not airtight, as the FCP channel does
1404 * not monitor closures of target port connections caused on
1405 * the remote side. Thus, they might miss out on invalidating
1406 * locally cached WWPNs (and other N_Port parameters) of gone
1407 * target ports. So, our heroic attempt to make things safe
1408 * could be undermined by 'open port' response data tagged with
1409 * obsolete WWPNs. Another reason to monitor potential
1410 * connection closures ourself at least (by interpreting
1411 * incoming ELS' and unsolicited status). It just crosses my
1412 * mind that one should be able to cross-check by means of
1413 * another GID_PN straight after a port has been opened.
1414 * Alternately, an ADISC/PDISC ELS should suffice, as well.
1415 */
Christof Schmitt9d05ce22009-11-24 16:54:09 +01001416 plogi = (struct fc_els_flogi *) req->qtcb->bottom.support.els;
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +01001417 if (req->qtcb->bottom.support.els1_length >=
Christof Schmitt9d05ce22009-11-24 16:54:09 +01001418 FSF_PLOGI_MIN_LEN)
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001419 zfcp_fc_plogi_evaluate(port, plogi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 case FSF_UNKNOWN_OP_SUBTYPE:
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001422 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 break;
1424 }
Martin Petermanna17c5852009-05-15 13:18:19 +02001425
1426out:
Christof Schmitt615f59e2010-02-17 11:18:56 +01001427 put_device(&port->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428}
1429
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001430/**
1431 * zfcp_fsf_open_port - create and send open port request
1432 * @erp_action: pointer to struct zfcp_erp_action
1433 * Returns: 0 on success, error otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 */
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001435int zfcp_fsf_open_port(struct zfcp_erp_action *erp_action)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436{
Swen Schillig564e1c82009-08-18 15:43:19 +02001437 struct zfcp_qdio *qdio = erp_action->adapter->qdio;
Martin Petermanna17c5852009-05-15 13:18:19 +02001438 struct zfcp_port *port = erp_action->port;
Swen Schillig564e1c82009-08-18 15:43:19 +02001439 struct zfcp_fsf_req *req;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001440 int retval = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001442 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001443 if (zfcp_qdio_sbal_get(qdio))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
Swen Schillig564e1c82009-08-18 15:43:19 +02001446 req = zfcp_fsf_req_create(qdio, FSF_QTCB_OPEN_PORT_WITH_DID,
Jan Glauber3ec908782011-06-06 14:14:40 +02001447 SBAL_SFLAGS0_TYPE_READ,
Swen Schillig564e1c82009-08-18 15:43:19 +02001448 qdio->adapter->pool.erp_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02001449
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001450 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001451 retval = PTR_ERR(req);
1452 goto out;
1453 }
1454
Swen Schillig09a46c62009-08-18 15:43:16 +02001455 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Christof Schmitt1674b402010-04-30 18:09:34 +02001456 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001458 req->handler = zfcp_fsf_open_port_handler;
Christof Schmitt800c0ca2009-11-24 16:54:12 +01001459 hton24(req->qtcb->bottom.support.d_id, port->d_id);
Martin Petermanna17c5852009-05-15 13:18:19 +02001460 req->data = port;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001461 req->erp_action = erp_action;
Christof Schmitte60a6d62010-02-17 11:18:49 +01001462 erp_action->fsf_req_id = req->req_id;
Christof Schmitt615f59e2010-02-17 11:18:56 +01001463 get_device(&port->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464
Christof Schmitt287ac012008-07-02 10:56:40 +02001465 zfcp_fsf_start_erp_timer(req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001466 retval = zfcp_fsf_req_send(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 if (retval) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001468 zfcp_fsf_req_free(req);
Christof Schmitte60a6d62010-02-17 11:18:49 +01001469 erp_action->fsf_req_id = 0;
Christof Schmitt615f59e2010-02-17 11:18:56 +01001470 put_device(&port->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001472out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001473 spin_unlock_irq(&qdio->req_q_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 return retval;
1475}
1476
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001477static void zfcp_fsf_close_port_handler(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478{
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001479 struct zfcp_port *port = req->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001481 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
Swen Schillig44cc76f2008-10-01 12:42:16 +02001482 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001484 switch (req->qtcb->header.fsf_status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 case FSF_PORT_HANDLE_NOT_VALID:
Swen Schilligea4a3a62010-12-02 15:16:16 +01001486 zfcp_erp_adapter_reopen(port->adapter, 0, "fscph_1");
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001487 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 case FSF_ADAPTER_STATUS_AVAILABLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 case FSF_GOOD:
Swen Schilligedaed852010-09-08 14:40:01 +02001492 zfcp_erp_clear_port_status(port, ZFCP_STATUS_COMMON_OPEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495}
1496
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001497/**
1498 * zfcp_fsf_close_port - create and send close port request
1499 * @erp_action: pointer to struct zfcp_erp_action
1500 * Returns: 0 on success, error otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 */
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001502int zfcp_fsf_close_port(struct zfcp_erp_action *erp_action)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503{
Swen Schillig564e1c82009-08-18 15:43:19 +02001504 struct zfcp_qdio *qdio = erp_action->adapter->qdio;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001505 struct zfcp_fsf_req *req;
1506 int retval = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001508 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001509 if (zfcp_qdio_sbal_get(qdio))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511
Swen Schillig564e1c82009-08-18 15:43:19 +02001512 req = zfcp_fsf_req_create(qdio, FSF_QTCB_CLOSE_PORT,
Jan Glauber3ec908782011-06-06 14:14:40 +02001513 SBAL_SFLAGS0_TYPE_READ,
Swen Schillig564e1c82009-08-18 15:43:19 +02001514 qdio->adapter->pool.erp_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02001515
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001516 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001517 retval = PTR_ERR(req);
1518 goto out;
1519 }
1520
Swen Schillig09a46c62009-08-18 15:43:16 +02001521 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Christof Schmitt1674b402010-04-30 18:09:34 +02001522 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001524 req->handler = zfcp_fsf_close_port_handler;
1525 req->data = erp_action->port;
1526 req->erp_action = erp_action;
1527 req->qtcb->header.port_handle = erp_action->port->handle;
Christof Schmitte60a6d62010-02-17 11:18:49 +01001528 erp_action->fsf_req_id = req->req_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
Christof Schmitt287ac012008-07-02 10:56:40 +02001530 zfcp_fsf_start_erp_timer(req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001531 retval = zfcp_fsf_req_send(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 if (retval) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001533 zfcp_fsf_req_free(req);
Christof Schmitte60a6d62010-02-17 11:18:49 +01001534 erp_action->fsf_req_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001536out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001537 spin_unlock_irq(&qdio->req_q_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 return retval;
1539}
1540
Swen Schillig5ab944f2008-10-01 12:42:17 +02001541static void zfcp_fsf_open_wka_port_handler(struct zfcp_fsf_req *req)
1542{
Christof Schmittbd0072e2009-11-24 16:54:11 +01001543 struct zfcp_fc_wka_port *wka_port = req->data;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001544 struct fsf_qtcb_header *header = &req->qtcb->header;
1545
1546 if (req->status & ZFCP_STATUS_FSFREQ_ERROR) {
Christof Schmittbd0072e2009-11-24 16:54:11 +01001547 wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001548 goto out;
1549 }
1550
1551 switch (header->fsf_status) {
1552 case FSF_MAXIMUM_NUMBER_OF_PORTS_EXCEEDED:
1553 dev_warn(&req->adapter->ccw_device->dev,
1554 "Opening WKA port 0x%x failed\n", wka_port->d_id);
Christof Schmittdceab652009-05-15 13:18:18 +02001555 /* fall through */
Swen Schillig5ab944f2008-10-01 12:42:17 +02001556 case FSF_ADAPTER_STATUS_AVAILABLE:
1557 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Christof Schmittbd0072e2009-11-24 16:54:11 +01001558 wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001559 break;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001560 case FSF_GOOD:
1561 wka_port->handle = header->port_handle;
Swen Schillig27f492c2009-07-13 15:06:13 +02001562 /* fall through */
1563 case FSF_PORT_ALREADY_OPEN:
Christof Schmittbd0072e2009-11-24 16:54:11 +01001564 wka_port->status = ZFCP_FC_WKA_PORT_ONLINE;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001565 }
1566out:
1567 wake_up(&wka_port->completion_wq);
1568}
1569
1570/**
1571 * zfcp_fsf_open_wka_port - create and send open wka-port request
Christof Schmittbd0072e2009-11-24 16:54:11 +01001572 * @wka_port: pointer to struct zfcp_fc_wka_port
Swen Schillig5ab944f2008-10-01 12:42:17 +02001573 * Returns: 0 on success, error otherwise
1574 */
Christof Schmittbd0072e2009-11-24 16:54:11 +01001575int zfcp_fsf_open_wka_port(struct zfcp_fc_wka_port *wka_port)
Swen Schillig5ab944f2008-10-01 12:42:17 +02001576{
Swen Schillig564e1c82009-08-18 15:43:19 +02001577 struct zfcp_qdio *qdio = wka_port->adapter->qdio;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001578 struct zfcp_fsf_req *req;
1579 int retval = -EIO;
1580
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001581 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001582 if (zfcp_qdio_sbal_get(qdio))
Swen Schillig5ab944f2008-10-01 12:42:17 +02001583 goto out;
1584
Swen Schillig564e1c82009-08-18 15:43:19 +02001585 req = zfcp_fsf_req_create(qdio, FSF_QTCB_OPEN_PORT_WITH_DID,
Jan Glauber3ec908782011-06-06 14:14:40 +02001586 SBAL_SFLAGS0_TYPE_READ,
Swen Schillig564e1c82009-08-18 15:43:19 +02001587 qdio->adapter->pool.erp_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02001588
Tobias Klauser4e7d7af2011-02-22 19:54:38 +01001589 if (IS_ERR(req)) {
Swen Schillig5ab944f2008-10-01 12:42:17 +02001590 retval = PTR_ERR(req);
1591 goto out;
1592 }
1593
Swen Schillig09a46c62009-08-18 15:43:16 +02001594 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Christof Schmitt1674b402010-04-30 18:09:34 +02001595 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schillig5ab944f2008-10-01 12:42:17 +02001596
1597 req->handler = zfcp_fsf_open_wka_port_handler;
Christof Schmitt800c0ca2009-11-24 16:54:12 +01001598 hton24(req->qtcb->bottom.support.d_id, wka_port->d_id);
Swen Schillig5ab944f2008-10-01 12:42:17 +02001599 req->data = wka_port;
1600
1601 zfcp_fsf_start_timer(req, ZFCP_FSF_REQUEST_TIMEOUT);
1602 retval = zfcp_fsf_req_send(req);
1603 if (retval)
1604 zfcp_fsf_req_free(req);
1605out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001606 spin_unlock_irq(&qdio->req_q_lock);
Swen Schillig5ab944f2008-10-01 12:42:17 +02001607 return retval;
1608}
1609
1610static void zfcp_fsf_close_wka_port_handler(struct zfcp_fsf_req *req)
1611{
Christof Schmittbd0072e2009-11-24 16:54:11 +01001612 struct zfcp_fc_wka_port *wka_port = req->data;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001613
1614 if (req->qtcb->header.fsf_status == FSF_PORT_HANDLE_NOT_VALID) {
1615 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Swen Schilligea4a3a62010-12-02 15:16:16 +01001616 zfcp_erp_adapter_reopen(wka_port->adapter, 0, "fscwph1");
Swen Schillig5ab944f2008-10-01 12:42:17 +02001617 }
1618
Christof Schmittbd0072e2009-11-24 16:54:11 +01001619 wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001620 wake_up(&wka_port->completion_wq);
1621}
1622
1623/**
1624 * zfcp_fsf_close_wka_port - create and send close wka port request
Christof Schmittbd0072e2009-11-24 16:54:11 +01001625 * @wka_port: WKA port to open
Swen Schillig5ab944f2008-10-01 12:42:17 +02001626 * Returns: 0 on success, error otherwise
1627 */
Christof Schmittbd0072e2009-11-24 16:54:11 +01001628int zfcp_fsf_close_wka_port(struct zfcp_fc_wka_port *wka_port)
Swen Schillig5ab944f2008-10-01 12:42:17 +02001629{
Swen Schillig564e1c82009-08-18 15:43:19 +02001630 struct zfcp_qdio *qdio = wka_port->adapter->qdio;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001631 struct zfcp_fsf_req *req;
1632 int retval = -EIO;
1633
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001634 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001635 if (zfcp_qdio_sbal_get(qdio))
Swen Schillig5ab944f2008-10-01 12:42:17 +02001636 goto out;
1637
Swen Schillig564e1c82009-08-18 15:43:19 +02001638 req = zfcp_fsf_req_create(qdio, FSF_QTCB_CLOSE_PORT,
Jan Glauber3ec908782011-06-06 14:14:40 +02001639 SBAL_SFLAGS0_TYPE_READ,
Swen Schillig564e1c82009-08-18 15:43:19 +02001640 qdio->adapter->pool.erp_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02001641
Tobias Klauser4e7d7af2011-02-22 19:54:38 +01001642 if (IS_ERR(req)) {
Swen Schillig5ab944f2008-10-01 12:42:17 +02001643 retval = PTR_ERR(req);
1644 goto out;
1645 }
1646
Swen Schillig09a46c62009-08-18 15:43:16 +02001647 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Christof Schmitt1674b402010-04-30 18:09:34 +02001648 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schillig5ab944f2008-10-01 12:42:17 +02001649
1650 req->handler = zfcp_fsf_close_wka_port_handler;
1651 req->data = wka_port;
1652 req->qtcb->header.port_handle = wka_port->handle;
1653
1654 zfcp_fsf_start_timer(req, ZFCP_FSF_REQUEST_TIMEOUT);
1655 retval = zfcp_fsf_req_send(req);
1656 if (retval)
1657 zfcp_fsf_req_free(req);
1658out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001659 spin_unlock_irq(&qdio->req_q_lock);
Swen Schillig5ab944f2008-10-01 12:42:17 +02001660 return retval;
1661}
1662
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001663static void zfcp_fsf_close_physical_port_handler(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664{
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001665 struct zfcp_port *port = req->data;
1666 struct fsf_qtcb_header *header = &req->qtcb->header;
Christof Schmittb62a8d92010-09-08 14:39:55 +02001667 struct scsi_device *sdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001669 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
Christof Schmitta5b11dd2009-03-02 13:08:54 +01001670 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 switch (header->fsf_status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 case FSF_PORT_HANDLE_NOT_VALID:
Swen Schilligea4a3a62010-12-02 15:16:16 +01001674 zfcp_erp_adapter_reopen(port->adapter, 0, "fscpph1");
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001675 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 case FSF_PORT_BOXED:
Christof Schmitt5c815d12008-03-10 16:18:54 +01001678 /* can't use generic zfcp_erp_modify_port_status because
1679 * ZFCP_STATUS_COMMON_OPEN must not be reset for the port */
1680 atomic_clear_mask(ZFCP_STATUS_PORT_PHYS_OPEN, &port->status);
Christof Schmittb62a8d92010-09-08 14:39:55 +02001681 shost_for_each_device(sdev, port->adapter->scsi_host)
1682 if (sdev_to_zfcp(sdev)->port == port)
1683 atomic_clear_mask(ZFCP_STATUS_COMMON_OPEN,
1684 &sdev_to_zfcp(sdev)->status);
Swen Schilligedaed852010-09-08 14:40:01 +02001685 zfcp_erp_set_port_status(port, ZFCP_STATUS_COMMON_ACCESS_BOXED);
1686 zfcp_erp_port_reopen(port, ZFCP_STATUS_COMMON_ERP_FAILED,
Swen Schilligea4a3a62010-12-02 15:16:16 +01001687 "fscpph2");
Christof Schmitt4c571c62009-11-24 16:54:15 +01001688 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 case FSF_ADAPTER_STATUS_AVAILABLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 switch (header->fsf_status_qual.word[0]) {
1692 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001693 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001695 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 }
1698 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 case FSF_GOOD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 /* can't use generic zfcp_erp_modify_port_status because
1701 * ZFCP_STATUS_COMMON_OPEN must not be reset for the port
1702 */
1703 atomic_clear_mask(ZFCP_STATUS_PORT_PHYS_OPEN, &port->status);
Christof Schmittb62a8d92010-09-08 14:39:55 +02001704 shost_for_each_device(sdev, port->adapter->scsi_host)
1705 if (sdev_to_zfcp(sdev)->port == port)
1706 atomic_clear_mask(ZFCP_STATUS_COMMON_OPEN,
1707 &sdev_to_zfcp(sdev)->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710}
1711
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001712/**
1713 * zfcp_fsf_close_physical_port - close physical port
1714 * @erp_action: pointer to struct zfcp_erp_action
1715 * Returns: 0 on success
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 */
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001717int zfcp_fsf_close_physical_port(struct zfcp_erp_action *erp_action)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718{
Swen Schillig564e1c82009-08-18 15:43:19 +02001719 struct zfcp_qdio *qdio = erp_action->adapter->qdio;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001720 struct zfcp_fsf_req *req;
1721 int retval = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001723 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001724 if (zfcp_qdio_sbal_get(qdio))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726
Swen Schillig564e1c82009-08-18 15:43:19 +02001727 req = zfcp_fsf_req_create(qdio, FSF_QTCB_CLOSE_PHYSICAL_PORT,
Jan Glauber3ec908782011-06-06 14:14:40 +02001728 SBAL_SFLAGS0_TYPE_READ,
Swen Schillig564e1c82009-08-18 15:43:19 +02001729 qdio->adapter->pool.erp_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02001730
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001731 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001732 retval = PTR_ERR(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 goto out;
1734 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001735
Swen Schillig09a46c62009-08-18 15:43:16 +02001736 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Christof Schmitt1674b402010-04-30 18:09:34 +02001737 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001738
1739 req->data = erp_action->port;
1740 req->qtcb->header.port_handle = erp_action->port->handle;
1741 req->erp_action = erp_action;
1742 req->handler = zfcp_fsf_close_physical_port_handler;
Christof Schmitte60a6d62010-02-17 11:18:49 +01001743 erp_action->fsf_req_id = req->req_id;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001744
Christof Schmitt287ac012008-07-02 10:56:40 +02001745 zfcp_fsf_start_erp_timer(req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001746 retval = zfcp_fsf_req_send(req);
1747 if (retval) {
1748 zfcp_fsf_req_free(req);
Christof Schmitte60a6d62010-02-17 11:18:49 +01001749 erp_action->fsf_req_id = 0;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001750 }
1751out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001752 spin_unlock_irq(&qdio->req_q_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 return retval;
1754}
1755
Christof Schmittb62a8d92010-09-08 14:39:55 +02001756static void zfcp_fsf_open_lun_handler(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757{
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001758 struct zfcp_adapter *adapter = req->adapter;
Christof Schmittb62a8d92010-09-08 14:39:55 +02001759 struct scsi_device *sdev = req->data;
Martin Peschked436de82012-09-04 15:23:36 +02001760 struct zfcp_scsi_dev *zfcp_sdev;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001761 struct fsf_qtcb_header *header = &req->qtcb->header;
Martin Peschke663e0892013-04-26 16:13:54 +02001762 union fsf_status_qual *qual = &header->fsf_status_qual;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001764 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
Swen Schillig44cc76f2008-10-01 12:42:16 +02001765 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766
Martin Peschked436de82012-09-04 15:23:36 +02001767 zfcp_sdev = sdev_to_zfcp(sdev);
1768
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 atomic_clear_mask(ZFCP_STATUS_COMMON_ACCESS_DENIED |
Martin Peschke663e0892013-04-26 16:13:54 +02001770 ZFCP_STATUS_COMMON_ACCESS_BOXED,
Christof Schmittb62a8d92010-09-08 14:39:55 +02001771 &zfcp_sdev->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 switch (header->fsf_status) {
1774
1775 case FSF_PORT_HANDLE_NOT_VALID:
Swen Schilligea4a3a62010-12-02 15:16:16 +01001776 zfcp_erp_adapter_reopen(adapter, 0, "fsouh_1");
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001777 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 case FSF_LUN_ALREADY_OPEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 case FSF_PORT_BOXED:
Swen Schilligedaed852010-09-08 14:40:01 +02001781 zfcp_erp_set_port_status(zfcp_sdev->port,
1782 ZFCP_STATUS_COMMON_ACCESS_BOXED);
1783 zfcp_erp_port_reopen(zfcp_sdev->port,
Swen Schilligea4a3a62010-12-02 15:16:16 +01001784 ZFCP_STATUS_COMMON_ERP_FAILED, "fsouh_2");
Christof Schmitt4c571c62009-11-24 16:54:15 +01001785 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 case FSF_LUN_SHARING_VIOLATION:
Martin Peschke663e0892013-04-26 16:13:54 +02001788 if (qual->word[0])
1789 dev_warn(&zfcp_sdev->port->adapter->ccw_device->dev,
1790 "LUN 0x%Lx on port 0x%Lx is already in "
1791 "use by CSS%d, MIF Image ID %x\n",
1792 zfcp_scsi_dev_lun(sdev),
1793 (unsigned long long)zfcp_sdev->port->wwpn,
1794 qual->fsf_queue_designator.cssid,
1795 qual->fsf_queue_designator.hla);
1796 zfcp_erp_set_lun_status(sdev,
1797 ZFCP_STATUS_COMMON_ERP_FAILED |
1798 ZFCP_STATUS_COMMON_ACCESS_DENIED);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001799 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 case FSF_MAXIMUM_NUMBER_OF_LUNS_EXCEEDED:
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001802 dev_warn(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +02001803 "No handle is available for LUN "
1804 "0x%016Lx on port 0x%016Lx\n",
Christof Schmittb62a8d92010-09-08 14:39:55 +02001805 (unsigned long long)zfcp_scsi_dev_lun(sdev),
1806 (unsigned long long)zfcp_sdev->port->wwpn);
Swen Schilligedaed852010-09-08 14:40:01 +02001807 zfcp_erp_set_lun_status(sdev, ZFCP_STATUS_COMMON_ERP_FAILED);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001808 /* fall through */
1809 case FSF_INVALID_COMMAND_OPTION:
1810 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 case FSF_ADAPTER_STATUS_AVAILABLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 switch (header->fsf_status_qual.word[0]) {
1814 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
Christof Schmittb62a8d92010-09-08 14:39:55 +02001815 zfcp_fc_test_link(zfcp_sdev->port);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001816 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001818 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 }
1821 break;
1822
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 case FSF_GOOD:
Christof Schmittb62a8d92010-09-08 14:39:55 +02001824 zfcp_sdev->lun_handle = header->lun_handle;
1825 atomic_set_mask(ZFCP_STATUS_COMMON_OPEN, &zfcp_sdev->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828}
1829
1830/**
Christof Schmittb62a8d92010-09-08 14:39:55 +02001831 * zfcp_fsf_open_lun - open LUN
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001832 * @erp_action: pointer to struct zfcp_erp_action
1833 * Returns: 0 on success, error otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 */
Christof Schmittb62a8d92010-09-08 14:39:55 +02001835int zfcp_fsf_open_lun(struct zfcp_erp_action *erp_action)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836{
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001837 struct zfcp_adapter *adapter = erp_action->adapter;
Swen Schillig564e1c82009-08-18 15:43:19 +02001838 struct zfcp_qdio *qdio = adapter->qdio;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001839 struct zfcp_fsf_req *req;
1840 int retval = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001842 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001843 if (zfcp_qdio_sbal_get(qdio))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001844 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845
Swen Schillig564e1c82009-08-18 15:43:19 +02001846 req = zfcp_fsf_req_create(qdio, FSF_QTCB_OPEN_LUN,
Jan Glauber3ec908782011-06-06 14:14:40 +02001847 SBAL_SFLAGS0_TYPE_READ,
Swen Schilliga4623c42009-08-18 15:43:15 +02001848 adapter->pool.erp_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02001849
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001850 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001851 retval = PTR_ERR(req);
1852 goto out;
Christof Schmittba172422007-12-20 12:30:26 +01001853 }
1854
Swen Schillig09a46c62009-08-18 15:43:16 +02001855 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Christof Schmitt1674b402010-04-30 18:09:34 +02001856 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001858 req->qtcb->header.port_handle = erp_action->port->handle;
Christof Schmittb62a8d92010-09-08 14:39:55 +02001859 req->qtcb->bottom.support.fcp_lun = zfcp_scsi_dev_lun(erp_action->sdev);
1860 req->handler = zfcp_fsf_open_lun_handler;
1861 req->data = erp_action->sdev;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001862 req->erp_action = erp_action;
Christof Schmitte60a6d62010-02-17 11:18:49 +01001863 erp_action->fsf_req_id = req->req_id;
Andreas Herrmann059c97d2005-09-13 21:47:52 +02001864
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001865 if (!(adapter->connection_features & FSF_FEATURE_NPIV_MODE))
1866 req->qtcb->bottom.support.option = FSF_OPEN_LUN_SUPPRESS_BOXING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867
Christof Schmitt287ac012008-07-02 10:56:40 +02001868 zfcp_fsf_start_erp_timer(req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001869 retval = zfcp_fsf_req_send(req);
1870 if (retval) {
1871 zfcp_fsf_req_free(req);
Christof Schmitte60a6d62010-02-17 11:18:49 +01001872 erp_action->fsf_req_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001874out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001875 spin_unlock_irq(&qdio->req_q_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 return retval;
1877}
1878
Christof Schmittb62a8d92010-09-08 14:39:55 +02001879static void zfcp_fsf_close_lun_handler(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880{
Christof Schmittb62a8d92010-09-08 14:39:55 +02001881 struct scsi_device *sdev = req->data;
Martin Peschked436de82012-09-04 15:23:36 +02001882 struct zfcp_scsi_dev *zfcp_sdev;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001883
1884 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
Swen Schillig44cc76f2008-10-01 12:42:16 +02001885 return;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001886
Martin Peschked436de82012-09-04 15:23:36 +02001887 zfcp_sdev = sdev_to_zfcp(sdev);
1888
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001889 switch (req->qtcb->header.fsf_status) {
1890 case FSF_PORT_HANDLE_NOT_VALID:
Swen Schilligea4a3a62010-12-02 15:16:16 +01001891 zfcp_erp_adapter_reopen(zfcp_sdev->port->adapter, 0, "fscuh_1");
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001892 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1893 break;
1894 case FSF_LUN_HANDLE_NOT_VALID:
Swen Schilligea4a3a62010-12-02 15:16:16 +01001895 zfcp_erp_port_reopen(zfcp_sdev->port, 0, "fscuh_2");
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001896 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1897 break;
1898 case FSF_PORT_BOXED:
Swen Schilligedaed852010-09-08 14:40:01 +02001899 zfcp_erp_set_port_status(zfcp_sdev->port,
1900 ZFCP_STATUS_COMMON_ACCESS_BOXED);
1901 zfcp_erp_port_reopen(zfcp_sdev->port,
Swen Schilligea4a3a62010-12-02 15:16:16 +01001902 ZFCP_STATUS_COMMON_ERP_FAILED, "fscuh_3");
Christof Schmitt4c571c62009-11-24 16:54:15 +01001903 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001904 break;
1905 case FSF_ADAPTER_STATUS_AVAILABLE:
1906 switch (req->qtcb->header.fsf_status_qual.word[0]) {
1907 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
Christof Schmittb62a8d92010-09-08 14:39:55 +02001908 zfcp_fc_test_link(zfcp_sdev->port);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001909 /* fall through */
1910 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
1911 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1912 break;
1913 }
1914 break;
1915 case FSF_GOOD:
Christof Schmittb62a8d92010-09-08 14:39:55 +02001916 atomic_clear_mask(ZFCP_STATUS_COMMON_OPEN, &zfcp_sdev->status);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001917 break;
1918 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001919}
1920
1921/**
Christof Schmittb62a8d92010-09-08 14:39:55 +02001922 * zfcp_fsf_close_LUN - close LUN
1923 * @erp_action: pointer to erp_action triggering the "close LUN"
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001924 * Returns: 0 on success, error otherwise
1925 */
Christof Schmittb62a8d92010-09-08 14:39:55 +02001926int zfcp_fsf_close_lun(struct zfcp_erp_action *erp_action)
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001927{
Swen Schillig564e1c82009-08-18 15:43:19 +02001928 struct zfcp_qdio *qdio = erp_action->adapter->qdio;
Christof Schmittb62a8d92010-09-08 14:39:55 +02001929 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(erp_action->sdev);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001930 struct zfcp_fsf_req *req;
1931 int retval = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001933 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001934 if (zfcp_qdio_sbal_get(qdio))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 goto out;
Swen Schillig09a46c62009-08-18 15:43:16 +02001936
Swen Schillig564e1c82009-08-18 15:43:19 +02001937 req = zfcp_fsf_req_create(qdio, FSF_QTCB_CLOSE_LUN,
Jan Glauber3ec908782011-06-06 14:14:40 +02001938 SBAL_SFLAGS0_TYPE_READ,
Swen Schillig564e1c82009-08-18 15:43:19 +02001939 qdio->adapter->pool.erp_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02001940
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001941 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001942 retval = PTR_ERR(req);
1943 goto out;
1944 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945
Swen Schillig09a46c62009-08-18 15:43:16 +02001946 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Christof Schmitt1674b402010-04-30 18:09:34 +02001947 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001949 req->qtcb->header.port_handle = erp_action->port->handle;
Christof Schmittb62a8d92010-09-08 14:39:55 +02001950 req->qtcb->header.lun_handle = zfcp_sdev->lun_handle;
1951 req->handler = zfcp_fsf_close_lun_handler;
1952 req->data = erp_action->sdev;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001953 req->erp_action = erp_action;
Christof Schmitte60a6d62010-02-17 11:18:49 +01001954 erp_action->fsf_req_id = req->req_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955
Christof Schmitt287ac012008-07-02 10:56:40 +02001956 zfcp_fsf_start_erp_timer(req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001957 retval = zfcp_fsf_req_send(req);
1958 if (retval) {
1959 zfcp_fsf_req_free(req);
Christof Schmitte60a6d62010-02-17 11:18:49 +01001960 erp_action->fsf_req_id = 0;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001961 }
1962out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001963 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001964 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965}
1966
Christof Schmittc9615852008-05-06 11:00:05 +02001967static void zfcp_fsf_update_lat(struct fsf_latency_record *lat_rec, u32 lat)
1968{
1969 lat_rec->sum += lat;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001970 lat_rec->min = min(lat_rec->min, lat);
1971 lat_rec->max = max(lat_rec->max, lat);
Christof Schmittc9615852008-05-06 11:00:05 +02001972}
1973
Christof Schmittd9742b42009-11-24 16:54:03 +01001974static void zfcp_fsf_req_trace(struct zfcp_fsf_req *req, struct scsi_cmnd *scsi)
Christof Schmittc9615852008-05-06 11:00:05 +02001975{
Christof Schmittd9742b42009-11-24 16:54:03 +01001976 struct fsf_qual_latency_info *lat_in;
1977 struct latency_cont *lat = NULL;
Martin Peschked436de82012-09-04 15:23:36 +02001978 struct zfcp_scsi_dev *zfcp_sdev;
Christof Schmittd9742b42009-11-24 16:54:03 +01001979 struct zfcp_blk_drv_data blktrc;
1980 int ticks = req->adapter->timer_ticks;
Christof Schmittc9615852008-05-06 11:00:05 +02001981
Christof Schmittd9742b42009-11-24 16:54:03 +01001982 lat_in = &req->qtcb->prefix.prot_status_qual.latency_info;
Christof Schmittc9615852008-05-06 11:00:05 +02001983
Christof Schmittd9742b42009-11-24 16:54:03 +01001984 blktrc.flags = 0;
1985 blktrc.magic = ZFCP_BLK_DRV_DATA_MAGIC;
1986 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
1987 blktrc.flags |= ZFCP_BLK_REQ_ERROR;
Swen Schillig706eca42010-07-16 15:37:38 +02001988 blktrc.inb_usage = 0;
Christof Schmitt34c2b712010-02-17 11:18:59 +01001989 blktrc.outb_usage = req->qdio_req.qdio_outb_usage;
Christof Schmittd9742b42009-11-24 16:54:03 +01001990
Christof Schmitt5bbf2972010-04-01 13:04:08 +02001991 if (req->adapter->adapter_features & FSF_FEATURE_MEASUREMENT_DATA &&
1992 !(req->status & ZFCP_STATUS_FSFREQ_ERROR)) {
Martin Peschked436de82012-09-04 15:23:36 +02001993 zfcp_sdev = sdev_to_zfcp(scsi->device);
Christof Schmittd9742b42009-11-24 16:54:03 +01001994 blktrc.flags |= ZFCP_BLK_LAT_VALID;
1995 blktrc.channel_lat = lat_in->channel_lat * ticks;
1996 blktrc.fabric_lat = lat_in->fabric_lat * ticks;
1997
1998 switch (req->qtcb->bottom.io.data_direction) {
Felix Beckef3eb712010-07-16 15:37:42 +02001999 case FSF_DATADIR_DIF_READ_STRIP:
2000 case FSF_DATADIR_DIF_READ_CONVERT:
Christof Schmittd9742b42009-11-24 16:54:03 +01002001 case FSF_DATADIR_READ:
Christof Schmittb62a8d92010-09-08 14:39:55 +02002002 lat = &zfcp_sdev->latencies.read;
Christof Schmittd9742b42009-11-24 16:54:03 +01002003 break;
Felix Beckef3eb712010-07-16 15:37:42 +02002004 case FSF_DATADIR_DIF_WRITE_INSERT:
2005 case FSF_DATADIR_DIF_WRITE_CONVERT:
Christof Schmittd9742b42009-11-24 16:54:03 +01002006 case FSF_DATADIR_WRITE:
Christof Schmittb62a8d92010-09-08 14:39:55 +02002007 lat = &zfcp_sdev->latencies.write;
Christof Schmittd9742b42009-11-24 16:54:03 +01002008 break;
2009 case FSF_DATADIR_CMND:
Christof Schmittb62a8d92010-09-08 14:39:55 +02002010 lat = &zfcp_sdev->latencies.cmd;
Christof Schmittd9742b42009-11-24 16:54:03 +01002011 break;
2012 }
2013
2014 if (lat) {
Christof Schmittb62a8d92010-09-08 14:39:55 +02002015 spin_lock(&zfcp_sdev->latencies.lock);
Christof Schmittd9742b42009-11-24 16:54:03 +01002016 zfcp_fsf_update_lat(&lat->channel, lat_in->channel_lat);
2017 zfcp_fsf_update_lat(&lat->fabric, lat_in->fabric_lat);
2018 lat->counter++;
Christof Schmittb62a8d92010-09-08 14:39:55 +02002019 spin_unlock(&zfcp_sdev->latencies.lock);
Christof Schmittd9742b42009-11-24 16:54:03 +01002020 }
Christof Schmittc9615852008-05-06 11:00:05 +02002021 }
2022
Christof Schmittd9742b42009-11-24 16:54:03 +01002023 blk_add_driver_data(scsi->request->q, scsi->request, &blktrc,
2024 sizeof(blktrc));
Christof Schmittc9615852008-05-06 11:00:05 +02002025}
2026
Christof Schmittc61b5362010-09-08 14:39:58 +02002027static void zfcp_fsf_fcp_handler_common(struct zfcp_fsf_req *req)
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002028{
Christof Schmittb62a8d92010-09-08 14:39:55 +02002029 struct scsi_cmnd *scmnd = req->data;
2030 struct scsi_device *sdev = scmnd->device;
Martin Peschked436de82012-09-04 15:23:36 +02002031 struct zfcp_scsi_dev *zfcp_sdev;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002032 struct fsf_qtcb_header *header = &req->qtcb->header;
2033
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002034 if (unlikely(req->status & ZFCP_STATUS_FSFREQ_ERROR))
Christof Schmittc61b5362010-09-08 14:39:58 +02002035 return;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002036
Martin Peschked436de82012-09-04 15:23:36 +02002037 zfcp_sdev = sdev_to_zfcp(sdev);
2038
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002039 switch (header->fsf_status) {
2040 case FSF_HANDLE_MISMATCH:
2041 case FSF_PORT_HANDLE_NOT_VALID:
Swen Schilligea4a3a62010-12-02 15:16:16 +01002042 zfcp_erp_adapter_reopen(zfcp_sdev->port->adapter, 0, "fssfch1");
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002043 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
2044 break;
2045 case FSF_FCPLUN_NOT_VALID:
2046 case FSF_LUN_HANDLE_NOT_VALID:
Swen Schilligea4a3a62010-12-02 15:16:16 +01002047 zfcp_erp_port_reopen(zfcp_sdev->port, 0, "fssfch2");
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002048 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
2049 break;
2050 case FSF_SERVICE_CLASS_NOT_SUPPORTED:
2051 zfcp_fsf_class_not_supp(req);
2052 break;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002053 case FSF_DIRECTION_INDICATOR_NOT_VALID:
2054 dev_err(&req->adapter->ccw_device->dev,
Christof Schmittb62a8d92010-09-08 14:39:55 +02002055 "Incorrect direction %d, LUN 0x%016Lx on port "
Christof Schmittff3b24f2008-10-01 12:42:15 +02002056 "0x%016Lx closed\n",
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002057 req->qtcb->bottom.io.data_direction,
Christof Schmittb62a8d92010-09-08 14:39:55 +02002058 (unsigned long long)zfcp_scsi_dev_lun(sdev),
2059 (unsigned long long)zfcp_sdev->port->wwpn);
2060 zfcp_erp_adapter_shutdown(zfcp_sdev->port->adapter, 0,
Swen Schilligea4a3a62010-12-02 15:16:16 +01002061 "fssfch3");
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002062 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
2063 break;
2064 case FSF_CMND_LENGTH_NOT_VALID:
2065 dev_err(&req->adapter->ccw_device->dev,
Christof Schmittb62a8d92010-09-08 14:39:55 +02002066 "Incorrect CDB length %d, LUN 0x%016Lx on "
Christof Schmittff3b24f2008-10-01 12:42:15 +02002067 "port 0x%016Lx closed\n",
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002068 req->qtcb->bottom.io.fcp_cmnd_length,
Christof Schmittb62a8d92010-09-08 14:39:55 +02002069 (unsigned long long)zfcp_scsi_dev_lun(sdev),
2070 (unsigned long long)zfcp_sdev->port->wwpn);
2071 zfcp_erp_adapter_shutdown(zfcp_sdev->port->adapter, 0,
Swen Schilligea4a3a62010-12-02 15:16:16 +01002072 "fssfch4");
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002073 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
2074 break;
2075 case FSF_PORT_BOXED:
Swen Schilligedaed852010-09-08 14:40:01 +02002076 zfcp_erp_set_port_status(zfcp_sdev->port,
2077 ZFCP_STATUS_COMMON_ACCESS_BOXED);
2078 zfcp_erp_port_reopen(zfcp_sdev->port,
Swen Schilligea4a3a62010-12-02 15:16:16 +01002079 ZFCP_STATUS_COMMON_ERP_FAILED, "fssfch5");
Christof Schmitt4c571c62009-11-24 16:54:15 +01002080 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002081 break;
2082 case FSF_LUN_BOXED:
Swen Schilligedaed852010-09-08 14:40:01 +02002083 zfcp_erp_set_lun_status(sdev, ZFCP_STATUS_COMMON_ACCESS_BOXED);
2084 zfcp_erp_lun_reopen(sdev, ZFCP_STATUS_COMMON_ERP_FAILED,
Swen Schilligea4a3a62010-12-02 15:16:16 +01002085 "fssfch6");
Christof Schmitt4c571c62009-11-24 16:54:15 +01002086 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002087 break;
2088 case FSF_ADAPTER_STATUS_AVAILABLE:
2089 if (header->fsf_status_qual.word[0] ==
2090 FSF_SQ_INVOKE_LINK_TEST_PROCEDURE)
Christof Schmittb62a8d92010-09-08 14:39:55 +02002091 zfcp_fc_test_link(zfcp_sdev->port);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002092 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
2093 break;
2094 }
Christof Schmittc61b5362010-09-08 14:39:58 +02002095}
2096
2097static void zfcp_fsf_fcp_cmnd_handler(struct zfcp_fsf_req *req)
2098{
2099 struct scsi_cmnd *scpnt;
2100 struct fcp_resp_with_ext *fcp_rsp;
2101 unsigned long flags;
2102
Christof Schmittc61b5362010-09-08 14:39:58 +02002103 read_lock_irqsave(&req->adapter->abort_lock, flags);
2104
2105 scpnt = req->data;
2106 if (unlikely(!scpnt)) {
2107 read_unlock_irqrestore(&req->adapter->abort_lock, flags);
2108 return;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002109 }
Christof Schmittc61b5362010-09-08 14:39:58 +02002110
Swen Schillig5bfb2c32010-11-17 14:23:40 +01002111 zfcp_fsf_fcp_handler_common(req);
2112
Christof Schmittc61b5362010-09-08 14:39:58 +02002113 if (unlikely(req->status & ZFCP_STATUS_FSFREQ_ERROR)) {
2114 set_host_byte(scpnt, DID_TRANSPORT_DISRUPTED);
2115 goto skip_fsfstatus;
2116 }
2117
2118 switch (req->qtcb->header.fsf_status) {
2119 case FSF_INCONSISTENT_PROT_DATA:
2120 case FSF_INVALID_PROT_PARM:
2121 set_host_byte(scpnt, DID_ERROR);
2122 goto skip_fsfstatus;
2123 case FSF_BLOCK_GUARD_CHECK_FAILURE:
2124 zfcp_scsi_dif_sense_error(scpnt, 0x1);
2125 goto skip_fsfstatus;
2126 case FSF_APP_TAG_CHECK_FAILURE:
2127 zfcp_scsi_dif_sense_error(scpnt, 0x2);
2128 goto skip_fsfstatus;
2129 case FSF_REF_TAG_CHECK_FAILURE:
2130 zfcp_scsi_dif_sense_error(scpnt, 0x3);
2131 goto skip_fsfstatus;
2132 }
2133 fcp_rsp = (struct fcp_resp_with_ext *) &req->qtcb->bottom.io.fcp_rsp;
2134 zfcp_fc_eval_fcp_rsp(fcp_rsp, scpnt);
2135
2136skip_fsfstatus:
2137 zfcp_fsf_req_trace(req, scpnt);
Swen Schillig250a1352010-12-02 15:16:15 +01002138 zfcp_dbf_scsi_result(scpnt, req);
Christof Schmittc61b5362010-09-08 14:39:58 +02002139
2140 scpnt->host_scribble = NULL;
2141 (scpnt->scsi_done) (scpnt);
2142 /*
2143 * We must hold this lock until scsi_done has been called.
2144 * Otherwise we may call scsi_done after abort regarding this
2145 * command has completed.
2146 * Note: scsi_done must not block!
2147 */
2148 read_unlock_irqrestore(&req->adapter->abort_lock, flags);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002149}
2150
Felix Beckef3eb712010-07-16 15:37:42 +02002151static int zfcp_fsf_set_data_dir(struct scsi_cmnd *scsi_cmnd, u32 *data_dir)
2152{
2153 switch (scsi_get_prot_op(scsi_cmnd)) {
2154 case SCSI_PROT_NORMAL:
2155 switch (scsi_cmnd->sc_data_direction) {
2156 case DMA_NONE:
2157 *data_dir = FSF_DATADIR_CMND;
2158 break;
2159 case DMA_FROM_DEVICE:
2160 *data_dir = FSF_DATADIR_READ;
2161 break;
2162 case DMA_TO_DEVICE:
2163 *data_dir = FSF_DATADIR_WRITE;
2164 break;
2165 case DMA_BIDIRECTIONAL:
2166 return -EINVAL;
2167 }
2168 break;
2169
2170 case SCSI_PROT_READ_STRIP:
2171 *data_dir = FSF_DATADIR_DIF_READ_STRIP;
2172 break;
2173 case SCSI_PROT_WRITE_INSERT:
2174 *data_dir = FSF_DATADIR_DIF_WRITE_INSERT;
2175 break;
2176 case SCSI_PROT_READ_PASS:
2177 *data_dir = FSF_DATADIR_DIF_READ_CONVERT;
2178 break;
2179 case SCSI_PROT_WRITE_PASS:
2180 *data_dir = FSF_DATADIR_DIF_WRITE_CONVERT;
2181 break;
2182 default:
2183 return -EINVAL;
2184 }
2185
2186 return 0;
2187}
2188
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002189/**
Christof Schmittb62a8d92010-09-08 14:39:55 +02002190 * zfcp_fsf_fcp_cmnd - initiate an FCP command (for a SCSI command)
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002191 * @scsi_cmnd: scsi command to be sent
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002192 */
Christof Schmittb62a8d92010-09-08 14:39:55 +02002193int zfcp_fsf_fcp_cmnd(struct scsi_cmnd *scsi_cmnd)
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002194{
2195 struct zfcp_fsf_req *req;
Christof Schmitt4318e082009-11-24 16:54:08 +01002196 struct fcp_cmnd *fcp_cmnd;
Jan Glauber3ec908782011-06-06 14:14:40 +02002197 u8 sbtype = SBAL_SFLAGS0_TYPE_READ;
Swen Schillig86a96682011-08-15 14:40:32 +02002198 int retval = -EIO;
Christof Schmittb62a8d92010-09-08 14:39:55 +02002199 struct scsi_device *sdev = scsi_cmnd->device;
2200 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
2201 struct zfcp_adapter *adapter = zfcp_sdev->port->adapter;
Swen Schillig564e1c82009-08-18 15:43:19 +02002202 struct zfcp_qdio *qdio = adapter->qdio;
Felix Beckef3eb712010-07-16 15:37:42 +02002203 struct fsf_qtcb_bottom_io *io;
Christof Schmitte55f8752010-11-18 14:53:18 +01002204 unsigned long flags;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002205
Christof Schmittb62a8d92010-09-08 14:39:55 +02002206 if (unlikely(!(atomic_read(&zfcp_sdev->status) &
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002207 ZFCP_STATUS_COMMON_UNBLOCKED)))
2208 return -EBUSY;
2209
Christof Schmitte55f8752010-11-18 14:53:18 +01002210 spin_lock_irqsave(&qdio->req_q_lock, flags);
Swen Schillig706eca42010-07-16 15:37:38 +02002211 if (atomic_read(&qdio->req_q_free) <= 0) {
Swen Schillig564e1c82009-08-18 15:43:19 +02002212 atomic_inc(&qdio->req_q_full);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002213 goto out;
Christof Schmitt8fdf30d2009-03-02 13:09:01 +01002214 }
Swen Schillig09a46c62009-08-18 15:43:16 +02002215
Christof Schmitt1674b402010-04-30 18:09:34 +02002216 if (scsi_cmnd->sc_data_direction == DMA_TO_DEVICE)
Jan Glauber3ec908782011-06-06 14:14:40 +02002217 sbtype = SBAL_SFLAGS0_TYPE_WRITE;
Christof Schmitt1674b402010-04-30 18:09:34 +02002218
Swen Schillig564e1c82009-08-18 15:43:19 +02002219 req = zfcp_fsf_req_create(qdio, FSF_QTCB_FCP_CMND,
Christof Schmitt1674b402010-04-30 18:09:34 +02002220 sbtype, adapter->pool.scsi_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02002221
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02002222 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002223 retval = PTR_ERR(req);
2224 goto out;
2225 }
2226
Felix Beckef3eb712010-07-16 15:37:42 +02002227 scsi_cmnd->host_scribble = (unsigned char *) req->req_id;
2228
2229 io = &req->qtcb->bottom.io;
Swen Schillig09a46c62009-08-18 15:43:16 +02002230 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002231 req->data = scsi_cmnd;
Christof Schmittc61b5362010-09-08 14:39:58 +02002232 req->handler = zfcp_fsf_fcp_cmnd_handler;
Christof Schmittb62a8d92010-09-08 14:39:55 +02002233 req->qtcb->header.lun_handle = zfcp_sdev->lun_handle;
2234 req->qtcb->header.port_handle = zfcp_sdev->port->handle;
Felix Beckef3eb712010-07-16 15:37:42 +02002235 io->service_class = FSF_CLASS_3;
2236 io->fcp_cmnd_length = FCP_CMND_LEN;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002237
Felix Beckef3eb712010-07-16 15:37:42 +02002238 if (scsi_get_prot_op(scsi_cmnd) != SCSI_PROT_NORMAL) {
2239 io->data_block_length = scsi_cmnd->device->sector_size;
2240 io->ref_tag_value = scsi_get_lba(scsi_cmnd) & 0xFFFFFFFF;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002241 }
2242
Steffen Maiercc405ac2011-08-15 14:40:30 +02002243 if (zfcp_fsf_set_data_dir(scsi_cmnd, &io->data_direction))
2244 goto failed_scsi_cmnd;
Felix Beckef3eb712010-07-16 15:37:42 +02002245
Christof Schmitt4318e082009-11-24 16:54:08 +01002246 fcp_cmnd = (struct fcp_cmnd *) &req->qtcb->bottom.io.fcp_cmnd;
Christof Schmitt2443c8b2011-02-22 19:54:45 +01002247 zfcp_fc_scsi_to_fcp(fcp_cmnd, scsi_cmnd, 0);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002248
Felix Beckef3eb712010-07-16 15:37:42 +02002249 if (scsi_prot_sg_count(scsi_cmnd)) {
2250 zfcp_qdio_set_data_div(qdio, &req->qdio_req,
2251 scsi_prot_sg_count(scsi_cmnd));
Swen Schillig86a96682011-08-15 14:40:32 +02002252 retval = zfcp_qdio_sbals_from_sg(qdio, &req->qdio_req,
2253 scsi_prot_sglist(scsi_cmnd));
2254 if (retval)
2255 goto failed_scsi_cmnd;
2256 io->prot_data_length = zfcp_qdio_real_bytes(
Felix Beckef3eb712010-07-16 15:37:42 +02002257 scsi_prot_sglist(scsi_cmnd));
Felix Beckef3eb712010-07-16 15:37:42 +02002258 }
2259
Swen Schillig86a96682011-08-15 14:40:32 +02002260 retval = zfcp_qdio_sbals_from_sg(qdio, &req->qdio_req,
2261 scsi_sglist(scsi_cmnd));
2262 if (unlikely(retval))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002263 goto failed_scsi_cmnd;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002264
Felix Beckef3eb712010-07-16 15:37:42 +02002265 zfcp_qdio_set_sbale_last(adapter->qdio, &req->qdio_req);
Swen Schillig86a96682011-08-15 14:40:32 +02002266 if (zfcp_adapter_multi_buffer_active(adapter))
2267 zfcp_qdio_set_scount(qdio, &req->qdio_req);
Felix Beckef3eb712010-07-16 15:37:42 +02002268
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002269 retval = zfcp_fsf_req_send(req);
2270 if (unlikely(retval))
2271 goto failed_scsi_cmnd;
2272
2273 goto out;
2274
2275failed_scsi_cmnd:
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002276 zfcp_fsf_req_free(req);
2277 scsi_cmnd->host_scribble = NULL;
2278out:
Christof Schmitte55f8752010-11-18 14:53:18 +01002279 spin_unlock_irqrestore(&qdio->req_q_lock, flags);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002280 return retval;
2281}
2282
Christof Schmittc61b5362010-09-08 14:39:58 +02002283static void zfcp_fsf_fcp_task_mgmt_handler(struct zfcp_fsf_req *req)
2284{
2285 struct fcp_resp_with_ext *fcp_rsp;
2286 struct fcp_resp_rsp_info *rsp_info;
2287
2288 zfcp_fsf_fcp_handler_common(req);
2289
2290 fcp_rsp = (struct fcp_resp_with_ext *) &req->qtcb->bottom.io.fcp_rsp;
2291 rsp_info = (struct fcp_resp_rsp_info *) &fcp_rsp[1];
2292
2293 if ((rsp_info->rsp_code != FCP_TMF_CMPL) ||
2294 (req->status & ZFCP_STATUS_FSFREQ_ERROR))
2295 req->status |= ZFCP_STATUS_FSFREQ_TMFUNCFAILED;
2296}
2297
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002298/**
Christof Schmittb62a8d92010-09-08 14:39:55 +02002299 * zfcp_fsf_fcp_task_mgmt - send SCSI task management command
2300 * @scmnd: SCSI command to send the task management command for
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002301 * @tm_flags: unsigned byte for task management flags
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002302 * Returns: on success pointer to struct fsf_req, NULL otherwise
2303 */
Christof Schmittb62a8d92010-09-08 14:39:55 +02002304struct zfcp_fsf_req *zfcp_fsf_fcp_task_mgmt(struct scsi_cmnd *scmnd,
2305 u8 tm_flags)
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002306{
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002307 struct zfcp_fsf_req *req = NULL;
Christof Schmitt4318e082009-11-24 16:54:08 +01002308 struct fcp_cmnd *fcp_cmnd;
Christof Schmittb62a8d92010-09-08 14:39:55 +02002309 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(scmnd->device);
2310 struct zfcp_qdio *qdio = zfcp_sdev->port->adapter->qdio;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002311
Christof Schmittb62a8d92010-09-08 14:39:55 +02002312 if (unlikely(!(atomic_read(&zfcp_sdev->status) &
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002313 ZFCP_STATUS_COMMON_UNBLOCKED)))
2314 return NULL;
2315
Christof Schmitt44a24cb2010-09-08 14:39:57 +02002316 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02002317 if (zfcp_qdio_sbal_get(qdio))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002318 goto out;
Swen Schillig09a46c62009-08-18 15:43:16 +02002319
Swen Schillig564e1c82009-08-18 15:43:19 +02002320 req = zfcp_fsf_req_create(qdio, FSF_QTCB_FCP_CMND,
Jan Glauber3ec908782011-06-06 14:14:40 +02002321 SBAL_SFLAGS0_TYPE_WRITE,
Swen Schillig564e1c82009-08-18 15:43:19 +02002322 qdio->adapter->pool.scsi_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02002323
Swen Schillig633528c2008-11-26 18:07:37 +01002324 if (IS_ERR(req)) {
2325 req = NULL;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002326 goto out;
Swen Schillig633528c2008-11-26 18:07:37 +01002327 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002328
Christof Schmittb62a8d92010-09-08 14:39:55 +02002329 req->data = scmnd;
Christof Schmittc61b5362010-09-08 14:39:58 +02002330 req->handler = zfcp_fsf_fcp_task_mgmt_handler;
Christof Schmittb62a8d92010-09-08 14:39:55 +02002331 req->qtcb->header.lun_handle = zfcp_sdev->lun_handle;
2332 req->qtcb->header.port_handle = zfcp_sdev->port->handle;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002333 req->qtcb->bottom.io.data_direction = FSF_DATADIR_CMND;
2334 req->qtcb->bottom.io.service_class = FSF_CLASS_3;
Christof Schmitt4318e082009-11-24 16:54:08 +01002335 req->qtcb->bottom.io.fcp_cmnd_length = FCP_CMND_LEN;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002336
Christof Schmitt1674b402010-04-30 18:09:34 +02002337 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002338
Christof Schmitt4318e082009-11-24 16:54:08 +01002339 fcp_cmnd = (struct fcp_cmnd *) &req->qtcb->bottom.io.fcp_cmnd;
Christof Schmitt2443c8b2011-02-22 19:54:45 +01002340 zfcp_fc_scsi_to_fcp(fcp_cmnd, scmnd, tm_flags);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002341
2342 zfcp_fsf_start_timer(req, ZFCP_SCSI_ER_TIMEOUT);
2343 if (!zfcp_fsf_req_send(req))
2344 goto out;
2345
2346 zfcp_fsf_req_free(req);
2347 req = NULL;
2348out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02002349 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002350 return req;
2351}
2352
Swen Schilligbd63eaf2009-08-18 15:43:13 +02002353/**
2354 * zfcp_fsf_reqid_check - validate req_id contained in SBAL returned by QDIO
2355 * @adapter: pointer to struct zfcp_adapter
2356 * @sbal_idx: response queue index of SBAL to be processed
2357 */
Swen Schillig564e1c82009-08-18 15:43:19 +02002358void zfcp_fsf_reqid_check(struct zfcp_qdio *qdio, int sbal_idx)
Swen Schilligbd63eaf2009-08-18 15:43:13 +02002359{
Swen Schillig564e1c82009-08-18 15:43:19 +02002360 struct zfcp_adapter *adapter = qdio->adapter;
Swen Schillig706eca42010-07-16 15:37:38 +02002361 struct qdio_buffer *sbal = qdio->res_q[sbal_idx];
Swen Schilligbd63eaf2009-08-18 15:43:13 +02002362 struct qdio_buffer_element *sbale;
2363 struct zfcp_fsf_req *fsf_req;
Christof Schmittb6bd2fb2010-02-17 11:18:50 +01002364 unsigned long req_id;
Swen Schilligbd63eaf2009-08-18 15:43:13 +02002365 int idx;
2366
2367 for (idx = 0; idx < QDIO_MAX_ELEMENTS_PER_BUFFER; idx++) {
2368
2369 sbale = &sbal->element[idx];
2370 req_id = (unsigned long) sbale->addr;
Christof Schmittb6bd2fb2010-02-17 11:18:50 +01002371 fsf_req = zfcp_reqlist_find_rm(adapter->req_list, req_id);
Swen Schilligbd63eaf2009-08-18 15:43:13 +02002372
Christof Schmitt339f4f42010-07-16 15:37:43 +02002373 if (!fsf_req) {
Swen Schilligbd63eaf2009-08-18 15:43:13 +02002374 /*
2375 * Unknown request means that we have potentially memory
2376 * corruption and must stop the machine immediately.
2377 */
Christof Schmitt339f4f42010-07-16 15:37:43 +02002378 zfcp_qdio_siosl(adapter);
Swen Schilligbd63eaf2009-08-18 15:43:13 +02002379 panic("error: unknown req_id (%lx) on adapter %s.\n",
2380 req_id, dev_name(&adapter->ccw_device->dev));
Christof Schmitt339f4f42010-07-16 15:37:43 +02002381 }
Swen Schilligbd63eaf2009-08-18 15:43:13 +02002382
Christof Schmitt34c2b712010-02-17 11:18:59 +01002383 fsf_req->qdio_req.sbal_response = sbal_idx;
Swen Schilligbd63eaf2009-08-18 15:43:13 +02002384 zfcp_fsf_req_complete(fsf_req);
2385
Jan Glauber3ec908782011-06-06 14:14:40 +02002386 if (likely(sbale->eflags & SBAL_EFLAGS_LAST_ENTRY))
Swen Schilligbd63eaf2009-08-18 15:43:13 +02002387 break;
2388 }
2389}