2 * This file is part of the zfcp device driver for
3 * FCP adapters for IBM System z9 and zSeries.
5 * (C) Copyright IBM Corp. 2002, 2006
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2, or (at your option)
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 static int zfcp_fsf_exchange_config_data_handler(struct zfcp_fsf_req *);
25 static void zfcp_fsf_exchange_port_data_handler(struct zfcp_fsf_req *);
26 static int zfcp_fsf_open_port_handler(struct zfcp_fsf_req *);
27 static int zfcp_fsf_close_port_handler(struct zfcp_fsf_req *);
28 static int zfcp_fsf_close_physical_port_handler(struct zfcp_fsf_req *);
29 static int zfcp_fsf_open_unit_handler(struct zfcp_fsf_req *);
30 static int zfcp_fsf_close_unit_handler(struct zfcp_fsf_req *);
31 static int zfcp_fsf_send_fcp_command_handler(struct zfcp_fsf_req *);
32 static int zfcp_fsf_send_fcp_command_task_handler(struct zfcp_fsf_req *);
33 static int zfcp_fsf_send_fcp_command_task_management_handler(
34 struct zfcp_fsf_req *);
35 static int zfcp_fsf_abort_fcp_command_handler(struct zfcp_fsf_req *);
36 static int zfcp_fsf_status_read_handler(struct zfcp_fsf_req *);
37 static int zfcp_fsf_send_ct_handler(struct zfcp_fsf_req *);
38 static int zfcp_fsf_send_els_handler(struct zfcp_fsf_req *);
39 static int zfcp_fsf_control_file_handler(struct zfcp_fsf_req *);
40 static inline int zfcp_fsf_req_sbal_check(
41 unsigned long *, struct zfcp_qdio_queue *, int);
42 static inline int zfcp_use_one_sbal(
43 struct scatterlist *, int, struct scatterlist *, int);
44 static struct zfcp_fsf_req *zfcp_fsf_req_alloc(mempool_t *, int);
45 static int zfcp_fsf_req_send(struct zfcp_fsf_req *);
46 static int zfcp_fsf_protstatus_eval(struct zfcp_fsf_req *);
47 static int zfcp_fsf_fsfstatus_eval(struct zfcp_fsf_req *);
48 static int zfcp_fsf_fsfstatus_qual_eval(struct zfcp_fsf_req *);
49 static void zfcp_fsf_link_down_info_eval(struct zfcp_fsf_req *, u8,
50 struct fsf_link_down_info *);
51 static int zfcp_fsf_req_dispatch(struct zfcp_fsf_req *);
53 /* association between FSF command and FSF QTCB type */
54 static u32 fsf_qtcb_type[] = {
55 [FSF_QTCB_FCP_CMND] = FSF_IO_COMMAND,
56 [FSF_QTCB_ABORT_FCP_CMND] = FSF_SUPPORT_COMMAND,
57 [FSF_QTCB_OPEN_PORT_WITH_DID] = FSF_SUPPORT_COMMAND,
58 [FSF_QTCB_OPEN_LUN] = FSF_SUPPORT_COMMAND,
59 [FSF_QTCB_CLOSE_LUN] = FSF_SUPPORT_COMMAND,
60 [FSF_QTCB_CLOSE_PORT] = FSF_SUPPORT_COMMAND,
61 [FSF_QTCB_CLOSE_PHYSICAL_PORT] = FSF_SUPPORT_COMMAND,
62 [FSF_QTCB_SEND_ELS] = FSF_SUPPORT_COMMAND,
63 [FSF_QTCB_SEND_GENERIC] = FSF_SUPPORT_COMMAND,
64 [FSF_QTCB_EXCHANGE_CONFIG_DATA] = FSF_CONFIG_COMMAND,
65 [FSF_QTCB_EXCHANGE_PORT_DATA] = FSF_PORT_COMMAND,
66 [FSF_QTCB_DOWNLOAD_CONTROL_FILE] = FSF_SUPPORT_COMMAND,
67 [FSF_QTCB_UPLOAD_CONTROL_FILE] = FSF_SUPPORT_COMMAND
70 static const char zfcp_act_subtable_type[5][8] = {
71 "unknown", "OS", "WWPN", "DID", "LUN"
74 /****************************************************************/
75 /*************** FSF related Functions *************************/
76 /****************************************************************/
78 #define ZFCP_LOG_AREA ZFCP_LOG_AREA_FSF
81 * function: zfcp_fsf_req_alloc
83 * purpose: Obtains an fsf_req and potentially a qtcb (for all but
84 * unsolicited requests) via helper functions
85 * Does some initial fsf request set-up.
87 * returns: pointer to allocated fsf_req if successfull
93 static struct zfcp_fsf_req *
94 zfcp_fsf_req_alloc(mempool_t *pool, int req_flags)
98 struct zfcp_fsf_req *fsf_req = NULL;
100 if (req_flags & ZFCP_REQ_NO_QTCB)
101 size = sizeof(struct zfcp_fsf_req);
103 size = sizeof(struct zfcp_fsf_req_qtcb);
106 ptr = mempool_alloc(pool, GFP_ATOMIC);
108 if (req_flags & ZFCP_REQ_NO_QTCB)
109 ptr = kmalloc(size, GFP_ATOMIC);
111 ptr = kmem_cache_alloc(zfcp_data.fsf_req_qtcb_cache,
118 memset(ptr, 0, size);
120 if (req_flags & ZFCP_REQ_NO_QTCB) {
121 fsf_req = (struct zfcp_fsf_req *) ptr;
123 fsf_req = &((struct zfcp_fsf_req_qtcb *) ptr)->fsf_req;
124 fsf_req->qtcb = &((struct zfcp_fsf_req_qtcb *) ptr)->qtcb;
127 fsf_req->pool = pool;
134 * function: zfcp_fsf_req_free
136 * purpose: Frees the memory of an fsf_req (and potentially a qtcb) or
137 * returns it into the pool via helper functions.
144 zfcp_fsf_req_free(struct zfcp_fsf_req *fsf_req)
146 if (likely(fsf_req->pool)) {
147 mempool_free(fsf_req, fsf_req->pool);
152 kmem_cache_free(zfcp_data.fsf_req_qtcb_cache, fsf_req);
160 * Never ever call this without shutting down the adapter first.
161 * Otherwise the adapter would continue using and corrupting s390 storage.
162 * Included BUG_ON() call to ensure this is done.
163 * ERP is supposed to be the only user of this function.
165 void zfcp_fsf_req_dismiss_all(struct zfcp_adapter *adapter)
167 struct zfcp_fsf_req *fsf_req, *tmp;
169 LIST_HEAD(remove_queue);
172 BUG_ON(atomic_test_mask(ZFCP_STATUS_ADAPTER_QDIOUP, &adapter->status));
173 spin_lock_irqsave(&adapter->req_list_lock, flags);
174 atomic_set(&adapter->reqs_active, 0);
175 for (i = 0; i < REQUEST_LIST_SIZE; i++)
176 list_splice_init(&adapter->req_list[i], &remove_queue);
177 spin_unlock_irqrestore(&adapter->req_list_lock, flags);
179 list_for_each_entry_safe(fsf_req, tmp, &remove_queue, list) {
180 list_del(&fsf_req->list);
181 fsf_req->status |= ZFCP_STATUS_FSFREQ_DISMISSED;
182 zfcp_fsf_req_complete(fsf_req);
187 * function: zfcp_fsf_req_complete
189 * purpose: Updates active counts and timers for openfcp-reqs
190 * May cleanup request after req_eval returns
192 * returns: 0 - success
198 zfcp_fsf_req_complete(struct zfcp_fsf_req *fsf_req)
203 if (unlikely(fsf_req->fsf_command == FSF_QTCB_UNSOLICITED_STATUS)) {
204 ZFCP_LOG_DEBUG("Status read response received\n");
206 * Note: all cleanup handling is done in the callchain of
207 * the function call-chain below.
209 zfcp_fsf_status_read_handler(fsf_req);
212 del_timer(&fsf_req->timer);
213 zfcp_fsf_protstatus_eval(fsf_req);
217 * fsf_req may be deleted due to waking up functions, so
218 * cleanup is saved here and used later
220 if (likely(fsf_req->status & ZFCP_STATUS_FSFREQ_CLEANUP))
225 fsf_req->status |= ZFCP_STATUS_FSFREQ_COMPLETED;
227 /* cleanup request if requested by initiator */
228 if (likely(cleanup)) {
229 ZFCP_LOG_TRACE("removing FSF request %p\n", fsf_req);
231 * lock must not be held here since it will be
232 * grabed by the called routine, too
234 zfcp_fsf_req_free(fsf_req);
236 /* notify initiator waiting for the requests completion */
237 ZFCP_LOG_TRACE("waking initiator of FSF request %p\n",fsf_req);
239 * FIXME: Race! We must not access fsf_req here as it might have been
240 * cleaned up already due to the set ZFCP_STATUS_FSFREQ_COMPLETED
241 * flag. It's an improbable case. But, we have the same paranoia for
242 * the cleanup flag already.
243 * Might better be handled using complete()?
244 * (setting the flag and doing wakeup ought to be atomic
245 * with regard to checking the flag as long as waitqueue is
246 * part of the to be released structure)
248 wake_up(&fsf_req->completion_wq);
256 * function: zfcp_fsf_protstatus_eval
258 * purpose: evaluates the QTCB of the finished FSF request
259 * and initiates appropriate actions
260 * (usually calling FSF command specific handlers)
269 zfcp_fsf_protstatus_eval(struct zfcp_fsf_req *fsf_req)
272 struct zfcp_adapter *adapter = fsf_req->adapter;
273 struct fsf_qtcb *qtcb = fsf_req->qtcb;
274 union fsf_prot_status_qual *prot_status_qual =
275 &qtcb->prefix.prot_status_qual;
277 zfcp_hba_dbf_event_fsf_response(fsf_req);
279 if (fsf_req->status & ZFCP_STATUS_FSFREQ_DISMISSED) {
280 ZFCP_LOG_DEBUG("fsf_req 0x%lx has been dismissed\n",
281 (unsigned long) fsf_req);
282 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR |
283 ZFCP_STATUS_FSFREQ_RETRY; /* only for SCSI cmnds. */
284 goto skip_protstatus;
287 /* evaluate FSF Protocol Status */
288 switch (qtcb->prefix.prot_status) {
291 case FSF_PROT_FSF_STATUS_PRESENTED:
294 case FSF_PROT_QTCB_VERSION_ERROR:
295 ZFCP_LOG_NORMAL("error: The adapter %s contains "
296 "microcode of version 0x%x, the device driver "
297 "only supports 0x%x. Aborting.\n",
298 zfcp_get_busid_by_adapter(adapter),
299 prot_status_qual->version_error.fsf_version,
301 zfcp_erp_adapter_shutdown(adapter, 0, 117, fsf_req);
302 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
305 case FSF_PROT_SEQ_NUMB_ERROR:
306 ZFCP_LOG_NORMAL("bug: Sequence number mismatch between "
307 "driver (0x%x) and adapter %s (0x%x). "
308 "Restarting all operations on this adapter.\n",
309 qtcb->prefix.req_seq_no,
310 zfcp_get_busid_by_adapter(adapter),
311 prot_status_qual->sequence_error.exp_req_seq_no);
312 zfcp_erp_adapter_reopen(adapter, 0, 98, fsf_req);
313 fsf_req->status |= ZFCP_STATUS_FSFREQ_RETRY;
314 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
317 case FSF_PROT_UNSUPP_QTCB_TYPE:
318 ZFCP_LOG_NORMAL("error: Packet header type used by the "
319 "device driver is incompatible with "
320 "that used on adapter %s. "
321 "Stopping all operations on this adapter.\n",
322 zfcp_get_busid_by_adapter(adapter));
323 zfcp_erp_adapter_shutdown(adapter, 0, 118, fsf_req);
324 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
327 case FSF_PROT_HOST_CONNECTION_INITIALIZING:
328 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
329 atomic_set_mask(ZFCP_STATUS_ADAPTER_HOST_CON_INIT,
333 case FSF_PROT_DUPLICATE_REQUEST_ID:
334 ZFCP_LOG_NORMAL("bug: The request identifier 0x%Lx "
335 "to the adapter %s is ambiguous. "
336 "Stopping all operations on this adapter.\n",
337 *(unsigned long long*)
338 (&qtcb->bottom.support.req_handle),
339 zfcp_get_busid_by_adapter(adapter));
340 zfcp_erp_adapter_shutdown(adapter, 0, 78, fsf_req);
341 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
344 case FSF_PROT_LINK_DOWN:
345 zfcp_fsf_link_down_info_eval(fsf_req, 37,
346 &prot_status_qual->link_down_info);
347 /* FIXME: reopening adapter now? better wait for link up */
348 zfcp_erp_adapter_reopen(adapter, 0, 79, fsf_req);
349 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
352 case FSF_PROT_REEST_QUEUE:
353 ZFCP_LOG_NORMAL("The local link to adapter with "
354 "%s was re-plugged. "
355 "Re-starting operations on this adapter.\n",
356 zfcp_get_busid_by_adapter(adapter));
357 /* All ports should be marked as ready to run again */
358 zfcp_erp_modify_adapter_status(adapter, 28, NULL,
359 ZFCP_STATUS_COMMON_RUNNING,
361 zfcp_erp_adapter_reopen(adapter,
362 ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED
363 | ZFCP_STATUS_COMMON_ERP_FAILED,
365 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
368 case FSF_PROT_ERROR_STATE:
369 ZFCP_LOG_NORMAL("error: The adapter %s "
370 "has entered the error state. "
371 "Restarting all operations on this "
373 zfcp_get_busid_by_adapter(adapter));
374 zfcp_erp_adapter_reopen(adapter, 0, 100, fsf_req);
375 fsf_req->status |= ZFCP_STATUS_FSFREQ_RETRY;
376 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
380 ZFCP_LOG_NORMAL("bug: Transfer protocol status information "
381 "provided by the adapter %s "
382 "is not compatible with the device driver. "
383 "Stopping all operations on this adapter. "
384 "(debug info 0x%x).\n",
385 zfcp_get_busid_by_adapter(adapter),
386 qtcb->prefix.prot_status);
387 zfcp_erp_adapter_shutdown(adapter, 0, 119, fsf_req);
388 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
393 * always call specific handlers to give them a chance to do
394 * something meaningful even in error cases
396 zfcp_fsf_fsfstatus_eval(fsf_req);
401 * function: zfcp_fsf_fsfstatus_eval
403 * purpose: evaluates FSF status of completed FSF request
404 * and acts accordingly
409 zfcp_fsf_fsfstatus_eval(struct zfcp_fsf_req *fsf_req)
413 if (unlikely(fsf_req->status & ZFCP_STATUS_FSFREQ_ERROR)) {
417 /* evaluate FSF Status */
418 switch (fsf_req->qtcb->header.fsf_status) {
419 case FSF_UNKNOWN_COMMAND:
420 ZFCP_LOG_NORMAL("bug: Command issued by the device driver is "
421 "not known by the adapter %s "
422 "Stopping all operations on this adapter. "
423 "(debug info 0x%x).\n",
424 zfcp_get_busid_by_adapter(fsf_req->adapter),
425 fsf_req->qtcb->header.fsf_command);
426 zfcp_erp_adapter_shutdown(fsf_req->adapter, 0, 120, fsf_req);
427 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
430 case FSF_FCP_RSP_AVAILABLE:
431 ZFCP_LOG_DEBUG("FCP Sense data will be presented to the "
435 case FSF_ADAPTER_STATUS_AVAILABLE:
436 zfcp_fsf_fsfstatus_qual_eval(fsf_req);
442 * always call specific handlers to give them a chance to do
443 * something meaningful even in error cases
445 zfcp_fsf_req_dispatch(fsf_req);
451 * function: zfcp_fsf_fsfstatus_qual_eval
453 * purpose: evaluates FSF status-qualifier of completed FSF request
454 * and acts accordingly
459 zfcp_fsf_fsfstatus_qual_eval(struct zfcp_fsf_req *fsf_req)
463 switch (fsf_req->qtcb->header.fsf_status_qual.word[0]) {
464 case FSF_SQ_FCP_RSP_AVAILABLE:
466 case FSF_SQ_RETRY_IF_POSSIBLE:
467 /* The SCSI-stack may now issue retries or escalate */
468 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
470 case FSF_SQ_COMMAND_ABORTED:
471 /* Carry the aborted state on to upper layer */
472 fsf_req->status |= ZFCP_STATUS_FSFREQ_ABORTED;
473 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
475 case FSF_SQ_NO_RECOM:
476 ZFCP_LOG_NORMAL("bug: No recommendation could be given for a "
477 "problem on the adapter %s "
478 "Stopping all operations on this adapter. ",
479 zfcp_get_busid_by_adapter(fsf_req->adapter));
480 zfcp_erp_adapter_shutdown(fsf_req->adapter, 0, 121, fsf_req);
481 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
483 case FSF_SQ_ULP_PROGRAMMING_ERROR:
484 ZFCP_LOG_NORMAL("error: not enough SBALs for data transfer "
486 zfcp_get_busid_by_adapter(fsf_req->adapter));
487 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
489 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
490 case FSF_SQ_NO_RETRY_POSSIBLE:
491 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
492 /* dealt with in the respective functions */
495 ZFCP_LOG_NORMAL("bug: Additional status info could "
496 "not be interpreted properly.\n");
497 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_NORMAL,
498 (char *) &fsf_req->qtcb->header.fsf_status_qual,
499 sizeof (union fsf_status_qual));
500 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
508 * zfcp_fsf_link_down_info_eval - evaluate link down information block
511 zfcp_fsf_link_down_info_eval(struct zfcp_fsf_req *fsf_req, u8 id,
512 struct fsf_link_down_info *link_down)
514 struct zfcp_adapter *adapter = fsf_req->adapter;
516 if (atomic_test_mask(ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED,
520 atomic_set_mask(ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED, &adapter->status);
522 if (link_down == NULL)
525 switch (link_down->error_code) {
526 case FSF_PSQ_LINK_NO_LIGHT:
527 ZFCP_LOG_NORMAL("The local link to adapter %s is down "
528 "(no light detected)\n",
529 zfcp_get_busid_by_adapter(adapter));
531 case FSF_PSQ_LINK_WRAP_PLUG:
532 ZFCP_LOG_NORMAL("The local link to adapter %s is down "
533 "(wrap plug detected)\n",
534 zfcp_get_busid_by_adapter(adapter));
536 case FSF_PSQ_LINK_NO_FCP:
537 ZFCP_LOG_NORMAL("The local link to adapter %s is down "
538 "(adjacent node on link does not support FCP)\n",
539 zfcp_get_busid_by_adapter(adapter));
541 case FSF_PSQ_LINK_FIRMWARE_UPDATE:
542 ZFCP_LOG_NORMAL("The local link to adapter %s is down "
543 "(firmware update in progress)\n",
544 zfcp_get_busid_by_adapter(adapter));
546 case FSF_PSQ_LINK_INVALID_WWPN:
547 ZFCP_LOG_NORMAL("The local link to adapter %s is down "
548 "(duplicate or invalid WWPN detected)\n",
549 zfcp_get_busid_by_adapter(adapter));
551 case FSF_PSQ_LINK_NO_NPIV_SUPPORT:
552 ZFCP_LOG_NORMAL("The local link to adapter %s is down "
553 "(no support for NPIV by Fabric)\n",
554 zfcp_get_busid_by_adapter(adapter));
556 case FSF_PSQ_LINK_NO_FCP_RESOURCES:
557 ZFCP_LOG_NORMAL("The local link to adapter %s is down "
558 "(out of resource in FCP daughtercard)\n",
559 zfcp_get_busid_by_adapter(adapter));
561 case FSF_PSQ_LINK_NO_FABRIC_RESOURCES:
562 ZFCP_LOG_NORMAL("The local link to adapter %s is down "
563 "(out of resource in Fabric)\n",
564 zfcp_get_busid_by_adapter(adapter));
566 case FSF_PSQ_LINK_FABRIC_LOGIN_UNABLE:
567 ZFCP_LOG_NORMAL("The local link to adapter %s is down "
568 "(unable to Fabric login)\n",
569 zfcp_get_busid_by_adapter(adapter));
571 case FSF_PSQ_LINK_WWPN_ASSIGNMENT_CORRUPTED:
572 ZFCP_LOG_NORMAL("WWPN assignment file corrupted on adapter %s\n",
573 zfcp_get_busid_by_adapter(adapter));
575 case FSF_PSQ_LINK_MODE_TABLE_CURRUPTED:
576 ZFCP_LOG_NORMAL("Mode table corrupted on adapter %s\n",
577 zfcp_get_busid_by_adapter(adapter));
579 case FSF_PSQ_LINK_NO_WWPN_ASSIGNMENT:
580 ZFCP_LOG_NORMAL("No WWPN for assignment table on adapter %s\n",
581 zfcp_get_busid_by_adapter(adapter));
584 ZFCP_LOG_NORMAL("The local link to adapter %s is down "
585 "(warning: unknown reason code %d)\n",
586 zfcp_get_busid_by_adapter(adapter),
587 link_down->error_code);
590 if (adapter->connection_features & FSF_FEATURE_NPIV_MODE)
591 ZFCP_LOG_DEBUG("Debug information to link down: "
592 "primary_status=0x%02x "
594 "action_code=0x%02x "
595 "reason_code=0x%02x "
596 "explanation_code=0x%02x "
597 "vendor_specific_code=0x%02x\n",
598 link_down->primary_status,
599 link_down->ioerr_code,
600 link_down->action_code,
601 link_down->reason_code,
602 link_down->explanation_code,
603 link_down->vendor_specific_code);
606 zfcp_erp_adapter_failed(adapter, id, fsf_req);
610 * function: zfcp_fsf_req_dispatch
612 * purpose: calls the appropriate command specific handler
617 zfcp_fsf_req_dispatch(struct zfcp_fsf_req *fsf_req)
619 struct zfcp_erp_action *erp_action = fsf_req->erp_action;
620 struct zfcp_adapter *adapter = fsf_req->adapter;
624 switch (fsf_req->fsf_command) {
626 case FSF_QTCB_FCP_CMND:
627 zfcp_fsf_send_fcp_command_handler(fsf_req);
630 case FSF_QTCB_ABORT_FCP_CMND:
631 zfcp_fsf_abort_fcp_command_handler(fsf_req);
634 case FSF_QTCB_SEND_GENERIC:
635 zfcp_fsf_send_ct_handler(fsf_req);
638 case FSF_QTCB_OPEN_PORT_WITH_DID:
639 zfcp_fsf_open_port_handler(fsf_req);
642 case FSF_QTCB_OPEN_LUN:
643 zfcp_fsf_open_unit_handler(fsf_req);
646 case FSF_QTCB_CLOSE_LUN:
647 zfcp_fsf_close_unit_handler(fsf_req);
650 case FSF_QTCB_CLOSE_PORT:
651 zfcp_fsf_close_port_handler(fsf_req);
654 case FSF_QTCB_CLOSE_PHYSICAL_PORT:
655 zfcp_fsf_close_physical_port_handler(fsf_req);
658 case FSF_QTCB_EXCHANGE_CONFIG_DATA:
659 zfcp_fsf_exchange_config_data_handler(fsf_req);
662 case FSF_QTCB_EXCHANGE_PORT_DATA:
663 zfcp_fsf_exchange_port_data_handler(fsf_req);
666 case FSF_QTCB_SEND_ELS:
667 zfcp_fsf_send_els_handler(fsf_req);
670 case FSF_QTCB_DOWNLOAD_CONTROL_FILE:
671 zfcp_fsf_control_file_handler(fsf_req);
674 case FSF_QTCB_UPLOAD_CONTROL_FILE:
675 zfcp_fsf_control_file_handler(fsf_req);
679 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
680 ZFCP_LOG_NORMAL("bug: Command issued by the device driver is "
681 "not supported by the adapter %s\n",
682 zfcp_get_busid_by_adapter(adapter));
683 if (fsf_req->fsf_command != fsf_req->qtcb->header.fsf_command)
685 ("bug: Command issued by the device driver differs "
686 "from the command returned by the adapter %s "
687 "(debug info 0x%x, 0x%x).\n",
688 zfcp_get_busid_by_adapter(adapter),
689 fsf_req->fsf_command,
690 fsf_req->qtcb->header.fsf_command);
696 zfcp_erp_async_handler(erp_action, 0);
702 * function: zfcp_fsf_status_read
704 * purpose: initiates a Status Read command at the specified adapter
709 zfcp_fsf_status_read(struct zfcp_adapter *adapter, int req_flags)
711 struct zfcp_fsf_req *fsf_req;
712 struct fsf_status_read_buffer *status_buffer;
713 unsigned long lock_flags;
714 volatile struct qdio_buffer_element *sbale;
717 /* setup new FSF request */
718 retval = zfcp_fsf_req_create(adapter, FSF_QTCB_UNSOLICITED_STATUS,
719 req_flags | ZFCP_REQ_NO_QTCB,
720 adapter->pool.fsf_req_status_read,
721 &lock_flags, &fsf_req);
723 ZFCP_LOG_INFO("error: Could not create unsolicited status "
724 "buffer for adapter %s.\n",
725 zfcp_get_busid_by_adapter(adapter));
726 goto failed_req_create;
729 sbale = zfcp_qdio_sbale_req(fsf_req, fsf_req->sbal_curr, 0);
730 sbale[0].flags |= SBAL_FLAGS0_TYPE_STATUS;
731 sbale[2].flags |= SBAL_FLAGS_LAST_ENTRY;
732 fsf_req->sbale_curr = 2;
736 mempool_alloc(adapter->pool.data_status_read, GFP_ATOMIC);
739 memset(status_buffer, 0, sizeof (struct fsf_status_read_buffer));
740 fsf_req->data = (unsigned long) status_buffer;
742 /* insert pointer to respective buffer */
743 sbale = zfcp_qdio_sbale_curr(fsf_req);
744 sbale->addr = (void *) status_buffer;
745 sbale->length = sizeof(struct fsf_status_read_buffer);
747 retval = zfcp_fsf_req_send(fsf_req);
749 ZFCP_LOG_DEBUG("error: Could not set-up unsolicited status "
751 goto failed_req_send;
754 ZFCP_LOG_TRACE("Status Read request initiated (adapter%s)\n",
755 zfcp_get_busid_by_adapter(adapter));
759 mempool_free(status_buffer, adapter->pool.data_status_read);
762 zfcp_fsf_req_free(fsf_req);
764 zfcp_hba_dbf_event_fsf_unsol("fail", adapter, NULL);
766 write_unlock_irqrestore(&adapter->request_queue.queue_lock, lock_flags);
771 zfcp_fsf_status_read_port_closed(struct zfcp_fsf_req *fsf_req)
773 struct fsf_status_read_buffer *status_buffer;
774 struct zfcp_adapter *adapter;
775 struct zfcp_port *port;
778 status_buffer = (struct fsf_status_read_buffer *) fsf_req->data;
779 adapter = fsf_req->adapter;
781 read_lock_irqsave(&zfcp_data.config_lock, flags);
782 list_for_each_entry(port, &adapter->port_list_head, list)
783 if (port->d_id == (status_buffer->d_id & ZFCP_DID_MASK))
785 read_unlock_irqrestore(&zfcp_data.config_lock, flags);
787 if (!port || (port->d_id != (status_buffer->d_id & ZFCP_DID_MASK))) {
788 ZFCP_LOG_NORMAL("bug: Reopen port indication received for "
789 "nonexisting port with d_id 0x%06x on "
790 "adapter %s. Ignored.\n",
791 status_buffer->d_id & ZFCP_DID_MASK,
792 zfcp_get_busid_by_adapter(adapter));
796 switch (status_buffer->status_subtype) {
798 case FSF_STATUS_READ_SUB_CLOSE_PHYS_PORT:
799 zfcp_erp_port_reopen(port, 0, 101, fsf_req);
802 case FSF_STATUS_READ_SUB_ERROR_PORT:
803 zfcp_erp_port_shutdown(port, 0, 122, fsf_req);
807 ZFCP_LOG_NORMAL("bug: Undefined status subtype received "
808 "for a reopen indication on port with "
809 "d_id 0x%06x on the adapter %s. "
810 "Ignored. (debug info 0x%x)\n",
812 zfcp_get_busid_by_adapter(adapter),
813 status_buffer->status_subtype);
820 * function: zfcp_fsf_status_read_handler
822 * purpose: is called for finished Open Port command
827 zfcp_fsf_status_read_handler(struct zfcp_fsf_req *fsf_req)
830 struct zfcp_adapter *adapter = fsf_req->adapter;
831 struct fsf_status_read_buffer *status_buffer =
832 (struct fsf_status_read_buffer *) fsf_req->data;
833 struct fsf_bit_error_payload *fsf_bit_error;
835 if (fsf_req->status & ZFCP_STATUS_FSFREQ_DISMISSED) {
836 zfcp_hba_dbf_event_fsf_unsol("dism", adapter, status_buffer);
837 mempool_free(status_buffer, adapter->pool.data_status_read);
838 zfcp_fsf_req_free(fsf_req);
842 zfcp_hba_dbf_event_fsf_unsol("read", adapter, status_buffer);
844 switch (status_buffer->status_type) {
846 case FSF_STATUS_READ_PORT_CLOSED:
847 zfcp_fsf_status_read_port_closed(fsf_req);
850 case FSF_STATUS_READ_INCOMING_ELS:
851 zfcp_fsf_incoming_els(fsf_req);
854 case FSF_STATUS_READ_SENSE_DATA_AVAIL:
855 ZFCP_LOG_INFO("unsolicited sense data received (adapter %s)\n",
856 zfcp_get_busid_by_adapter(adapter));
859 case FSF_STATUS_READ_BIT_ERROR_THRESHOLD:
860 fsf_bit_error = (struct fsf_bit_error_payload *)
861 status_buffer->payload;
862 ZFCP_LOG_NORMAL("Warning: bit error threshold data "
863 "received (adapter %s, "
864 "link failures = %i, loss of sync errors = %i, "
865 "loss of signal errors = %i, "
866 "primitive sequence errors = %i, "
867 "invalid transmission word errors = %i, "
868 "CRC errors = %i)\n",
869 zfcp_get_busid_by_adapter(adapter),
870 fsf_bit_error->link_failure_error_count,
871 fsf_bit_error->loss_of_sync_error_count,
872 fsf_bit_error->loss_of_signal_error_count,
873 fsf_bit_error->primitive_sequence_error_count,
874 fsf_bit_error->invalid_transmission_word_error_count,
875 fsf_bit_error->crc_error_count);
876 ZFCP_LOG_INFO("Additional bit error threshold data "
878 "primitive sequence event time-outs = %i, "
879 "elastic buffer overrun errors = %i, "
880 "advertised receive buffer-to-buffer credit = %i, "
881 "current receice buffer-to-buffer credit = %i, "
882 "advertised transmit buffer-to-buffer credit = %i, "
883 "current transmit buffer-to-buffer credit = %i)\n",
884 zfcp_get_busid_by_adapter(adapter),
885 fsf_bit_error->primitive_sequence_event_timeout_count,
886 fsf_bit_error->elastic_buffer_overrun_error_count,
887 fsf_bit_error->advertised_receive_b2b_credit,
888 fsf_bit_error->current_receive_b2b_credit,
889 fsf_bit_error->advertised_transmit_b2b_credit,
890 fsf_bit_error->current_transmit_b2b_credit);
893 case FSF_STATUS_READ_LINK_DOWN:
894 switch (status_buffer->status_subtype) {
895 case FSF_STATUS_READ_SUB_NO_PHYSICAL_LINK:
896 ZFCP_LOG_INFO("Physical link to adapter %s is down\n",
897 zfcp_get_busid_by_adapter(adapter));
898 zfcp_fsf_link_down_info_eval(fsf_req, 38,
899 (struct fsf_link_down_info *)
900 &status_buffer->payload);
902 case FSF_STATUS_READ_SUB_FDISC_FAILED:
903 ZFCP_LOG_INFO("Local link to adapter %s is down "
904 "due to failed FDISC login\n",
905 zfcp_get_busid_by_adapter(adapter));
906 zfcp_fsf_link_down_info_eval(fsf_req, 39,
907 (struct fsf_link_down_info *)
908 &status_buffer->payload);
910 case FSF_STATUS_READ_SUB_FIRMWARE_UPDATE:
911 ZFCP_LOG_INFO("Local link to adapter %s is down "
912 "due to firmware update on adapter\n",
913 zfcp_get_busid_by_adapter(adapter));
914 zfcp_fsf_link_down_info_eval(fsf_req, 40, NULL);
917 ZFCP_LOG_INFO("Local link to adapter %s is down "
918 "due to unknown reason\n",
919 zfcp_get_busid_by_adapter(adapter));
920 zfcp_fsf_link_down_info_eval(fsf_req, 41, NULL);
924 case FSF_STATUS_READ_LINK_UP:
925 ZFCP_LOG_NORMAL("Local link to adapter %s was replugged. "
926 "Restarting operations on this adapter\n",
927 zfcp_get_busid_by_adapter(adapter));
928 /* All ports should be marked as ready to run again */
929 zfcp_erp_modify_adapter_status(adapter, 30, NULL,
930 ZFCP_STATUS_COMMON_RUNNING,
932 zfcp_erp_adapter_reopen(adapter,
933 ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED
934 | ZFCP_STATUS_COMMON_ERP_FAILED,
938 case FSF_STATUS_READ_NOTIFICATION_LOST:
939 ZFCP_LOG_NORMAL("Unsolicited status notification(s) lost: "
940 "adapter %s%s%s%s%s%s%s%s%s\n",
941 zfcp_get_busid_by_adapter(adapter),
942 (status_buffer->status_subtype &
943 FSF_STATUS_READ_SUB_INCOMING_ELS) ?
944 ", incoming ELS" : "",
945 (status_buffer->status_subtype &
946 FSF_STATUS_READ_SUB_SENSE_DATA) ?
948 (status_buffer->status_subtype &
949 FSF_STATUS_READ_SUB_LINK_STATUS) ?
950 ", link status change" : "",
951 (status_buffer->status_subtype &
952 FSF_STATUS_READ_SUB_PORT_CLOSED) ?
954 (status_buffer->status_subtype &
955 FSF_STATUS_READ_SUB_BIT_ERROR_THRESHOLD) ?
956 ", bit error exception" : "",
957 (status_buffer->status_subtype &
958 FSF_STATUS_READ_SUB_ACT_UPDATED) ?
960 (status_buffer->status_subtype &
961 FSF_STATUS_READ_SUB_ACT_HARDENED) ?
962 ", ACT hardening" : "",
963 (status_buffer->status_subtype &
964 FSF_STATUS_READ_SUB_FEATURE_UPDATE_ALERT) ?
965 ", adapter feature change" : "");
967 if (status_buffer->status_subtype &
968 FSF_STATUS_READ_SUB_ACT_UPDATED)
969 zfcp_erp_adapter_access_changed(adapter, 135, fsf_req);
972 case FSF_STATUS_READ_CFDC_UPDATED:
973 ZFCP_LOG_NORMAL("CFDC has been updated on the adapter %s\n",
974 zfcp_get_busid_by_adapter(adapter));
975 zfcp_erp_adapter_access_changed(adapter, 136, fsf_req);
978 case FSF_STATUS_READ_CFDC_HARDENED:
979 switch (status_buffer->status_subtype) {
980 case FSF_STATUS_READ_SUB_CFDC_HARDENED_ON_SE:
981 ZFCP_LOG_NORMAL("CFDC of adapter %s saved on SE\n",
982 zfcp_get_busid_by_adapter(adapter));
984 case FSF_STATUS_READ_SUB_CFDC_HARDENED_ON_SE2:
985 ZFCP_LOG_NORMAL("CFDC of adapter %s has been copied "
986 "to the secondary SE\n",
987 zfcp_get_busid_by_adapter(adapter));
990 ZFCP_LOG_NORMAL("CFDC of adapter %s has been hardened\n",
991 zfcp_get_busid_by_adapter(adapter));
995 case FSF_STATUS_READ_FEATURE_UPDATE_ALERT:
996 ZFCP_LOG_INFO("List of supported features on adapter %s has "
997 "been changed from 0x%08X to 0x%08X\n",
998 zfcp_get_busid_by_adapter(adapter),
999 *(u32*) (status_buffer->payload + 4),
1000 *(u32*) (status_buffer->payload));
1001 adapter->adapter_features = *(u32*) status_buffer->payload;
1005 ZFCP_LOG_NORMAL("warning: An unsolicited status packet of unknown "
1006 "type was received (debug info 0x%x)\n",
1007 status_buffer->status_type);
1008 ZFCP_LOG_DEBUG("Dump of status_read_buffer %p:\n",
1010 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_DEBUG,
1011 (char *) status_buffer,
1012 sizeof (struct fsf_status_read_buffer));
1015 mempool_free(status_buffer, adapter->pool.data_status_read);
1016 zfcp_fsf_req_free(fsf_req);
1018 * recycle buffer and start new request repeat until outbound
1019 * queue is empty or adapter shutdown is requested
1023 * we may wait in the req_create for 5s during shutdown, so
1024 * qdio_cleanup will have to wait at least that long before returning
1025 * with failure to allow us a proper cleanup under all circumstances
1029 * allocation failure possible? (Is this code needed?)
1032 atomic_inc(&adapter->stat_miss);
1033 schedule_work(&adapter->stat_work);
1039 * function: zfcp_fsf_abort_fcp_command
1041 * purpose: tells FSF to abort a running SCSI command
1043 * returns: address of initiated FSF request
1044 * NULL - request could not be initiated
1046 * FIXME(design): should be watched by a timeout !!!
1047 * FIXME(design) shouldn't this be modified to return an int
1048 * also...don't know how though
1050 struct zfcp_fsf_req *
1051 zfcp_fsf_abort_fcp_command(unsigned long old_req_id,
1052 struct zfcp_adapter *adapter,
1053 struct zfcp_unit *unit, int req_flags)
1055 volatile struct qdio_buffer_element *sbale;
1056 struct zfcp_fsf_req *fsf_req = NULL;
1057 unsigned long lock_flags;
1060 /* setup new FSF request */
1061 retval = zfcp_fsf_req_create(adapter, FSF_QTCB_ABORT_FCP_CMND,
1062 req_flags, adapter->pool.fsf_req_abort,
1063 &lock_flags, &fsf_req);
1065 ZFCP_LOG_INFO("error: Failed to create an abort command "
1066 "request for lun 0x%016Lx on port 0x%016Lx "
1070 zfcp_get_busid_by_adapter(adapter));
1074 if (unlikely(!atomic_test_mask(ZFCP_STATUS_COMMON_UNBLOCKED,
1078 sbale = zfcp_qdio_sbale_req(fsf_req, fsf_req->sbal_curr, 0);
1079 sbale[0].flags |= SBAL_FLAGS0_TYPE_READ;
1080 sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY;
1082 fsf_req->data = (unsigned long) unit;
1084 /* set handles of unit and its parent port in QTCB */
1085 fsf_req->qtcb->header.lun_handle = unit->handle;
1086 fsf_req->qtcb->header.port_handle = unit->port->handle;
1088 /* set handle of request which should be aborted */
1089 fsf_req->qtcb->bottom.support.req_handle = (u64) old_req_id;
1091 zfcp_fsf_start_timer(fsf_req, ZFCP_SCSI_ER_TIMEOUT);
1092 retval = zfcp_fsf_req_send(fsf_req);
1097 zfcp_fsf_req_free(fsf_req);
1101 write_unlock_irqrestore(&adapter->request_queue.queue_lock, lock_flags);
1106 * function: zfcp_fsf_abort_fcp_command_handler
1108 * purpose: is called for finished Abort FCP Command request
1113 zfcp_fsf_abort_fcp_command_handler(struct zfcp_fsf_req *new_fsf_req)
1115 int retval = -EINVAL;
1116 struct zfcp_unit *unit;
1117 union fsf_status_qual *fsf_stat_qual =
1118 &new_fsf_req->qtcb->header.fsf_status_qual;
1120 if (new_fsf_req->status & ZFCP_STATUS_FSFREQ_ERROR) {
1121 /* do not set ZFCP_STATUS_FSFREQ_ABORTSUCCEEDED */
1122 goto skip_fsfstatus;
1125 unit = (struct zfcp_unit *) new_fsf_req->data;
1127 /* evaluate FSF status in QTCB */
1128 switch (new_fsf_req->qtcb->header.fsf_status) {
1130 case FSF_PORT_HANDLE_NOT_VALID:
1131 if (fsf_stat_qual->word[0] != fsf_stat_qual->word[1]) {
1133 * In this case a command that was sent prior to a port
1134 * reopen was aborted (handles are different). This is
1138 ZFCP_LOG_INFO("Temporary port identifier 0x%x for "
1139 "port 0x%016Lx on adapter %s invalid. "
1140 "This may happen occasionally.\n",
1143 zfcp_get_busid_by_unit(unit));
1144 ZFCP_LOG_INFO("status qualifier:\n");
1145 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_INFO,
1146 (char *) &new_fsf_req->qtcb->header.
1148 sizeof (union fsf_status_qual));
1149 /* Let's hope this sorts out the mess */
1150 zfcp_erp_adapter_reopen(unit->port->adapter, 0, 104,
1152 new_fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1156 case FSF_LUN_HANDLE_NOT_VALID:
1157 if (fsf_stat_qual->word[0] != fsf_stat_qual->word[1]) {
1159 * In this case a command that was sent prior to a unit
1160 * reopen was aborted (handles are different).
1165 ("Warning: Temporary LUN identifier 0x%x of LUN "
1166 "0x%016Lx on port 0x%016Lx on adapter %s is "
1167 "invalid. This may happen in rare cases. "
1168 "Trying to re-establish link.\n",
1172 zfcp_get_busid_by_unit(unit));
1173 ZFCP_LOG_DEBUG("Status qualifier data:\n");
1174 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_DEBUG,
1175 (char *) &new_fsf_req->qtcb->header.
1177 sizeof (union fsf_status_qual));
1178 /* Let's hope this sorts out the mess */
1179 zfcp_erp_port_reopen(unit->port, 0, 105, new_fsf_req);
1180 new_fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1184 case FSF_FCP_COMMAND_DOES_NOT_EXIST:
1186 new_fsf_req->status |= ZFCP_STATUS_FSFREQ_ABORTNOTNEEDED;
1189 case FSF_PORT_BOXED:
1190 ZFCP_LOG_INFO("Remote port 0x%016Lx on adapter %s needs to "
1191 "be reopened\n", unit->port->wwpn,
1192 zfcp_get_busid_by_unit(unit));
1193 zfcp_erp_port_boxed(unit->port, 47, new_fsf_req);
1194 new_fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR
1195 | ZFCP_STATUS_FSFREQ_RETRY;
1200 "unit 0x%016Lx on port 0x%016Lx on adapter %s needs "
1202 unit->fcp_lun, unit->port->wwpn,
1203 zfcp_get_busid_by_unit(unit));
1204 zfcp_erp_unit_boxed(unit, 48, new_fsf_req);
1205 new_fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR
1206 | ZFCP_STATUS_FSFREQ_RETRY;
1209 case FSF_ADAPTER_STATUS_AVAILABLE:
1210 switch (new_fsf_req->qtcb->header.fsf_status_qual.word[0]) {
1211 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
1212 zfcp_test_link(unit->port);
1213 new_fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1215 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
1216 /* SCSI stack will escalate */
1217 new_fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1221 ("bug: Wrong status qualifier 0x%x arrived.\n",
1222 new_fsf_req->qtcb->header.fsf_status_qual.word[0]);
1229 new_fsf_req->status |= ZFCP_STATUS_FSFREQ_ABORTSUCCEEDED;
1233 ZFCP_LOG_NORMAL("bug: An unknown FSF Status was presented "
1234 "(debug info 0x%x)\n",
1235 new_fsf_req->qtcb->header.fsf_status);
1243 * zfcp_use_one_sbal - checks whether req buffer and resp bother each fit into
1245 * Two scatter-gather lists are passed, one for the reqeust and one for the
1249 zfcp_use_one_sbal(struct scatterlist *req, int req_count,
1250 struct scatterlist *resp, int resp_count)
1252 return ((req_count == 1) &&
1253 (resp_count == 1) &&
1254 (((unsigned long) zfcp_sg_to_address(&req[0]) &
1256 ((unsigned long) (zfcp_sg_to_address(&req[0]) +
1257 req[0].length - 1) & PAGE_MASK)) &&
1258 (((unsigned long) zfcp_sg_to_address(&resp[0]) &
1260 ((unsigned long) (zfcp_sg_to_address(&resp[0]) +
1261 resp[0].length - 1) & PAGE_MASK)));
1265 * zfcp_fsf_send_ct - initiate a Generic Service request (FC-GS)
1266 * @ct: pointer to struct zfcp_send_ct which conatins all needed data for
1268 * @pool: pointer to memory pool, if non-null this pool is used to allocate
1269 * a struct zfcp_fsf_req
1270 * @erp_action: pointer to erp_action, if non-null the Generic Service request
1271 * is sent within error recovery
1274 zfcp_fsf_send_ct(struct zfcp_send_ct *ct, mempool_t *pool,
1275 struct zfcp_erp_action *erp_action)
1277 volatile struct qdio_buffer_element *sbale;
1278 struct zfcp_port *port;
1279 struct zfcp_adapter *adapter;
1280 struct zfcp_fsf_req *fsf_req;
1281 unsigned long lock_flags;
1286 adapter = port->adapter;
1288 ret = zfcp_fsf_req_create(adapter, FSF_QTCB_SEND_GENERIC,
1289 ZFCP_WAIT_FOR_SBAL | ZFCP_REQ_AUTO_CLEANUP,
1290 pool, &lock_flags, &fsf_req);
1292 ZFCP_LOG_INFO("error: Could not create CT request (FC-GS) for "
1294 zfcp_get_busid_by_adapter(adapter));
1298 sbale = zfcp_qdio_sbale_req(fsf_req, fsf_req->sbal_curr, 0);
1299 if (zfcp_use_one_sbal(ct->req, ct->req_count,
1300 ct->resp, ct->resp_count)){
1301 /* both request buffer and response buffer
1302 fit into one sbale each */
1303 sbale[0].flags |= SBAL_FLAGS0_TYPE_WRITE_READ;
1304 sbale[2].addr = zfcp_sg_to_address(&ct->req[0]);
1305 sbale[2].length = ct->req[0].length;
1306 sbale[3].addr = zfcp_sg_to_address(&ct->resp[0]);
1307 sbale[3].length = ct->resp[0].length;
1308 sbale[3].flags |= SBAL_FLAGS_LAST_ENTRY;
1309 } else if (adapter->adapter_features &
1310 FSF_FEATURE_ELS_CT_CHAINED_SBALS) {
1311 /* try to use chained SBALs */
1312 bytes = zfcp_qdio_sbals_from_sg(fsf_req,
1313 SBAL_FLAGS0_TYPE_WRITE_READ,
1314 ct->req, ct->req_count,
1315 ZFCP_MAX_SBALS_PER_CT_REQ);
1317 ZFCP_LOG_INFO("error: creation of CT request failed "
1319 zfcp_get_busid_by_adapter(adapter));
1327 fsf_req->qtcb->bottom.support.req_buf_length = bytes;
1328 fsf_req->sbale_curr = ZFCP_LAST_SBALE_PER_SBAL;
1329 bytes = zfcp_qdio_sbals_from_sg(fsf_req,
1330 SBAL_FLAGS0_TYPE_WRITE_READ,
1331 ct->resp, ct->resp_count,
1332 ZFCP_MAX_SBALS_PER_CT_REQ);
1334 ZFCP_LOG_INFO("error: creation of CT request failed "
1336 zfcp_get_busid_by_adapter(adapter));
1344 fsf_req->qtcb->bottom.support.resp_buf_length = bytes;
1346 /* reject send generic request */
1348 "error: microcode does not support chained SBALs,"
1349 "CT request too big (adapter %s)\n",
1350 zfcp_get_busid_by_adapter(adapter));
1355 /* settings in QTCB */
1356 fsf_req->qtcb->header.port_handle = port->handle;
1357 fsf_req->qtcb->bottom.support.service_class =
1358 ZFCP_FC_SERVICE_CLASS_DEFAULT;
1359 fsf_req->qtcb->bottom.support.timeout = ct->timeout;
1360 fsf_req->data = (unsigned long) ct;
1362 zfcp_san_dbf_event_ct_request(fsf_req);
1365 erp_action->fsf_req = fsf_req;
1366 fsf_req->erp_action = erp_action;
1367 zfcp_erp_start_timer(fsf_req);
1369 zfcp_fsf_start_timer(fsf_req, ZFCP_FSF_REQUEST_TIMEOUT);
1371 ret = zfcp_fsf_req_send(fsf_req);
1373 ZFCP_LOG_DEBUG("error: initiation of CT request failed "
1374 "(adapter %s, port 0x%016Lx)\n",
1375 zfcp_get_busid_by_adapter(adapter), port->wwpn);
1379 ZFCP_LOG_DEBUG("CT request initiated (adapter %s, port 0x%016Lx)\n",
1380 zfcp_get_busid_by_adapter(adapter), port->wwpn);
1384 zfcp_fsf_req_free(fsf_req);
1385 if (erp_action != NULL) {
1386 erp_action->fsf_req = NULL;
1390 write_unlock_irqrestore(&adapter->request_queue.queue_lock,
1396 * zfcp_fsf_send_ct_handler - handler for Generic Service requests
1397 * @fsf_req: pointer to struct zfcp_fsf_req
1399 * Data specific for the Generic Service request is passed using
1400 * fsf_req->data. There we find the pointer to struct zfcp_send_ct.
1401 * Usually a specific handler for the CT request is called which is
1402 * found in this structure.
1405 zfcp_fsf_send_ct_handler(struct zfcp_fsf_req *fsf_req)
1407 struct zfcp_port *port;
1408 struct zfcp_adapter *adapter;
1409 struct zfcp_send_ct *send_ct;
1410 struct fsf_qtcb_header *header;
1411 struct fsf_qtcb_bottom_support *bottom;
1412 int retval = -EINVAL;
1413 u16 subtable, rule, counter;
1415 adapter = fsf_req->adapter;
1416 send_ct = (struct zfcp_send_ct *) fsf_req->data;
1417 port = send_ct->port;
1418 header = &fsf_req->qtcb->header;
1419 bottom = &fsf_req->qtcb->bottom.support;
1421 if (fsf_req->status & ZFCP_STATUS_FSFREQ_ERROR)
1422 goto skip_fsfstatus;
1424 /* evaluate FSF status in QTCB */
1425 switch (header->fsf_status) {
1428 zfcp_san_dbf_event_ct_response(fsf_req);
1432 case FSF_SERVICE_CLASS_NOT_SUPPORTED:
1433 ZFCP_LOG_INFO("error: adapter %s does not support fc "
1435 zfcp_get_busid_by_port(port),
1436 ZFCP_FC_SERVICE_CLASS_DEFAULT);
1437 /* stop operation for this adapter */
1438 zfcp_erp_adapter_shutdown(adapter, 0, 123, fsf_req);
1439 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1442 case FSF_ADAPTER_STATUS_AVAILABLE:
1443 switch (header->fsf_status_qual.word[0]){
1444 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
1445 /* reopening link to port */
1446 zfcp_test_link(port);
1447 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1449 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
1450 /* ERP strategy will escalate */
1451 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1454 ZFCP_LOG_INFO("bug: Wrong status qualifier 0x%x "
1456 header->fsf_status_qual.word[0]);
1461 case FSF_ACCESS_DENIED:
1462 ZFCP_LOG_NORMAL("access denied, cannot send generic service "
1463 "command (adapter %s, port d_id=0x%06x)\n",
1464 zfcp_get_busid_by_port(port), port->d_id);
1465 for (counter = 0; counter < 2; counter++) {
1466 subtable = header->fsf_status_qual.halfword[counter * 2];
1467 rule = header->fsf_status_qual.halfword[counter * 2 + 1];
1469 case FSF_SQ_CFDC_SUBTABLE_OS:
1470 case FSF_SQ_CFDC_SUBTABLE_PORT_WWPN:
1471 case FSF_SQ_CFDC_SUBTABLE_PORT_DID:
1472 case FSF_SQ_CFDC_SUBTABLE_LUN:
1473 ZFCP_LOG_INFO("Access denied (%s rule %d)\n",
1474 zfcp_act_subtable_type[subtable], rule);
1478 zfcp_erp_port_access_denied(port, 55, fsf_req);
1479 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1482 case FSF_GENERIC_COMMAND_REJECTED:
1483 ZFCP_LOG_INFO("generic service command rejected "
1484 "(adapter %s, port d_id=0x%06x)\n",
1485 zfcp_get_busid_by_port(port), port->d_id);
1486 ZFCP_LOG_INFO("status qualifier:\n");
1487 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_INFO,
1488 (char *) &header->fsf_status_qual,
1489 sizeof (union fsf_status_qual));
1490 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1493 case FSF_PORT_HANDLE_NOT_VALID:
1494 ZFCP_LOG_DEBUG("Temporary port identifier 0x%x for port "
1495 "0x%016Lx on adapter %s invalid. This may "
1496 "happen occasionally.\n", port->handle,
1497 port->wwpn, zfcp_get_busid_by_port(port));
1498 ZFCP_LOG_INFO("status qualifier:\n");
1499 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_INFO,
1500 (char *) &header->fsf_status_qual,
1501 sizeof (union fsf_status_qual));
1502 zfcp_erp_adapter_reopen(adapter, 0, 106, fsf_req);
1503 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1506 case FSF_PORT_BOXED:
1507 ZFCP_LOG_INFO("port needs to be reopened "
1508 "(adapter %s, port d_id=0x%06x)\n",
1509 zfcp_get_busid_by_port(port), port->d_id);
1510 zfcp_erp_port_boxed(port, 49, fsf_req);
1511 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR
1512 | ZFCP_STATUS_FSFREQ_RETRY;
1515 /* following states should never occure, all cases avoided
1516 in zfcp_fsf_send_ct - but who knows ... */
1517 case FSF_PAYLOAD_SIZE_MISMATCH:
1518 ZFCP_LOG_INFO("payload size mismatch (adapter: %s, "
1519 "req_buf_length=%d, resp_buf_length=%d)\n",
1520 zfcp_get_busid_by_adapter(adapter),
1521 bottom->req_buf_length, bottom->resp_buf_length);
1522 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1524 case FSF_REQUEST_SIZE_TOO_LARGE:
1525 ZFCP_LOG_INFO("request size too large (adapter: %s, "
1526 "req_buf_length=%d)\n",
1527 zfcp_get_busid_by_adapter(adapter),
1528 bottom->req_buf_length);
1529 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1531 case FSF_RESPONSE_SIZE_TOO_LARGE:
1532 ZFCP_LOG_INFO("response size too large (adapter: %s, "
1533 "resp_buf_length=%d)\n",
1534 zfcp_get_busid_by_adapter(adapter),
1535 bottom->resp_buf_length);
1536 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1538 case FSF_SBAL_MISMATCH:
1539 ZFCP_LOG_INFO("SBAL mismatch (adapter: %s, req_buf_length=%d, "
1540 "resp_buf_length=%d)\n",
1541 zfcp_get_busid_by_adapter(adapter),
1542 bottom->req_buf_length, bottom->resp_buf_length);
1543 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1547 ZFCP_LOG_NORMAL("bug: An unknown FSF Status was presented "
1548 "(debug info 0x%x)\n", header->fsf_status);
1553 send_ct->status = retval;
1555 if (send_ct->handler != NULL)
1556 send_ct->handler(send_ct->handler_data);
1562 * zfcp_fsf_send_els - initiate an ELS command (FC-FS)
1563 * @els: pointer to struct zfcp_send_els which contains all needed data for
1567 zfcp_fsf_send_els(struct zfcp_send_els *els)
1569 volatile struct qdio_buffer_element *sbale;
1570 struct zfcp_fsf_req *fsf_req;
1572 struct zfcp_adapter *adapter;
1573 unsigned long lock_flags;
1578 adapter = els->adapter;
1580 ret = zfcp_fsf_req_create(adapter, FSF_QTCB_SEND_ELS,
1581 ZFCP_REQ_AUTO_CLEANUP,
1582 NULL, &lock_flags, &fsf_req);
1584 ZFCP_LOG_INFO("error: creation of ELS request failed "
1585 "(adapter %s, port d_id: 0x%06x)\n",
1586 zfcp_get_busid_by_adapter(adapter), d_id);
1590 if (unlikely(!atomic_test_mask(ZFCP_STATUS_COMMON_UNBLOCKED,
1591 &els->port->status))) {
1596 sbale = zfcp_qdio_sbale_req(fsf_req, fsf_req->sbal_curr, 0);
1597 if (zfcp_use_one_sbal(els->req, els->req_count,
1598 els->resp, els->resp_count)){
1599 /* both request buffer and response buffer
1600 fit into one sbale each */
1601 sbale[0].flags |= SBAL_FLAGS0_TYPE_WRITE_READ;
1602 sbale[2].addr = zfcp_sg_to_address(&els->req[0]);
1603 sbale[2].length = els->req[0].length;
1604 sbale[3].addr = zfcp_sg_to_address(&els->resp[0]);
1605 sbale[3].length = els->resp[0].length;
1606 sbale[3].flags |= SBAL_FLAGS_LAST_ENTRY;
1607 } else if (adapter->adapter_features &
1608 FSF_FEATURE_ELS_CT_CHAINED_SBALS) {
1609 /* try to use chained SBALs */
1610 bytes = zfcp_qdio_sbals_from_sg(fsf_req,
1611 SBAL_FLAGS0_TYPE_WRITE_READ,
1612 els->req, els->req_count,
1613 ZFCP_MAX_SBALS_PER_ELS_REQ);
1615 ZFCP_LOG_INFO("error: creation of ELS request failed "
1616 "(adapter %s, port d_id: 0x%06x)\n",
1617 zfcp_get_busid_by_adapter(adapter), d_id);
1625 fsf_req->qtcb->bottom.support.req_buf_length = bytes;
1626 fsf_req->sbale_curr = ZFCP_LAST_SBALE_PER_SBAL;
1627 bytes = zfcp_qdio_sbals_from_sg(fsf_req,
1628 SBAL_FLAGS0_TYPE_WRITE_READ,
1629 els->resp, els->resp_count,
1630 ZFCP_MAX_SBALS_PER_ELS_REQ);
1632 ZFCP_LOG_INFO("error: creation of ELS request failed "
1633 "(adapter %s, port d_id: 0x%06x)\n",
1634 zfcp_get_busid_by_adapter(adapter), d_id);
1642 fsf_req->qtcb->bottom.support.resp_buf_length = bytes;
1644 /* reject request */
1645 ZFCP_LOG_INFO("error: microcode does not support chained SBALs"
1646 ", ELS request too big (adapter %s, "
1647 "port d_id: 0x%06x)\n",
1648 zfcp_get_busid_by_adapter(adapter), d_id);
1653 /* settings in QTCB */
1654 fsf_req->qtcb->bottom.support.d_id = d_id;
1655 fsf_req->qtcb->bottom.support.service_class =
1656 ZFCP_FC_SERVICE_CLASS_DEFAULT;
1657 fsf_req->qtcb->bottom.support.timeout = ZFCP_ELS_TIMEOUT;
1658 fsf_req->data = (unsigned long) els;
1660 sbale = zfcp_qdio_sbale_req(fsf_req, fsf_req->sbal_curr, 0);
1662 zfcp_san_dbf_event_els_request(fsf_req);
1664 zfcp_fsf_start_timer(fsf_req, ZFCP_FSF_REQUEST_TIMEOUT);
1665 ret = zfcp_fsf_req_send(fsf_req);
1667 ZFCP_LOG_DEBUG("error: initiation of ELS request failed "
1668 "(adapter %s, port d_id: 0x%06x)\n",
1669 zfcp_get_busid_by_adapter(adapter), d_id);
1673 ZFCP_LOG_DEBUG("ELS request initiated (adapter %s, port d_id: "
1674 "0x%06x)\n", zfcp_get_busid_by_adapter(adapter), d_id);
1679 zfcp_fsf_req_free(fsf_req);
1683 write_unlock_irqrestore(&adapter->request_queue.queue_lock,
1690 * zfcp_fsf_send_els_handler - handler for ELS commands
1691 * @fsf_req: pointer to struct zfcp_fsf_req
1693 * Data specific for the ELS command is passed using
1694 * fsf_req->data. There we find the pointer to struct zfcp_send_els.
1695 * Usually a specific handler for the ELS command is called which is
1696 * found in this structure.
1698 static int zfcp_fsf_send_els_handler(struct zfcp_fsf_req *fsf_req)
1700 struct zfcp_adapter *adapter;
1701 struct zfcp_port *port;
1703 struct fsf_qtcb_header *header;
1704 struct fsf_qtcb_bottom_support *bottom;
1705 struct zfcp_send_els *send_els;
1706 int retval = -EINVAL;
1707 u16 subtable, rule, counter;
1709 send_els = (struct zfcp_send_els *) fsf_req->data;
1710 adapter = send_els->adapter;
1711 port = send_els->port;
1712 d_id = send_els->d_id;
1713 header = &fsf_req->qtcb->header;
1714 bottom = &fsf_req->qtcb->bottom.support;
1716 if (fsf_req->status & ZFCP_STATUS_FSFREQ_ERROR)
1717 goto skip_fsfstatus;
1719 switch (header->fsf_status) {
1722 zfcp_san_dbf_event_els_response(fsf_req);
1726 case FSF_SERVICE_CLASS_NOT_SUPPORTED:
1727 ZFCP_LOG_INFO("error: adapter %s does not support fc "
1729 zfcp_get_busid_by_adapter(adapter),
1730 ZFCP_FC_SERVICE_CLASS_DEFAULT);
1731 /* stop operation for this adapter */
1732 zfcp_erp_adapter_shutdown(adapter, 0, 124, fsf_req);
1733 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1736 case FSF_ADAPTER_STATUS_AVAILABLE:
1737 switch (header->fsf_status_qual.word[0]){
1738 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
1739 if (port && (send_els->ls_code != ZFCP_LS_ADISC))
1740 zfcp_test_link(port);
1741 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1743 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
1744 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1746 zfcp_handle_els_rjt(header->fsf_status_qual.word[1],
1747 (struct zfcp_ls_rjt_par *)
1748 &header->fsf_status_qual.word[2]);
1750 case FSF_SQ_RETRY_IF_POSSIBLE:
1751 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1754 ZFCP_LOG_INFO("bug: Wrong status qualifier 0x%x\n",
1755 header->fsf_status_qual.word[0]);
1756 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_INFO,
1757 (char*)header->fsf_status_qual.word, 16);
1761 case FSF_ELS_COMMAND_REJECTED:
1762 ZFCP_LOG_INFO("ELS has been rejected because command filter "
1763 "prohibited sending "
1764 "(adapter: %s, port d_id: 0x%06x)\n",
1765 zfcp_get_busid_by_adapter(adapter), d_id);
1769 case FSF_PAYLOAD_SIZE_MISMATCH:
1771 "ELS request size and ELS response size must be either "
1772 "both 0, or both greater than 0 "
1773 "(adapter: %s, req_buf_length=%d resp_buf_length=%d)\n",
1774 zfcp_get_busid_by_adapter(adapter),
1775 bottom->req_buf_length,
1776 bottom->resp_buf_length);
1779 case FSF_REQUEST_SIZE_TOO_LARGE:
1781 "Length of the ELS request buffer, "
1782 "specified in QTCB bottom, "
1783 "exceeds the size of the buffers "
1784 "that have been allocated for ELS request data "
1785 "(adapter: %s, req_buf_length=%d)\n",
1786 zfcp_get_busid_by_adapter(adapter),
1787 bottom->req_buf_length);
1790 case FSF_RESPONSE_SIZE_TOO_LARGE:
1792 "Length of the ELS response buffer, "
1793 "specified in QTCB bottom, "
1794 "exceeds the size of the buffers "
1795 "that have been allocated for ELS response data "
1796 "(adapter: %s, resp_buf_length=%d)\n",
1797 zfcp_get_busid_by_adapter(adapter),
1798 bottom->resp_buf_length);
1801 case FSF_SBAL_MISMATCH:
1802 /* should never occure, avoided in zfcp_fsf_send_els */
1803 ZFCP_LOG_INFO("SBAL mismatch (adapter: %s, req_buf_length=%d, "
1804 "resp_buf_length=%d)\n",
1805 zfcp_get_busid_by_adapter(adapter),
1806 bottom->req_buf_length, bottom->resp_buf_length);
1807 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1810 case FSF_ACCESS_DENIED:
1811 ZFCP_LOG_NORMAL("access denied, cannot send ELS command "
1812 "(adapter %s, port d_id=0x%06x)\n",
1813 zfcp_get_busid_by_adapter(adapter), d_id);
1814 for (counter = 0; counter < 2; counter++) {
1815 subtable = header->fsf_status_qual.halfword[counter * 2];
1816 rule = header->fsf_status_qual.halfword[counter * 2 + 1];
1818 case FSF_SQ_CFDC_SUBTABLE_OS:
1819 case FSF_SQ_CFDC_SUBTABLE_PORT_WWPN:
1820 case FSF_SQ_CFDC_SUBTABLE_PORT_DID:
1821 case FSF_SQ_CFDC_SUBTABLE_LUN:
1822 ZFCP_LOG_INFO("Access denied (%s rule %d)\n",
1823 zfcp_act_subtable_type[subtable], rule);
1828 zfcp_erp_port_access_denied(port, 56, fsf_req);
1829 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1834 "bug: An unknown FSF Status was presented "
1835 "(adapter: %s, fsf_status=0x%08x)\n",
1836 zfcp_get_busid_by_adapter(adapter),
1837 header->fsf_status);
1838 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1843 send_els->status = retval;
1845 if (send_els->handler)
1846 send_els->handler(send_els->handler_data);
1852 zfcp_fsf_exchange_config_data(struct zfcp_erp_action *erp_action)
1854 volatile struct qdio_buffer_element *sbale;
1855 struct zfcp_fsf_req *fsf_req;
1856 struct zfcp_adapter *adapter = erp_action->adapter;
1857 unsigned long lock_flags;
1860 /* setup new FSF request */
1861 retval = zfcp_fsf_req_create(adapter,
1862 FSF_QTCB_EXCHANGE_CONFIG_DATA,
1863 ZFCP_REQ_AUTO_CLEANUP,
1864 adapter->pool.fsf_req_erp,
1865 &lock_flags, &fsf_req);
1867 ZFCP_LOG_INFO("error: Could not create exchange configuration "
1868 "data request for adapter %s.\n",
1869 zfcp_get_busid_by_adapter(adapter));
1870 write_unlock_irqrestore(&adapter->request_queue.queue_lock,
1875 sbale = zfcp_qdio_sbale_req(fsf_req, fsf_req->sbal_curr, 0);
1876 sbale[0].flags |= SBAL_FLAGS0_TYPE_READ;
1877 sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY;
1879 fsf_req->qtcb->bottom.config.feature_selection =
1881 FSF_FEATURE_LUN_SHARING |
1882 FSF_FEATURE_NOTIFICATION_LOST |
1883 FSF_FEATURE_UPDATE_ALERT;
1884 fsf_req->erp_action = erp_action;
1885 erp_action->fsf_req = fsf_req;
1887 zfcp_erp_start_timer(fsf_req);
1888 retval = zfcp_fsf_req_send(fsf_req);
1889 write_unlock_irqrestore(&adapter->request_queue.queue_lock,
1892 ZFCP_LOG_INFO("error: Could not send exchange configuration "
1893 "data command on the adapter %s\n",
1894 zfcp_get_busid_by_adapter(adapter));
1895 zfcp_fsf_req_free(fsf_req);
1896 erp_action->fsf_req = NULL;
1899 ZFCP_LOG_DEBUG("exchange configuration data request initiated "
1901 zfcp_get_busid_by_adapter(adapter));
1907 zfcp_fsf_exchange_config_data_sync(struct zfcp_adapter *adapter,
1908 struct fsf_qtcb_bottom_config *data)
1910 volatile struct qdio_buffer_element *sbale;
1911 struct zfcp_fsf_req *fsf_req;
1912 unsigned long lock_flags;
1915 /* setup new FSF request */
1916 retval = zfcp_fsf_req_create(adapter, FSF_QTCB_EXCHANGE_CONFIG_DATA,
1917 ZFCP_WAIT_FOR_SBAL, NULL, &lock_flags,
1920 ZFCP_LOG_INFO("error: Could not create exchange configuration "
1921 "data request for adapter %s.\n",
1922 zfcp_get_busid_by_adapter(adapter));
1923 write_unlock_irqrestore(&adapter->request_queue.queue_lock,
1928 sbale = zfcp_qdio_sbale_req(fsf_req, fsf_req->sbal_curr, 0);
1929 sbale[0].flags |= SBAL_FLAGS0_TYPE_READ;
1930 sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY;
1932 fsf_req->qtcb->bottom.config.feature_selection =
1934 FSF_FEATURE_LUN_SHARING |
1935 FSF_FEATURE_NOTIFICATION_LOST |
1936 FSF_FEATURE_UPDATE_ALERT;
1939 fsf_req->data = (unsigned long) data;
1941 zfcp_fsf_start_timer(fsf_req, ZFCP_FSF_REQUEST_TIMEOUT);
1942 retval = zfcp_fsf_req_send(fsf_req);
1943 write_unlock_irqrestore(&adapter->request_queue.queue_lock,
1946 ZFCP_LOG_INFO("error: Could not send exchange configuration "
1947 "data command on the adapter %s\n",
1948 zfcp_get_busid_by_adapter(adapter));
1950 wait_event(fsf_req->completion_wq,
1951 fsf_req->status & ZFCP_STATUS_FSFREQ_COMPLETED);
1953 zfcp_fsf_req_free(fsf_req);
1959 * zfcp_fsf_exchange_config_evaluate
1960 * @fsf_req: fsf_req which belongs to xchg config data request
1961 * @xchg_ok: specifies if xchg config data was incomplete or complete (0/1)
1963 * returns: -EIO on error, 0 otherwise
1966 zfcp_fsf_exchange_config_evaluate(struct zfcp_fsf_req *fsf_req, int xchg_ok)
1968 struct fsf_qtcb_bottom_config *bottom;
1969 struct zfcp_adapter *adapter = fsf_req->adapter;
1970 struct Scsi_Host *shost = adapter->scsi_host;
1972 bottom = &fsf_req->qtcb->bottom.config;
1973 ZFCP_LOG_DEBUG("low/high QTCB version 0x%x/0x%x of FSF\n",
1974 bottom->low_qtcb_version, bottom->high_qtcb_version);
1975 adapter->fsf_lic_version = bottom->lic_version;
1976 adapter->adapter_features = bottom->adapter_features;
1977 adapter->connection_features = bottom->connection_features;
1978 adapter->peer_wwpn = 0;
1979 adapter->peer_wwnn = 0;
1980 adapter->peer_d_id = 0;
1985 memcpy((struct fsf_qtcb_bottom_config *) fsf_req->data,
1986 bottom, sizeof (struct fsf_qtcb_bottom_config));
1988 fc_host_node_name(shost) = bottom->nport_serv_param.wwnn;
1989 fc_host_port_name(shost) = bottom->nport_serv_param.wwpn;
1990 fc_host_port_id(shost) = bottom->s_id & ZFCP_DID_MASK;
1991 fc_host_speed(shost) = bottom->fc_link_speed;
1992 fc_host_supported_classes(shost) =
1993 FC_COS_CLASS2 | FC_COS_CLASS3;
1994 adapter->hydra_version = bottom->adapter_type;
1995 adapter->timer_ticks = bottom->timer_interval;
1996 if (fc_host_permanent_port_name(shost) == -1)
1997 fc_host_permanent_port_name(shost) =
1998 fc_host_port_name(shost);
1999 if (bottom->fc_topology == FSF_TOPO_P2P) {
2000 adapter->peer_d_id = bottom->peer_d_id & ZFCP_DID_MASK;
2001 adapter->peer_wwpn = bottom->plogi_payload.wwpn;
2002 adapter->peer_wwnn = bottom->plogi_payload.wwnn;
2003 fc_host_port_type(shost) = FC_PORTTYPE_PTP;
2004 } else if (bottom->fc_topology == FSF_TOPO_FABRIC)
2005 fc_host_port_type(shost) = FC_PORTTYPE_NPORT;
2006 else if (bottom->fc_topology == FSF_TOPO_AL)
2007 fc_host_port_type(shost) = FC_PORTTYPE_NLPORT;
2009 fc_host_port_type(shost) = FC_PORTTYPE_UNKNOWN;
2011 fc_host_node_name(shost) = 0;
2012 fc_host_port_name(shost) = 0;
2013 fc_host_port_id(shost) = 0;
2014 fc_host_speed(shost) = FC_PORTSPEED_UNKNOWN;
2015 fc_host_port_type(shost) = FC_PORTTYPE_UNKNOWN;
2016 adapter->hydra_version = 0;
2019 if (adapter->adapter_features & FSF_FEATURE_HBAAPI_MANAGEMENT) {
2020 adapter->hardware_version = bottom->hardware_version;
2021 memcpy(fc_host_serial_number(shost), bottom->serial_number,
2022 min(FC_SERIAL_NUMBER_SIZE, 17));
2023 EBCASC(fc_host_serial_number(shost),
2024 min(FC_SERIAL_NUMBER_SIZE, 17));
2027 if (fsf_req->erp_action)
2028 ZFCP_LOG_NORMAL("The adapter %s reported the following "
2029 "characteristics:\n"
2030 "WWNN 0x%016Lx, WWPN 0x%016Lx, "
2032 "adapter version 0x%x, "
2033 "LIC version 0x%x, "
2034 "FC link speed %d Gb/s\n",
2035 zfcp_get_busid_by_adapter(adapter),
2036 (wwn_t) fc_host_node_name(shost),
2037 (wwn_t) fc_host_port_name(shost),
2038 fc_host_port_id(shost),
2039 adapter->hydra_version,
2040 adapter->fsf_lic_version,
2041 fc_host_speed(shost));
2042 if (ZFCP_QTCB_VERSION < bottom->low_qtcb_version) {
2043 ZFCP_LOG_NORMAL("error: the adapter %s "
2044 "only supports newer control block "
2045 "versions in comparison to this device "
2046 "driver (try updated device driver)\n",
2047 zfcp_get_busid_by_adapter(adapter));
2048 zfcp_erp_adapter_shutdown(adapter, 0, 125, fsf_req);
2051 if (ZFCP_QTCB_VERSION > bottom->high_qtcb_version) {
2052 ZFCP_LOG_NORMAL("error: the adapter %s "
2053 "only supports older control block "
2054 "versions than this device driver uses"
2055 "(consider a microcode upgrade)\n",
2056 zfcp_get_busid_by_adapter(adapter));
2057 zfcp_erp_adapter_shutdown(adapter, 0, 126, fsf_req);
2064 * function: zfcp_fsf_exchange_config_data_handler
2066 * purpose: is called for finished Exchange Configuration Data command
2071 zfcp_fsf_exchange_config_data_handler(struct zfcp_fsf_req *fsf_req)
2073 struct fsf_qtcb_bottom_config *bottom;
2074 struct zfcp_adapter *adapter = fsf_req->adapter;
2075 struct fsf_qtcb *qtcb = fsf_req->qtcb;
2077 if (fsf_req->status & ZFCP_STATUS_FSFREQ_ERROR)
2080 switch (qtcb->header.fsf_status) {
2083 if (zfcp_fsf_exchange_config_evaluate(fsf_req, 1))
2086 switch (fc_host_port_type(adapter->scsi_host)) {
2087 case FC_PORTTYPE_PTP:
2088 ZFCP_LOG_NORMAL("Point-to-Point fibrechannel "
2089 "configuration detected at adapter %s\n"
2090 "Peer WWNN 0x%016llx, "
2091 "peer WWPN 0x%016llx, "
2092 "peer d_id 0x%06x\n",
2093 zfcp_get_busid_by_adapter(adapter),
2096 adapter->peer_d_id);
2098 case FC_PORTTYPE_NLPORT:
2099 ZFCP_LOG_NORMAL("error: Arbitrated loop fibrechannel "
2100 "topology detected at adapter %s "
2101 "unsupported, shutting down adapter\n",
2102 zfcp_get_busid_by_adapter(adapter));
2103 zfcp_erp_adapter_shutdown(adapter, 0, 127, fsf_req);
2105 case FC_PORTTYPE_NPORT:
2106 if (fsf_req->erp_action)
2107 ZFCP_LOG_NORMAL("Switched fabric fibrechannel "
2108 "network detected at adapter "
2110 zfcp_get_busid_by_adapter(adapter));
2113 ZFCP_LOG_NORMAL("bug: The fibrechannel topology "
2114 "reported by the exchange "
2115 "configuration command for "
2116 "the adapter %s is not "
2117 "of a type known to the zfcp "
2118 "driver, shutting down adapter\n",
2119 zfcp_get_busid_by_adapter(adapter));
2120 zfcp_erp_adapter_shutdown(adapter, 0, 128, fsf_req);
2123 bottom = &qtcb->bottom.config;
2124 if (bottom->max_qtcb_size < sizeof(struct fsf_qtcb)) {
2125 ZFCP_LOG_NORMAL("bug: Maximum QTCB size (%d bytes) "
2126 "allowed by the adapter %s "
2127 "is lower than the minimum "
2128 "required by the driver (%ld bytes).\n",
2129 bottom->max_qtcb_size,
2130 zfcp_get_busid_by_adapter(adapter),
2131 sizeof(struct fsf_qtcb));
2132 zfcp_erp_adapter_shutdown(adapter, 0, 129, fsf_req);
2135 atomic_set_mask(ZFCP_STATUS_ADAPTER_XCONFIG_OK,
2138 case FSF_EXCHANGE_CONFIG_DATA_INCOMPLETE:
2139 if (zfcp_fsf_exchange_config_evaluate(fsf_req, 0))
2142 atomic_set_mask(ZFCP_STATUS_ADAPTER_XCONFIG_OK,
2145 zfcp_fsf_link_down_info_eval(fsf_req, 42,
2146 &qtcb->header.fsf_status_qual.link_down_info);
2149 zfcp_erp_adapter_shutdown(adapter, 0, 130, fsf_req);
2156 * zfcp_fsf_exchange_port_data - request information about local port
2157 * @erp_action: ERP action for the adapter for which port data is requested
2160 zfcp_fsf_exchange_port_data(struct zfcp_erp_action *erp_action)
2162 volatile struct qdio_buffer_element *sbale;
2163 struct zfcp_fsf_req *fsf_req;
2164 struct zfcp_adapter *adapter = erp_action->adapter;
2165 unsigned long lock_flags;
2168 if (!(adapter->adapter_features & FSF_FEATURE_HBAAPI_MANAGEMENT)) {
2169 ZFCP_LOG_INFO("error: exchange port data "
2170 "command not supported by adapter %s\n",
2171 zfcp_get_busid_by_adapter(adapter));
2175 /* setup new FSF request */
2176 retval = zfcp_fsf_req_create(adapter, FSF_QTCB_EXCHANGE_PORT_DATA,
2177 ZFCP_REQ_AUTO_CLEANUP,
2178 adapter->pool.fsf_req_erp,
2179 &lock_flags, &fsf_req);
2181 ZFCP_LOG_INFO("error: Out of resources. Could not create an "
2182 "exchange port data request for "
2183 "the adapter %s.\n",
2184 zfcp_get_busid_by_adapter(adapter));
2185 write_unlock_irqrestore(&adapter->request_queue.queue_lock,
2190 sbale = zfcp_qdio_sbale_req(fsf_req, fsf_req->sbal_curr, 0);
2191 sbale[0].flags |= SBAL_FLAGS0_TYPE_READ;
2192 sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY;
2194 erp_action->fsf_req = fsf_req;
2195 fsf_req->erp_action = erp_action;
2196 zfcp_erp_start_timer(fsf_req);
2198 retval = zfcp_fsf_req_send(fsf_req);
2199 write_unlock_irqrestore(&adapter->request_queue.queue_lock, lock_flags);
2202 ZFCP_LOG_INFO("error: Could not send an exchange port data "
2203 "command on the adapter %s\n",
2204 zfcp_get_busid_by_adapter(adapter));
2205 zfcp_fsf_req_free(fsf_req);
2206 erp_action->fsf_req = NULL;
2209 ZFCP_LOG_DEBUG("exchange port data request initiated "
2211 zfcp_get_busid_by_adapter(adapter));
2217 * zfcp_fsf_exchange_port_data_sync - request information about local port
2218 * and wait until information is ready
2221 zfcp_fsf_exchange_port_data_sync(struct zfcp_adapter *adapter,
2222 struct fsf_qtcb_bottom_port *data)
2224 volatile struct qdio_buffer_element *sbale;
2225 struct zfcp_fsf_req *fsf_req;
2226 unsigned long lock_flags;
2229 if (!(adapter->adapter_features & FSF_FEATURE_HBAAPI_MANAGEMENT)) {
2230 ZFCP_LOG_INFO("error: exchange port data "
2231 "command not supported by adapter %s\n",
2232 zfcp_get_busid_by_adapter(adapter));
2236 /* setup new FSF request */
2237 retval = zfcp_fsf_req_create(adapter, FSF_QTCB_EXCHANGE_PORT_DATA,
2238 0, NULL, &lock_flags, &fsf_req);
2240 ZFCP_LOG_INFO("error: Out of resources. Could not create an "
2241 "exchange port data request for "
2242 "the adapter %s.\n",
2243 zfcp_get_busid_by_adapter(adapter));
2244 write_unlock_irqrestore(&adapter->request_queue.queue_lock,
2250 fsf_req->data = (unsigned long) data;
2252 sbale = zfcp_qdio_sbale_req(fsf_req, fsf_req->sbal_curr, 0);
2253 sbale[0].flags |= SBAL_FLAGS0_TYPE_READ;
2254 sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY;
2256 zfcp_fsf_start_timer(fsf_req, ZFCP_FSF_REQUEST_TIMEOUT);
2257 retval = zfcp_fsf_req_send(fsf_req);
2258 write_unlock_irqrestore(&adapter->request_queue.queue_lock, lock_flags);
2261 ZFCP_LOG_INFO("error: Could not send an exchange port data "
2262 "command on the adapter %s\n",
2263 zfcp_get_busid_by_adapter(adapter));
2265 wait_event(fsf_req->completion_wq,
2266 fsf_req->status & ZFCP_STATUS_FSFREQ_COMPLETED);
2268 zfcp_fsf_req_free(fsf_req);
2274 * zfcp_fsf_exchange_port_evaluate
2275 * @fsf_req: fsf_req which belongs to xchg port data request
2276 * @xchg_ok: specifies if xchg port data was incomplete or complete (0/1)
2279 zfcp_fsf_exchange_port_evaluate(struct zfcp_fsf_req *fsf_req, int xchg_ok)
2281 struct zfcp_adapter *adapter;
2282 struct fsf_qtcb_bottom_port *bottom;
2283 struct Scsi_Host *shost;
2285 adapter = fsf_req->adapter;
2286 bottom = &fsf_req->qtcb->bottom.port;
2287 shost = adapter->scsi_host;
2290 memcpy((struct fsf_qtcb_bottom_port*) fsf_req->data, bottom,
2291 sizeof(struct fsf_qtcb_bottom_port));
2293 if (adapter->connection_features & FSF_FEATURE_NPIV_MODE)
2294 fc_host_permanent_port_name(shost) = bottom->wwpn;
2296 fc_host_permanent_port_name(shost) = fc_host_port_name(shost);
2297 fc_host_maxframe_size(shost) = bottom->maximum_frame_size;
2298 fc_host_supported_speeds(shost) = bottom->supported_speed;
2302 * zfcp_fsf_exchange_port_data_handler - handler for exchange_port_data request
2303 * @fsf_req: pointer to struct zfcp_fsf_req
2306 zfcp_fsf_exchange_port_data_handler(struct zfcp_fsf_req *fsf_req)
2308 struct zfcp_adapter *adapter;
2309 struct fsf_qtcb *qtcb;
2311 adapter = fsf_req->adapter;
2312 qtcb = fsf_req->qtcb;
2314 if (fsf_req->status & ZFCP_STATUS_FSFREQ_ERROR)
2317 switch (qtcb->header.fsf_status) {
2319 zfcp_fsf_exchange_port_evaluate(fsf_req, 1);
2320 atomic_set_mask(ZFCP_STATUS_ADAPTER_XPORT_OK, &adapter->status);
2322 case FSF_EXCHANGE_CONFIG_DATA_INCOMPLETE:
2323 zfcp_fsf_exchange_port_evaluate(fsf_req, 0);
2324 atomic_set_mask(ZFCP_STATUS_ADAPTER_XPORT_OK, &adapter->status);
2325 zfcp_fsf_link_down_info_eval(fsf_req, 43,
2326 &qtcb->header.fsf_status_qual.link_down_info);
2333 * function: zfcp_fsf_open_port
2337 * returns: address of initiated FSF request
2338 * NULL - request could not be initiated
2341 zfcp_fsf_open_port(struct zfcp_erp_action *erp_action)
2343 volatile struct qdio_buffer_element *sbale;
2344 struct zfcp_fsf_req *fsf_req;
2345 unsigned long lock_flags;
2348 /* setup new FSF request */
2349 retval = zfcp_fsf_req_create(erp_action->adapter,
2350 FSF_QTCB_OPEN_PORT_WITH_DID,
2351 ZFCP_WAIT_FOR_SBAL | ZFCP_REQ_AUTO_CLEANUP,
2352 erp_action->adapter->pool.fsf_req_erp,
2353 &lock_flags, &fsf_req);
2355 ZFCP_LOG_INFO("error: Could not create open port request "
2356 "for port 0x%016Lx on adapter %s.\n",
2357 erp_action->port->wwpn,
2358 zfcp_get_busid_by_adapter(erp_action->adapter));
2362 sbale = zfcp_qdio_sbale_req(fsf_req, fsf_req->sbal_curr, 0);
2363 sbale[0].flags |= SBAL_FLAGS0_TYPE_READ;
2364 sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY;
2366 fsf_req->qtcb->bottom.support.d_id = erp_action->port->d_id;
2367 atomic_set_mask(ZFCP_STATUS_COMMON_OPENING, &erp_action->port->status);
2368 fsf_req->data = (unsigned long) erp_action->port;
2369 fsf_req->erp_action = erp_action;
2370 erp_action->fsf_req = fsf_req;
2372 zfcp_erp_start_timer(fsf_req);
2373 retval = zfcp_fsf_req_send(fsf_req);
2375 ZFCP_LOG_INFO("error: Could not send open port request for "
2376 "port 0x%016Lx on adapter %s.\n",
2377 erp_action->port->wwpn,
2378 zfcp_get_busid_by_adapter(erp_action->adapter));
2379 zfcp_fsf_req_free(fsf_req);
2380 erp_action->fsf_req = NULL;
2384 ZFCP_LOG_DEBUG("open port request initiated "
2385 "(adapter %s, port 0x%016Lx)\n",
2386 zfcp_get_busid_by_adapter(erp_action->adapter),
2387 erp_action->port->wwpn);
2389 write_unlock_irqrestore(&erp_action->adapter->request_queue.queue_lock,
2395 * function: zfcp_fsf_open_port_handler
2397 * purpose: is called for finished Open Port command
2402 zfcp_fsf_open_port_handler(struct zfcp_fsf_req *fsf_req)
2404 int retval = -EINVAL;
2405 struct zfcp_port *port;
2406 struct fsf_plogi *plogi;
2407 struct fsf_qtcb_header *header;
2408 u16 subtable, rule, counter;
2410 port = (struct zfcp_port *) fsf_req->data;
2411 header = &fsf_req->qtcb->header;
2413 if (fsf_req->status & ZFCP_STATUS_FSFREQ_ERROR) {
2414 /* don't change port status in our bookkeeping */
2415 goto skip_fsfstatus;
2418 /* evaluate FSF status in QTCB */
2419 switch (header->fsf_status) {
2421 case FSF_PORT_ALREADY_OPEN:
2422 ZFCP_LOG_NORMAL("bug: remote port 0x%016Lx on adapter %s "
2423 "is already open.\n",
2424 port->wwpn, zfcp_get_busid_by_port(port));
2426 * This is a bug, however operation should continue normally
2427 * if it is simply ignored
2431 case FSF_ACCESS_DENIED:
2432 ZFCP_LOG_NORMAL("Access denied, cannot open port 0x%016Lx "
2434 port->wwpn, zfcp_get_busid_by_port(port));
2435 for (counter = 0; counter < 2; counter++) {
2436 subtable = header->fsf_status_qual.halfword[counter * 2];
2437 rule = header->fsf_status_qual.halfword[counter * 2 + 1];
2439 case FSF_SQ_CFDC_SUBTABLE_OS:
2440 case FSF_SQ_CFDC_SUBTABLE_PORT_WWPN:
2441 case FSF_SQ_CFDC_SUBTABLE_PORT_DID:
2442 case FSF_SQ_CFDC_SUBTABLE_LUN:
2443 ZFCP_LOG_INFO("Access denied (%s rule %d)\n",
2444 zfcp_act_subtable_type[subtable], rule);
2448 zfcp_erp_port_access_denied(port, 57, fsf_req);
2449 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
2452 case FSF_MAXIMUM_NUMBER_OF_PORTS_EXCEEDED:
2453 ZFCP_LOG_INFO("error: The FSF adapter is out of resources. "
2454 "The remote port 0x%016Lx on adapter %s "
2455 "could not be opened. Disabling it.\n",
2456 port->wwpn, zfcp_get_busid_by_port(port));
2457 zfcp_erp_port_failed(port, 31, fsf_req);
2458 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
2461 case FSF_ADAPTER_STATUS_AVAILABLE:
2462 switch (header->fsf_status_qual.word[0]) {
2463 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
2464 /* ERP strategy will escalate */
2465 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
2467 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
2468 /* ERP strategy will escalate */
2469 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
2471 case FSF_SQ_NO_RETRY_POSSIBLE:
2472 ZFCP_LOG_NORMAL("The remote port 0x%016Lx on "
2473 "adapter %s could not be opened. "
2476 zfcp_get_busid_by_port(port));
2477 zfcp_erp_port_failed(port, 32, fsf_req);
2478 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
2482 ("bug: Wrong status qualifier 0x%x arrived.\n",
2483 header->fsf_status_qual.word[0]);
2489 /* save port handle assigned by FSF */
2490 port->handle = header->port_handle;
2491 ZFCP_LOG_INFO("The remote port 0x%016Lx via adapter %s "
2492 "was opened, it's port handle is 0x%x\n",
2493 port->wwpn, zfcp_get_busid_by_port(port),
2495 /* mark port as open */
2496 atomic_set_mask(ZFCP_STATUS_COMMON_OPEN |
2497 ZFCP_STATUS_PORT_PHYS_OPEN, &port->status);
2498 atomic_clear_mask(ZFCP_STATUS_COMMON_ACCESS_DENIED |
2499 ZFCP_STATUS_COMMON_ACCESS_BOXED,
2502 /* check whether D_ID has changed during open */
2504 * FIXME: This check is not airtight, as the FCP channel does
2505 * not monitor closures of target port connections caused on
2506 * the remote side. Thus, they might miss out on invalidating
2507 * locally cached WWPNs (and other N_Port parameters) of gone
2508 * target ports. So, our heroic attempt to make things safe
2509 * could be undermined by 'open port' response data tagged with
2510 * obsolete WWPNs. Another reason to monitor potential
2511 * connection closures ourself at least (by interpreting
2512 * incoming ELS' and unsolicited status). It just crosses my
2513 * mind that one should be able to cross-check by means of
2514 * another GID_PN straight after a port has been opened.
2515 * Alternately, an ADISC/PDISC ELS should suffice, as well.
2517 plogi = (struct fsf_plogi *) fsf_req->qtcb->bottom.support.els;
2518 if (!atomic_test_mask(ZFCP_STATUS_PORT_NO_WWPN, &port->status))
2520 if (fsf_req->qtcb->bottom.support.els1_length <
2521 sizeof (struct fsf_plogi)) {
2523 "warning: insufficient length of "
2524 "PLOGI payload (%i)\n",
2525 fsf_req->qtcb->bottom.support.els1_length);
2526 /* skip sanity check and assume wwpn is ok */
2528 if (plogi->serv_param.wwpn != port->wwpn) {
2529 ZFCP_LOG_INFO("warning: d_id of port "
2530 "0x%016Lx changed during "
2531 "open\n", port->wwpn);
2533 ZFCP_STATUS_PORT_DID_DID,
2536 port->wwnn = plogi->serv_param.wwnn;
2537 zfcp_plogi_evaluate(port, plogi);
2543 case FSF_UNKNOWN_OP_SUBTYPE:
2544 /* should never occure, subtype not set in zfcp_fsf_open_port */
2545 ZFCP_LOG_INFO("unknown operation subtype (adapter: %s, "
2546 "op_subtype=0x%x)\n",
2547 zfcp_get_busid_by_port(port),
2548 fsf_req->qtcb->bottom.support.operation_subtype);
2549 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
2553 ZFCP_LOG_NORMAL("bug: An unknown FSF Status was presented "
2554 "(debug info 0x%x)\n",
2555 header->fsf_status);
2560 atomic_clear_mask(ZFCP_STATUS_COMMON_OPENING, &port->status);
2565 * function: zfcp_fsf_close_port
2567 * purpose: submit FSF command "close port"
2569 * returns: address of initiated FSF request
2570 * NULL - request could not be initiated
2573 zfcp_fsf_close_port(struct zfcp_erp_action *erp_action)
2575 volatile struct qdio_buffer_element *sbale;
2576 struct zfcp_fsf_req *fsf_req;
2577 unsigned long lock_flags;
2580 /* setup new FSF request */
2581 retval = zfcp_fsf_req_create(erp_action->adapter,
2582 FSF_QTCB_CLOSE_PORT,
2583 ZFCP_WAIT_FOR_SBAL | ZFCP_REQ_AUTO_CLEANUP,
2584 erp_action->adapter->pool.fsf_req_erp,
2585 &lock_flags, &fsf_req);
2587 ZFCP_LOG_INFO("error: Could not create a close port request "
2588 "for port 0x%016Lx on adapter %s.\n",
2589 erp_action->port->wwpn,
2590 zfcp_get_busid_by_adapter(erp_action->adapter));
2594 sbale = zfcp_qdio_sbale_req(fsf_req, fsf_req->sbal_curr, 0);
2595 sbale[0].flags |= SBAL_FLAGS0_TYPE_READ;
2596 sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY;
2598 atomic_set_mask(ZFCP_STATUS_COMMON_CLOSING, &erp_action->port->status);
2599 fsf_req->data = (unsigned long) erp_action->port;
2600 fsf_req->erp_action = erp_action;
2601 fsf_req->qtcb->header.port_handle = erp_action->port->handle;
2602 fsf_req->erp_action = erp_action;
2603 erp_action->fsf_req = fsf_req;
2605 zfcp_erp_start_timer(fsf_req);
2606 retval = zfcp_fsf_req_send(fsf_req);
2608 ZFCP_LOG_INFO("error: Could not send a close port request for "
2609 "port 0x%016Lx on adapter %s.\n",
2610 erp_action->port->wwpn,
2611 zfcp_get_busid_by_adapter(erp_action->adapter));
2612 zfcp_fsf_req_free(fsf_req);
2613 erp_action->fsf_req = NULL;
2617 ZFCP_LOG_TRACE("close port request initiated "
2618 "(adapter %s, port 0x%016Lx)\n",
2619 zfcp_get_busid_by_adapter(erp_action->adapter),
2620 erp_action->port->wwpn);
2622 write_unlock_irqrestore(&erp_action->adapter->request_queue.queue_lock,
2628 * function: zfcp_fsf_close_port_handler
2630 * purpose: is called for finished Close Port FSF command
2635 zfcp_fsf_close_port_handler(struct zfcp_fsf_req *fsf_req)
2637 int retval = -EINVAL;
2638 struct zfcp_port *port;
2640 port = (struct zfcp_port *) fsf_req->data;
2642 if (fsf_req->status & ZFCP_STATUS_FSFREQ_ERROR) {
2643 /* don't change port status in our bookkeeping */
2644 goto skip_fsfstatus;
2647 /* evaluate FSF status in QTCB */
2648 switch (fsf_req->qtcb->header.fsf_status) {
2650 case FSF_PORT_HANDLE_NOT_VALID:
2651 ZFCP_LOG_INFO("Temporary port identifier 0x%x for port "
2652 "0x%016Lx on adapter %s invalid. This may happen "
2653 "occasionally.\n", port->handle,
2654 port->wwpn, zfcp_get_busid_by_port(port));
2655 ZFCP_LOG_DEBUG("status qualifier:\n");
2656 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_DEBUG,
2657 (char *) &fsf_req->qtcb->header.fsf_status_qual,
2658 sizeof (union fsf_status_qual));
2659 zfcp_erp_adapter_reopen(port->adapter, 0, 107, fsf_req);
2660 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
2663 case FSF_ADAPTER_STATUS_AVAILABLE:
2664 /* Note: FSF has actually closed the port in this case.
2665 * The status code is just daft. Fingers crossed for a change
2671 ZFCP_LOG_TRACE("remote port 0x016%Lx on adapter %s closed, "
2672 "port handle 0x%x\n", port->wwpn,
2673 zfcp_get_busid_by_port(port), port->handle);
2674 zfcp_erp_modify_port_status(port, 33, fsf_req,
2675 ZFCP_STATUS_COMMON_OPEN,
2681 ZFCP_LOG_NORMAL("bug: An unknown FSF Status was presented "
2682 "(debug info 0x%x)\n",
2683 fsf_req->qtcb->header.fsf_status);
2688 atomic_clear_mask(ZFCP_STATUS_COMMON_CLOSING, &port->status);
2693 * function: zfcp_fsf_close_physical_port
2695 * purpose: submit FSF command "close physical port"
2697 * returns: address of initiated FSF request
2698 * NULL - request could not be initiated
2701 zfcp_fsf_close_physical_port(struct zfcp_erp_action *erp_action)
2703 volatile struct qdio_buffer_element *sbale;
2704 struct zfcp_fsf_req *fsf_req;
2705 unsigned long lock_flags;
2708 /* setup new FSF request */
2709 retval = zfcp_fsf_req_create(erp_action->adapter,
2710 FSF_QTCB_CLOSE_PHYSICAL_PORT,
2711 ZFCP_WAIT_FOR_SBAL | ZFCP_REQ_AUTO_CLEANUP,
2712 erp_action->adapter->pool.fsf_req_erp,
2713 &lock_flags, &fsf_req);
2715 ZFCP_LOG_INFO("error: Could not create close physical port "
2716 "request (adapter %s, port 0x%016Lx)\n",
2717 zfcp_get_busid_by_adapter(erp_action->adapter),
2718 erp_action->port->wwpn);
2723 sbale = zfcp_qdio_sbale_req(fsf_req, fsf_req->sbal_curr, 0);
2724 sbale[0].flags |= SBAL_FLAGS0_TYPE_READ;
2725 sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY;
2727 /* mark port as being closed */
2728 atomic_set_mask(ZFCP_STATUS_PORT_PHYS_CLOSING,
2729 &erp_action->port->status);
2730 /* save a pointer to this port */
2731 fsf_req->data = (unsigned long) erp_action->port;
2732 fsf_req->qtcb->header.port_handle = erp_action->port->handle;
2733 fsf_req->erp_action = erp_action;
2734 erp_action->fsf_req = fsf_req;
2736 zfcp_erp_start_timer(fsf_req);
2737 retval = zfcp_fsf_req_send(fsf_req);
2739 ZFCP_LOG_INFO("error: Could not send close physical port "
2740 "request (adapter %s, port 0x%016Lx)\n",
2741 zfcp_get_busid_by_adapter(erp_action->adapter),
2742 erp_action->port->wwpn);
2743 zfcp_fsf_req_free(fsf_req);
2744 erp_action->fsf_req = NULL;
2748 ZFCP_LOG_TRACE("close physical port request initiated "
2749 "(adapter %s, port 0x%016Lx)\n",
2750 zfcp_get_busid_by_adapter(erp_action->adapter),
2751 erp_action->port->wwpn);
2753 write_unlock_irqrestore(&erp_action->adapter->request_queue.queue_lock,
2759 * function: zfcp_fsf_close_physical_port_handler
2761 * purpose: is called for finished Close Physical Port FSF command
2766 zfcp_fsf_close_physical_port_handler(struct zfcp_fsf_req *fsf_req)
2768 int retval = -EINVAL;
2769 struct zfcp_port *port;
2770 struct zfcp_unit *unit;
2771 struct fsf_qtcb_header *header;
2772 u16 subtable, rule, counter;
2774 port = (struct zfcp_port *) fsf_req->data;
2775 header = &fsf_req->qtcb->header;
2777 if (fsf_req->status & ZFCP_STATUS_FSFREQ_ERROR) {
2778 /* don't change port status in our bookkeeping */
2779 goto skip_fsfstatus;
2782 /* evaluate FSF status in QTCB */
2783 switch (header->fsf_status) {
2785 case FSF_PORT_HANDLE_NOT_VALID:
2786 ZFCP_LOG_INFO("Temporary port identifier 0x%x invalid"
2787 "(adapter %s, port 0x%016Lx). "
2788 "This may happen occasionally.\n",
2790 zfcp_get_busid_by_port(port),
2792 ZFCP_LOG_DEBUG("status qualifier:\n");
2793 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_DEBUG,
2794 (char *) &header->fsf_status_qual,
2795 sizeof (union fsf_status_qual));
2796 zfcp_erp_adapter_reopen(port->adapter, 0, 108, fsf_req);
2797 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
2800 case FSF_ACCESS_DENIED:
2801 ZFCP_LOG_NORMAL("Access denied, cannot close "
2802 "physical port 0x%016Lx on adapter %s\n",
2803 port->wwpn, zfcp_get_busid_by_port(port));
2804 for (counter = 0; counter < 2; counter++) {
2805 subtable = header->fsf_status_qual.halfword[counter * 2];
2806 rule = header->fsf_status_qual.halfword[counter * 2 + 1];
2808 case FSF_SQ_CFDC_SUBTABLE_OS:
2809 case FSF_SQ_CFDC_SUBTABLE_PORT_WWPN:
2810 case FSF_SQ_CFDC_SUBTABLE_PORT_DID:
2811 case FSF_SQ_CFDC_SUBTABLE_LUN:
2812 ZFCP_LOG_INFO("Access denied (%s rule %d)\n",
2813 zfcp_act_subtable_type[subtable], rule);
2817 zfcp_erp_port_access_denied(port, 58, fsf_req);
2818 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
2821 case FSF_PORT_BOXED:
2822 ZFCP_LOG_DEBUG("The remote port 0x%016Lx on adapter "
2823 "%s needs to be reopened but it was attempted "
2824 "to close it physically.\n",
2826 zfcp_get_busid_by_port(port));
2827 zfcp_erp_port_boxed(port, 50, fsf_req);
2828 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR |
2829 ZFCP_STATUS_FSFREQ_RETRY;
2831 /* can't use generic zfcp_erp_modify_port_status because
2832 * ZFCP_STATUS_COMMON_OPEN must not be reset for the port */
2833 atomic_clear_mask(ZFCP_STATUS_PORT_PHYS_OPEN, &port->status);
2834 list_for_each_entry(unit, &port->unit_list_head, list)
2835 atomic_clear_mask(ZFCP_STATUS_COMMON_OPEN,
2839 case FSF_ADAPTER_STATUS_AVAILABLE:
2840 switch (header->fsf_status_qual.word[0]) {
2841 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
2842 /* This will now be escalated by ERP */
2843 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
2845 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
2846 /* ERP strategy will escalate */
2847 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
2851 ("bug: Wrong status qualifier 0x%x arrived.\n",
2852 header->fsf_status_qual.word[0]);
2858 ZFCP_LOG_DEBUG("Remote port 0x%016Lx via adapter %s "
2859 "physically closed, port handle 0x%x\n",
2861 zfcp_get_busid_by_port(port), port->handle);
2862 /* can't use generic zfcp_erp_modify_port_status because
2863 * ZFCP_STATUS_COMMON_OPEN must not be reset for the port
2865 atomic_clear_mask(ZFCP_STATUS_PORT_PHYS_OPEN, &port->status);
2866 list_for_each_entry(unit, &port->unit_list_head, list)
2867 atomic_clear_mask(ZFCP_STATUS_COMMON_OPEN, &unit->status);
2872 ZFCP_LOG_NORMAL("bug: An unknown FSF Status was presented "
2873 "(debug info 0x%x)\n",
2874 header->fsf_status);
2879 atomic_clear_mask(ZFCP_STATUS_PORT_PHYS_CLOSING, &port->status);
2884 * function: zfcp_fsf_open_unit
2890 * assumptions: This routine does not check whether the associated
2891 * remote port has already been opened. This should be
2892 * done by calling routines. Otherwise some status
2893 * may be presented by FSF
2896 zfcp_fsf_open_unit(struct zfcp_erp_action *erp_action)
2898 volatile struct qdio_buffer_element *sbale;
2899 struct zfcp_fsf_req *fsf_req;
2900 unsigned long lock_flags;
2903 /* setup new FSF request */
2904 retval = zfcp_fsf_req_create(erp_action->adapter,
2906 ZFCP_WAIT_FOR_SBAL | ZFCP_REQ_AUTO_CLEANUP,
2907 erp_action->adapter->pool.fsf_req_erp,
2908 &lock_flags, &fsf_req);
2910 ZFCP_LOG_INFO("error: Could not create open unit request for "
2911 "unit 0x%016Lx on port 0x%016Lx on adapter %s.\n",
2912 erp_action->unit->fcp_lun,
2913 erp_action->unit->port->wwpn,
2914 zfcp_get_busid_by_adapter(erp_action->adapter));
2918 sbale = zfcp_qdio_sbale_req(fsf_req, fsf_req->sbal_curr, 0);
2919 sbale[0].flags |= SBAL_FLAGS0_TYPE_READ;
2920 sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY;
2922 fsf_req->qtcb->header.port_handle = erp_action->port->handle;
2923 fsf_req->qtcb->bottom.support.fcp_lun = erp_action->unit->fcp_lun;
2924 if (!(erp_action->adapter->connection_features & FSF_FEATURE_NPIV_MODE))
2925 fsf_req->qtcb->bottom.support.option =
2926 FSF_OPEN_LUN_SUPPRESS_BOXING;
2927 atomic_set_mask(ZFCP_STATUS_COMMON_OPENING, &erp_action->unit->status);
2928 fsf_req->data = (unsigned long) erp_action->unit;
2929 fsf_req->erp_action = erp_action;
2930 erp_action->fsf_req = fsf_req;
2932 zfcp_erp_start_timer(fsf_req);
2933 retval = zfcp_fsf_req_send(erp_action->fsf_req);
2935 ZFCP_LOG_INFO("error: Could not send an open unit request "
2936 "on the adapter %s, port 0x%016Lx for "
2938 zfcp_get_busid_by_adapter(erp_action->adapter),
2939 erp_action->port->wwpn,
2940 erp_action->unit->fcp_lun);
2941 zfcp_fsf_req_free(fsf_req);
2942 erp_action->fsf_req = NULL;
2946 ZFCP_LOG_TRACE("Open LUN request initiated (adapter %s, "
2947 "port 0x%016Lx, unit 0x%016Lx)\n",
2948 zfcp_get_busid_by_adapter(erp_action->adapter),
2949 erp_action->port->wwpn, erp_action->unit->fcp_lun);
2951 write_unlock_irqrestore(&erp_action->adapter->request_queue.queue_lock,
2957 * function: zfcp_fsf_open_unit_handler
2959 * purpose: is called for finished Open LUN command
2964 zfcp_fsf_open_unit_handler(struct zfcp_fsf_req *fsf_req)
2966 int retval = -EINVAL;
2967 struct zfcp_adapter *adapter;
2968 struct zfcp_unit *unit;
2969 struct fsf_qtcb_header *header;
2970 struct fsf_qtcb_bottom_support *bottom;
2971 struct fsf_queue_designator *queue_designator;
2972 u16 subtable, rule, counter;
2973 int exclusive, readwrite;
2975 unit = (struct zfcp_unit *) fsf_req->data;
2977 if (fsf_req->status & ZFCP_STATUS_FSFREQ_ERROR) {
2978 /* don't change unit status in our bookkeeping */
2979 goto skip_fsfstatus;
2982 adapter = fsf_req->adapter;
2983 header = &fsf_req->qtcb->header;
2984 bottom = &fsf_req->qtcb->bottom.support;
2985 queue_designator = &header->fsf_status_qual.fsf_queue_designator;
2987 atomic_clear_mask(ZFCP_STATUS_COMMON_ACCESS_DENIED |
2988 ZFCP_STATUS_COMMON_ACCESS_BOXED |
2989 ZFCP_STATUS_UNIT_SHARED |
2990 ZFCP_STATUS_UNIT_READONLY,
2993 /* evaluate FSF status in QTCB */
2994 switch (header->fsf_status) {
2996 case FSF_PORT_HANDLE_NOT_VALID:
2997 ZFCP_LOG_INFO("Temporary port identifier 0x%x "
2998 "for port 0x%016Lx on adapter %s invalid "
2999 "This may happen occasionally\n",
3001 unit->port->wwpn, zfcp_get_busid_by_unit(unit));
3002 ZFCP_LOG_DEBUG("status qualifier:\n");
3003 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_DEBUG,
3004 (char *) &header->fsf_status_qual,
3005 sizeof (union fsf_status_qual));
3006 zfcp_erp_adapter_reopen(unit->port->adapter, 0, 109, fsf_req);
3007 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
3010 case FSF_LUN_ALREADY_OPEN:
3011 ZFCP_LOG_NORMAL("bug: Attempted to open unit 0x%016Lx on "
3012 "remote port 0x%016Lx on adapter %s twice.\n",
3014 unit->port->wwpn, zfcp_get_busid_by_unit(unit));
3015 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
3018 case FSF_ACCESS_DENIED:
3019 ZFCP_LOG_NORMAL("Access denied, cannot open unit 0x%016Lx on "
3020 "remote port 0x%016Lx on adapter %s\n",
3021 unit->fcp_lun, unit->port->wwpn,
3022 zfcp_get_busid_by_unit(unit));
3023 for (counter = 0; counter < 2; counter++) {
3024 subtable = header->fsf_status_qual.halfword[counter * 2];
3025 rule = header->fsf_status_qual.halfword[counter * 2 + 1];
3027 case FSF_SQ_CFDC_SUBTABLE_OS:
3028 case FSF_SQ_CFDC_SUBTABLE_PORT_WWPN:
3029 case FSF_SQ_CFDC_SUBTABLE_PORT_DID:
3030 case FSF_SQ_CFDC_SUBTABLE_LUN:
3031 ZFCP_LOG_INFO("Access denied (%s rule %d)\n",
3032 zfcp_act_subtable_type[subtable], rule);
3036 zfcp_erp_unit_access_denied(unit, 59, fsf_req);
3037 atomic_clear_mask(ZFCP_STATUS_UNIT_SHARED, &unit->status);
3038 atomic_clear_mask(ZFCP_STATUS_UNIT_READONLY, &unit->status);
3039 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
3042 case FSF_PORT_BOXED:
3043 ZFCP_LOG_DEBUG("The remote port 0x%016Lx on adapter %s "
3044 "needs to be reopened\n",
3045 unit->port->wwpn, zfcp_get_busid_by_unit(unit));
3046 zfcp_erp_port_boxed(unit->port, 51, fsf_req);
3047 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR |
3048 ZFCP_STATUS_FSFREQ_RETRY;
3051 case FSF_LUN_SHARING_VIOLATION:
3052 if (header->fsf_status_qual.word[0] != 0) {
3053 ZFCP_LOG_NORMAL("FCP-LUN 0x%Lx at the remote port "
3055 "connected to the adapter %s "
3056 "is already in use in LPAR%d, CSS%d\n",
3059 zfcp_get_busid_by_unit(unit),
3060 queue_designator->hla,
3061 queue_designator->cssid);
3063 subtable = header->fsf_status_qual.halfword[4];
3064 rule = header->fsf_status_qual.halfword[5];
3066 case FSF_SQ_CFDC_SUBTABLE_OS:
3067 case FSF_SQ_CFDC_SUBTABLE_PORT_WWPN:
3068 case FSF_SQ_CFDC_SUBTABLE_PORT_DID:
3069 case FSF_SQ_CFDC_SUBTABLE_LUN:
3070 ZFCP_LOG_NORMAL("Access to FCP-LUN 0x%Lx at the "
3071 "remote port with WWPN 0x%Lx "
3072 "connected to the adapter %s "
3073 "is denied (%s rule %d)\n",
3076 zfcp_get_busid_by_unit(unit),
3077 zfcp_act_subtable_type[subtable],
3082 ZFCP_LOG_DEBUG("status qualifier:\n");
3083 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_DEBUG,
3084 (char *) &header->fsf_status_qual,
3085 sizeof (union fsf_status_qual));
3086 zfcp_erp_unit_access_denied(unit, 60, fsf_req);
3087 atomic_clear_mask(ZFCP_STATUS_UNIT_SHARED, &unit->status);
3088 atomic_clear_mask(ZFCP_STATUS_UNIT_READONLY, &unit->status);
3089 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
3092 case FSF_MAXIMUM_NUMBER_OF_LUNS_EXCEEDED:
3093 ZFCP_LOG_INFO("error: The adapter ran out of resources. "
3094 "There is no handle (temporary port identifier) "
3095 "available for unit 0x%016Lx on port 0x%016Lx "
3099 zfcp_get_busid_by_unit(unit));
3100 zfcp_erp_unit_failed(unit, 34, fsf_req);
3101 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
3104 case FSF_ADAPTER_STATUS_AVAILABLE:
3105 switch (header->fsf_status_qual.word[0]) {
3106 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
3107 /* Re-establish link to port */
3108 zfcp_test_link(unit->port);
3109 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
3111 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
3112 /* ERP strategy will escalate */
3113 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
3117 ("bug: Wrong status qualifier 0x%x arrived.\n",
3118 header->fsf_status_qual.word[0]);
3122 case FSF_INVALID_COMMAND_OPTION:
3124 "Invalid option 0x%x has been specified "
3125 "in QTCB bottom sent to the adapter %s\n",
3127 zfcp_get_busid_by_adapter(adapter));
3128 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
3133 /* save LUN handle assigned by FSF */
3134 unit->handle = header->lun_handle;
3135 ZFCP_LOG_TRACE("unit 0x%016Lx on remote port 0x%016Lx on "
3136 "adapter %s opened, port handle 0x%x\n",
3139 zfcp_get_busid_by_unit(unit),
3141 /* mark unit as open */
3142 atomic_set_mask(ZFCP_STATUS_COMMON_OPEN, &unit->status);
3144 if (!(adapter->connection_features & FSF_FEATURE_NPIV_MODE) &&
3145 (adapter->adapter_features & FSF_FEATURE_LUN_SHARING) &&
3146 (adapter->ccw_device->id.dev_model != ZFCP_DEVICE_MODEL_PRIV)) {
3147 exclusive = (bottom->lun_access_info &
3148 FSF_UNIT_ACCESS_EXCLUSIVE);
3149 readwrite = (bottom->lun_access_info &
3150 FSF_UNIT_ACCESS_OUTBOUND_TRANSFER);
3153 atomic_set_mask(ZFCP_STATUS_UNIT_SHARED,
3157 atomic_set_mask(ZFCP_STATUS_UNIT_READONLY,
3159 ZFCP_LOG_NORMAL("read-only access for unit "
3160 "(adapter %s, wwpn=0x%016Lx, "
3161 "fcp_lun=0x%016Lx)\n",
3162 zfcp_get_busid_by_unit(unit),
3167 if (exclusive && !readwrite) {
3168 ZFCP_LOG_NORMAL("exclusive access of read-only "
3169 "unit not supported\n");
3170 zfcp_erp_unit_failed(unit, 35, fsf_req);
3171 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
3172 zfcp_erp_unit_shutdown(unit, 0, 80, fsf_req);
3173 } else if (!exclusive && readwrite) {
3174 ZFCP_LOG_NORMAL("shared access of read-write "
3175 "unit not supported\n");
3176 zfcp_erp_unit_failed(unit, 36, fsf_req);
3177 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
3178 zfcp_erp_unit_shutdown(unit, 0, 81, fsf_req);
3186 ZFCP_LOG_NORMAL("bug: An unknown FSF Status was presented "
3187 "(debug info 0x%x)\n",
3188 header->fsf_status);
3193 atomic_clear_mask(ZFCP_STATUS_COMMON_OPENING, &unit->status);
3198 * function: zfcp_fsf_close_unit
3202 * returns: address of fsf_req - request successfully initiated
3205 * assumptions: This routine does not check whether the associated
3206 * remote port/lun has already been opened. This should be
3207 * done by calling routines. Otherwise some status
3208 * may be presented by FSF
3211 zfcp_fsf_close_unit(struct zfcp_erp_action *erp_action)
3213 volatile struct qdio_buffer_element *sbale;
3214 struct zfcp_fsf_req *fsf_req;
3215 unsigned long lock_flags;
3218 /* setup new FSF request */
3219 retval = zfcp_fsf_req_create(erp_action->adapter,
3221 ZFCP_WAIT_FOR_SBAL | ZFCP_REQ_AUTO_CLEANUP,
3222 erp_action->adapter->pool.fsf_req_erp,
3223 &lock_flags, &fsf_req);
3225 ZFCP_LOG_INFO("error: Could not create close unit request for "
3226 "unit 0x%016Lx on port 0x%016Lx on adapter %s.\n",
3227 erp_action->unit->fcp_lun,
3228 erp_action->port->wwpn,
3229 zfcp_get_busid_by_adapter(erp_action->adapter));
3233 sbale = zfcp_qdio_sbale_req(fsf_req, fsf_req->sbal_curr, 0);
3234 sbale[0].flags |= SBAL_FLAGS0_TYPE_READ;
3235 sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY;
3237 fsf_req->qtcb->header.port_handle = erp_action->port->handle;
3238 fsf_req->qtcb->header.lun_handle = erp_action->unit->handle;
3239 atomic_set_mask(ZFCP_STATUS_COMMON_CLOSING, &erp_action->unit->status);
3240 fsf_req->data = (unsigned long) erp_action->unit;
3241 fsf_req->erp_action = erp_action;
3242 erp_action->fsf_req = fsf_req;
3244 zfcp_erp_start_timer(fsf_req);
3245 retval = zfcp_fsf_req_send(erp_action->fsf_req);
3247 ZFCP_LOG_INFO("error: Could not send a close unit request for "
3248 "unit 0x%016Lx on port 0x%016Lx onadapter %s.\n",
3249 erp_action->unit->fcp_lun,
3250 erp_action->port->wwpn,
3251 zfcp_get_busid_by_adapter(erp_action->adapter));
3252 zfcp_fsf_req_free(fsf_req);
3253 erp_action->fsf_req = NULL;
3257 ZFCP_LOG_TRACE("Close LUN request initiated (adapter %s, "
3258 "port 0x%016Lx, unit 0x%016Lx)\n",
3259 zfcp_get_busid_by_adapter(erp_action->adapter),
3260 erp_action->port->wwpn, erp_action->unit->fcp_lun);
3262 write_unlock_irqrestore(&erp_action->adapter->request_queue.queue_lock,
3268 * function: zfcp_fsf_close_unit_handler
3270 * purpose: is called for finished Close LUN FSF command
3275 zfcp_fsf_close_unit_handler(struct zfcp_fsf_req *fsf_req)
3277 int retval = -EINVAL;
3278 struct zfcp_unit *unit;
3280 unit = (struct zfcp_unit *) fsf_req->data;
3282 if (fsf_req->status & ZFCP_STATUS_FSFREQ_ERROR) {
3283 /* don't change unit status in our bookkeeping */
3284 goto skip_fsfstatus;
3287 /* evaluate FSF status in QTCB */
3288 switch (fsf_req->qtcb->header.fsf_status) {
3290 case FSF_PORT_HANDLE_NOT_VALID:
3291 ZFCP_LOG_INFO("Temporary port identifier 0x%x for port "
3292 "0x%016Lx on adapter %s invalid. This may "
3293 "happen in rare circumstances\n",
3296 zfcp_get_busid_by_unit(unit));
3297 ZFCP_LOG_DEBUG("status qualifier:\n");
3298 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_DEBUG,
3299 (char *) &fsf_req->qtcb->header.fsf_status_qual,
3300 sizeof (union fsf_status_qual));
3301 zfcp_erp_adapter_reopen(unit->port->adapter, 0, 110, fsf_req);
3302 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
3305 case FSF_LUN_HANDLE_NOT_VALID:
3306 ZFCP_LOG_INFO("Temporary LUN identifier 0x%x of unit "
3307 "0x%016Lx on port 0x%016Lx on adapter %s is "
3308 "invalid. This may happen occasionally.\n",
3312 zfcp_get_busid_by_unit(unit));
3313 ZFCP_LOG_DEBUG("Status qualifier data:\n");
3314 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_DEBUG,
3315 (char *) &fsf_req->qtcb->header.fsf_status_qual,
3316 sizeof (union fsf_status_qual));
3317 zfcp_erp_port_reopen(unit->port, 0, 111, fsf_req);
3318 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
3321 case FSF_PORT_BOXED:
3322 ZFCP_LOG_DEBUG("The remote port 0x%016Lx on adapter %s "
3323 "needs to be reopened\n",
3325 zfcp_get_busid_by_unit(unit));
3326 zfcp_erp_port_boxed(unit->port, 52, fsf_req);
3327 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR |
3328 ZFCP_STATUS_FSFREQ_RETRY;
3331 case FSF_ADAPTER_STATUS_AVAILABLE:
3332 switch (fsf_req->qtcb->header.fsf_status_qual.word[0]) {
3333 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
3334 /* re-establish link to port */
3335 zfcp_test_link(unit->port);
3336 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
3338 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
3339 /* ERP strategy will escalate */
3340 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
3344 ("bug: Wrong status qualifier 0x%x arrived.\n",
3345 fsf_req->qtcb->header.fsf_status_qual.word[0]);
3351 ZFCP_LOG_TRACE("unit 0x%016Lx on port 0x%016Lx on adapter %s "
3352 "closed, port handle 0x%x\n",
3355 zfcp_get_busid_by_unit(unit),
3357 /* mark unit as closed */
3358 atomic_clear_mask(ZFCP_STATUS_COMMON_OPEN, &unit->status);
3363 ZFCP_LOG_NORMAL("bug: An unknown FSF Status was presented "
3364 "(debug info 0x%x)\n",
3365 fsf_req->qtcb->header.fsf_status);
3370 atomic_clear_mask(ZFCP_STATUS_COMMON_CLOSING, &unit->status);
3375 * zfcp_fsf_send_fcp_command_task - initiate an FCP command (for a SCSI command)
3376 * @adapter: adapter where scsi command is issued
3377 * @unit: unit where command is sent to
3378 * @scsi_cmnd: scsi command to be sent
3379 * @timer: timer to be started when request is initiated
3380 * @req_flags: flags for fsf_request
3383 zfcp_fsf_send_fcp_command_task(struct zfcp_adapter *adapter,
3384 struct zfcp_unit *unit,
3385 struct scsi_cmnd * scsi_cmnd,
3386 int use_timer, int req_flags)
3388 struct zfcp_fsf_req *fsf_req = NULL;
3389 struct fcp_cmnd_iu *fcp_cmnd_iu;
3390 unsigned int sbtype;
3391 unsigned long lock_flags;
3396 /* setup new FSF request */
3397 retval = zfcp_fsf_req_create(adapter, FSF_QTCB_FCP_CMND, req_flags,
3398 adapter->pool.fsf_req_scsi,
3399 &lock_flags, &fsf_req);
3400 if (unlikely(retval < 0)) {
3401 ZFCP_LOG_DEBUG("error: Could not create FCP command request "
3402 "for unit 0x%016Lx on port 0x%016Lx on "
3406 zfcp_get_busid_by_adapter(adapter));
3407 goto failed_req_create;
3410 if (unlikely(!atomic_test_mask(ZFCP_STATUS_COMMON_UNBLOCKED,
3416 zfcp_unit_get(unit);
3417 fsf_req->unit = unit;
3419 /* associate FSF request with SCSI request (for look up on abort) */
3420 scsi_cmnd->host_scribble = (unsigned char *) fsf_req->req_id;
3422 /* associate SCSI command with FSF request */
3423 fsf_req->data = (unsigned long) scsi_cmnd;
3425 /* set handles of unit and its parent port in QTCB */
3426 fsf_req->qtcb->header.lun_handle = unit->handle;
3427 fsf_req->qtcb->header.port_handle = unit->port->handle;
3429 /* FSF does not define the structure of the FCP_CMND IU */
3430 fcp_cmnd_iu = (struct fcp_cmnd_iu *)
3431 &(fsf_req->qtcb->bottom.io.fcp_cmnd);
3434 * set depending on data direction:
3435 * data direction bits in SBALE (SB Type)
3436 * data direction bits in QTCB
3437 * data direction bits in FCP_CMND IU
3439 switch (scsi_cmnd->sc_data_direction) {
3441 fsf_req->qtcb->bottom.io.data_direction = FSF_DATADIR_CMND;
3444 * what is the correct type for commands
3445 * without 'real' data buffers?
3447 sbtype = SBAL_FLAGS0_TYPE_READ;
3449 case DMA_FROM_DEVICE:
3450 fsf_req->qtcb->bottom.io.data_direction = FSF_DATADIR_READ;
3451 sbtype = SBAL_FLAGS0_TYPE_READ;
3452 fcp_cmnd_iu->rddata = 1;
3455 fsf_req->qtcb->bottom.io.data_direction = FSF_DATADIR_WRITE;
3456 sbtype = SBAL_FLAGS0_TYPE_WRITE;
3457 fcp_cmnd_iu->wddata = 1;
3459 case DMA_BIDIRECTIONAL:
3462 * dummy, catch this condition earlier
3463 * in zfcp_scsi_queuecommand
3465 goto failed_scsi_cmnd;
3468 /* set FC service class in QTCB (3 per default) */
3469 fsf_req->qtcb->bottom.io.service_class = ZFCP_FC_SERVICE_CLASS_DEFAULT;
3471 /* set FCP_LUN in FCP_CMND IU in QTCB */
3472 fcp_cmnd_iu->fcp_lun = unit->fcp_lun;
3474 mask = ZFCP_STATUS_UNIT_READONLY | ZFCP_STATUS_UNIT_SHARED;
3476 /* set task attributes in FCP_CMND IU in QTCB */
3477 if (likely((scsi_cmnd->device->simple_tags) ||
3478 (atomic_test_mask(mask, &unit->status))))
3479 fcp_cmnd_iu->task_attribute = SIMPLE_Q;
3481 fcp_cmnd_iu->task_attribute = UNTAGGED;
3483 /* set additional length of FCP_CDB in FCP_CMND IU in QTCB, if needed */
3484 if (unlikely(scsi_cmnd->cmd_len > FCP_CDB_LENGTH)) {
3485 fcp_cmnd_iu->add_fcp_cdb_length
3486 = (scsi_cmnd->cmd_len - FCP_CDB_LENGTH) >> 2;
3487 ZFCP_LOG_TRACE("SCSI CDB length is 0x%x, "
3488 "additional FCP_CDB length is 0x%x "
3489 "(shifted right 2 bits)\n",
3491 fcp_cmnd_iu->add_fcp_cdb_length);
3494 * copy SCSI CDB (including additional length, if any) to
3495 * FCP_CDB in FCP_CMND IU in QTCB
3497 memcpy(fcp_cmnd_iu->fcp_cdb, scsi_cmnd->cmnd, scsi_cmnd->cmd_len);
3499 /* FCP CMND IU length in QTCB */
3500 fsf_req->qtcb->bottom.io.fcp_cmnd_length =
3501 sizeof (struct fcp_cmnd_iu) +
3502 fcp_cmnd_iu->add_fcp_cdb_length + sizeof (fcp_dl_t);
3504 /* generate SBALEs from data buffer */
3505 real_bytes = zfcp_qdio_sbals_from_scsicmnd(fsf_req, sbtype, scsi_cmnd);
3506 if (unlikely(real_bytes < 0)) {
3507 if (fsf_req->sbal_number < ZFCP_MAX_SBALS_PER_REQ) {
3509 "Data did not fit into available buffer(s), "
3510 "waiting for more...\n");
3513 ZFCP_LOG_NORMAL("error: No truncation implemented but "
3514 "required. Shutting down unit "
3515 "(adapter %s, port 0x%016Lx, "
3517 zfcp_get_busid_by_unit(unit),
3520 zfcp_erp_unit_shutdown(unit, 0, 131, fsf_req);
3526 /* set length of FCP data length in FCP_CMND IU in QTCB */
3527 zfcp_set_fcp_dl(fcp_cmnd_iu, real_bytes);
3529 ZFCP_LOG_DEBUG("Sending SCSI command:\n");
3530 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_DEBUG,
3531 (char *) scsi_cmnd->cmnd, scsi_cmnd->cmd_len);
3534 zfcp_fsf_start_timer(fsf_req, ZFCP_FSF_REQUEST_TIMEOUT);
3536 retval = zfcp_fsf_req_send(fsf_req);
3537 if (unlikely(retval < 0)) {
3538 ZFCP_LOG_INFO("error: Could not send FCP command request "
3539 "on adapter %s, port 0x%016Lx, unit 0x%016Lx\n",
3540 zfcp_get_busid_by_adapter(adapter),
3546 ZFCP_LOG_TRACE("Send FCP Command initiated (adapter %s, "
3547 "port 0x%016Lx, unit 0x%016Lx)\n",
3548 zfcp_get_busid_by_adapter(adapter),
3556 zfcp_unit_put(unit);
3558 zfcp_fsf_req_free(fsf_req);
3560 scsi_cmnd->host_scribble = NULL;
3563 write_unlock_irqrestore(&adapter->request_queue.queue_lock, lock_flags);
3567 struct zfcp_fsf_req *
3568 zfcp_fsf_send_fcp_command_task_management(struct zfcp_adapter *adapter,
3569 struct zfcp_unit *unit,
3570 u8 tm_flags, int req_flags)
3572 struct zfcp_fsf_req *fsf_req = NULL;
3574 struct fcp_cmnd_iu *fcp_cmnd_iu;
3575 unsigned long lock_flags;
3576 volatile struct qdio_buffer_element *sbale;
3578 /* setup new FSF request */
3579 retval = zfcp_fsf_req_create(adapter, FSF_QTCB_FCP_CMND, req_flags,
3580 adapter->pool.fsf_req_scsi,
3581 &lock_flags, &fsf_req);
3583 ZFCP_LOG_INFO("error: Could not create FCP command (task "
3584 "management) request for adapter %s, port "
3585 " 0x%016Lx, unit 0x%016Lx.\n",
3586 zfcp_get_busid_by_adapter(adapter),
3587 unit->port->wwpn, unit->fcp_lun);
3591 if (unlikely(!atomic_test_mask(ZFCP_STATUS_COMMON_UNBLOCKED,
3596 * Used to decide on proper handler in the return path,
3597 * could be either zfcp_fsf_send_fcp_command_task_handler or
3598 * zfcp_fsf_send_fcp_command_task_management_handler */
3600 fsf_req->status |= ZFCP_STATUS_FSFREQ_TASK_MANAGEMENT;
3603 * hold a pointer to the unit being target of this
3604 * task management request
3606 fsf_req->data = (unsigned long) unit;
3608 /* set FSF related fields in QTCB */
3609 fsf_req->qtcb->header.lun_handle = unit->handle;
3610 fsf_req->qtcb->header.port_handle = unit->port->handle;
3611 fsf_req->qtcb->bottom.io.data_direction = FSF_DATADIR_CMND;
3612 fsf_req->qtcb->bottom.io.service_class = ZFCP_FC_SERVICE_CLASS_DEFAULT;
3613 fsf_req->qtcb->bottom.io.fcp_cmnd_length =
3614 sizeof (struct fcp_cmnd_iu) + sizeof (fcp_dl_t);
3616 sbale = zfcp_qdio_sbale_req(fsf_req, fsf_req->sbal_curr, 0);
3617 sbale[0].flags |= SBAL_FLAGS0_TYPE_WRITE;
3618 sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY;
3620 /* set FCP related fields in FCP_CMND IU in QTCB */
3621 fcp_cmnd_iu = (struct fcp_cmnd_iu *)
3622 &(fsf_req->qtcb->bottom.io.fcp_cmnd);
3623 fcp_cmnd_iu->fcp_lun = unit->fcp_lun;
3624 fcp_cmnd_iu->task_management_flags = tm_flags;
3626 zfcp_fsf_start_timer(fsf_req, ZFCP_SCSI_ER_TIMEOUT);
3627 retval = zfcp_fsf_req_send(fsf_req);
3632 zfcp_fsf_req_free(fsf_req);
3636 write_unlock_irqrestore(&adapter->request_queue.queue_lock, lock_flags);
3640 static void zfcp_fsf_update_lat(struct fsf_latency_record *lat_rec, u32 lat)
3642 lat_rec->sum += lat;
3643 if (lat_rec->min > lat)
3645 if (lat_rec->max < lat)
3649 static void zfcp_fsf_req_latency(struct zfcp_fsf_req *fsf_req)
3651 struct fsf_qual_latency_info *lat_inf;
3652 struct latency_cont *lat;
3653 struct zfcp_unit *unit;
3654 unsigned long flags;
3656 lat_inf = &fsf_req->qtcb->prefix.prot_status_qual.latency_info;
3657 unit = fsf_req->unit;
3659 switch (fsf_req->qtcb->bottom.io.data_direction) {
3660 case FSF_DATADIR_READ:
3661 lat = &unit->latencies.read;
3663 case FSF_DATADIR_WRITE:
3664 lat = &unit->latencies.write;
3666 case FSF_DATADIR_CMND:
3667 lat = &unit->latencies.cmd;
3673 spin_lock_irqsave(&unit->latencies.lock, flags);
3674 zfcp_fsf_update_lat(&lat->channel, lat_inf->channel_lat);
3675 zfcp_fsf_update_lat(&lat->fabric, lat_inf->fabric_lat);
3677 spin_unlock_irqrestore(&unit->latencies.lock, flags);
3681 * function: zfcp_fsf_send_fcp_command_handler
3683 * purpose: is called for finished Send FCP Command
3688 zfcp_fsf_send_fcp_command_handler(struct zfcp_fsf_req *fsf_req)
3690 int retval = -EINVAL;
3691 struct zfcp_unit *unit;
3692 struct fsf_qtcb_header *header;
3693 u16 subtable, rule, counter;
3695 header = &fsf_req->qtcb->header;
3697 if (unlikely(fsf_req->status & ZFCP_STATUS_FSFREQ_TASK_MANAGEMENT))
3698 unit = (struct zfcp_unit *) fsf_req->data;
3700 unit = fsf_req->unit;
3702 if (unlikely(fsf_req->status & ZFCP_STATUS_FSFREQ_ERROR)) {
3703 /* go directly to calls of special handlers */
3704 goto skip_fsfstatus;
3707 /* evaluate FSF status in QTCB */
3708 switch (header->fsf_status) {
3710 case FSF_PORT_HANDLE_NOT_VALID:
3711 ZFCP_LOG_INFO("Temporary port identifier 0x%x for port "
3712 "0x%016Lx on adapter %s invalid\n",
3714 unit->port->wwpn, zfcp_get_busid_by_unit(unit));
3715 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_DEBUG,
3716 (char *) &header->fsf_status_qual,
3717 sizeof (union fsf_status_qual));
3718 zfcp_erp_adapter_reopen(unit->port->adapter, 0, 112, fsf_req);
3719 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
3722 case FSF_LUN_HANDLE_NOT_VALID:
3723 ZFCP_LOG_INFO("Temporary LUN identifier 0x%x for unit "
3724 "0x%016Lx on port 0x%016Lx on adapter %s is "
3725 "invalid. This may happen occasionally.\n",
3729 zfcp_get_busid_by_unit(unit));
3730 ZFCP_LOG_NORMAL("Status qualifier data:\n");
3731 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_NORMAL,
3732 (char *) &header->fsf_status_qual,
3733 sizeof (union fsf_status_qual));
3734 zfcp_erp_port_reopen(unit->port, 0, 113, fsf_req);
3735 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
3738 case FSF_HANDLE_MISMATCH:
3739 ZFCP_LOG_NORMAL("bug: The port handle 0x%x has changed "
3740 "unexpectedly. (adapter %s, port 0x%016Lx, "
3743 zfcp_get_busid_by_unit(unit),
3746 ZFCP_LOG_NORMAL("status qualifier:\n");
3747 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_NORMAL,
3748 (char *) &header->fsf_status_qual,
3749 sizeof (union fsf_status_qual));
3750 zfcp_erp_adapter_reopen(unit->port->adapter, 0, 114, fsf_req);
3751 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
3754 case FSF_SERVICE_CLASS_NOT_SUPPORTED:
3755 ZFCP_LOG_INFO("error: adapter %s does not support fc "
3757 zfcp_get_busid_by_unit(unit),
3758 ZFCP_FC_SERVICE_CLASS_DEFAULT);
3759 /* stop operation for this adapter */
3760 zfcp_erp_adapter_shutdown(unit->port->adapter, 0, 132, fsf_req);
3761 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
3764 case FSF_FCPLUN_NOT_VALID:
3765 ZFCP_LOG_NORMAL("bug: unit 0x%016Lx on port 0x%016Lx on "
3766 "adapter %s does not have correct unit "
3770 zfcp_get_busid_by_unit(unit),
3772 ZFCP_LOG_DEBUG("status qualifier:\n");
3773 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_DEBUG,
3774 (char *) &header->fsf_status_qual,
3775 sizeof (union fsf_status_qual));
3776 zfcp_erp_port_reopen(unit->port, 0, 115, fsf_req);
3777 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
3780 case FSF_ACCESS_DENIED:
3781 ZFCP_LOG_NORMAL("Access denied, cannot send FCP command to "
3782 "unit 0x%016Lx on port 0x%016Lx on "
3783 "adapter %s\n", unit->fcp_lun, unit->port->wwpn,
3784 zfcp_get_busid_by_unit(unit));
3785 for (counter = 0; counter < 2; counter++) {
3786 subtable = header->fsf_status_qual.halfword[counter * 2];
3787 rule = header->fsf_status_qual.halfword[counter * 2 + 1];
3789 case FSF_SQ_CFDC_SUBTABLE_OS:
3790 case FSF_SQ_CFDC_SUBTABLE_PORT_WWPN:
3791 case FSF_SQ_CFDC_SUBTABLE_PORT_DID:
3792 case FSF_SQ_CFDC_SUBTABLE_LUN:
3793 ZFCP_LOG_INFO("Access denied (%s rule %d)\n",
3794 zfcp_act_subtable_type[subtable], rule);
3798 zfcp_erp_unit_access_denied(unit, 61, fsf_req);
3799 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
3802 case FSF_DIRECTION_INDICATOR_NOT_VALID:
3803 ZFCP_LOG_INFO("bug: Invalid data direction given for unit "
3804 "0x%016Lx on port 0x%016Lx on adapter %s "
3805 "(debug info %d)\n",
3808 zfcp_get_busid_by_unit(unit),
3809 fsf_req->qtcb->bottom.io.data_direction);
3810 /* stop operation for this adapter */
3811 zfcp_erp_adapter_shutdown(unit->port->adapter, 0, 133, fsf_req);
3812 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
3815 case FSF_CMND_LENGTH_NOT_VALID:
3817 ("bug: An invalid control-data-block length field "
3818 "was found in a command for unit 0x%016Lx on port "
3819 "0x%016Lx on adapter %s " "(debug info %d)\n",
3820 unit->fcp_lun, unit->port->wwpn,
3821 zfcp_get_busid_by_unit(unit),
3822 fsf_req->qtcb->bottom.io.fcp_cmnd_length);
3823 /* stop operation for this adapter */
3824 zfcp_erp_adapter_shutdown(unit->port->adapter, 0, 134, fsf_req);
3825 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
3828 case FSF_PORT_BOXED:
3829 ZFCP_LOG_DEBUG("The remote port 0x%016Lx on adapter %s "
3830 "needs to be reopened\n",
3831 unit->port->wwpn, zfcp_get_busid_by_unit(unit));
3832 zfcp_erp_port_boxed(unit->port, 53, fsf_req);
3833 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR |
3834 ZFCP_STATUS_FSFREQ_RETRY;
3838 ZFCP_LOG_NORMAL("unit needs to be reopened (adapter %s, "
3839 "wwpn=0x%016Lx, fcp_lun=0x%016Lx)\n",
3840 zfcp_get_busid_by_unit(unit),
3841 unit->port->wwpn, unit->fcp_lun);
3842 zfcp_erp_unit_boxed(unit, 54, fsf_req);
3843 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR
3844 | ZFCP_STATUS_FSFREQ_RETRY;
3847 case FSF_ADAPTER_STATUS_AVAILABLE:
3848 switch (header->fsf_status_qual.word[0]) {
3849 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
3850 /* re-establish link to port */
3851 zfcp_test_link(unit->port);
3853 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
3854 /* FIXME(hw) need proper specs for proper action */
3855 /* let scsi stack deal with retries and escalation */
3859 ("Unknown status qualifier 0x%x arrived.\n",
3860 header->fsf_status_qual.word[0]);
3863 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
3869 case FSF_FCP_RSP_AVAILABLE:
3874 if (fsf_req->status & ZFCP_STATUS_FSFREQ_TASK_MANAGEMENT) {
3876 zfcp_fsf_send_fcp_command_task_management_handler(fsf_req);
3878 retval = zfcp_fsf_send_fcp_command_task_handler(fsf_req);
3879 fsf_req->unit = NULL;
3880 zfcp_unit_put(unit);
3886 * function: zfcp_fsf_send_fcp_command_task_handler
3888 * purpose: evaluates FCP_RSP IU
3893 zfcp_fsf_send_fcp_command_task_handler(struct zfcp_fsf_req *fsf_req)
3896 struct scsi_cmnd *scpnt;
3897 struct fcp_rsp_iu *fcp_rsp_iu = (struct fcp_rsp_iu *)
3898 &(fsf_req->qtcb->bottom.io.fcp_rsp);
3899 struct fcp_cmnd_iu *fcp_cmnd_iu = (struct fcp_cmnd_iu *)
3900 &(fsf_req->qtcb->bottom.io.fcp_cmnd);
3902 char *fcp_rsp_info = zfcp_get_fcp_rsp_info_ptr(fcp_rsp_iu);
3903 unsigned long flags;
3904 struct zfcp_unit *unit = fsf_req->unit;
3906 read_lock_irqsave(&fsf_req->adapter->abort_lock, flags);
3907 scpnt = (struct scsi_cmnd *) fsf_req->data;
3908 if (unlikely(!scpnt)) {
3910 ("Command with fsf_req %p is not associated to "
3911 "a scsi command anymore. Aborted?\n", fsf_req);
3914 if (unlikely(fsf_req->status & ZFCP_STATUS_FSFREQ_ABORTED)) {
3915 /* FIXME: (design) mid-layer should handle DID_ABORT like
3916 * DID_SOFT_ERROR by retrying the request for devices
3917 * that allow retries.
3919 ZFCP_LOG_DEBUG("Setting DID_SOFT_ERROR and SUGGEST_RETRY\n");
3920 set_host_byte(&scpnt->result, DID_SOFT_ERROR);
3921 set_driver_byte(&scpnt->result, SUGGEST_RETRY);
3922 goto skip_fsfstatus;
3925 if (unlikely(fsf_req->status & ZFCP_STATUS_FSFREQ_ERROR)) {
3926 ZFCP_LOG_DEBUG("Setting DID_ERROR\n");
3927 set_host_byte(&scpnt->result, DID_ERROR);
3928 goto skip_fsfstatus;
3931 /* set message byte of result in SCSI command */
3932 scpnt->result |= COMMAND_COMPLETE << 8;
3935 * copy SCSI status code of FCP_STATUS of FCP_RSP IU to status byte
3936 * of result in SCSI command
3938 scpnt->result |= fcp_rsp_iu->scsi_status;
3939 if (unlikely(fcp_rsp_iu->scsi_status)) {
3941 ZFCP_LOG_DEBUG("status for SCSI Command:\n");
3942 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_DEBUG,
3943 scpnt->cmnd, scpnt->cmd_len);
3944 ZFCP_LOG_DEBUG("SCSI status code 0x%x\n",
3945 fcp_rsp_iu->scsi_status);
3946 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_DEBUG,
3947 (void *) fcp_rsp_iu, sizeof (struct fcp_rsp_iu));
3948 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_DEBUG,
3949 zfcp_get_fcp_sns_info_ptr(fcp_rsp_iu),
3950 fcp_rsp_iu->fcp_sns_len);
3953 if (fsf_req->adapter->adapter_features & FSF_FEATURE_MEASUREMENT_DATA)
3954 zfcp_fsf_req_latency(fsf_req);
3956 /* check FCP_RSP_INFO */
3957 if (unlikely(fcp_rsp_iu->validity.bits.fcp_rsp_len_valid)) {
3958 ZFCP_LOG_DEBUG("rsp_len is valid\n");
3959 switch (fcp_rsp_info[3]) {
3962 ZFCP_LOG_TRACE("no failure or Task Management "
3963 "Function complete\n");
3964 set_host_byte(&scpnt->result, DID_OK);
3966 case RSP_CODE_LENGTH_MISMATCH:
3968 ZFCP_LOG_NORMAL("bug: FCP response code indictates "
3969 "that the fibrechannel protocol data "
3970 "length differs from the burst length. "
3971 "The problem occured on unit 0x%016Lx "
3972 "on port 0x%016Lx on adapter %s",
3975 zfcp_get_busid_by_unit(unit));
3976 /* dump SCSI CDB as prepared by zfcp */
3977 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_DEBUG,
3978 (char *) &fsf_req->qtcb->
3979 bottom.io.fcp_cmnd, FSF_FCP_CMND_SIZE);
3980 set_host_byte(&scpnt->result, DID_ERROR);
3981 goto skip_fsfstatus;
3982 case RSP_CODE_FIELD_INVALID:
3983 /* driver or hardware bug */
3984 ZFCP_LOG_NORMAL("bug: FCP response code indictates "
3985 "that the fibrechannel protocol data "
3986 "fields were incorrectly set up. "
3987 "The problem occured on the unit "
3988 "0x%016Lx on port 0x%016Lx on "
3992 zfcp_get_busid_by_unit(unit));
3993 /* dump SCSI CDB as prepared by zfcp */
3994 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_DEBUG,
3995 (char *) &fsf_req->qtcb->
3996 bottom.io.fcp_cmnd, FSF_FCP_CMND_SIZE);
3997 set_host_byte(&scpnt->result, DID_ERROR);
3998 goto skip_fsfstatus;
3999 case RSP_CODE_RO_MISMATCH:
4001 ZFCP_LOG_NORMAL("bug: The FCP response code indicates "
4002 "that conflicting values for the "
4003 "fibrechannel payload offset from the "
4004 "header were found. "
4005 "The problem occured on unit 0x%016Lx "
4006 "on port 0x%016Lx on adapter %s.\n",
4009 zfcp_get_busid_by_unit(unit));
4010 /* dump SCSI CDB as prepared by zfcp */
4011 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_DEBUG,
4012 (char *) &fsf_req->qtcb->
4013 bottom.io.fcp_cmnd, FSF_FCP_CMND_SIZE);
4014 set_host_byte(&scpnt->result, DID_ERROR);
4015 goto skip_fsfstatus;
4017 ZFCP_LOG_NORMAL("bug: An invalid FCP response "
4018 "code was detected for a command. "
4019 "The problem occured on the unit "
4020 "0x%016Lx on port 0x%016Lx on "
4021 "adapter %s (debug info 0x%x)\n",
4024 zfcp_get_busid_by_unit(unit),
4026 /* dump SCSI CDB as prepared by zfcp */
4027 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_DEBUG,
4028 (char *) &fsf_req->qtcb->
4029 bottom.io.fcp_cmnd, FSF_FCP_CMND_SIZE);
4030 set_host_byte(&scpnt->result, DID_ERROR);
4031 goto skip_fsfstatus;
4035 /* check for sense data */
4036 if (unlikely(fcp_rsp_iu->validity.bits.fcp_sns_len_valid)) {
4037 sns_len = FSF_FCP_RSP_SIZE -
4038 sizeof (struct fcp_rsp_iu) + fcp_rsp_iu->fcp_rsp_len;
4039 ZFCP_LOG_TRACE("room for %i bytes sense data in QTCB\n",
4041 sns_len = min(sns_len, (u32) SCSI_SENSE_BUFFERSIZE);
4042 ZFCP_LOG_TRACE("room for %i bytes sense data in SCSI command\n",
4043 SCSI_SENSE_BUFFERSIZE);
4044 sns_len = min(sns_len, fcp_rsp_iu->fcp_sns_len);
4045 ZFCP_LOG_TRACE("scpnt->result =0x%x, command was:\n",
4047 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_TRACE,
4048 scpnt->cmnd, scpnt->cmd_len);
4050 ZFCP_LOG_TRACE("%i bytes sense data provided by FCP\n",
4051 fcp_rsp_iu->fcp_sns_len);
4052 memcpy(scpnt->sense_buffer,
4053 zfcp_get_fcp_sns_info_ptr(fcp_rsp_iu), sns_len);
4054 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_TRACE,
4055 (void *)scpnt->sense_buffer, sns_len);
4058 /* check for overrun */
4059 if (unlikely(fcp_rsp_iu->validity.bits.fcp_resid_over)) {
4060 ZFCP_LOG_INFO("A data overrun was detected for a command. "
4061 "unit 0x%016Lx, port 0x%016Lx, adapter %s. "
4062 "The response data length is "
4063 "%d, the original length was %d.\n",
4066 zfcp_get_busid_by_unit(unit),
4067 fcp_rsp_iu->fcp_resid,
4068 (int) zfcp_get_fcp_dl(fcp_cmnd_iu));
4071 /* check for underrun */
4072 if (unlikely(fcp_rsp_iu->validity.bits.fcp_resid_under)) {
4073 ZFCP_LOG_INFO("A data underrun was detected for a command. "
4074 "unit 0x%016Lx, port 0x%016Lx, adapter %s. "
4075 "The response data length is "
4076 "%d, the original length was %d.\n",
4079 zfcp_get_busid_by_unit(unit),
4080 fcp_rsp_iu->fcp_resid,
4081 (int) zfcp_get_fcp_dl(fcp_cmnd_iu));
4083 scsi_set_resid(scpnt, fcp_rsp_iu->fcp_resid);
4084 if (scsi_bufflen(scpnt) - scsi_get_resid(scpnt) <
4086 set_host_byte(&scpnt->result, DID_ERROR);
4090 ZFCP_LOG_DEBUG("scpnt->result =0x%x\n", scpnt->result);
4092 if (scpnt->result != 0)
4093 zfcp_scsi_dbf_event_result("erro", 3, fsf_req->adapter, scpnt, fsf_req);
4094 else if (scpnt->retries > 0)
4095 zfcp_scsi_dbf_event_result("retr", 4, fsf_req->adapter, scpnt, fsf_req);
4097 zfcp_scsi_dbf_event_result("norm", 6, fsf_req->adapter, scpnt, fsf_req);
4099 /* cleanup pointer (need this especially for abort) */
4100 scpnt->host_scribble = NULL;
4102 /* always call back */
4103 (scpnt->scsi_done) (scpnt);
4106 * We must hold this lock until scsi_done has been called.
4107 * Otherwise we may call scsi_done after abort regarding this
4108 * command has completed.
4109 * Note: scsi_done must not block!
4112 read_unlock_irqrestore(&fsf_req->adapter->abort_lock, flags);
4117 * function: zfcp_fsf_send_fcp_command_task_management_handler
4119 * purpose: evaluates FCP_RSP IU
4124 zfcp_fsf_send_fcp_command_task_management_handler(struct zfcp_fsf_req *fsf_req)
4127 struct fcp_rsp_iu *fcp_rsp_iu = (struct fcp_rsp_iu *)
4128 &(fsf_req->qtcb->bottom.io.fcp_rsp);
4129 char *fcp_rsp_info = zfcp_get_fcp_rsp_info_ptr(fcp_rsp_iu);
4130 struct zfcp_unit *unit = (struct zfcp_unit *) fsf_req->data;
4132 if (fsf_req->status & ZFCP_STATUS_FSFREQ_ERROR) {
4133 fsf_req->status |= ZFCP_STATUS_FSFREQ_TMFUNCFAILED;
4134 goto skip_fsfstatus;
4137 /* check FCP_RSP_INFO */
4138 switch (fcp_rsp_info[3]) {
4141 ZFCP_LOG_DEBUG("no failure or Task Management "
4142 "Function complete\n");
4144 case RSP_CODE_TASKMAN_UNSUPP:
4145 ZFCP_LOG_NORMAL("bug: A reuested task management function "
4146 "is not supported on the target device "
4147 "unit 0x%016Lx, port 0x%016Lx, adapter %s\n ",
4150 zfcp_get_busid_by_unit(unit));
4151 fsf_req->status |= ZFCP_STATUS_FSFREQ_TMFUNCNOTSUPP;
4153 case RSP_CODE_TASKMAN_FAILED:
4154 ZFCP_LOG_NORMAL("bug: A reuested task management function "
4155 "failed to complete successfully. "
4156 "unit 0x%016Lx, port 0x%016Lx, adapter %s.\n",
4159 zfcp_get_busid_by_unit(unit));
4160 fsf_req->status |= ZFCP_STATUS_FSFREQ_TMFUNCFAILED;
4163 ZFCP_LOG_NORMAL("bug: An invalid FCP response "
4164 "code was detected for a command. "
4165 "unit 0x%016Lx, port 0x%016Lx, adapter %s "
4166 "(debug info 0x%x)\n",
4169 zfcp_get_busid_by_unit(unit),
4171 fsf_req->status |= ZFCP_STATUS_FSFREQ_TMFUNCFAILED;
4180 * function: zfcp_fsf_control_file
4182 * purpose: Initiator of the control file upload/download FSF requests
4184 * returns: 0 - FSF request is successfuly created and queued
4185 * -EOPNOTSUPP - The FCP adapter does not have Control File support
4186 * -EINVAL - Invalid direction specified
4187 * -ENOMEM - Insufficient memory
4188 * -EPERM - Cannot create FSF request or place it in QDIO queue
4191 zfcp_fsf_control_file(struct zfcp_adapter *adapter,
4192 struct zfcp_fsf_req **fsf_req_ptr,
4195 struct zfcp_sg_list *sg_list)
4197 struct zfcp_fsf_req *fsf_req;
4198 struct fsf_qtcb_bottom_support *bottom;
4199 volatile struct qdio_buffer_element *sbale;
4200 unsigned long lock_flags;
4205 if (!(adapter->adapter_features & FSF_FEATURE_CFDC)) {
4206 ZFCP_LOG_INFO("cfdc not supported (adapter %s)\n",
4207 zfcp_get_busid_by_adapter(adapter));
4208 retval = -EOPNOTSUPP;
4212 switch (fsf_command) {
4214 case FSF_QTCB_DOWNLOAD_CONTROL_FILE:
4215 direction = SBAL_FLAGS0_TYPE_WRITE;
4216 if ((option != FSF_CFDC_OPTION_FULL_ACCESS) &&
4217 (option != FSF_CFDC_OPTION_RESTRICTED_ACCESS))
4218 req_flags = ZFCP_WAIT_FOR_SBAL;
4221 case FSF_QTCB_UPLOAD_CONTROL_FILE:
4222 direction = SBAL_FLAGS0_TYPE_READ;
4226 ZFCP_LOG_INFO("Invalid FSF command code 0x%08x\n", fsf_command);
4231 retval = zfcp_fsf_req_create(adapter, fsf_command, req_flags,
4232 NULL, &lock_flags, &fsf_req);
4234 ZFCP_LOG_INFO("error: Could not create FSF request for the "
4236 zfcp_get_busid_by_adapter(adapter));
4238 goto unlock_queue_lock;
4241 sbale = zfcp_qdio_sbale_req(fsf_req, fsf_req->sbal_curr, 0);
4242 sbale[0].flags |= direction;
4244 bottom = &fsf_req->qtcb->bottom.support;
4245 bottom->operation_subtype = FSF_CFDC_OPERATION_SUBTYPE;
4246 bottom->option = option;
4248 if (sg_list->count > 0) {
4251 bytes = zfcp_qdio_sbals_from_sg(fsf_req, direction,
4252 sg_list->sg, sg_list->count,
4253 ZFCP_MAX_SBALS_PER_REQ);
4254 if (bytes != ZFCP_CFDC_MAX_CONTROL_FILE_SIZE) {
4256 "error: Could not create sufficient number of "
4257 "SBALS for an FSF request to the adapter %s\n",
4258 zfcp_get_busid_by_adapter(adapter));
4263 sbale[1].flags |= SBAL_FLAGS_LAST_ENTRY;
4265 zfcp_fsf_start_timer(fsf_req, ZFCP_FSF_REQUEST_TIMEOUT);
4266 retval = zfcp_fsf_req_send(fsf_req);
4268 ZFCP_LOG_INFO("initiation of cfdc up/download failed"
4270 zfcp_get_busid_by_adapter(adapter));
4274 write_unlock_irqrestore(&adapter->request_queue.queue_lock, lock_flags);
4276 ZFCP_LOG_NORMAL("Control file %s FSF request has been sent to the "
4278 fsf_command == FSF_QTCB_DOWNLOAD_CONTROL_FILE ?
4279 "download" : "upload",
4280 zfcp_get_busid_by_adapter(adapter));
4282 wait_event(fsf_req->completion_wq,
4283 fsf_req->status & ZFCP_STATUS_FSFREQ_COMPLETED);
4285 *fsf_req_ptr = fsf_req;
4289 zfcp_fsf_req_free(fsf_req);
4291 write_unlock_irqrestore(&adapter->request_queue.queue_lock, lock_flags);
4298 * function: zfcp_fsf_control_file_handler
4300 * purpose: Handler of the control file upload/download FSF requests
4302 * returns: 0 - FSF request successfuly processed
4303 * -EAGAIN - Operation has to be repeated because of a temporary problem
4304 * -EACCES - There is no permission to execute an operation
4305 * -EPERM - The control file is not in a right format
4306 * -EIO - There is a problem with the FCP adapter
4307 * -EINVAL - Invalid operation
4308 * -EFAULT - User space memory I/O operation fault
4311 zfcp_fsf_control_file_handler(struct zfcp_fsf_req *fsf_req)
4313 struct zfcp_adapter *adapter = fsf_req->adapter;
4314 struct fsf_qtcb_header *header = &fsf_req->qtcb->header;
4315 struct fsf_qtcb_bottom_support *bottom = &fsf_req->qtcb->bottom.support;
4318 if (fsf_req->status & ZFCP_STATUS_FSFREQ_ERROR) {
4320 goto skip_fsfstatus;
4323 switch (header->fsf_status) {
4327 "The FSF request has been successfully completed "
4328 "on the adapter %s\n",
4329 zfcp_get_busid_by_adapter(adapter));
4332 case FSF_OPERATION_PARTIALLY_SUCCESSFUL:
4333 if (bottom->operation_subtype == FSF_CFDC_OPERATION_SUBTYPE) {
4334 switch (header->fsf_status_qual.word[0]) {
4336 case FSF_SQ_CFDC_HARDENED_ON_SE:
4338 "CFDC on the adapter %s has being "
4339 "hardened on primary and secondary SE\n",
4340 zfcp_get_busid_by_adapter(adapter));
4343 case FSF_SQ_CFDC_COULD_NOT_HARDEN_ON_SE:
4345 "CFDC of the adapter %s could not "
4346 "be saved on the SE\n",
4347 zfcp_get_busid_by_adapter(adapter));
4350 case FSF_SQ_CFDC_COULD_NOT_HARDEN_ON_SE2:
4352 "CFDC of the adapter %s could not "
4353 "be copied to the secondary SE\n",
4354 zfcp_get_busid_by_adapter(adapter));
4359 "CFDC could not be hardened "
4360 "on the adapter %s\n",
4361 zfcp_get_busid_by_adapter(adapter));
4364 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
4368 case FSF_AUTHORIZATION_FAILURE:
4370 "Adapter %s does not accept privileged commands\n",
4371 zfcp_get_busid_by_adapter(adapter));
4372 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
4376 case FSF_CFDC_ERROR_DETECTED:
4378 "Error at position %d in the CFDC, "
4379 "CFDC is discarded by the adapter %s\n",
4380 header->fsf_status_qual.word[0],
4381 zfcp_get_busid_by_adapter(adapter));
4382 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
4386 case FSF_CONTROL_FILE_UPDATE_ERROR:
4388 "Adapter %s cannot harden the control file, "
4389 "file is discarded\n",
4390 zfcp_get_busid_by_adapter(adapter));
4391 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
4395 case FSF_CONTROL_FILE_TOO_LARGE:
4397 "Control file is too large, file is discarded "
4398 "by the adapter %s\n",
4399 zfcp_get_busid_by_adapter(adapter));
4400 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
4404 case FSF_ACCESS_CONFLICT_DETECTED:
4405 if (bottom->operation_subtype == FSF_CFDC_OPERATION_SUBTYPE)
4407 "CFDC has been discarded by the adapter %s, "
4408 "because activation would impact "
4409 "%d active connection(s)\n",
4410 zfcp_get_busid_by_adapter(adapter),
4411 header->fsf_status_qual.word[0]);
4412 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
4416 case FSF_CONFLICTS_OVERRULED:
4417 if (bottom->operation_subtype == FSF_CFDC_OPERATION_SUBTYPE)
4419 "CFDC has been activated on the adapter %s, "
4420 "but activation has impacted "
4421 "%d active connection(s)\n",
4422 zfcp_get_busid_by_adapter(adapter),
4423 header->fsf_status_qual.word[0]);
4424 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
4428 case FSF_UNKNOWN_OP_SUBTYPE:
4429 ZFCP_LOG_NORMAL("unknown operation subtype (adapter: %s, "
4430 "op_subtype=0x%x)\n",
4431 zfcp_get_busid_by_adapter(adapter),
4432 bottom->operation_subtype);
4433 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
4437 case FSF_INVALID_COMMAND_OPTION:
4439 "Invalid option 0x%x has been specified "
4440 "in QTCB bottom sent to the adapter %s\n",
4442 zfcp_get_busid_by_adapter(adapter));
4443 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
4449 "bug: An unknown/unexpected FSF status 0x%08x "
4450 "was presented on the adapter %s\n",
4452 zfcp_get_busid_by_adapter(adapter));
4453 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR;
4463 zfcp_fsf_req_sbal_check(unsigned long *flags,
4464 struct zfcp_qdio_queue *queue, int needed)
4466 write_lock_irqsave(&queue->queue_lock, *flags);
4467 if (likely(atomic_read(&queue->free_count) >= needed))
4469 write_unlock_irqrestore(&queue->queue_lock, *flags);
4474 * set qtcb pointer in fsf_req and initialize QTCB
4477 zfcp_fsf_req_qtcb_init(struct zfcp_fsf_req *fsf_req)
4479 if (likely(fsf_req->qtcb != NULL)) {
4480 fsf_req->qtcb->prefix.req_seq_no =
4481 fsf_req->adapter->fsf_req_seq_no;
4482 fsf_req->qtcb->prefix.req_id = fsf_req->req_id;
4483 fsf_req->qtcb->prefix.ulp_info = ZFCP_ULP_INFO_VERSION;
4484 fsf_req->qtcb->prefix.qtcb_type =
4485 fsf_qtcb_type[fsf_req->fsf_command];
4486 fsf_req->qtcb->prefix.qtcb_version = ZFCP_QTCB_VERSION;
4487 fsf_req->qtcb->header.req_handle = fsf_req->req_id;
4488 fsf_req->qtcb->header.fsf_command = fsf_req->fsf_command;
4493 * zfcp_fsf_req_sbal_get - try to get one SBAL in the request queue
4494 * @adapter: adapter for which request queue is examined
4495 * @req_flags: flags indicating whether to wait for needed SBAL or not
4496 * @lock_flags: lock_flags if queue_lock is taken
4497 * Return: 0 on success, otherwise -EIO, or -ERESTARTSYS
4498 * Locks: lock adapter->request_queue->queue_lock on success
4501 zfcp_fsf_req_sbal_get(struct zfcp_adapter *adapter, int req_flags,
4502 unsigned long *lock_flags)
4505 struct zfcp_qdio_queue *req_queue = &adapter->request_queue;
4507 if (unlikely(req_flags & ZFCP_WAIT_FOR_SBAL)) {
4508 ret = wait_event_interruptible_timeout(adapter->request_wq,
4509 zfcp_fsf_req_sbal_check(lock_flags, req_queue, 1),
4515 } else if (!zfcp_fsf_req_sbal_check(lock_flags, req_queue, 1))
4522 * function: zfcp_fsf_req_create
4524 * purpose: create an FSF request at the specified adapter and
4525 * setup common fields
4527 * returns: -ENOMEM if there was insufficient memory for a request
4528 * -EIO if no qdio buffers could be allocate to the request
4529 * -EINVAL/-EPERM on bug conditions in req_dequeue
4532 * note: The created request is returned by reference.
4534 * locks: lock of concerned request queue must not be held,
4535 * but is held on completion (write, irqsave)
4538 zfcp_fsf_req_create(struct zfcp_adapter *adapter, u32 fsf_cmd, int req_flags,
4539 mempool_t *pool, unsigned long *lock_flags,
4540 struct zfcp_fsf_req **fsf_req_p)
4542 volatile struct qdio_buffer_element *sbale;
4543 struct zfcp_fsf_req *fsf_req = NULL;
4545 struct zfcp_qdio_queue *req_queue = &adapter->request_queue;
4547 /* allocate new FSF request */
4548 fsf_req = zfcp_fsf_req_alloc(pool, req_flags);
4549 if (unlikely(NULL == fsf_req)) {
4550 ZFCP_LOG_DEBUG("error: Could not put an FSF request into "
4551 "the outbound (send) queue.\n");
4553 goto failed_fsf_req;
4556 fsf_req->adapter = adapter;
4557 fsf_req->fsf_command = fsf_cmd;
4558 INIT_LIST_HEAD(&fsf_req->list);
4559 init_timer(&fsf_req->timer);
4561 /* initialize waitqueue which may be used to wait on
4562 this request completion */
4563 init_waitqueue_head(&fsf_req->completion_wq);
4565 ret = zfcp_fsf_req_sbal_get(adapter, req_flags, lock_flags);
4569 /* this is serialized (we are holding req_queue-lock of adapter) */
4570 if (adapter->req_no == 0)
4572 fsf_req->req_id = adapter->req_no++;
4574 zfcp_fsf_req_qtcb_init(fsf_req);
4577 * We hold queue_lock here. Check if QDIOUP is set and let request fail
4578 * if it is not set (see also *_open_qdio and *_close_qdio).
4581 if (!atomic_test_mask(ZFCP_STATUS_ADAPTER_QDIOUP, &adapter->status)) {
4582 write_unlock_irqrestore(&req_queue->queue_lock, *lock_flags);
4587 if (fsf_req->qtcb) {
4588 fsf_req->seq_no = adapter->fsf_req_seq_no;
4589 fsf_req->qtcb->prefix.req_seq_no = adapter->fsf_req_seq_no;
4591 fsf_req->sbal_number = 1;
4592 fsf_req->sbal_first = req_queue->free_index;
4593 fsf_req->sbal_curr = req_queue->free_index;
4594 fsf_req->sbale_curr = 1;
4596 if (likely(req_flags & ZFCP_REQ_AUTO_CLEANUP)) {
4597 fsf_req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
4600 sbale = zfcp_qdio_sbale_req(fsf_req, fsf_req->sbal_curr, 0);
4602 /* setup common SBALE fields */
4603 sbale[0].addr = (void *) fsf_req->req_id;
4604 sbale[0].flags |= SBAL_FLAGS0_COMMAND;
4605 if (likely(fsf_req->qtcb != NULL)) {
4606 sbale[1].addr = (void *) fsf_req->qtcb;
4607 sbale[1].length = sizeof(struct fsf_qtcb);
4610 ZFCP_LOG_TRACE("got %i free BUFFERs starting at index %i\n",
4611 fsf_req->sbal_number, fsf_req->sbal_first);
4616 /* dequeue new FSF request previously enqueued */
4617 zfcp_fsf_req_free(fsf_req);
4621 write_lock_irqsave(&req_queue->queue_lock, *lock_flags);
4623 *fsf_req_p = fsf_req;
4628 * function: zfcp_fsf_req_send
4630 * purpose: start transfer of FSF request via QDIO
4632 * returns: 0 - request transfer succesfully started
4633 * !0 - start of request transfer failed
4635 static int zfcp_fsf_req_send(struct zfcp_fsf_req *fsf_req)
4637 struct zfcp_adapter *adapter;
4638 struct zfcp_qdio_queue *req_queue;
4639 volatile struct qdio_buffer_element *sbale;
4641 int new_distance_from_int;
4644 adapter = fsf_req->adapter;
4645 req_queue = &adapter->request_queue,
4648 /* FIXME(debug): remove it later */
4649 sbale = zfcp_qdio_sbale_req(fsf_req, fsf_req->sbal_first, 0);
4650 ZFCP_LOG_DEBUG("SBALE0 flags=0x%x\n", sbale[0].flags);
4651 ZFCP_LOG_TRACE("HEX DUMP OF SBALE1 PAYLOAD:\n");
4652 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_TRACE, (char *) sbale[1].addr,
4655 /* put allocated FSF request into hash table */
4656 spin_lock(&adapter->req_list_lock);
4657 zfcp_reqlist_add(adapter, fsf_req);
4658 spin_unlock(&adapter->req_list_lock);
4660 inc_seq_no = (fsf_req->qtcb != NULL);
4662 ZFCP_LOG_TRACE("request queue of adapter %s: "
4663 "next free SBAL is %i, %i free SBALs\n",
4664 zfcp_get_busid_by_adapter(adapter),
4665 req_queue->free_index,
4666 atomic_read(&req_queue->free_count));
4668 ZFCP_LOG_DEBUG("calling do_QDIO adapter %s, flags=0x%x, queue_no=%i, "
4669 "index_in_queue=%i, count=%i, buffers=%p\n",
4670 zfcp_get_busid_by_adapter(adapter),
4671 QDIO_FLAG_SYNC_OUTPUT,
4672 0, fsf_req->sbal_first, fsf_req->sbal_number,
4673 &req_queue->buffer[fsf_req->sbal_first]);
4676 * adjust the number of free SBALs in request queue as well as
4677 * position of first one
4679 atomic_sub(fsf_req->sbal_number, &req_queue->free_count);
4680 ZFCP_LOG_TRACE("free_count=%d\n", atomic_read(&req_queue->free_count));
4681 req_queue->free_index += fsf_req->sbal_number; /* increase */
4682 req_queue->free_index %= QDIO_MAX_BUFFERS_PER_Q; /* wrap if needed */
4683 new_distance_from_int = zfcp_qdio_determine_pci(req_queue, fsf_req);
4685 fsf_req->issued = get_clock();
4687 retval = do_QDIO(adapter->ccw_device,
4688 QDIO_FLAG_SYNC_OUTPUT,
4689 0, fsf_req->sbal_first, fsf_req->sbal_number, NULL);
4691 if (unlikely(retval)) {
4692 /* Queues are down..... */
4694 del_timer(&fsf_req->timer);
4695 spin_lock(&adapter->req_list_lock);
4696 zfcp_reqlist_remove(adapter, fsf_req);
4697 spin_unlock(&adapter->req_list_lock);
4698 /* undo changes in request queue made for this request */
4699 zfcp_qdio_zero_sbals(req_queue->buffer,
4700 fsf_req->sbal_first, fsf_req->sbal_number);
4701 atomic_add(fsf_req->sbal_number, &req_queue->free_count);
4702 req_queue->free_index -= fsf_req->sbal_number;
4703 req_queue->free_index += QDIO_MAX_BUFFERS_PER_Q;
4704 req_queue->free_index %= QDIO_MAX_BUFFERS_PER_Q; /* wrap */
4705 zfcp_erp_adapter_reopen(adapter, 0, 116, fsf_req);
4707 req_queue->distance_from_int = new_distance_from_int;
4709 * increase FSF sequence counter -
4710 * this must only be done for request successfully enqueued to
4711 * QDIO this rejected requests may be cleaned up by calling
4712 * routines resulting in missing sequence counter values
4716 /* Don't increase for unsolicited status */
4718 adapter->fsf_req_seq_no++;
4720 /* count FSF requests pending */
4721 atomic_inc(&adapter->reqs_active);
4726 #undef ZFCP_LOG_AREA