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