blob: 813c5b22565b4eb84ba22de6930e1d20a13d48a5 [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 *
Christof Schmitt615f59e2010-02-17 11:18:56 +01006 * Copyright IBM Corporation 2002, 2010
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 Schmitt287ac012008-07-02 10:56:40 +020021static void zfcp_fsf_request_timeout_handler(unsigned long data)
22{
23 struct zfcp_adapter *adapter = (struct zfcp_adapter *) data;
Christof Schmitt339f4f42010-07-16 15:37:43 +020024 zfcp_qdio_siosl(adapter);
Swen Schillig5ffd51a2009-03-02 13:09:04 +010025 zfcp_erp_adapter_reopen(adapter, ZFCP_STATUS_COMMON_ERP_FAILED,
26 "fsrth_1", NULL);
Christof Schmitt287ac012008-07-02 10:56:40 +020027}
28
29static void zfcp_fsf_start_timer(struct zfcp_fsf_req *fsf_req,
30 unsigned long timeout)
31{
32 fsf_req->timer.function = zfcp_fsf_request_timeout_handler;
33 fsf_req->timer.data = (unsigned long) fsf_req->adapter;
34 fsf_req->timer.expires = jiffies + timeout;
35 add_timer(&fsf_req->timer);
36}
37
38static void zfcp_fsf_start_erp_timer(struct zfcp_fsf_req *fsf_req)
39{
40 BUG_ON(!fsf_req->erp_action);
41 fsf_req->timer.function = zfcp_erp_timeout_handler;
42 fsf_req->timer.data = (unsigned long) fsf_req->erp_action;
43 fsf_req->timer.expires = jiffies + 30 * HZ;
44 add_timer(&fsf_req->timer);
45}
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047/* association between FSF command and FSF QTCB type */
48static u32 fsf_qtcb_type[] = {
49 [FSF_QTCB_FCP_CMND] = FSF_IO_COMMAND,
50 [FSF_QTCB_ABORT_FCP_CMND] = FSF_SUPPORT_COMMAND,
51 [FSF_QTCB_OPEN_PORT_WITH_DID] = FSF_SUPPORT_COMMAND,
52 [FSF_QTCB_OPEN_LUN] = FSF_SUPPORT_COMMAND,
53 [FSF_QTCB_CLOSE_LUN] = FSF_SUPPORT_COMMAND,
54 [FSF_QTCB_CLOSE_PORT] = FSF_SUPPORT_COMMAND,
55 [FSF_QTCB_CLOSE_PHYSICAL_PORT] = FSF_SUPPORT_COMMAND,
56 [FSF_QTCB_SEND_ELS] = FSF_SUPPORT_COMMAND,
57 [FSF_QTCB_SEND_GENERIC] = FSF_SUPPORT_COMMAND,
58 [FSF_QTCB_EXCHANGE_CONFIG_DATA] = FSF_CONFIG_COMMAND,
59 [FSF_QTCB_EXCHANGE_PORT_DATA] = FSF_PORT_COMMAND,
60 [FSF_QTCB_DOWNLOAD_CONTROL_FILE] = FSF_SUPPORT_COMMAND,
61 [FSF_QTCB_UPLOAD_CONTROL_FILE] = FSF_SUPPORT_COMMAND
62};
63
Christof Schmitt553448f2008-06-10 18:20:58 +020064static void zfcp_fsf_class_not_supp(struct zfcp_fsf_req *req)
65{
Christof Schmittff3b24f2008-10-01 12:42:15 +020066 dev_err(&req->adapter->ccw_device->dev, "FCP device not "
67 "operational because of an unsupported FC class\n");
Swen Schillig5ffd51a2009-03-02 13:09:04 +010068 zfcp_erp_adapter_shutdown(req->adapter, 0, "fscns_1", req);
Christof Schmitt553448f2008-06-10 18:20:58 +020069 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
70}
71
Swen Schilligc41f8cb2008-07-02 10:56:39 +020072/**
73 * zfcp_fsf_req_free - free memory used by fsf request
74 * @fsf_req: pointer to struct zfcp_fsf_req
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 */
Swen Schilligc41f8cb2008-07-02 10:56:39 +020076void zfcp_fsf_req_free(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077{
Swen Schilligc41f8cb2008-07-02 10:56:39 +020078 if (likely(req->pool)) {
Swen Schilliga4623c42009-08-18 15:43:15 +020079 if (likely(req->qtcb))
80 mempool_free(req->qtcb, req->adapter->pool.qtcb_pool);
Swen Schilligc41f8cb2008-07-02 10:56:39 +020081 mempool_free(req, req->pool);
Heiko Carstensdd52e0e2006-09-18 22:28:49 +020082 return;
83 }
84
Swen Schilliga4623c42009-08-18 15:43:15 +020085 if (likely(req->qtcb))
86 kmem_cache_free(zfcp_data.qtcb_cache, req->qtcb);
87 kfree(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088}
89
Swen Schilligc41f8cb2008-07-02 10:56:39 +020090static void zfcp_fsf_status_read_port_closed(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
Swen Schilligecf0c772009-11-24 16:53:58 +010092 unsigned long flags;
Swen Schilligc41f8cb2008-07-02 10:56:39 +020093 struct fsf_status_read_buffer *sr_buf = req->data;
94 struct zfcp_adapter *adapter = req->adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 struct zfcp_port *port;
Christof Schmitt800c0ca2009-11-24 16:54:12 +010096 int d_id = ntoh24(sr_buf->d_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Swen Schilligecf0c772009-11-24 16:53:58 +010098 read_lock_irqsave(&adapter->port_list_lock, flags);
99 list_for_each_entry(port, &adapter->port_list, list)
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200100 if (port->d_id == d_id) {
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100101 zfcp_erp_port_reopen(port, 0, "fssrpc1", req);
Swen Schilligecf0c772009-11-24 16:53:58 +0100102 break;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200103 }
Swen Schilligecf0c772009-11-24 16:53:58 +0100104 read_unlock_irqrestore(&adapter->port_list_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105}
106
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100107static void zfcp_fsf_link_down_info_eval(struct zfcp_fsf_req *req, char *id,
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200108 struct fsf_link_down_info *link_down)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200110 struct zfcp_adapter *adapter = req->adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200112 if (atomic_read(&adapter->status) & ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED)
113 return;
114
115 atomic_set_mask(ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED, &adapter->status);
Christof Schmitt70932932009-04-17 15:08:15 +0200116
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100117 zfcp_scsi_schedule_rports_block(adapter);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200118
119 if (!link_down)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 goto out;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200121
122 switch (link_down->error_code) {
123 case FSF_PSQ_LINK_NO_LIGHT:
124 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200125 "There is no light signal from the local "
126 "fibre channel cable\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200127 break;
128 case FSF_PSQ_LINK_WRAP_PLUG:
129 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200130 "There is a wrap plug instead of a fibre "
131 "channel cable\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200132 break;
133 case FSF_PSQ_LINK_NO_FCP:
134 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200135 "The adjacent fibre channel node does not "
136 "support FCP\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200137 break;
138 case FSF_PSQ_LINK_FIRMWARE_UPDATE:
139 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200140 "The FCP device is suspended because of a "
141 "firmware update\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200142 break;
143 case FSF_PSQ_LINK_INVALID_WWPN:
144 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200145 "The FCP device detected a WWPN that is "
146 "duplicate or not valid\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200147 break;
148 case FSF_PSQ_LINK_NO_NPIV_SUPPORT:
149 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200150 "The fibre channel fabric does not support NPIV\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200151 break;
152 case FSF_PSQ_LINK_NO_FCP_RESOURCES:
153 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200154 "The FCP adapter cannot support more NPIV ports\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200155 break;
156 case FSF_PSQ_LINK_NO_FABRIC_RESOURCES:
157 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200158 "The adjacent switch cannot support "
159 "more NPIV ports\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200160 break;
161 case FSF_PSQ_LINK_FABRIC_LOGIN_UNABLE:
162 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200163 "The FCP adapter could not log in to the "
164 "fibre channel fabric\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200165 break;
166 case FSF_PSQ_LINK_WWPN_ASSIGNMENT_CORRUPTED:
167 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200168 "The WWPN assignment file on the FCP adapter "
169 "has been damaged\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200170 break;
171 case FSF_PSQ_LINK_MODE_TABLE_CURRUPTED:
172 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200173 "The mode table on the FCP adapter "
174 "has been damaged\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200175 break;
176 case FSF_PSQ_LINK_NO_WWPN_ASSIGNMENT:
177 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200178 "All NPIV ports on the FCP adapter have "
179 "been assigned\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200180 break;
181 default:
182 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200183 "The link between the FCP adapter and "
184 "the FC fabric is down\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200185 }
186out:
187 zfcp_erp_adapter_failed(adapter, id, req);
188}
189
190static void zfcp_fsf_status_read_link_down(struct zfcp_fsf_req *req)
191{
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200192 struct fsf_status_read_buffer *sr_buf = req->data;
193 struct fsf_link_down_info *ldi =
194 (struct fsf_link_down_info *) &sr_buf->payload;
195
196 switch (sr_buf->status_subtype) {
197 case FSF_STATUS_READ_SUB_NO_PHYSICAL_LINK:
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100198 zfcp_fsf_link_down_info_eval(req, "fssrld1", ldi);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200199 break;
200 case FSF_STATUS_READ_SUB_FDISC_FAILED:
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100201 zfcp_fsf_link_down_info_eval(req, "fssrld2", ldi);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200202 break;
203 case FSF_STATUS_READ_SUB_FIRMWARE_UPDATE:
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100204 zfcp_fsf_link_down_info_eval(req, "fssrld3", NULL);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200205 };
206}
207
208static void zfcp_fsf_status_read_handler(struct zfcp_fsf_req *req)
209{
210 struct zfcp_adapter *adapter = req->adapter;
211 struct fsf_status_read_buffer *sr_buf = req->data;
212
213 if (req->status & ZFCP_STATUS_FSFREQ_DISMISSED) {
Swen Schillig57717102009-08-18 15:43:21 +0200214 zfcp_dbf_hba_fsf_unsol("dism", adapter->dbf, sr_buf);
Swen Schilliga4623c42009-08-18 15:43:15 +0200215 mempool_free(sr_buf, adapter->pool.status_read_data);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200216 zfcp_fsf_req_free(req);
217 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 }
219
Swen Schillig57717102009-08-18 15:43:21 +0200220 zfcp_dbf_hba_fsf_unsol("read", adapter->dbf, sr_buf);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200221
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200222 switch (sr_buf->status_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 case FSF_STATUS_READ_PORT_CLOSED:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200224 zfcp_fsf_status_read_port_closed(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 case FSF_STATUS_READ_INCOMING_ELS:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200227 zfcp_fc_incoming_els(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 case FSF_STATUS_READ_SENSE_DATA_AVAIL:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 case FSF_STATUS_READ_BIT_ERROR_THRESHOLD:
Christof Schmittff3b24f2008-10-01 12:42:15 +0200232 dev_warn(&adapter->ccw_device->dev,
233 "The error threshold for checksum statistics "
234 "has been exceeded\n");
Swen Schillig57717102009-08-18 15:43:21 +0200235 zfcp_dbf_hba_berr(adapter->dbf, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 case FSF_STATUS_READ_LINK_DOWN:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200238 zfcp_fsf_status_read_link_down(req);
Sven Schuetz2d1e5472010-07-16 15:37:39 +0200239 zfcp_fc_enqueue_event(adapter, FCH_EVT_LINKDOWN, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 case FSF_STATUS_READ_LINK_UP:
Christof Schmitt553448f2008-06-10 18:20:58 +0200242 dev_info(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200243 "The local link has been restored\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 /* All ports should be marked as ready to run again */
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100245 zfcp_erp_modify_adapter_status(adapter, "fssrh_1", NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 ZFCP_STATUS_COMMON_RUNNING,
247 ZFCP_SET);
248 zfcp_erp_adapter_reopen(adapter,
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200249 ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED |
250 ZFCP_STATUS_COMMON_ERP_FAILED,
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100251 "fssrh_2", req);
Sven Schuetz2d1e5472010-07-16 15:37:39 +0200252 zfcp_fc_enqueue_event(adapter, FCH_EVT_LINKUP, 0);
253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 break;
Maxim Shchetynin9eb69af2006-01-05 09:56:47 +0100255 case FSF_STATUS_READ_NOTIFICATION_LOST:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200256 if (sr_buf->status_subtype & FSF_STATUS_READ_SUB_ACT_UPDATED)
Christof Schmitta1ca4832010-09-08 14:39:59 +0200257 zfcp_cfdc_adapter_access_changed(adapter);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200258 if (sr_buf->status_subtype & FSF_STATUS_READ_SUB_INCOMING_ELS)
Swen Schillig9eae07e2009-11-24 16:54:06 +0100259 queue_work(adapter->work_queue, &adapter->scan_work);
Maxim Shchetynin9eb69af2006-01-05 09:56:47 +0100260 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 case FSF_STATUS_READ_CFDC_UPDATED:
Christof Schmitta1ca4832010-09-08 14:39:59 +0200262 zfcp_cfdc_adapter_access_changed(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 break;
Maxim Shchetyninaef4a982005-09-13 21:51:16 +0200264 case FSF_STATUS_READ_FEATURE_UPDATE_ALERT:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200265 adapter->adapter_features = sr_buf->payload.word[0];
Maxim Shchetyninaef4a982005-09-13 21:51:16 +0200266 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200268
Swen Schilliga4623c42009-08-18 15:43:15 +0200269 mempool_free(sr_buf, adapter->pool.status_read_data);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200270 zfcp_fsf_req_free(req);
Swen Schilligd26ab062008-05-19 12:17:37 +0200271
272 atomic_inc(&adapter->stat_miss);
Swen Schillig45446832009-08-18 15:43:17 +0200273 queue_work(adapter->work_queue, &adapter->stat_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274}
275
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200276static void zfcp_fsf_fsfstatus_qual_eval(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277{
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200278 switch (req->qtcb->header.fsf_status_qual.word[0]) {
279 case FSF_SQ_FCP_RSP_AVAILABLE:
280 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
281 case FSF_SQ_NO_RETRY_POSSIBLE:
282 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
283 return;
284 case FSF_SQ_COMMAND_ABORTED:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200285 break;
286 case FSF_SQ_NO_RECOM:
287 dev_err(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200288 "The FCP adapter reported a problem "
289 "that cannot be recovered\n");
Christof Schmitt339f4f42010-07-16 15:37:43 +0200290 zfcp_qdio_siosl(req->adapter);
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100291 zfcp_erp_adapter_shutdown(req->adapter, 0, "fsfsqe1", req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200292 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200294 /* all non-return stats set FSFREQ_ERROR*/
295 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
296}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200298static void zfcp_fsf_fsfstatus_eval(struct zfcp_fsf_req *req)
299{
300 if (unlikely(req->status & ZFCP_STATUS_FSFREQ_ERROR))
301 return;
Andreas Herrmann059c97d2005-09-13 21:47:52 +0200302
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200303 switch (req->qtcb->header.fsf_status) {
304 case FSF_UNKNOWN_COMMAND:
305 dev_err(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200306 "The FCP adapter does not recognize the command 0x%x\n",
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200307 req->qtcb->header.fsf_command);
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100308 zfcp_erp_adapter_shutdown(req->adapter, 0, "fsfse_1", req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200309 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 case FSF_ADAPTER_STATUS_AVAILABLE:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200312 zfcp_fsf_fsfstatus_qual_eval(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315}
316
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200317static void zfcp_fsf_protstatus_eval(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200319 struct zfcp_adapter *adapter = req->adapter;
320 struct fsf_qtcb *qtcb = req->qtcb;
321 union fsf_prot_status_qual *psq = &qtcb->prefix.prot_status_qual;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Swen Schillig57717102009-08-18 15:43:21 +0200323 zfcp_dbf_hba_fsf_response(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200325 if (req->status & ZFCP_STATUS_FSFREQ_DISMISSED) {
Christof Schmitt4c571c62009-11-24 16:54:15 +0100326 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200327 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 }
329
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200330 switch (qtcb->prefix.prot_status) {
331 case FSF_PROT_GOOD:
332 case FSF_PROT_FSF_STATUS_PRESENTED:
333 return;
334 case FSF_PROT_QTCB_VERSION_ERROR:
335 dev_err(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200336 "QTCB version 0x%x not supported by FCP adapter "
337 "(0x%x to 0x%x)\n", FSF_QTCB_CURRENT_VERSION,
338 psq->word[0], psq->word[1]);
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100339 zfcp_erp_adapter_shutdown(adapter, 0, "fspse_1", req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 break;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200341 case FSF_PROT_ERROR_STATE:
342 case FSF_PROT_SEQ_NUMB_ERROR:
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100343 zfcp_erp_adapter_reopen(adapter, 0, "fspse_2", req);
Christof Schmitt4c571c62009-11-24 16:54:15 +0100344 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 break;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200346 case FSF_PROT_UNSUPP_QTCB_TYPE:
347 dev_err(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200348 "The QTCB type is not supported by the FCP adapter\n");
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100349 zfcp_erp_adapter_shutdown(adapter, 0, "fspse_3", req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 break;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200351 case FSF_PROT_HOST_CONNECTION_INITIALIZING:
352 atomic_set_mask(ZFCP_STATUS_ADAPTER_HOST_CON_INIT,
353 &adapter->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 break;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200355 case FSF_PROT_DUPLICATE_REQUEST_ID:
356 dev_err(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200357 "0x%Lx is an ambiguous request identifier\n",
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200358 (unsigned long long)qtcb->bottom.support.req_handle);
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100359 zfcp_erp_adapter_shutdown(adapter, 0, "fspse_4", req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 break;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200361 case FSF_PROT_LINK_DOWN:
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100362 zfcp_fsf_link_down_info_eval(req, "fspse_5",
363 &psq->link_down_info);
Christof Schmitt452b5052010-02-17 11:18:51 +0100364 /* go through reopen to flush pending requests */
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100365 zfcp_erp_adapter_reopen(adapter, 0, "fspse_6", req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 break;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200367 case FSF_PROT_REEST_QUEUE:
368 /* All ports should be marked as ready to run again */
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100369 zfcp_erp_modify_adapter_status(adapter, "fspse_7", NULL,
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200370 ZFCP_STATUS_COMMON_RUNNING,
371 ZFCP_SET);
372 zfcp_erp_adapter_reopen(adapter,
373 ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED |
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100374 ZFCP_STATUS_COMMON_ERP_FAILED,
375 "fspse_8", req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200376 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 default:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200378 dev_err(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200379 "0x%x is not a valid transfer protocol status\n",
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200380 qtcb->prefix.prot_status);
Christof Schmitt339f4f42010-07-16 15:37:43 +0200381 zfcp_qdio_siosl(adapter);
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100382 zfcp_erp_adapter_shutdown(adapter, 0, "fspse_9", req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200384 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385}
386
387/**
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200388 * zfcp_fsf_req_complete - process completion of a FSF request
389 * @fsf_req: The FSF request that has been completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 *
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200391 * When a request has been completed either from the FCP adapter,
392 * or it has been dismissed due to a queue shutdown, this function
393 * is called to process the completion status and trigger further
394 * events related to the FSF request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 */
Swen Schilligbd63eaf2009-08-18 15:43:13 +0200396static void zfcp_fsf_req_complete(struct zfcp_fsf_req *req)
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200397{
398 if (unlikely(req->fsf_command == FSF_QTCB_UNSOLICITED_STATUS)) {
399 zfcp_fsf_status_read_handler(req);
400 return;
401 }
402
403 del_timer(&req->timer);
404 zfcp_fsf_protstatus_eval(req);
405 zfcp_fsf_fsfstatus_eval(req);
406 req->handler(req);
407
408 if (req->erp_action)
Christof Schmitt287ac012008-07-02 10:56:40 +0200409 zfcp_erp_notify(req->erp_action, 0);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200410
411 if (likely(req->status & ZFCP_STATUS_FSFREQ_CLEANUP))
412 zfcp_fsf_req_free(req);
413 else
Swen Schillig058b8642009-08-18 15:43:14 +0200414 complete(&req->completion);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200415}
416
Swen Schilligbd63eaf2009-08-18 15:43:13 +0200417/**
418 * zfcp_fsf_req_dismiss_all - dismiss all fsf requests
419 * @adapter: pointer to struct zfcp_adapter
420 *
421 * Never ever call this without shutting down the adapter first.
422 * Otherwise the adapter would continue using and corrupting s390 storage.
423 * Included BUG_ON() call to ensure this is done.
424 * ERP is supposed to be the only user of this function.
425 */
426void zfcp_fsf_req_dismiss_all(struct zfcp_adapter *adapter)
427{
428 struct zfcp_fsf_req *req, *tmp;
Swen Schilligbd63eaf2009-08-18 15:43:13 +0200429 LIST_HEAD(remove_queue);
Swen Schilligbd63eaf2009-08-18 15:43:13 +0200430
431 BUG_ON(atomic_read(&adapter->status) & ZFCP_STATUS_ADAPTER_QDIOUP);
Christof Schmittb6bd2fb2010-02-17 11:18:50 +0100432 zfcp_reqlist_move(adapter->req_list, &remove_queue);
Swen Schilligbd63eaf2009-08-18 15:43:13 +0200433
434 list_for_each_entry_safe(req, tmp, &remove_queue, list) {
435 list_del(&req->list);
436 req->status |= ZFCP_STATUS_FSFREQ_DISMISSED;
437 zfcp_fsf_req_complete(req);
438 }
439}
440
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200441static int zfcp_fsf_exchange_config_evaluate(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442{
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100443 struct fsf_qtcb_bottom_config *bottom = &req->qtcb->bottom.config;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200444 struct zfcp_adapter *adapter = req->adapter;
Andreas Herrmann13e1e1f2005-09-19 16:56:17 +0200445 struct Scsi_Host *shost = adapter->scsi_host;
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100446 struct fc_els_flogi *nsp, *plogi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100448 /* adjust pointers for missing command code */
449 nsp = (struct fc_els_flogi *) ((u8 *)&bottom->nport_serv_param
450 - sizeof(u32));
451 plogi = (struct fc_els_flogi *) ((u8 *)&bottom->plogi_payload
452 - sizeof(u32));
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200453
454 if (req->data)
455 memcpy(req->data, bottom, sizeof(*bottom));
456
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100457 fc_host_port_name(shost) = nsp->fl_wwpn;
458 fc_host_node_name(shost) = nsp->fl_wwnn;
Christof Schmitt800c0ca2009-11-24 16:54:12 +0100459 fc_host_port_id(shost) = ntoh24(bottom->s_id);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200460 fc_host_speed(shost) = bottom->fc_link_speed;
461 fc_host_supported_classes(shost) = FC_COS_CLASS2 | FC_COS_CLASS3;
462
463 adapter->hydra_version = bottom->adapter_type;
Christof Schmittfaf4cd82010-07-16 15:37:36 +0200464 adapter->timer_ticks = bottom->timer_interval & ZFCP_FSF_TIMER_INT_MASK;
Christof Schmitt8d88cf32010-06-21 10:11:33 +0200465 adapter->stat_read_buf_num = max(bottom->status_read_buf_num,
466 (u16)FSF_STATUS_READS_RECOM);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200467
468 if (fc_host_permanent_port_name(shost) == -1)
469 fc_host_permanent_port_name(shost) = fc_host_port_name(shost);
470
471 switch (bottom->fc_topology) {
472 case FSF_TOPO_P2P:
Christof Schmitt800c0ca2009-11-24 16:54:12 +0100473 adapter->peer_d_id = ntoh24(bottom->peer_d_id);
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100474 adapter->peer_wwpn = plogi->fl_wwpn;
475 adapter->peer_wwnn = plogi->fl_wwnn;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200476 fc_host_port_type(shost) = FC_PORTTYPE_PTP;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200477 break;
478 case FSF_TOPO_FABRIC:
479 fc_host_port_type(shost) = FC_PORTTYPE_NPORT;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200480 break;
481 case FSF_TOPO_AL:
482 fc_host_port_type(shost) = FC_PORTTYPE_NLPORT;
Christof Schmittdceab652009-05-15 13:18:18 +0200483 /* fall through */
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200484 default:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200485 dev_err(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200486 "Unknown or unsupported arbitrated loop "
487 "fibre channel topology detected\n");
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100488 zfcp_erp_adapter_shutdown(adapter, 0, "fsece_1", req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200489 return -EIO;
490 }
491
Felix Beckef3eb712010-07-16 15:37:42 +0200492 zfcp_scsi_set_prot(adapter);
493
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200494 return 0;
495}
496
497static void zfcp_fsf_exchange_config_data_handler(struct zfcp_fsf_req *req)
498{
499 struct zfcp_adapter *adapter = req->adapter;
500 struct fsf_qtcb *qtcb = req->qtcb;
501 struct fsf_qtcb_bottom_config *bottom = &qtcb->bottom.config;
502 struct Scsi_Host *shost = adapter->scsi_host;
503
504 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
505 return;
506
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 adapter->fsf_lic_version = bottom->lic_version;
Maxim Shchetyninaef4a982005-09-13 21:51:16 +0200508 adapter->adapter_features = bottom->adapter_features;
509 adapter->connection_features = bottom->connection_features;
6f71d9b2005-04-10 23:04:28 -0500510 adapter->peer_wwpn = 0;
511 adapter->peer_wwnn = 0;
512 adapter->peer_d_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200514 switch (qtcb->header.fsf_status) {
515 case FSF_GOOD:
516 if (zfcp_fsf_exchange_config_evaluate(req))
517 return;
Swen Schillig52ef11a2007-08-28 09:31:09 +0200518
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200519 if (bottom->max_qtcb_size < sizeof(struct fsf_qtcb)) {
520 dev_err(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200521 "FCP adapter maximum QTCB size (%d bytes) "
522 "is too small\n",
523 bottom->max_qtcb_size);
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100524 zfcp_erp_adapter_shutdown(adapter, 0, "fsecdh1", req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200525 return;
526 }
527 atomic_set_mask(ZFCP_STATUS_ADAPTER_XCONFIG_OK,
528 &adapter->status);
529 break;
530 case FSF_EXCHANGE_CONFIG_DATA_INCOMPLETE:
Andreas Herrmann13e1e1f2005-09-19 16:56:17 +0200531 fc_host_node_name(shost) = 0;
532 fc_host_port_name(shost) = 0;
533 fc_host_port_id(shost) = 0;
534 fc_host_speed(shost) = FC_PORTSPEED_UNKNOWN;
Andreas Herrmannad757cd2006-01-13 02:26:11 +0100535 fc_host_port_type(shost) = FC_PORTTYPE_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 adapter->hydra_version = 0;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200537
538 atomic_set_mask(ZFCP_STATUS_ADAPTER_XCONFIG_OK,
539 &adapter->status);
540
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100541 zfcp_fsf_link_down_info_eval(req, "fsecdh2",
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200542 &qtcb->header.fsf_status_qual.link_down_info);
543 break;
544 default:
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100545 zfcp_erp_adapter_shutdown(adapter, 0, "fsecdh3", req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200546 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 }
548
Maxim Shchetyninaef4a982005-09-13 21:51:16 +0200549 if (adapter->adapter_features & FSF_FEATURE_HBAAPI_MANAGEMENT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 adapter->hardware_version = bottom->hardware_version;
Andreas Herrmann13e1e1f2005-09-19 16:56:17 +0200551 memcpy(fc_host_serial_number(shost), bottom->serial_number,
552 min(FC_SERIAL_NUMBER_SIZE, 17));
553 EBCASC(fc_host_serial_number(shost),
554 min(FC_SERIAL_NUMBER_SIZE, 17));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 }
556
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200557 if (FSF_QTCB_CURRENT_VERSION < bottom->low_qtcb_version) {
Christof Schmitt553448f2008-06-10 18:20:58 +0200558 dev_err(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200559 "The FCP adapter only supports newer "
560 "control block versions\n");
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100561 zfcp_erp_adapter_shutdown(adapter, 0, "fsecdh4", req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200562 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200564 if (FSF_QTCB_CURRENT_VERSION > bottom->high_qtcb_version) {
Christof Schmitt553448f2008-06-10 18:20:58 +0200565 dev_err(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200566 "The FCP adapter only supports older "
567 "control block versions\n");
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100568 zfcp_erp_adapter_shutdown(adapter, 0, "fsecdh5", req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570}
571
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200572static void zfcp_fsf_exchange_port_evaluate(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573{
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200574 struct zfcp_adapter *adapter = req->adapter;
575 struct fsf_qtcb_bottom_port *bottom = &req->qtcb->bottom.port;
576 struct Scsi_Host *shost = adapter->scsi_host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200578 if (req->data)
579 memcpy(req->data, bottom, sizeof(*bottom));
Andreas Herrmann2f8f3ed2006-02-11 01:41:50 +0100580
Christof Schmitt02829852009-03-02 13:09:06 +0100581 if (adapter->connection_features & FSF_FEATURE_NPIV_MODE) {
Andreas Herrmann2f8f3ed2006-02-11 01:41:50 +0100582 fc_host_permanent_port_name(shost) = bottom->wwpn;
Christof Schmitt02829852009-03-02 13:09:06 +0100583 fc_host_port_type(shost) = FC_PORTTYPE_NPIV;
584 } else
Andreas Herrmann2f8f3ed2006-02-11 01:41:50 +0100585 fc_host_permanent_port_name(shost) = fc_host_port_name(shost);
586 fc_host_maxframe_size(shost) = bottom->maximum_frame_size;
587 fc_host_supported_speeds(shost) = bottom->supported_speed;
Christof Schmitt2d8e62b2010-02-17 11:18:58 +0100588 memcpy(fc_host_supported_fc4s(shost), bottom->supported_fc4_types,
589 FC_FC4_LIST_SIZE);
590 memcpy(fc_host_active_fc4s(shost), bottom->active_fc4_types,
591 FC_FC4_LIST_SIZE);
Andreas Herrmann2f8f3ed2006-02-11 01:41:50 +0100592}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200594static void zfcp_fsf_exchange_port_data_handler(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200596 struct fsf_qtcb *qtcb = req->qtcb;
Andreas Herrmann2f8f3ed2006-02-11 01:41:50 +0100597
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200598 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 return;
600
Maxim Shchetyninaef4a982005-09-13 21:51:16 +0200601 switch (qtcb->header.fsf_status) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200602 case FSF_GOOD:
603 zfcp_fsf_exchange_port_evaluate(req);
Maxim Shchetyninaef4a982005-09-13 21:51:16 +0200604 break;
Maxim Shchetyninaef4a982005-09-13 21:51:16 +0200605 case FSF_EXCHANGE_CONFIG_DATA_INCOMPLETE:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200606 zfcp_fsf_exchange_port_evaluate(req);
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100607 zfcp_fsf_link_down_info_eval(req, "fsepdh1",
Maxim Shchetyninaef4a982005-09-13 21:51:16 +0200608 &qtcb->header.fsf_status_qual.link_down_info);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200609 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 }
611}
612
Swen Schilliga4623c42009-08-18 15:43:15 +0200613static struct zfcp_fsf_req *zfcp_fsf_alloc(mempool_t *pool)
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200614{
615 struct zfcp_fsf_req *req;
Swen Schilliga4623c42009-08-18 15:43:15 +0200616
617 if (likely(pool))
618 req = mempool_alloc(pool, GFP_ATOMIC);
619 else
620 req = kmalloc(sizeof(*req), GFP_ATOMIC);
621
622 if (unlikely(!req))
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200623 return NULL;
Swen Schilliga4623c42009-08-18 15:43:15 +0200624
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200625 memset(req, 0, sizeof(*req));
Christof Schmitt88f2a972008-11-04 16:35:07 +0100626 req->pool = pool;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200627 return req;
628}
629
Swen Schilliga4623c42009-08-18 15:43:15 +0200630static struct fsf_qtcb *zfcp_qtcb_alloc(mempool_t *pool)
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200631{
Swen Schilliga4623c42009-08-18 15:43:15 +0200632 struct fsf_qtcb *qtcb;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200633
634 if (likely(pool))
635 qtcb = mempool_alloc(pool, GFP_ATOMIC);
636 else
Swen Schilliga4623c42009-08-18 15:43:15 +0200637 qtcb = kmem_cache_alloc(zfcp_data.qtcb_cache, GFP_ATOMIC);
638
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200639 if (unlikely(!qtcb))
640 return NULL;
641
642 memset(qtcb, 0, sizeof(*qtcb));
Swen Schilliga4623c42009-08-18 15:43:15 +0200643 return qtcb;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200644}
645
Swen Schillig564e1c82009-08-18 15:43:19 +0200646static struct zfcp_fsf_req *zfcp_fsf_req_create(struct zfcp_qdio *qdio,
Christof Schmitt1674b402010-04-30 18:09:34 +0200647 u32 fsf_cmd, u32 sbtype,
648 mempool_t *pool)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649{
Swen Schillig564e1c82009-08-18 15:43:19 +0200650 struct zfcp_adapter *adapter = qdio->adapter;
Swen Schilliga4623c42009-08-18 15:43:15 +0200651 struct zfcp_fsf_req *req = zfcp_fsf_alloc(pool);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200652
653 if (unlikely(!req))
Christof Schmitt1e9b1642009-07-13 15:06:04 +0200654 return ERR_PTR(-ENOMEM);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200655
656 if (adapter->req_no == 0)
657 adapter->req_no++;
658
659 INIT_LIST_HEAD(&req->list);
660 init_timer(&req->timer);
Swen Schillig058b8642009-08-18 15:43:14 +0200661 init_completion(&req->completion);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200662
663 req->adapter = adapter;
664 req->fsf_command = fsf_cmd;
Christof Schmitt52bfb552009-03-02 13:08:58 +0100665 req->req_id = adapter->req_no;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200666
Swen Schilliga4623c42009-08-18 15:43:15 +0200667 if (likely(fsf_cmd != FSF_QTCB_UNSOLICITED_STATUS)) {
668 if (likely(pool))
669 req->qtcb = zfcp_qtcb_alloc(adapter->pool.qtcb_pool);
670 else
671 req->qtcb = zfcp_qtcb_alloc(NULL);
672
673 if (unlikely(!req->qtcb)) {
674 zfcp_fsf_req_free(req);
675 return ERR_PTR(-ENOMEM);
676 }
677
Christof Schmitt5bdecd22010-02-17 11:18:55 +0100678 req->seq_no = adapter->fsf_req_seq_no;
Swen Schillig564e1c82009-08-18 15:43:19 +0200679 req->qtcb->prefix.req_seq_no = adapter->fsf_req_seq_no;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200680 req->qtcb->prefix.req_id = req->req_id;
681 req->qtcb->prefix.ulp_info = 26;
682 req->qtcb->prefix.qtcb_type = fsf_qtcb_type[req->fsf_command];
683 req->qtcb->prefix.qtcb_version = FSF_QTCB_CURRENT_VERSION;
684 req->qtcb->header.req_handle = req->req_id;
685 req->qtcb->header.fsf_command = req->fsf_command;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200686 }
687
Christof Schmitt1674b402010-04-30 18:09:34 +0200688 zfcp_qdio_req_init(adapter->qdio, &req->qdio_req, req->req_id, sbtype,
689 req->qtcb, sizeof(struct fsf_qtcb));
690
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200691 return req;
692}
693
694static int zfcp_fsf_req_send(struct zfcp_fsf_req *req)
695{
696 struct zfcp_adapter *adapter = req->adapter;
Swen Schillig564e1c82009-08-18 15:43:19 +0200697 struct zfcp_qdio *qdio = adapter->qdio;
Christof Schmittb6bd2fb2010-02-17 11:18:50 +0100698 int with_qtcb = (req->qtcb != NULL);
Christof Schmitte60a6d62010-02-17 11:18:49 +0100699 int req_id = req->req_id;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200700
Christof Schmittb6bd2fb2010-02-17 11:18:50 +0100701 zfcp_reqlist_add(adapter->req_list, req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200702
Swen Schillig706eca42010-07-16 15:37:38 +0200703 req->qdio_req.qdio_outb_usage = atomic_read(&qdio->req_q_free);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200704 req->issued = get_clock();
Christof Schmitt34c2b712010-02-17 11:18:59 +0100705 if (zfcp_qdio_send(qdio, &req->qdio_req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200706 del_timer(&req->timer);
Christof Schmitt37651382008-11-04 16:35:08 +0100707 /* lookup request again, list might have changed */
Christof Schmittb6bd2fb2010-02-17 11:18:50 +0100708 zfcp_reqlist_find_rm(adapter->req_list, req_id);
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100709 zfcp_erp_adapter_reopen(adapter, 0, "fsrs__1", req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200710 return -EIO;
711 }
712
713 /* Don't increase for unsolicited status */
Martin Petermann135ea132009-04-17 15:08:01 +0200714 if (with_qtcb)
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200715 adapter->fsf_req_seq_no++;
Christof Schmitt52bfb552009-03-02 13:08:58 +0100716 adapter->req_no++;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200717
718 return 0;
719}
720
721/**
722 * zfcp_fsf_status_read - send status read request
723 * @adapter: pointer to struct zfcp_adapter
724 * @req_flags: request flags
725 * Returns: 0 on success, ERROR otherwise
726 */
Swen Schillig564e1c82009-08-18 15:43:19 +0200727int zfcp_fsf_status_read(struct zfcp_qdio *qdio)
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200728{
Swen Schillig564e1c82009-08-18 15:43:19 +0200729 struct zfcp_adapter *adapter = qdio->adapter;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200730 struct zfcp_fsf_req *req;
731 struct fsf_status_read_buffer *sr_buf;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200732 int retval = -EIO;
733
Christof Schmitt44a24cb2010-09-08 14:39:57 +0200734 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +0200735 if (zfcp_qdio_sbal_get(qdio))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
Christof Schmitt1674b402010-04-30 18:09:34 +0200738 req = zfcp_fsf_req_create(qdio, FSF_QTCB_UNSOLICITED_STATUS, 0,
Swen Schilliga4623c42009-08-18 15:43:15 +0200739 adapter->pool.status_read_req);
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +0200740 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200741 retval = PTR_ERR(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 goto out;
743 }
744
Swen Schilliga4623c42009-08-18 15:43:15 +0200745 sr_buf = mempool_alloc(adapter->pool.status_read_data, GFP_ATOMIC);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200746 if (!sr_buf) {
747 retval = -ENOMEM;
748 goto failed_buf;
749 }
750 memset(sr_buf, 0, sizeof(*sr_buf));
751 req->data = sr_buf;
Christof Schmitt1674b402010-04-30 18:09:34 +0200752
753 zfcp_qdio_fill_next(qdio, &req->qdio_req, sr_buf, sizeof(*sr_buf));
754 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200755
756 retval = zfcp_fsf_req_send(req);
757 if (retval)
758 goto failed_req_send;
759
760 goto out;
761
762failed_req_send:
Swen Schilliga4623c42009-08-18 15:43:15 +0200763 mempool_free(sr_buf, adapter->pool.status_read_data);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200764failed_buf:
765 zfcp_fsf_req_free(req);
Swen Schillig57717102009-08-18 15:43:21 +0200766 zfcp_dbf_hba_fsf_unsol("fail", adapter->dbf, NULL);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200767out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +0200768 spin_unlock_irq(&qdio->req_q_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 return retval;
770}
771
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200772static void zfcp_fsf_abort_fcp_command_handler(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773{
Christof Schmittb62a8d92010-09-08 14:39:55 +0200774 struct scsi_device *sdev = req->data;
775 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200776 union fsf_status_qual *fsq = &req->qtcb->header.fsf_status_qual;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200778 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
779 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200781 switch (req->qtcb->header.fsf_status) {
782 case FSF_PORT_HANDLE_NOT_VALID:
783 if (fsq->word[0] == fsq->word[1]) {
Christof Schmittb62a8d92010-09-08 14:39:55 +0200784 zfcp_erp_adapter_reopen(zfcp_sdev->port->adapter, 0,
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100785 "fsafch1", req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200786 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
787 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 break;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200789 case FSF_LUN_HANDLE_NOT_VALID:
790 if (fsq->word[0] == fsq->word[1]) {
Christof Schmittb62a8d92010-09-08 14:39:55 +0200791 zfcp_erp_port_reopen(zfcp_sdev->port, 0, "fsafch2",
792 req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200793 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
794 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 break;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200796 case FSF_FCP_COMMAND_DOES_NOT_EXIST:
797 req->status |= ZFCP_STATUS_FSFREQ_ABORTNOTNEEDED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 break;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200799 case FSF_PORT_BOXED:
Christof Schmittb62a8d92010-09-08 14:39:55 +0200800 zfcp_erp_port_boxed(zfcp_sdev->port, "fsafch3", req);
Christof Schmitt4c571c62009-11-24 16:54:15 +0100801 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200802 break;
803 case FSF_LUN_BOXED:
Christof Schmittb62a8d92010-09-08 14:39:55 +0200804 zfcp_erp_lun_boxed(sdev, "fsafch4", req);
Christof Schmitt4c571c62009-11-24 16:54:15 +0100805 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200806 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 case FSF_ADAPTER_STATUS_AVAILABLE:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200808 switch (fsq->word[0]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
Christof Schmittb62a8d92010-09-08 14:39:55 +0200810 zfcp_fc_test_link(zfcp_sdev->port);
Christof Schmittdceab652009-05-15 13:18:18 +0200811 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200813 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 break;
815 }
816 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 case FSF_GOOD:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200818 req->status |= ZFCP_STATUS_FSFREQ_ABORTSUCCEEDED;
819 break;
820 }
821}
822
823/**
Christof Schmittb62a8d92010-09-08 14:39:55 +0200824 * zfcp_fsf_abort_fcp_cmnd - abort running SCSI command
825 * @scmnd: The SCSI command to abort
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200826 * Returns: pointer to struct zfcp_fsf_req
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200827 */
828
Christof Schmittb62a8d92010-09-08 14:39:55 +0200829struct zfcp_fsf_req *zfcp_fsf_abort_fcp_cmnd(struct scsi_cmnd *scmnd)
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200830{
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200831 struct zfcp_fsf_req *req = NULL;
Christof Schmittb62a8d92010-09-08 14:39:55 +0200832 struct scsi_device *sdev = scmnd->device;
833 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
834 struct zfcp_qdio *qdio = zfcp_sdev->port->adapter->qdio;
835 unsigned long old_req_id = (unsigned long) scmnd->host_scribble;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200836
Christof Schmitt44a24cb2010-09-08 14:39:57 +0200837 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +0200838 if (zfcp_qdio_sbal_get(qdio))
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200839 goto out;
Swen Schillig564e1c82009-08-18 15:43:19 +0200840 req = zfcp_fsf_req_create(qdio, FSF_QTCB_ABORT_FCP_CMND,
Christof Schmitt1674b402010-04-30 18:09:34 +0200841 SBAL_FLAGS0_TYPE_READ,
Swen Schillig564e1c82009-08-18 15:43:19 +0200842 qdio->adapter->pool.scsi_abort);
Swen Schillig633528c2008-11-26 18:07:37 +0100843 if (IS_ERR(req)) {
844 req = NULL;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200845 goto out;
Swen Schillig633528c2008-11-26 18:07:37 +0100846 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200847
Christof Schmittb62a8d92010-09-08 14:39:55 +0200848 if (unlikely(!(atomic_read(&zfcp_sdev->status) &
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200849 ZFCP_STATUS_COMMON_UNBLOCKED)))
850 goto out_error_free;
851
Christof Schmitt1674b402010-04-30 18:09:34 +0200852 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200853
Christof Schmittb62a8d92010-09-08 14:39:55 +0200854 req->data = zfcp_sdev;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200855 req->handler = zfcp_fsf_abort_fcp_command_handler;
Christof Schmittb62a8d92010-09-08 14:39:55 +0200856 req->qtcb->header.lun_handle = zfcp_sdev->lun_handle;
857 req->qtcb->header.port_handle = zfcp_sdev->port->handle;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200858 req->qtcb->bottom.support.req_handle = (u64) old_req_id;
859
860 zfcp_fsf_start_timer(req, ZFCP_SCSI_ER_TIMEOUT);
861 if (!zfcp_fsf_req_send(req))
862 goto out;
863
864out_error_free:
865 zfcp_fsf_req_free(req);
866 req = NULL;
867out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +0200868 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200869 return req;
870}
871
872static void zfcp_fsf_send_ct_handler(struct zfcp_fsf_req *req)
873{
874 struct zfcp_adapter *adapter = req->adapter;
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100875 struct zfcp_fsf_ct_els *ct = req->data;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200876 struct fsf_qtcb_header *header = &req->qtcb->header;
877
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100878 ct->status = -EINVAL;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200879
880 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
881 goto skip_fsfstatus;
882
883 switch (header->fsf_status) {
884 case FSF_GOOD:
Swen Schillig57717102009-08-18 15:43:21 +0200885 zfcp_dbf_san_ct_response(req);
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100886 ct->status = 0;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200887 break;
888 case FSF_SERVICE_CLASS_NOT_SUPPORTED:
889 zfcp_fsf_class_not_supp(req);
890 break;
891 case FSF_ADAPTER_STATUS_AVAILABLE:
892 switch (header->fsf_status_qual.word[0]){
893 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200894 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
895 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
896 break;
897 }
898 break;
899 case FSF_ACCESS_DENIED:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200900 break;
901 case FSF_PORT_BOXED:
Christof Schmitt4c571c62009-11-24 16:54:15 +0100902 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200903 break;
904 case FSF_PORT_HANDLE_NOT_VALID:
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100905 zfcp_erp_adapter_reopen(adapter, 0, "fsscth1", req);
Christof Schmittdceab652009-05-15 13:18:18 +0200906 /* fall through */
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200907 case FSF_GENERIC_COMMAND_REJECTED:
908 case FSF_PAYLOAD_SIZE_MISMATCH:
909 case FSF_REQUEST_SIZE_TOO_LARGE:
910 case FSF_RESPONSE_SIZE_TOO_LARGE:
911 case FSF_SBAL_MISMATCH:
912 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
913 break;
914 }
915
916skip_fsfstatus:
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100917 if (ct->handler)
918 ct->handler(ct->handler_data);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200919}
920
Christof Schmitt1674b402010-04-30 18:09:34 +0200921static void zfcp_fsf_setup_ct_els_unchained(struct zfcp_qdio *qdio,
922 struct zfcp_qdio_req *q_req,
Christof Schmitt426f6052009-07-13 15:06:06 +0200923 struct scatterlist *sg_req,
924 struct scatterlist *sg_resp)
925{
Christof Schmitt1674b402010-04-30 18:09:34 +0200926 zfcp_qdio_fill_next(qdio, q_req, sg_virt(sg_req), sg_req->length);
927 zfcp_qdio_fill_next(qdio, q_req, sg_virt(sg_resp), sg_resp->length);
928 zfcp_qdio_set_sbale_last(qdio, q_req);
Christof Schmitt426f6052009-07-13 15:06:06 +0200929}
930
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100931static int zfcp_fsf_setup_ct_els_sbals(struct zfcp_fsf_req *req,
932 struct scatterlist *sg_req,
Swen Schillig01b04752010-07-16 15:37:37 +0200933 struct scatterlist *sg_resp)
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200934{
Swen Schillig42428f72009-08-18 15:43:18 +0200935 struct zfcp_adapter *adapter = req->adapter;
Swen Schillig42428f72009-08-18 15:43:18 +0200936 u32 feat = adapter->adapter_features;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200937 int bytes;
938
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100939 if (!(feat & FSF_FEATURE_ELS_CT_CHAINED_SBALS)) {
Christof Schmitt1674b402010-04-30 18:09:34 +0200940 if (!zfcp_qdio_sg_one_sbale(sg_req) ||
941 !zfcp_qdio_sg_one_sbale(sg_resp))
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100942 return -EOPNOTSUPP;
943
Christof Schmitt1674b402010-04-30 18:09:34 +0200944 zfcp_fsf_setup_ct_els_unchained(adapter->qdio, &req->qdio_req,
945 sg_req, sg_resp);
Christof Schmitt426f6052009-07-13 15:06:06 +0200946 return 0;
947 }
948
949 /* use single, unchained SBAL if it can hold the request */
Swen Schillig30b67772010-06-21 10:11:31 +0200950 if (zfcp_qdio_sg_one_sbale(sg_req) && zfcp_qdio_sg_one_sbale(sg_resp)) {
Christof Schmitt1674b402010-04-30 18:09:34 +0200951 zfcp_fsf_setup_ct_els_unchained(adapter->qdio, &req->qdio_req,
952 sg_req, sg_resp);
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100953 return 0;
954 }
955
Swen Schillig01b04752010-07-16 15:37:37 +0200956 bytes = zfcp_qdio_sbals_from_sg(adapter->qdio, &req->qdio_req, sg_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200957 if (bytes <= 0)
Christof Schmitt9072df42009-07-13 15:06:07 +0200958 return -EIO;
Felix Beckef3eb712010-07-16 15:37:42 +0200959 zfcp_qdio_set_sbale_last(adapter->qdio, &req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200960 req->qtcb->bottom.support.req_buf_length = bytes;
Christof Schmitt1674b402010-04-30 18:09:34 +0200961 zfcp_qdio_skip_to_last_sbale(&req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200962
Christof Schmitt34c2b712010-02-17 11:18:59 +0100963 bytes = zfcp_qdio_sbals_from_sg(adapter->qdio, &req->qdio_req,
Swen Schillig01b04752010-07-16 15:37:37 +0200964 sg_resp);
Christof Schmittb1a58982009-09-24 10:23:21 +0200965 req->qtcb->bottom.support.resp_buf_length = bytes;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200966 if (bytes <= 0)
Christof Schmitt9072df42009-07-13 15:06:07 +0200967 return -EIO;
Felix Beckef3eb712010-07-16 15:37:42 +0200968 zfcp_qdio_set_sbale_last(adapter->qdio, &req->qdio_req);
Christof Schmitt98fc4d52009-08-18 15:43:26 +0200969
Christof Schmittb1a58982009-09-24 10:23:21 +0200970 return 0;
971}
972
973static int zfcp_fsf_setup_ct_els(struct zfcp_fsf_req *req,
974 struct scatterlist *sg_req,
975 struct scatterlist *sg_resp,
Swen Schillig01b04752010-07-16 15:37:37 +0200976 unsigned int timeout)
Christof Schmittb1a58982009-09-24 10:23:21 +0200977{
978 int ret;
979
Swen Schillig01b04752010-07-16 15:37:37 +0200980 ret = zfcp_fsf_setup_ct_els_sbals(req, sg_req, sg_resp);
Christof Schmittb1a58982009-09-24 10:23:21 +0200981 if (ret)
982 return ret;
983
Christof Schmitt98fc4d52009-08-18 15:43:26 +0200984 /* common settings for ct/gs and els requests */
Swen Schillig51375ee2010-01-14 17:19:02 +0100985 if (timeout > 255)
986 timeout = 255; /* max value accepted by hardware */
Christof Schmitt98fc4d52009-08-18 15:43:26 +0200987 req->qtcb->bottom.support.service_class = FSF_CLASS_3;
Swen Schillig51375ee2010-01-14 17:19:02 +0100988 req->qtcb->bottom.support.timeout = timeout;
989 zfcp_fsf_start_timer(req, (timeout + 10) * HZ);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200990
991 return 0;
992}
993
994/**
995 * zfcp_fsf_send_ct - initiate a Generic Service request (FC-GS)
996 * @ct: pointer to struct zfcp_send_ct with data for request
997 * @pool: if non-null this mempool is used to allocate struct zfcp_fsf_req
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200998 */
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100999int zfcp_fsf_send_ct(struct zfcp_fc_wka_port *wka_port,
Swen Schillig51375ee2010-01-14 17:19:02 +01001000 struct zfcp_fsf_ct_els *ct, mempool_t *pool,
1001 unsigned int timeout)
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001002{
Swen Schillig564e1c82009-08-18 15:43:19 +02001003 struct zfcp_qdio *qdio = wka_port->adapter->qdio;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001004 struct zfcp_fsf_req *req;
1005 int ret = -EIO;
1006
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001007 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001008 if (zfcp_qdio_sbal_get(qdio))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001009 goto out;
1010
Christof Schmitt1674b402010-04-30 18:09:34 +02001011 req = zfcp_fsf_req_create(qdio, FSF_QTCB_SEND_GENERIC,
1012 SBAL_FLAGS0_TYPE_WRITE_READ, pool);
Swen Schillig09a46c62009-08-18 15:43:16 +02001013
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001014 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001015 ret = PTR_ERR(req);
1016 goto out;
1017 }
1018
Swen Schillig09a46c62009-08-18 15:43:16 +02001019 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Swen Schillig01b04752010-07-16 15:37:37 +02001020 ret = zfcp_fsf_setup_ct_els(req, ct->req, ct->resp, timeout);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001021 if (ret)
1022 goto failed_send;
1023
1024 req->handler = zfcp_fsf_send_ct_handler;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001025 req->qtcb->header.port_handle = wka_port->handle;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001026 req->data = ct;
1027
Christof Schmitt7c7dc192009-11-24 16:54:13 +01001028 zfcp_dbf_san_ct_request(req, wka_port->d_id);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001029
1030 ret = zfcp_fsf_req_send(req);
1031 if (ret)
1032 goto failed_send;
1033
1034 goto out;
1035
1036failed_send:
1037 zfcp_fsf_req_free(req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001038out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001039 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001040 return ret;
1041}
1042
1043static void zfcp_fsf_send_els_handler(struct zfcp_fsf_req *req)
1044{
Christof Schmitt7c7dc192009-11-24 16:54:13 +01001045 struct zfcp_fsf_ct_els *send_els = req->data;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001046 struct zfcp_port *port = send_els->port;
1047 struct fsf_qtcb_header *header = &req->qtcb->header;
1048
1049 send_els->status = -EINVAL;
1050
1051 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
1052 goto skip_fsfstatus;
1053
1054 switch (header->fsf_status) {
1055 case FSF_GOOD:
Swen Schillig57717102009-08-18 15:43:21 +02001056 zfcp_dbf_san_els_response(req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001057 send_els->status = 0;
1058 break;
1059 case FSF_SERVICE_CLASS_NOT_SUPPORTED:
1060 zfcp_fsf_class_not_supp(req);
1061 break;
1062 case FSF_ADAPTER_STATUS_AVAILABLE:
1063 switch (header->fsf_status_qual.word[0]){
1064 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001065 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
1066 case FSF_SQ_RETRY_IF_POSSIBLE:
1067 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1068 break;
1069 }
1070 break;
1071 case FSF_ELS_COMMAND_REJECTED:
1072 case FSF_PAYLOAD_SIZE_MISMATCH:
1073 case FSF_REQUEST_SIZE_TOO_LARGE:
1074 case FSF_RESPONSE_SIZE_TOO_LARGE:
1075 break;
1076 case FSF_ACCESS_DENIED:
Christof Schmitta1ca4832010-09-08 14:39:59 +02001077 if (port) {
1078 zfcp_cfdc_port_denied(port, &header->fsf_status_qual);
1079 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1080 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001081 break;
1082 case FSF_SBAL_MISMATCH:
1083 /* should never occure, avoided in zfcp_fsf_send_els */
1084 /* fall through */
1085 default:
1086 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1087 break;
1088 }
1089skip_fsfstatus:
1090 if (send_els->handler)
1091 send_els->handler(send_els->handler_data);
1092}
1093
1094/**
1095 * zfcp_fsf_send_els - initiate an ELS command (FC-FS)
1096 * @els: pointer to struct zfcp_send_els with data for the command
1097 */
Christof Schmitt7c7dc192009-11-24 16:54:13 +01001098int zfcp_fsf_send_els(struct zfcp_adapter *adapter, u32 d_id,
Swen Schillig51375ee2010-01-14 17:19:02 +01001099 struct zfcp_fsf_ct_els *els, unsigned int timeout)
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001100{
1101 struct zfcp_fsf_req *req;
Christof Schmitt7c7dc192009-11-24 16:54:13 +01001102 struct zfcp_qdio *qdio = adapter->qdio;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001103 int ret = -EIO;
1104
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001105 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001106 if (zfcp_qdio_sbal_get(qdio))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001107 goto out;
Swen Schillig09a46c62009-08-18 15:43:16 +02001108
Christof Schmitt1674b402010-04-30 18:09:34 +02001109 req = zfcp_fsf_req_create(qdio, FSF_QTCB_SEND_ELS,
1110 SBAL_FLAGS0_TYPE_WRITE_READ, NULL);
Swen Schillig09a46c62009-08-18 15:43:16 +02001111
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001112 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001113 ret = PTR_ERR(req);
1114 goto out;
1115 }
1116
Swen Schillig09a46c62009-08-18 15:43:16 +02001117 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Swen Schillig01b04752010-07-16 15:37:37 +02001118
1119 zfcp_qdio_sbal_limit(qdio, &req->qdio_req, 2);
1120
1121 ret = zfcp_fsf_setup_ct_els(req, els->req, els->resp, timeout);
Swen Schillig44cc76f2008-10-01 12:42:16 +02001122
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001123 if (ret)
1124 goto failed_send;
1125
Christof Schmitt7c7dc192009-11-24 16:54:13 +01001126 hton24(req->qtcb->bottom.support.d_id, d_id);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001127 req->handler = zfcp_fsf_send_els_handler;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001128 req->data = els;
1129
Swen Schillig57717102009-08-18 15:43:21 +02001130 zfcp_dbf_san_els_request(req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001131
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001132 ret = zfcp_fsf_req_send(req);
1133 if (ret)
1134 goto failed_send;
1135
1136 goto out;
1137
1138failed_send:
1139 zfcp_fsf_req_free(req);
1140out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001141 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001142 return ret;
1143}
1144
1145int zfcp_fsf_exchange_config_data(struct zfcp_erp_action *erp_action)
1146{
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001147 struct zfcp_fsf_req *req;
Swen Schillig564e1c82009-08-18 15:43:19 +02001148 struct zfcp_qdio *qdio = erp_action->adapter->qdio;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001149 int retval = -EIO;
1150
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001151 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001152 if (zfcp_qdio_sbal_get(qdio))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001153 goto out;
Swen Schillig09a46c62009-08-18 15:43:16 +02001154
Swen Schillig564e1c82009-08-18 15:43:19 +02001155 req = zfcp_fsf_req_create(qdio, FSF_QTCB_EXCHANGE_CONFIG_DATA,
Christof Schmitt1674b402010-04-30 18:09:34 +02001156 SBAL_FLAGS0_TYPE_READ,
Swen Schillig564e1c82009-08-18 15:43:19 +02001157 qdio->adapter->pool.erp_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02001158
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001159 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001160 retval = PTR_ERR(req);
1161 goto out;
1162 }
1163
Swen Schillig09a46c62009-08-18 15:43:16 +02001164 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Christof Schmitt1674b402010-04-30 18:09:34 +02001165 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001166
1167 req->qtcb->bottom.config.feature_selection =
1168 FSF_FEATURE_CFDC |
1169 FSF_FEATURE_LUN_SHARING |
1170 FSF_FEATURE_NOTIFICATION_LOST |
1171 FSF_FEATURE_UPDATE_ALERT;
1172 req->erp_action = erp_action;
1173 req->handler = zfcp_fsf_exchange_config_data_handler;
Christof Schmitte60a6d62010-02-17 11:18:49 +01001174 erp_action->fsf_req_id = req->req_id;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001175
Christof Schmitt287ac012008-07-02 10:56:40 +02001176 zfcp_fsf_start_erp_timer(req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001177 retval = zfcp_fsf_req_send(req);
1178 if (retval) {
1179 zfcp_fsf_req_free(req);
Christof Schmitte60a6d62010-02-17 11:18:49 +01001180 erp_action->fsf_req_id = 0;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001181 }
1182out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001183 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001184 return retval;
1185}
1186
Swen Schillig564e1c82009-08-18 15:43:19 +02001187int zfcp_fsf_exchange_config_data_sync(struct zfcp_qdio *qdio,
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001188 struct fsf_qtcb_bottom_config *data)
1189{
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001190 struct zfcp_fsf_req *req = NULL;
1191 int retval = -EIO;
1192
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001193 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001194 if (zfcp_qdio_sbal_get(qdio))
Christof Schmittada81b72009-04-17 15:08:03 +02001195 goto out_unlock;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001196
Christof Schmitt1674b402010-04-30 18:09:34 +02001197 req = zfcp_fsf_req_create(qdio, FSF_QTCB_EXCHANGE_CONFIG_DATA,
1198 SBAL_FLAGS0_TYPE_READ, NULL);
Swen Schillig09a46c62009-08-18 15:43:16 +02001199
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001200 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001201 retval = PTR_ERR(req);
Christof Schmittada81b72009-04-17 15:08:03 +02001202 goto out_unlock;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001203 }
1204
Christof Schmitt1674b402010-04-30 18:09:34 +02001205 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001206 req->handler = zfcp_fsf_exchange_config_data_handler;
1207
1208 req->qtcb->bottom.config.feature_selection =
1209 FSF_FEATURE_CFDC |
1210 FSF_FEATURE_LUN_SHARING |
1211 FSF_FEATURE_NOTIFICATION_LOST |
1212 FSF_FEATURE_UPDATE_ALERT;
1213
1214 if (data)
1215 req->data = data;
1216
1217 zfcp_fsf_start_timer(req, ZFCP_FSF_REQUEST_TIMEOUT);
1218 retval = zfcp_fsf_req_send(req);
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001219 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001220 if (!retval)
Swen Schillig058b8642009-08-18 15:43:14 +02001221 wait_for_completion(&req->completion);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001222
1223 zfcp_fsf_req_free(req);
Christof Schmittada81b72009-04-17 15:08:03 +02001224 return retval;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001225
Christof Schmittada81b72009-04-17 15:08:03 +02001226out_unlock:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001227 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001228 return retval;
1229}
1230
1231/**
1232 * zfcp_fsf_exchange_port_data - request information about local port
1233 * @erp_action: ERP action for the adapter for which port data is requested
1234 * Returns: 0 on success, error otherwise
1235 */
1236int zfcp_fsf_exchange_port_data(struct zfcp_erp_action *erp_action)
1237{
Swen Schillig564e1c82009-08-18 15:43:19 +02001238 struct zfcp_qdio *qdio = erp_action->adapter->qdio;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001239 struct zfcp_fsf_req *req;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001240 int retval = -EIO;
1241
Swen Schillig564e1c82009-08-18 15:43:19 +02001242 if (!(qdio->adapter->adapter_features & FSF_FEATURE_HBAAPI_MANAGEMENT))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001243 return -EOPNOTSUPP;
1244
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001245 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001246 if (zfcp_qdio_sbal_get(qdio))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001247 goto out;
Swen Schillig09a46c62009-08-18 15:43:16 +02001248
Swen Schillig564e1c82009-08-18 15:43:19 +02001249 req = zfcp_fsf_req_create(qdio, FSF_QTCB_EXCHANGE_PORT_DATA,
Christof Schmitt1674b402010-04-30 18:09:34 +02001250 SBAL_FLAGS0_TYPE_READ,
Swen Schillig564e1c82009-08-18 15:43:19 +02001251 qdio->adapter->pool.erp_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02001252
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001253 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001254 retval = PTR_ERR(req);
1255 goto out;
1256 }
1257
Swen Schillig09a46c62009-08-18 15:43:16 +02001258 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Christof Schmitt1674b402010-04-30 18:09:34 +02001259 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001260
1261 req->handler = zfcp_fsf_exchange_port_data_handler;
1262 req->erp_action = erp_action;
Christof Schmitte60a6d62010-02-17 11:18:49 +01001263 erp_action->fsf_req_id = req->req_id;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001264
Christof Schmitt287ac012008-07-02 10:56:40 +02001265 zfcp_fsf_start_erp_timer(req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001266 retval = zfcp_fsf_req_send(req);
1267 if (retval) {
1268 zfcp_fsf_req_free(req);
Christof Schmitte60a6d62010-02-17 11:18:49 +01001269 erp_action->fsf_req_id = 0;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001270 }
1271out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001272 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001273 return retval;
1274}
1275
1276/**
1277 * zfcp_fsf_exchange_port_data_sync - request information about local port
Swen Schillig564e1c82009-08-18 15:43:19 +02001278 * @qdio: pointer to struct zfcp_qdio
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001279 * @data: pointer to struct fsf_qtcb_bottom_port
1280 * Returns: 0 on success, error otherwise
1281 */
Swen Schillig564e1c82009-08-18 15:43:19 +02001282int zfcp_fsf_exchange_port_data_sync(struct zfcp_qdio *qdio,
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001283 struct fsf_qtcb_bottom_port *data)
1284{
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001285 struct zfcp_fsf_req *req = NULL;
1286 int retval = -EIO;
1287
Swen Schillig564e1c82009-08-18 15:43:19 +02001288 if (!(qdio->adapter->adapter_features & FSF_FEATURE_HBAAPI_MANAGEMENT))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001289 return -EOPNOTSUPP;
1290
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001291 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001292 if (zfcp_qdio_sbal_get(qdio))
Christof Schmittada81b72009-04-17 15:08:03 +02001293 goto out_unlock;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001294
Christof Schmitt1674b402010-04-30 18:09:34 +02001295 req = zfcp_fsf_req_create(qdio, FSF_QTCB_EXCHANGE_PORT_DATA,
1296 SBAL_FLAGS0_TYPE_READ, NULL);
Swen Schillig09a46c62009-08-18 15:43:16 +02001297
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001298 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001299 retval = PTR_ERR(req);
Christof Schmittada81b72009-04-17 15:08:03 +02001300 goto out_unlock;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001301 }
1302
1303 if (data)
1304 req->data = data;
1305
Christof Schmitt1674b402010-04-30 18:09:34 +02001306 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001307
1308 req->handler = zfcp_fsf_exchange_port_data_handler;
1309 zfcp_fsf_start_timer(req, ZFCP_FSF_REQUEST_TIMEOUT);
1310 retval = zfcp_fsf_req_send(req);
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001311 spin_unlock_irq(&qdio->req_q_lock);
Christof Schmittada81b72009-04-17 15:08:03 +02001312
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001313 if (!retval)
Swen Schillig058b8642009-08-18 15:43:14 +02001314 wait_for_completion(&req->completion);
1315
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001316 zfcp_fsf_req_free(req);
1317
1318 return retval;
Christof Schmittada81b72009-04-17 15:08:03 +02001319
1320out_unlock:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001321 spin_unlock_irq(&qdio->req_q_lock);
Christof Schmittada81b72009-04-17 15:08:03 +02001322 return retval;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001323}
1324
1325static void zfcp_fsf_open_port_handler(struct zfcp_fsf_req *req)
1326{
1327 struct zfcp_port *port = req->data;
1328 struct fsf_qtcb_header *header = &req->qtcb->header;
Christof Schmitt9d05ce22009-11-24 16:54:09 +01001329 struct fc_els_flogi *plogi;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001330
1331 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
Martin Petermanna17c5852009-05-15 13:18:19 +02001332 goto out;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001333
1334 switch (header->fsf_status) {
1335 case FSF_PORT_ALREADY_OPEN:
1336 break;
1337 case FSF_ACCESS_DENIED:
Christof Schmitta1ca4832010-09-08 14:39:59 +02001338 zfcp_cfdc_port_denied(port, &header->fsf_status_qual);
1339 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001340 break;
1341 case FSF_MAXIMUM_NUMBER_OF_PORTS_EXCEEDED:
1342 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +02001343 "Not enough FCP adapter resources to open "
Swen Schillig7ba58c92008-10-01 12:42:18 +02001344 "remote port 0x%016Lx\n",
1345 (unsigned long long)port->wwpn);
Swen Schillig5ffd51a2009-03-02 13:09:04 +01001346 zfcp_erp_port_failed(port, "fsoph_1", req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001347 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1348 break;
1349 case FSF_ADAPTER_STATUS_AVAILABLE:
1350 switch (header->fsf_status_qual.word[0]) {
1351 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
1352 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001353 case FSF_SQ_NO_RETRY_POSSIBLE:
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001354 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1355 break;
1356 }
1357 break;
1358 case FSF_GOOD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 port->handle = header->port_handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 atomic_set_mask(ZFCP_STATUS_COMMON_OPEN |
1361 ZFCP_STATUS_PORT_PHYS_OPEN, &port->status);
Andreas Herrmannd736a27b2005-06-13 13:23:57 +02001362 atomic_clear_mask(ZFCP_STATUS_COMMON_ACCESS_DENIED |
1363 ZFCP_STATUS_COMMON_ACCESS_BOXED,
1364 &port->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 /* check whether D_ID has changed during open */
1366 /*
1367 * FIXME: This check is not airtight, as the FCP channel does
1368 * not monitor closures of target port connections caused on
1369 * the remote side. Thus, they might miss out on invalidating
1370 * locally cached WWPNs (and other N_Port parameters) of gone
1371 * target ports. So, our heroic attempt to make things safe
1372 * could be undermined by 'open port' response data tagged with
1373 * obsolete WWPNs. Another reason to monitor potential
1374 * connection closures ourself at least (by interpreting
1375 * incoming ELS' and unsolicited status). It just crosses my
1376 * mind that one should be able to cross-check by means of
1377 * another GID_PN straight after a port has been opened.
1378 * Alternately, an ADISC/PDISC ELS should suffice, as well.
1379 */
Christof Schmitt9d05ce22009-11-24 16:54:09 +01001380 plogi = (struct fc_els_flogi *) req->qtcb->bottom.support.els;
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +01001381 if (req->qtcb->bottom.support.els1_length >=
Christof Schmitt9d05ce22009-11-24 16:54:09 +01001382 FSF_PLOGI_MIN_LEN)
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001383 zfcp_fc_plogi_evaluate(port, plogi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 case FSF_UNKNOWN_OP_SUBTYPE:
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001386 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 break;
1388 }
Martin Petermanna17c5852009-05-15 13:18:19 +02001389
1390out:
Christof Schmitt615f59e2010-02-17 11:18:56 +01001391 put_device(&port->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392}
1393
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001394/**
1395 * zfcp_fsf_open_port - create and send open port request
1396 * @erp_action: pointer to struct zfcp_erp_action
1397 * Returns: 0 on success, error otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 */
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001399int zfcp_fsf_open_port(struct zfcp_erp_action *erp_action)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400{
Swen Schillig564e1c82009-08-18 15:43:19 +02001401 struct zfcp_qdio *qdio = erp_action->adapter->qdio;
Martin Petermanna17c5852009-05-15 13:18:19 +02001402 struct zfcp_port *port = erp_action->port;
Swen Schillig564e1c82009-08-18 15:43:19 +02001403 struct zfcp_fsf_req *req;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001404 int retval = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001406 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001407 if (zfcp_qdio_sbal_get(qdio))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
Swen Schillig564e1c82009-08-18 15:43:19 +02001410 req = zfcp_fsf_req_create(qdio, FSF_QTCB_OPEN_PORT_WITH_DID,
Christof Schmitt1674b402010-04-30 18:09:34 +02001411 SBAL_FLAGS0_TYPE_READ,
Swen Schillig564e1c82009-08-18 15:43:19 +02001412 qdio->adapter->pool.erp_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02001413
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001414 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001415 retval = PTR_ERR(req);
1416 goto out;
1417 }
1418
Swen Schillig09a46c62009-08-18 15:43:16 +02001419 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Christof Schmitt1674b402010-04-30 18:09:34 +02001420 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001422 req->handler = zfcp_fsf_open_port_handler;
Christof Schmitt800c0ca2009-11-24 16:54:12 +01001423 hton24(req->qtcb->bottom.support.d_id, port->d_id);
Martin Petermanna17c5852009-05-15 13:18:19 +02001424 req->data = port;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001425 req->erp_action = erp_action;
Christof Schmitte60a6d62010-02-17 11:18:49 +01001426 erp_action->fsf_req_id = req->req_id;
Christof Schmitt615f59e2010-02-17 11:18:56 +01001427 get_device(&port->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
Christof Schmitt287ac012008-07-02 10:56:40 +02001429 zfcp_fsf_start_erp_timer(req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001430 retval = zfcp_fsf_req_send(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 if (retval) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001432 zfcp_fsf_req_free(req);
Christof Schmitte60a6d62010-02-17 11:18:49 +01001433 erp_action->fsf_req_id = 0;
Christof Schmitt615f59e2010-02-17 11:18:56 +01001434 put_device(&port->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001436out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001437 spin_unlock_irq(&qdio->req_q_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 return retval;
1439}
1440
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001441static void zfcp_fsf_close_port_handler(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442{
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001443 struct zfcp_port *port = req->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001445 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
Swen Schillig44cc76f2008-10-01 12:42:16 +02001446 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001448 switch (req->qtcb->header.fsf_status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 case FSF_PORT_HANDLE_NOT_VALID:
Swen Schillig5ffd51a2009-03-02 13:09:04 +01001450 zfcp_erp_adapter_reopen(port->adapter, 0, "fscph_1", req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001451 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 case FSF_ADAPTER_STATUS_AVAILABLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 case FSF_GOOD:
Swen Schillig5ffd51a2009-03-02 13:09:04 +01001456 zfcp_erp_modify_port_status(port, "fscph_2", req,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 ZFCP_STATUS_COMMON_OPEN,
1458 ZFCP_CLEAR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461}
1462
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001463/**
1464 * zfcp_fsf_close_port - create and send close port request
1465 * @erp_action: pointer to struct zfcp_erp_action
1466 * Returns: 0 on success, error otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 */
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001468int zfcp_fsf_close_port(struct zfcp_erp_action *erp_action)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469{
Swen Schillig564e1c82009-08-18 15:43:19 +02001470 struct zfcp_qdio *qdio = erp_action->adapter->qdio;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001471 struct zfcp_fsf_req *req;
1472 int retval = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001474 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001475 if (zfcp_qdio_sbal_get(qdio))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
Swen Schillig564e1c82009-08-18 15:43:19 +02001478 req = zfcp_fsf_req_create(qdio, FSF_QTCB_CLOSE_PORT,
Christof Schmitt1674b402010-04-30 18:09:34 +02001479 SBAL_FLAGS0_TYPE_READ,
Swen Schillig564e1c82009-08-18 15:43:19 +02001480 qdio->adapter->pool.erp_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02001481
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001482 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001483 retval = PTR_ERR(req);
1484 goto out;
1485 }
1486
Swen Schillig09a46c62009-08-18 15:43:16 +02001487 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Christof Schmitt1674b402010-04-30 18:09:34 +02001488 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001490 req->handler = zfcp_fsf_close_port_handler;
1491 req->data = erp_action->port;
1492 req->erp_action = erp_action;
1493 req->qtcb->header.port_handle = erp_action->port->handle;
Christof Schmitte60a6d62010-02-17 11:18:49 +01001494 erp_action->fsf_req_id = req->req_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
Christof Schmitt287ac012008-07-02 10:56:40 +02001496 zfcp_fsf_start_erp_timer(req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001497 retval = zfcp_fsf_req_send(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 if (retval) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001499 zfcp_fsf_req_free(req);
Christof Schmitte60a6d62010-02-17 11:18:49 +01001500 erp_action->fsf_req_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001502out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001503 spin_unlock_irq(&qdio->req_q_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 return retval;
1505}
1506
Swen Schillig5ab944f2008-10-01 12:42:17 +02001507static void zfcp_fsf_open_wka_port_handler(struct zfcp_fsf_req *req)
1508{
Christof Schmittbd0072e2009-11-24 16:54:11 +01001509 struct zfcp_fc_wka_port *wka_port = req->data;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001510 struct fsf_qtcb_header *header = &req->qtcb->header;
1511
1512 if (req->status & ZFCP_STATUS_FSFREQ_ERROR) {
Christof Schmittbd0072e2009-11-24 16:54:11 +01001513 wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001514 goto out;
1515 }
1516
1517 switch (header->fsf_status) {
1518 case FSF_MAXIMUM_NUMBER_OF_PORTS_EXCEEDED:
1519 dev_warn(&req->adapter->ccw_device->dev,
1520 "Opening WKA port 0x%x failed\n", wka_port->d_id);
Christof Schmittdceab652009-05-15 13:18:18 +02001521 /* fall through */
Swen Schillig5ab944f2008-10-01 12:42:17 +02001522 case FSF_ADAPTER_STATUS_AVAILABLE:
1523 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Christof Schmittdceab652009-05-15 13:18:18 +02001524 /* fall through */
Swen Schillig5ab944f2008-10-01 12:42:17 +02001525 case FSF_ACCESS_DENIED:
Christof Schmittbd0072e2009-11-24 16:54:11 +01001526 wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001527 break;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001528 case FSF_GOOD:
1529 wka_port->handle = header->port_handle;
Swen Schillig27f492c2009-07-13 15:06:13 +02001530 /* fall through */
1531 case FSF_PORT_ALREADY_OPEN:
Christof Schmittbd0072e2009-11-24 16:54:11 +01001532 wka_port->status = ZFCP_FC_WKA_PORT_ONLINE;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001533 }
1534out:
1535 wake_up(&wka_port->completion_wq);
1536}
1537
1538/**
1539 * zfcp_fsf_open_wka_port - create and send open wka-port request
Christof Schmittbd0072e2009-11-24 16:54:11 +01001540 * @wka_port: pointer to struct zfcp_fc_wka_port
Swen Schillig5ab944f2008-10-01 12:42:17 +02001541 * Returns: 0 on success, error otherwise
1542 */
Christof Schmittbd0072e2009-11-24 16:54:11 +01001543int zfcp_fsf_open_wka_port(struct zfcp_fc_wka_port *wka_port)
Swen Schillig5ab944f2008-10-01 12:42:17 +02001544{
Swen Schillig564e1c82009-08-18 15:43:19 +02001545 struct zfcp_qdio *qdio = wka_port->adapter->qdio;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001546 struct zfcp_fsf_req *req;
1547 int retval = -EIO;
1548
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001549 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001550 if (zfcp_qdio_sbal_get(qdio))
Swen Schillig5ab944f2008-10-01 12:42:17 +02001551 goto out;
1552
Swen Schillig564e1c82009-08-18 15:43:19 +02001553 req = zfcp_fsf_req_create(qdio, FSF_QTCB_OPEN_PORT_WITH_DID,
Christof Schmitt1674b402010-04-30 18:09:34 +02001554 SBAL_FLAGS0_TYPE_READ,
Swen Schillig564e1c82009-08-18 15:43:19 +02001555 qdio->adapter->pool.erp_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02001556
Swen Schillig5ab944f2008-10-01 12:42:17 +02001557 if (unlikely(IS_ERR(req))) {
1558 retval = PTR_ERR(req);
1559 goto out;
1560 }
1561
Swen Schillig09a46c62009-08-18 15:43:16 +02001562 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Christof Schmitt1674b402010-04-30 18:09:34 +02001563 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schillig5ab944f2008-10-01 12:42:17 +02001564
1565 req->handler = zfcp_fsf_open_wka_port_handler;
Christof Schmitt800c0ca2009-11-24 16:54:12 +01001566 hton24(req->qtcb->bottom.support.d_id, wka_port->d_id);
Swen Schillig5ab944f2008-10-01 12:42:17 +02001567 req->data = wka_port;
1568
1569 zfcp_fsf_start_timer(req, ZFCP_FSF_REQUEST_TIMEOUT);
1570 retval = zfcp_fsf_req_send(req);
1571 if (retval)
1572 zfcp_fsf_req_free(req);
1573out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001574 spin_unlock_irq(&qdio->req_q_lock);
Swen Schillig5ab944f2008-10-01 12:42:17 +02001575 return retval;
1576}
1577
1578static void zfcp_fsf_close_wka_port_handler(struct zfcp_fsf_req *req)
1579{
Christof Schmittbd0072e2009-11-24 16:54:11 +01001580 struct zfcp_fc_wka_port *wka_port = req->data;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001581
1582 if (req->qtcb->header.fsf_status == FSF_PORT_HANDLE_NOT_VALID) {
1583 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Swen Schillig5ffd51a2009-03-02 13:09:04 +01001584 zfcp_erp_adapter_reopen(wka_port->adapter, 0, "fscwph1", req);
Swen Schillig5ab944f2008-10-01 12:42:17 +02001585 }
1586
Christof Schmittbd0072e2009-11-24 16:54:11 +01001587 wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001588 wake_up(&wka_port->completion_wq);
1589}
1590
1591/**
1592 * zfcp_fsf_close_wka_port - create and send close wka port request
Christof Schmittbd0072e2009-11-24 16:54:11 +01001593 * @wka_port: WKA port to open
Swen Schillig5ab944f2008-10-01 12:42:17 +02001594 * Returns: 0 on success, error otherwise
1595 */
Christof Schmittbd0072e2009-11-24 16:54:11 +01001596int zfcp_fsf_close_wka_port(struct zfcp_fc_wka_port *wka_port)
Swen Schillig5ab944f2008-10-01 12:42:17 +02001597{
Swen Schillig564e1c82009-08-18 15:43:19 +02001598 struct zfcp_qdio *qdio = wka_port->adapter->qdio;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001599 struct zfcp_fsf_req *req;
1600 int retval = -EIO;
1601
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001602 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001603 if (zfcp_qdio_sbal_get(qdio))
Swen Schillig5ab944f2008-10-01 12:42:17 +02001604 goto out;
1605
Swen Schillig564e1c82009-08-18 15:43:19 +02001606 req = zfcp_fsf_req_create(qdio, FSF_QTCB_CLOSE_PORT,
Christof Schmitt1674b402010-04-30 18:09:34 +02001607 SBAL_FLAGS0_TYPE_READ,
Swen Schillig564e1c82009-08-18 15:43:19 +02001608 qdio->adapter->pool.erp_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02001609
Swen Schillig5ab944f2008-10-01 12:42:17 +02001610 if (unlikely(IS_ERR(req))) {
1611 retval = PTR_ERR(req);
1612 goto out;
1613 }
1614
Swen Schillig09a46c62009-08-18 15:43:16 +02001615 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Christof Schmitt1674b402010-04-30 18:09:34 +02001616 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schillig5ab944f2008-10-01 12:42:17 +02001617
1618 req->handler = zfcp_fsf_close_wka_port_handler;
1619 req->data = wka_port;
1620 req->qtcb->header.port_handle = wka_port->handle;
1621
1622 zfcp_fsf_start_timer(req, ZFCP_FSF_REQUEST_TIMEOUT);
1623 retval = zfcp_fsf_req_send(req);
1624 if (retval)
1625 zfcp_fsf_req_free(req);
1626out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001627 spin_unlock_irq(&qdio->req_q_lock);
Swen Schillig5ab944f2008-10-01 12:42:17 +02001628 return retval;
1629}
1630
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001631static void zfcp_fsf_close_physical_port_handler(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632{
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001633 struct zfcp_port *port = req->data;
1634 struct fsf_qtcb_header *header = &req->qtcb->header;
Christof Schmittb62a8d92010-09-08 14:39:55 +02001635 struct scsi_device *sdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001637 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
Christof Schmitta5b11dd2009-03-02 13:08:54 +01001638 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 switch (header->fsf_status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 case FSF_PORT_HANDLE_NOT_VALID:
Swen Schillig5ffd51a2009-03-02 13:09:04 +01001642 zfcp_erp_adapter_reopen(port->adapter, 0, "fscpph1", req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001643 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 case FSF_ACCESS_DENIED:
Christof Schmitta1ca4832010-09-08 14:39:59 +02001646 zfcp_cfdc_port_denied(port, &header->fsf_status_qual);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 case FSF_PORT_BOXED:
Christof Schmitt5c815d12008-03-10 16:18:54 +01001649 /* can't use generic zfcp_erp_modify_port_status because
1650 * ZFCP_STATUS_COMMON_OPEN must not be reset for the port */
1651 atomic_clear_mask(ZFCP_STATUS_PORT_PHYS_OPEN, &port->status);
Christof Schmittb62a8d92010-09-08 14:39:55 +02001652 shost_for_each_device(sdev, port->adapter->scsi_host)
1653 if (sdev_to_zfcp(sdev)->port == port)
1654 atomic_clear_mask(ZFCP_STATUS_COMMON_OPEN,
1655 &sdev_to_zfcp(sdev)->status);
Swen Schilligdfb3cf02009-07-13 15:06:02 +02001656 zfcp_erp_port_boxed(port, "fscpph2", req);
Christof Schmitt4c571c62009-11-24 16:54:15 +01001657 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 case FSF_ADAPTER_STATUS_AVAILABLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 switch (header->fsf_status_qual.word[0]) {
1661 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001662 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001664 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 }
1667 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 case FSF_GOOD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 /* can't use generic zfcp_erp_modify_port_status because
1670 * ZFCP_STATUS_COMMON_OPEN must not be reset for the port
1671 */
1672 atomic_clear_mask(ZFCP_STATUS_PORT_PHYS_OPEN, &port->status);
Christof Schmittb62a8d92010-09-08 14:39:55 +02001673 shost_for_each_device(sdev, port->adapter->scsi_host)
1674 if (sdev_to_zfcp(sdev)->port == port)
1675 atomic_clear_mask(ZFCP_STATUS_COMMON_OPEN,
1676 &sdev_to_zfcp(sdev)->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679}
1680
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001681/**
1682 * zfcp_fsf_close_physical_port - close physical port
1683 * @erp_action: pointer to struct zfcp_erp_action
1684 * Returns: 0 on success
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 */
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001686int zfcp_fsf_close_physical_port(struct zfcp_erp_action *erp_action)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687{
Swen Schillig564e1c82009-08-18 15:43:19 +02001688 struct zfcp_qdio *qdio = erp_action->adapter->qdio;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001689 struct zfcp_fsf_req *req;
1690 int retval = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001692 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001693 if (zfcp_qdio_sbal_get(qdio))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
Swen Schillig564e1c82009-08-18 15:43:19 +02001696 req = zfcp_fsf_req_create(qdio, FSF_QTCB_CLOSE_PHYSICAL_PORT,
Christof Schmitt1674b402010-04-30 18:09:34 +02001697 SBAL_FLAGS0_TYPE_READ,
Swen Schillig564e1c82009-08-18 15:43:19 +02001698 qdio->adapter->pool.erp_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02001699
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001700 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001701 retval = PTR_ERR(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 goto out;
1703 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001704
Swen Schillig09a46c62009-08-18 15:43:16 +02001705 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Christof Schmitt1674b402010-04-30 18:09:34 +02001706 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001707
1708 req->data = erp_action->port;
1709 req->qtcb->header.port_handle = erp_action->port->handle;
1710 req->erp_action = erp_action;
1711 req->handler = zfcp_fsf_close_physical_port_handler;
Christof Schmitte60a6d62010-02-17 11:18:49 +01001712 erp_action->fsf_req_id = req->req_id;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001713
Christof Schmitt287ac012008-07-02 10:56:40 +02001714 zfcp_fsf_start_erp_timer(req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001715 retval = zfcp_fsf_req_send(req);
1716 if (retval) {
1717 zfcp_fsf_req_free(req);
Christof Schmitte60a6d62010-02-17 11:18:49 +01001718 erp_action->fsf_req_id = 0;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001719 }
1720out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001721 spin_unlock_irq(&qdio->req_q_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 return retval;
1723}
1724
Christof Schmittb62a8d92010-09-08 14:39:55 +02001725static void zfcp_fsf_open_lun_handler(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726{
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001727 struct zfcp_adapter *adapter = req->adapter;
Christof Schmittb62a8d92010-09-08 14:39:55 +02001728 struct scsi_device *sdev = req->data;
1729 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001730 struct fsf_qtcb_header *header = &req->qtcb->header;
1731 struct fsf_qtcb_bottom_support *bottom = &req->qtcb->bottom.support;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001733 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
Swen Schillig44cc76f2008-10-01 12:42:16 +02001734 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 atomic_clear_mask(ZFCP_STATUS_COMMON_ACCESS_DENIED |
Heiko Carstensb64ddf92007-05-08 11:19:57 +02001737 ZFCP_STATUS_COMMON_ACCESS_BOXED |
Christof Schmittb62a8d92010-09-08 14:39:55 +02001738 ZFCP_STATUS_LUN_SHARED |
1739 ZFCP_STATUS_LUN_READONLY,
1740 &zfcp_sdev->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 switch (header->fsf_status) {
1743
1744 case FSF_PORT_HANDLE_NOT_VALID:
Christof Schmittb62a8d92010-09-08 14:39:55 +02001745 zfcp_erp_adapter_reopen(adapter, 0, "fsouh_1", req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001746 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 case FSF_LUN_ALREADY_OPEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 case FSF_ACCESS_DENIED:
Christof Schmitta1ca4832010-09-08 14:39:59 +02001750 zfcp_cfdc_lun_denied(sdev, &header->fsf_status_qual);
1751 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 case FSF_PORT_BOXED:
Christof Schmittb62a8d92010-09-08 14:39:55 +02001754 zfcp_erp_port_boxed(zfcp_sdev->port, "fsouh_2", req);
Christof Schmitt4c571c62009-11-24 16:54:15 +01001755 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 case FSF_LUN_SHARING_VIOLATION:
Christof Schmitta1ca4832010-09-08 14:39:59 +02001758 zfcp_cfdc_lun_shrng_vltn(sdev, &header->fsf_status_qual);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001759 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 case FSF_MAXIMUM_NUMBER_OF_LUNS_EXCEEDED:
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001762 dev_warn(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +02001763 "No handle is available for LUN "
1764 "0x%016Lx on port 0x%016Lx\n",
Christof Schmittb62a8d92010-09-08 14:39:55 +02001765 (unsigned long long)zfcp_scsi_dev_lun(sdev),
1766 (unsigned long long)zfcp_sdev->port->wwpn);
1767 zfcp_erp_lun_failed(sdev, "fsolh_4", req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001768 /* fall through */
1769 case FSF_INVALID_COMMAND_OPTION:
1770 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 case FSF_ADAPTER_STATUS_AVAILABLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 switch (header->fsf_status_qual.word[0]) {
1774 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
Christof Schmittb62a8d92010-09-08 14:39:55 +02001775 zfcp_fc_test_link(zfcp_sdev->port);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001776 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001778 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 }
1781 break;
1782
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 case FSF_GOOD:
Christof Schmittb62a8d92010-09-08 14:39:55 +02001784 zfcp_sdev->lun_handle = header->lun_handle;
1785 atomic_set_mask(ZFCP_STATUS_COMMON_OPEN, &zfcp_sdev->status);
Christof Schmitta1ca4832010-09-08 14:39:59 +02001786 zfcp_cfdc_open_lun_eval(sdev, bottom);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789}
1790
1791/**
Christof Schmittb62a8d92010-09-08 14:39:55 +02001792 * zfcp_fsf_open_lun - open LUN
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001793 * @erp_action: pointer to struct zfcp_erp_action
1794 * Returns: 0 on success, error otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 */
Christof Schmittb62a8d92010-09-08 14:39:55 +02001796int zfcp_fsf_open_lun(struct zfcp_erp_action *erp_action)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797{
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001798 struct zfcp_adapter *adapter = erp_action->adapter;
Swen Schillig564e1c82009-08-18 15:43:19 +02001799 struct zfcp_qdio *qdio = adapter->qdio;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001800 struct zfcp_fsf_req *req;
1801 int retval = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001803 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001804 if (zfcp_qdio_sbal_get(qdio))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001805 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
Swen Schillig564e1c82009-08-18 15:43:19 +02001807 req = zfcp_fsf_req_create(qdio, FSF_QTCB_OPEN_LUN,
Christof Schmitt1674b402010-04-30 18:09:34 +02001808 SBAL_FLAGS0_TYPE_READ,
Swen Schilliga4623c42009-08-18 15:43:15 +02001809 adapter->pool.erp_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02001810
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001811 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001812 retval = PTR_ERR(req);
1813 goto out;
Christof Schmittba172422007-12-20 12:30:26 +01001814 }
1815
Swen Schillig09a46c62009-08-18 15:43:16 +02001816 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Christof Schmitt1674b402010-04-30 18:09:34 +02001817 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001819 req->qtcb->header.port_handle = erp_action->port->handle;
Christof Schmittb62a8d92010-09-08 14:39:55 +02001820 req->qtcb->bottom.support.fcp_lun = zfcp_scsi_dev_lun(erp_action->sdev);
1821 req->handler = zfcp_fsf_open_lun_handler;
1822 req->data = erp_action->sdev;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001823 req->erp_action = erp_action;
Christof Schmitte60a6d62010-02-17 11:18:49 +01001824 erp_action->fsf_req_id = req->req_id;
Andreas Herrmann059c97d2005-09-13 21:47:52 +02001825
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001826 if (!(adapter->connection_features & FSF_FEATURE_NPIV_MODE))
1827 req->qtcb->bottom.support.option = FSF_OPEN_LUN_SUPPRESS_BOXING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828
Christof Schmitt287ac012008-07-02 10:56:40 +02001829 zfcp_fsf_start_erp_timer(req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001830 retval = zfcp_fsf_req_send(req);
1831 if (retval) {
1832 zfcp_fsf_req_free(req);
Christof Schmitte60a6d62010-02-17 11:18:49 +01001833 erp_action->fsf_req_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001835out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001836 spin_unlock_irq(&qdio->req_q_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 return retval;
1838}
1839
Christof Schmittb62a8d92010-09-08 14:39:55 +02001840static void zfcp_fsf_close_lun_handler(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841{
Christof Schmittb62a8d92010-09-08 14:39:55 +02001842 struct scsi_device *sdev = req->data;
1843 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001844
1845 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
Swen Schillig44cc76f2008-10-01 12:42:16 +02001846 return;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001847
1848 switch (req->qtcb->header.fsf_status) {
1849 case FSF_PORT_HANDLE_NOT_VALID:
Christof Schmittb62a8d92010-09-08 14:39:55 +02001850 zfcp_erp_adapter_reopen(zfcp_sdev->port->adapter, 0, "fscuh_1",
1851 req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001852 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1853 break;
1854 case FSF_LUN_HANDLE_NOT_VALID:
Christof Schmittb62a8d92010-09-08 14:39:55 +02001855 zfcp_erp_port_reopen(zfcp_sdev->port, 0, "fscuh_2", req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001856 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1857 break;
1858 case FSF_PORT_BOXED:
Christof Schmittb62a8d92010-09-08 14:39:55 +02001859 zfcp_erp_port_boxed(zfcp_sdev->port, "fscuh_3", req);
Christof Schmitt4c571c62009-11-24 16:54:15 +01001860 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001861 break;
1862 case FSF_ADAPTER_STATUS_AVAILABLE:
1863 switch (req->qtcb->header.fsf_status_qual.word[0]) {
1864 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
Christof Schmittb62a8d92010-09-08 14:39:55 +02001865 zfcp_fc_test_link(zfcp_sdev->port);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001866 /* fall through */
1867 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
1868 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1869 break;
1870 }
1871 break;
1872 case FSF_GOOD:
Christof Schmittb62a8d92010-09-08 14:39:55 +02001873 atomic_clear_mask(ZFCP_STATUS_COMMON_OPEN, &zfcp_sdev->status);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001874 break;
1875 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001876}
1877
1878/**
Christof Schmittb62a8d92010-09-08 14:39:55 +02001879 * zfcp_fsf_close_LUN - close LUN
1880 * @erp_action: pointer to erp_action triggering the "close LUN"
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001881 * Returns: 0 on success, error otherwise
1882 */
Christof Schmittb62a8d92010-09-08 14:39:55 +02001883int zfcp_fsf_close_lun(struct zfcp_erp_action *erp_action)
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001884{
Swen Schillig564e1c82009-08-18 15:43:19 +02001885 struct zfcp_qdio *qdio = erp_action->adapter->qdio;
Christof Schmittb62a8d92010-09-08 14:39:55 +02001886 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(erp_action->sdev);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001887 struct zfcp_fsf_req *req;
1888 int retval = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001890 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001891 if (zfcp_qdio_sbal_get(qdio))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 goto out;
Swen Schillig09a46c62009-08-18 15:43:16 +02001893
Swen Schillig564e1c82009-08-18 15:43:19 +02001894 req = zfcp_fsf_req_create(qdio, FSF_QTCB_CLOSE_LUN,
Christof Schmitt1674b402010-04-30 18:09:34 +02001895 SBAL_FLAGS0_TYPE_READ,
Swen Schillig564e1c82009-08-18 15:43:19 +02001896 qdio->adapter->pool.erp_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02001897
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001898 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001899 retval = PTR_ERR(req);
1900 goto out;
1901 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902
Swen Schillig09a46c62009-08-18 15:43:16 +02001903 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Christof Schmitt1674b402010-04-30 18:09:34 +02001904 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001906 req->qtcb->header.port_handle = erp_action->port->handle;
Christof Schmittb62a8d92010-09-08 14:39:55 +02001907 req->qtcb->header.lun_handle = zfcp_sdev->lun_handle;
1908 req->handler = zfcp_fsf_close_lun_handler;
1909 req->data = erp_action->sdev;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001910 req->erp_action = erp_action;
Christof Schmitte60a6d62010-02-17 11:18:49 +01001911 erp_action->fsf_req_id = req->req_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912
Christof Schmitt287ac012008-07-02 10:56:40 +02001913 zfcp_fsf_start_erp_timer(req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001914 retval = zfcp_fsf_req_send(req);
1915 if (retval) {
1916 zfcp_fsf_req_free(req);
Christof Schmitte60a6d62010-02-17 11:18:49 +01001917 erp_action->fsf_req_id = 0;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001918 }
1919out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001920 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001921 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922}
1923
Christof Schmittc9615852008-05-06 11:00:05 +02001924static void zfcp_fsf_update_lat(struct fsf_latency_record *lat_rec, u32 lat)
1925{
1926 lat_rec->sum += lat;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001927 lat_rec->min = min(lat_rec->min, lat);
1928 lat_rec->max = max(lat_rec->max, lat);
Christof Schmittc9615852008-05-06 11:00:05 +02001929}
1930
Christof Schmittd9742b42009-11-24 16:54:03 +01001931static void zfcp_fsf_req_trace(struct zfcp_fsf_req *req, struct scsi_cmnd *scsi)
Christof Schmittc9615852008-05-06 11:00:05 +02001932{
Christof Schmittd9742b42009-11-24 16:54:03 +01001933 struct fsf_qual_latency_info *lat_in;
1934 struct latency_cont *lat = NULL;
Christof Schmittb62a8d92010-09-08 14:39:55 +02001935 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(scsi->device);
Christof Schmittd9742b42009-11-24 16:54:03 +01001936 struct zfcp_blk_drv_data blktrc;
1937 int ticks = req->adapter->timer_ticks;
Christof Schmittc9615852008-05-06 11:00:05 +02001938
Christof Schmittd9742b42009-11-24 16:54:03 +01001939 lat_in = &req->qtcb->prefix.prot_status_qual.latency_info;
Christof Schmittc9615852008-05-06 11:00:05 +02001940
Christof Schmittd9742b42009-11-24 16:54:03 +01001941 blktrc.flags = 0;
1942 blktrc.magic = ZFCP_BLK_DRV_DATA_MAGIC;
1943 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
1944 blktrc.flags |= ZFCP_BLK_REQ_ERROR;
Swen Schillig706eca42010-07-16 15:37:38 +02001945 blktrc.inb_usage = 0;
Christof Schmitt34c2b712010-02-17 11:18:59 +01001946 blktrc.outb_usage = req->qdio_req.qdio_outb_usage;
Christof Schmittd9742b42009-11-24 16:54:03 +01001947
Christof Schmitt5bbf2972010-04-01 13:04:08 +02001948 if (req->adapter->adapter_features & FSF_FEATURE_MEASUREMENT_DATA &&
1949 !(req->status & ZFCP_STATUS_FSFREQ_ERROR)) {
Christof Schmittd9742b42009-11-24 16:54:03 +01001950 blktrc.flags |= ZFCP_BLK_LAT_VALID;
1951 blktrc.channel_lat = lat_in->channel_lat * ticks;
1952 blktrc.fabric_lat = lat_in->fabric_lat * ticks;
1953
1954 switch (req->qtcb->bottom.io.data_direction) {
Felix Beckef3eb712010-07-16 15:37:42 +02001955 case FSF_DATADIR_DIF_READ_STRIP:
1956 case FSF_DATADIR_DIF_READ_CONVERT:
Christof Schmittd9742b42009-11-24 16:54:03 +01001957 case FSF_DATADIR_READ:
Christof Schmittb62a8d92010-09-08 14:39:55 +02001958 lat = &zfcp_sdev->latencies.read;
Christof Schmittd9742b42009-11-24 16:54:03 +01001959 break;
Felix Beckef3eb712010-07-16 15:37:42 +02001960 case FSF_DATADIR_DIF_WRITE_INSERT:
1961 case FSF_DATADIR_DIF_WRITE_CONVERT:
Christof Schmittd9742b42009-11-24 16:54:03 +01001962 case FSF_DATADIR_WRITE:
Christof Schmittb62a8d92010-09-08 14:39:55 +02001963 lat = &zfcp_sdev->latencies.write;
Christof Schmittd9742b42009-11-24 16:54:03 +01001964 break;
1965 case FSF_DATADIR_CMND:
Christof Schmittb62a8d92010-09-08 14:39:55 +02001966 lat = &zfcp_sdev->latencies.cmd;
Christof Schmittd9742b42009-11-24 16:54:03 +01001967 break;
1968 }
1969
1970 if (lat) {
Christof Schmittb62a8d92010-09-08 14:39:55 +02001971 spin_lock(&zfcp_sdev->latencies.lock);
Christof Schmittd9742b42009-11-24 16:54:03 +01001972 zfcp_fsf_update_lat(&lat->channel, lat_in->channel_lat);
1973 zfcp_fsf_update_lat(&lat->fabric, lat_in->fabric_lat);
1974 lat->counter++;
Christof Schmittb62a8d92010-09-08 14:39:55 +02001975 spin_unlock(&zfcp_sdev->latencies.lock);
Christof Schmittd9742b42009-11-24 16:54:03 +01001976 }
Christof Schmittc9615852008-05-06 11:00:05 +02001977 }
1978
Christof Schmittd9742b42009-11-24 16:54:03 +01001979 blk_add_driver_data(scsi->request->q, scsi->request, &blktrc,
1980 sizeof(blktrc));
Christof Schmittc9615852008-05-06 11:00:05 +02001981}
1982
Christof Schmittc61b5362010-09-08 14:39:58 +02001983static void zfcp_fsf_fcp_handler_common(struct zfcp_fsf_req *req)
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001984{
Christof Schmittb62a8d92010-09-08 14:39:55 +02001985 struct scsi_cmnd *scmnd = req->data;
1986 struct scsi_device *sdev = scmnd->device;
1987 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001988 struct fsf_qtcb_header *header = &req->qtcb->header;
1989
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001990 if (unlikely(req->status & ZFCP_STATUS_FSFREQ_ERROR))
Christof Schmittc61b5362010-09-08 14:39:58 +02001991 return;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001992
1993 switch (header->fsf_status) {
1994 case FSF_HANDLE_MISMATCH:
1995 case FSF_PORT_HANDLE_NOT_VALID:
Christof Schmittb62a8d92010-09-08 14:39:55 +02001996 zfcp_erp_adapter_reopen(zfcp_sdev->port->adapter, 0, "fssfch1",
1997 req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001998 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1999 break;
2000 case FSF_FCPLUN_NOT_VALID:
2001 case FSF_LUN_HANDLE_NOT_VALID:
Christof Schmittb62a8d92010-09-08 14:39:55 +02002002 zfcp_erp_port_reopen(zfcp_sdev->port, 0, "fssfch2", req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002003 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
2004 break;
2005 case FSF_SERVICE_CLASS_NOT_SUPPORTED:
2006 zfcp_fsf_class_not_supp(req);
2007 break;
2008 case FSF_ACCESS_DENIED:
Christof Schmitta1ca4832010-09-08 14:39:59 +02002009 zfcp_cfdc_lun_denied(sdev, &header->fsf_status_qual);
2010 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002011 break;
2012 case FSF_DIRECTION_INDICATOR_NOT_VALID:
2013 dev_err(&req->adapter->ccw_device->dev,
Christof Schmittb62a8d92010-09-08 14:39:55 +02002014 "Incorrect direction %d, LUN 0x%016Lx on port "
Christof Schmittff3b24f2008-10-01 12:42:15 +02002015 "0x%016Lx closed\n",
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002016 req->qtcb->bottom.io.data_direction,
Christof Schmittb62a8d92010-09-08 14:39:55 +02002017 (unsigned long long)zfcp_scsi_dev_lun(sdev),
2018 (unsigned long long)zfcp_sdev->port->wwpn);
2019 zfcp_erp_adapter_shutdown(zfcp_sdev->port->adapter, 0,
2020 "fssfch3", req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002021 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
2022 break;
2023 case FSF_CMND_LENGTH_NOT_VALID:
2024 dev_err(&req->adapter->ccw_device->dev,
Christof Schmittb62a8d92010-09-08 14:39:55 +02002025 "Incorrect CDB length %d, LUN 0x%016Lx on "
Christof Schmittff3b24f2008-10-01 12:42:15 +02002026 "port 0x%016Lx closed\n",
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002027 req->qtcb->bottom.io.fcp_cmnd_length,
Christof Schmittb62a8d92010-09-08 14:39:55 +02002028 (unsigned long long)zfcp_scsi_dev_lun(sdev),
2029 (unsigned long long)zfcp_sdev->port->wwpn);
2030 zfcp_erp_adapter_shutdown(zfcp_sdev->port->adapter, 0,
2031 "fssfch4", req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002032 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
2033 break;
2034 case FSF_PORT_BOXED:
Christof Schmittb62a8d92010-09-08 14:39:55 +02002035 zfcp_erp_port_boxed(zfcp_sdev->port, "fssfch5", req);
Christof Schmitt4c571c62009-11-24 16:54:15 +01002036 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002037 break;
2038 case FSF_LUN_BOXED:
Christof Schmittb62a8d92010-09-08 14:39:55 +02002039 zfcp_erp_lun_boxed(sdev, "fssfch6", req);
Christof Schmitt4c571c62009-11-24 16:54:15 +01002040 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002041 break;
2042 case FSF_ADAPTER_STATUS_AVAILABLE:
2043 if (header->fsf_status_qual.word[0] ==
2044 FSF_SQ_INVOKE_LINK_TEST_PROCEDURE)
Christof Schmittb62a8d92010-09-08 14:39:55 +02002045 zfcp_fc_test_link(zfcp_sdev->port);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002046 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
2047 break;
2048 }
Christof Schmittc61b5362010-09-08 14:39:58 +02002049}
2050
2051static void zfcp_fsf_fcp_cmnd_handler(struct zfcp_fsf_req *req)
2052{
2053 struct scsi_cmnd *scpnt;
2054 struct fcp_resp_with_ext *fcp_rsp;
2055 unsigned long flags;
2056
2057 zfcp_fsf_fcp_handler_common(req);
2058
2059 read_lock_irqsave(&req->adapter->abort_lock, flags);
2060
2061 scpnt = req->data;
2062 if (unlikely(!scpnt)) {
2063 read_unlock_irqrestore(&req->adapter->abort_lock, flags);
2064 return;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002065 }
Christof Schmittc61b5362010-09-08 14:39:58 +02002066
2067 if (unlikely(req->status & ZFCP_STATUS_FSFREQ_ERROR)) {
2068 set_host_byte(scpnt, DID_TRANSPORT_DISRUPTED);
2069 goto skip_fsfstatus;
2070 }
2071
2072 switch (req->qtcb->header.fsf_status) {
2073 case FSF_INCONSISTENT_PROT_DATA:
2074 case FSF_INVALID_PROT_PARM:
2075 set_host_byte(scpnt, DID_ERROR);
2076 goto skip_fsfstatus;
2077 case FSF_BLOCK_GUARD_CHECK_FAILURE:
2078 zfcp_scsi_dif_sense_error(scpnt, 0x1);
2079 goto skip_fsfstatus;
2080 case FSF_APP_TAG_CHECK_FAILURE:
2081 zfcp_scsi_dif_sense_error(scpnt, 0x2);
2082 goto skip_fsfstatus;
2083 case FSF_REF_TAG_CHECK_FAILURE:
2084 zfcp_scsi_dif_sense_error(scpnt, 0x3);
2085 goto skip_fsfstatus;
2086 }
2087 fcp_rsp = (struct fcp_resp_with_ext *) &req->qtcb->bottom.io.fcp_rsp;
2088 zfcp_fc_eval_fcp_rsp(fcp_rsp, scpnt);
2089
2090skip_fsfstatus:
2091 zfcp_fsf_req_trace(req, scpnt);
2092 zfcp_dbf_scsi_result(req->adapter->dbf, scpnt, req);
2093
2094 scpnt->host_scribble = NULL;
2095 (scpnt->scsi_done) (scpnt);
2096 /*
2097 * We must hold this lock until scsi_done has been called.
2098 * Otherwise we may call scsi_done after abort regarding this
2099 * command has completed.
2100 * Note: scsi_done must not block!
2101 */
2102 read_unlock_irqrestore(&req->adapter->abort_lock, flags);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002103}
2104
Felix Beckef3eb712010-07-16 15:37:42 +02002105static int zfcp_fsf_set_data_dir(struct scsi_cmnd *scsi_cmnd, u32 *data_dir)
2106{
2107 switch (scsi_get_prot_op(scsi_cmnd)) {
2108 case SCSI_PROT_NORMAL:
2109 switch (scsi_cmnd->sc_data_direction) {
2110 case DMA_NONE:
2111 *data_dir = FSF_DATADIR_CMND;
2112 break;
2113 case DMA_FROM_DEVICE:
2114 *data_dir = FSF_DATADIR_READ;
2115 break;
2116 case DMA_TO_DEVICE:
2117 *data_dir = FSF_DATADIR_WRITE;
2118 break;
2119 case DMA_BIDIRECTIONAL:
2120 return -EINVAL;
2121 }
2122 break;
2123
2124 case SCSI_PROT_READ_STRIP:
2125 *data_dir = FSF_DATADIR_DIF_READ_STRIP;
2126 break;
2127 case SCSI_PROT_WRITE_INSERT:
2128 *data_dir = FSF_DATADIR_DIF_WRITE_INSERT;
2129 break;
2130 case SCSI_PROT_READ_PASS:
2131 *data_dir = FSF_DATADIR_DIF_READ_CONVERT;
2132 break;
2133 case SCSI_PROT_WRITE_PASS:
2134 *data_dir = FSF_DATADIR_DIF_WRITE_CONVERT;
2135 break;
2136 default:
2137 return -EINVAL;
2138 }
2139
2140 return 0;
2141}
2142
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002143/**
Christof Schmittb62a8d92010-09-08 14:39:55 +02002144 * zfcp_fsf_fcp_cmnd - initiate an FCP command (for a SCSI command)
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002145 * @scsi_cmnd: scsi command to be sent
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002146 */
Christof Schmittb62a8d92010-09-08 14:39:55 +02002147int zfcp_fsf_fcp_cmnd(struct scsi_cmnd *scsi_cmnd)
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002148{
2149 struct zfcp_fsf_req *req;
Christof Schmitt4318e082009-11-24 16:54:08 +01002150 struct fcp_cmnd *fcp_cmnd;
Christof Schmittbc90c862009-05-15 13:18:17 +02002151 unsigned int sbtype = SBAL_FLAGS0_TYPE_READ;
Felix Beckef3eb712010-07-16 15:37:42 +02002152 int real_bytes, retval = -EIO, dix_bytes = 0;
Christof Schmittb62a8d92010-09-08 14:39:55 +02002153 struct scsi_device *sdev = scsi_cmnd->device;
2154 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
2155 struct zfcp_adapter *adapter = zfcp_sdev->port->adapter;
Swen Schillig564e1c82009-08-18 15:43:19 +02002156 struct zfcp_qdio *qdio = adapter->qdio;
Felix Beckef3eb712010-07-16 15:37:42 +02002157 struct fsf_qtcb_bottom_io *io;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002158
Christof Schmittb62a8d92010-09-08 14:39:55 +02002159 if (unlikely(!(atomic_read(&zfcp_sdev->status) &
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002160 ZFCP_STATUS_COMMON_UNBLOCKED)))
2161 return -EBUSY;
2162
Swen Schillig564e1c82009-08-18 15:43:19 +02002163 spin_lock(&qdio->req_q_lock);
Swen Schillig706eca42010-07-16 15:37:38 +02002164 if (atomic_read(&qdio->req_q_free) <= 0) {
Swen Schillig564e1c82009-08-18 15:43:19 +02002165 atomic_inc(&qdio->req_q_full);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002166 goto out;
Christof Schmitt8fdf30d2009-03-02 13:09:01 +01002167 }
Swen Schillig09a46c62009-08-18 15:43:16 +02002168
Christof Schmitt1674b402010-04-30 18:09:34 +02002169 if (scsi_cmnd->sc_data_direction == DMA_TO_DEVICE)
2170 sbtype = SBAL_FLAGS0_TYPE_WRITE;
2171
Swen Schillig564e1c82009-08-18 15:43:19 +02002172 req = zfcp_fsf_req_create(qdio, FSF_QTCB_FCP_CMND,
Christof Schmitt1674b402010-04-30 18:09:34 +02002173 sbtype, adapter->pool.scsi_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02002174
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02002175 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002176 retval = PTR_ERR(req);
2177 goto out;
2178 }
2179
Felix Beckef3eb712010-07-16 15:37:42 +02002180 scsi_cmnd->host_scribble = (unsigned char *) req->req_id;
2181
2182 io = &req->qtcb->bottom.io;
Swen Schillig09a46c62009-08-18 15:43:16 +02002183 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002184 req->data = scsi_cmnd;
Christof Schmittc61b5362010-09-08 14:39:58 +02002185 req->handler = zfcp_fsf_fcp_cmnd_handler;
Christof Schmittb62a8d92010-09-08 14:39:55 +02002186 req->qtcb->header.lun_handle = zfcp_sdev->lun_handle;
2187 req->qtcb->header.port_handle = zfcp_sdev->port->handle;
Felix Beckef3eb712010-07-16 15:37:42 +02002188 io->service_class = FSF_CLASS_3;
2189 io->fcp_cmnd_length = FCP_CMND_LEN;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002190
Felix Beckef3eb712010-07-16 15:37:42 +02002191 if (scsi_get_prot_op(scsi_cmnd) != SCSI_PROT_NORMAL) {
2192 io->data_block_length = scsi_cmnd->device->sector_size;
2193 io->ref_tag_value = scsi_get_lba(scsi_cmnd) & 0xFFFFFFFF;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002194 }
2195
Felix Beckef3eb712010-07-16 15:37:42 +02002196 zfcp_fsf_set_data_dir(scsi_cmnd, &io->data_direction);
2197
Christof Schmitt4318e082009-11-24 16:54:08 +01002198 fcp_cmnd = (struct fcp_cmnd *) &req->qtcb->bottom.io.fcp_cmnd;
2199 zfcp_fc_scsi_to_fcp(fcp_cmnd, scsi_cmnd);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002200
Felix Beckef3eb712010-07-16 15:37:42 +02002201 if (scsi_prot_sg_count(scsi_cmnd)) {
2202 zfcp_qdio_set_data_div(qdio, &req->qdio_req,
2203 scsi_prot_sg_count(scsi_cmnd));
2204 dix_bytes = zfcp_qdio_sbals_from_sg(qdio, &req->qdio_req,
2205 scsi_prot_sglist(scsi_cmnd));
2206 io->prot_data_length = dix_bytes;
2207 }
2208
Christof Schmitt1674b402010-04-30 18:09:34 +02002209 real_bytes = zfcp_qdio_sbals_from_sg(qdio, &req->qdio_req,
Swen Schillig01b04752010-07-16 15:37:37 +02002210 scsi_sglist(scsi_cmnd));
Felix Beckef3eb712010-07-16 15:37:42 +02002211
2212 if (unlikely(real_bytes < 0) || unlikely(dix_bytes < 0))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002213 goto failed_scsi_cmnd;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002214
Felix Beckef3eb712010-07-16 15:37:42 +02002215 zfcp_qdio_set_sbale_last(adapter->qdio, &req->qdio_req);
2216
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002217 retval = zfcp_fsf_req_send(req);
2218 if (unlikely(retval))
2219 goto failed_scsi_cmnd;
2220
2221 goto out;
2222
2223failed_scsi_cmnd:
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002224 zfcp_fsf_req_free(req);
2225 scsi_cmnd->host_scribble = NULL;
2226out:
Swen Schillig564e1c82009-08-18 15:43:19 +02002227 spin_unlock(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002228 return retval;
2229}
2230
Christof Schmittc61b5362010-09-08 14:39:58 +02002231static void zfcp_fsf_fcp_task_mgmt_handler(struct zfcp_fsf_req *req)
2232{
2233 struct fcp_resp_with_ext *fcp_rsp;
2234 struct fcp_resp_rsp_info *rsp_info;
2235
2236 zfcp_fsf_fcp_handler_common(req);
2237
2238 fcp_rsp = (struct fcp_resp_with_ext *) &req->qtcb->bottom.io.fcp_rsp;
2239 rsp_info = (struct fcp_resp_rsp_info *) &fcp_rsp[1];
2240
2241 if ((rsp_info->rsp_code != FCP_TMF_CMPL) ||
2242 (req->status & ZFCP_STATUS_FSFREQ_ERROR))
2243 req->status |= ZFCP_STATUS_FSFREQ_TMFUNCFAILED;
2244}
2245
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002246/**
Christof Schmittb62a8d92010-09-08 14:39:55 +02002247 * zfcp_fsf_fcp_task_mgmt - send SCSI task management command
2248 * @scmnd: SCSI command to send the task management command for
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002249 * @tm_flags: unsigned byte for task management flags
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002250 * Returns: on success pointer to struct fsf_req, NULL otherwise
2251 */
Christof Schmittb62a8d92010-09-08 14:39:55 +02002252struct zfcp_fsf_req *zfcp_fsf_fcp_task_mgmt(struct scsi_cmnd *scmnd,
2253 u8 tm_flags)
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002254{
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002255 struct zfcp_fsf_req *req = NULL;
Christof Schmitt4318e082009-11-24 16:54:08 +01002256 struct fcp_cmnd *fcp_cmnd;
Christof Schmittb62a8d92010-09-08 14:39:55 +02002257 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(scmnd->device);
2258 struct zfcp_qdio *qdio = zfcp_sdev->port->adapter->qdio;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002259
Christof Schmittb62a8d92010-09-08 14:39:55 +02002260 if (unlikely(!(atomic_read(&zfcp_sdev->status) &
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002261 ZFCP_STATUS_COMMON_UNBLOCKED)))
2262 return NULL;
2263
Christof Schmitt44a24cb2010-09-08 14:39:57 +02002264 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02002265 if (zfcp_qdio_sbal_get(qdio))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002266 goto out;
Swen Schillig09a46c62009-08-18 15:43:16 +02002267
Swen Schillig564e1c82009-08-18 15:43:19 +02002268 req = zfcp_fsf_req_create(qdio, FSF_QTCB_FCP_CMND,
Christof Schmitt1674b402010-04-30 18:09:34 +02002269 SBAL_FLAGS0_TYPE_WRITE,
Swen Schillig564e1c82009-08-18 15:43:19 +02002270 qdio->adapter->pool.scsi_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02002271
Swen Schillig633528c2008-11-26 18:07:37 +01002272 if (IS_ERR(req)) {
2273 req = NULL;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002274 goto out;
Swen Schillig633528c2008-11-26 18:07:37 +01002275 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002276
2277 req->status |= ZFCP_STATUS_FSFREQ_TASK_MANAGEMENT;
Christof Schmittb62a8d92010-09-08 14:39:55 +02002278 req->data = scmnd;
Christof Schmittc61b5362010-09-08 14:39:58 +02002279 req->handler = zfcp_fsf_fcp_task_mgmt_handler;
Christof Schmittb62a8d92010-09-08 14:39:55 +02002280 req->qtcb->header.lun_handle = zfcp_sdev->lun_handle;
2281 req->qtcb->header.port_handle = zfcp_sdev->port->handle;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002282 req->qtcb->bottom.io.data_direction = FSF_DATADIR_CMND;
2283 req->qtcb->bottom.io.service_class = FSF_CLASS_3;
Christof Schmitt4318e082009-11-24 16:54:08 +01002284 req->qtcb->bottom.io.fcp_cmnd_length = FCP_CMND_LEN;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002285
Christof Schmitt1674b402010-04-30 18:09:34 +02002286 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002287
Christof Schmitt4318e082009-11-24 16:54:08 +01002288 fcp_cmnd = (struct fcp_cmnd *) &req->qtcb->bottom.io.fcp_cmnd;
Christof Schmittb62a8d92010-09-08 14:39:55 +02002289 zfcp_fc_fcp_tm(fcp_cmnd, scmnd->device, tm_flags);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002290
2291 zfcp_fsf_start_timer(req, ZFCP_SCSI_ER_TIMEOUT);
2292 if (!zfcp_fsf_req_send(req))
2293 goto out;
2294
2295 zfcp_fsf_req_free(req);
2296 req = NULL;
2297out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02002298 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002299 return req;
2300}
2301
2302static void zfcp_fsf_control_file_handler(struct zfcp_fsf_req *req)
2303{
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002304}
2305
2306/**
2307 * zfcp_fsf_control_file - control file upload/download
2308 * @adapter: pointer to struct zfcp_adapter
2309 * @fsf_cfdc: pointer to struct zfcp_fsf_cfdc
2310 * Returns: on success pointer to struct zfcp_fsf_req, NULL otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 */
Christof Schmitt45633fd2008-06-10 18:20:55 +02002312struct zfcp_fsf_req *zfcp_fsf_control_file(struct zfcp_adapter *adapter,
2313 struct zfcp_fsf_cfdc *fsf_cfdc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314{
Swen Schillig564e1c82009-08-18 15:43:19 +02002315 struct zfcp_qdio *qdio = adapter->qdio;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002316 struct zfcp_fsf_req *req = NULL;
2317 struct fsf_qtcb_bottom_support *bottom;
2318 int direction, retval = -EIO, bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319
Christof Schmitt45633fd2008-06-10 18:20:55 +02002320 if (!(adapter->adapter_features & FSF_FEATURE_CFDC))
2321 return ERR_PTR(-EOPNOTSUPP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322
Christof Schmitt45633fd2008-06-10 18:20:55 +02002323 switch (fsf_cfdc->command) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 case FSF_QTCB_DOWNLOAD_CONTROL_FILE:
2325 direction = SBAL_FLAGS0_TYPE_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 case FSF_QTCB_UPLOAD_CONTROL_FILE:
2328 direction = SBAL_FLAGS0_TYPE_READ;
2329 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 default:
Christof Schmitt45633fd2008-06-10 18:20:55 +02002331 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 }
2333
Christof Schmitt44a24cb2010-09-08 14:39:57 +02002334 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02002335 if (zfcp_qdio_sbal_get(qdio))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002336 goto out;
2337
Christof Schmitt1674b402010-04-30 18:09:34 +02002338 req = zfcp_fsf_req_create(qdio, fsf_cfdc->command, direction, NULL);
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02002339 if (IS_ERR(req)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 retval = -EPERM;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002341 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342 }
2343
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002344 req->handler = zfcp_fsf_control_file_handler;
2345
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002346 bottom = &req->qtcb->bottom.support;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 bottom->operation_subtype = FSF_CFDC_OPERATION_SUBTYPE;
Christof Schmitt45633fd2008-06-10 18:20:55 +02002348 bottom->option = fsf_cfdc->option;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349
Swen Schillig01b04752010-07-16 15:37:37 +02002350 bytes = zfcp_qdio_sbals_from_sg(qdio, &req->qdio_req, fsf_cfdc->sg);
2351
Christof Schmitt45633fd2008-06-10 18:20:55 +02002352 if (bytes != ZFCP_CFDC_MAX_SIZE) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002353 zfcp_fsf_req_free(req);
2354 goto out;
Christof Schmitt45633fd2008-06-10 18:20:55 +02002355 }
Felix Beckef3eb712010-07-16 15:37:42 +02002356 zfcp_qdio_set_sbale_last(adapter->qdio, &req->qdio_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002358 zfcp_fsf_start_timer(req, ZFCP_FSF_REQUEST_TIMEOUT);
2359 retval = zfcp_fsf_req_send(req);
2360out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02002361 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002362
2363 if (!retval) {
Swen Schillig058b8642009-08-18 15:43:14 +02002364 wait_for_completion(&req->completion);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002365 return req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 }
Christof Schmitt45633fd2008-06-10 18:20:55 +02002367 return ERR_PTR(retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368}
Swen Schilligbd63eaf2009-08-18 15:43:13 +02002369
2370/**
2371 * zfcp_fsf_reqid_check - validate req_id contained in SBAL returned by QDIO
2372 * @adapter: pointer to struct zfcp_adapter
2373 * @sbal_idx: response queue index of SBAL to be processed
2374 */
Swen Schillig564e1c82009-08-18 15:43:19 +02002375void zfcp_fsf_reqid_check(struct zfcp_qdio *qdio, int sbal_idx)
Swen Schilligbd63eaf2009-08-18 15:43:13 +02002376{
Swen Schillig564e1c82009-08-18 15:43:19 +02002377 struct zfcp_adapter *adapter = qdio->adapter;
Swen Schillig706eca42010-07-16 15:37:38 +02002378 struct qdio_buffer *sbal = qdio->res_q[sbal_idx];
Swen Schilligbd63eaf2009-08-18 15:43:13 +02002379 struct qdio_buffer_element *sbale;
2380 struct zfcp_fsf_req *fsf_req;
Christof Schmittb6bd2fb2010-02-17 11:18:50 +01002381 unsigned long req_id;
Swen Schilligbd63eaf2009-08-18 15:43:13 +02002382 int idx;
2383
2384 for (idx = 0; idx < QDIO_MAX_ELEMENTS_PER_BUFFER; idx++) {
2385
2386 sbale = &sbal->element[idx];
2387 req_id = (unsigned long) sbale->addr;
Christof Schmittb6bd2fb2010-02-17 11:18:50 +01002388 fsf_req = zfcp_reqlist_find_rm(adapter->req_list, req_id);
Swen Schilligbd63eaf2009-08-18 15:43:13 +02002389
Christof Schmitt339f4f42010-07-16 15:37:43 +02002390 if (!fsf_req) {
Swen Schilligbd63eaf2009-08-18 15:43:13 +02002391 /*
2392 * Unknown request means that we have potentially memory
2393 * corruption and must stop the machine immediately.
2394 */
Christof Schmitt339f4f42010-07-16 15:37:43 +02002395 zfcp_qdio_siosl(adapter);
Swen Schilligbd63eaf2009-08-18 15:43:13 +02002396 panic("error: unknown req_id (%lx) on adapter %s.\n",
2397 req_id, dev_name(&adapter->ccw_device->dev));
Christof Schmitt339f4f42010-07-16 15:37:43 +02002398 }
Swen Schilligbd63eaf2009-08-18 15:43:13 +02002399
Christof Schmitt34c2b712010-02-17 11:18:59 +01002400 fsf_req->qdio_req.sbal_response = sbal_idx;
Swen Schilligbd63eaf2009-08-18 15:43:13 +02002401 zfcp_fsf_req_complete(fsf_req);
2402
2403 if (likely(sbale->flags & SBAL_FLAGS_LAST_ENTRY))
2404 break;
2405 }
2406}