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