blob: 022fb6a8cb8339a6a8854b69ffc7021a3bdce1cf [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Christof Schmitt553448f2008-06-10 18:20:58 +02002 * zfcp device driver
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Christof Schmitt553448f2008-06-10 18:20:58 +02004 * Implementation of FSF commands.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
Christof Schmitt615f59e2010-02-17 11:18:56 +01006 * Copyright IBM Corporation 2002, 2010
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 */
8
Christof Schmittecf39d42008-12-25 13:39:53 +01009#define KMSG_COMPONENT "zfcp"
10#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
11
Stefan Raspl0997f1c2008-10-16 08:23:39 +020012#include <linux/blktrace_api.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Christof Schmitt9d05ce22009-11-24 16:54:09 +010014#include <scsi/fc/fc_els.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include "zfcp_ext.h"
Christof Schmitt4318e082009-11-24 16:54:08 +010016#include "zfcp_fc.h"
Christof Schmittdcd20e22009-08-18 15:43:08 +020017#include "zfcp_dbf.h"
Christof Schmitt34c2b712010-02-17 11:18:59 +010018#include "zfcp_qdio.h"
Christof Schmittb6bd2fb2010-02-17 11:18:50 +010019#include "zfcp_reqlist.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Christof Schmitt259afe22011-02-22 19:54:44 +010021struct kmem_cache *zfcp_fsf_qtcb_cache;
22
Christof Schmitt287ac012008-07-02 10:56:40 +020023static void zfcp_fsf_request_timeout_handler(unsigned long data)
24{
25 struct zfcp_adapter *adapter = (struct zfcp_adapter *) data;
Christof Schmitt339f4f42010-07-16 15:37:43 +020026 zfcp_qdio_siosl(adapter);
Swen Schillig5ffd51a2009-03-02 13:09:04 +010027 zfcp_erp_adapter_reopen(adapter, ZFCP_STATUS_COMMON_ERP_FAILED,
Swen Schilligea4a3a62010-12-02 15:16:16 +010028 "fsrth_1");
Christof Schmitt287ac012008-07-02 10:56:40 +020029}
30
31static void zfcp_fsf_start_timer(struct zfcp_fsf_req *fsf_req,
32 unsigned long timeout)
33{
34 fsf_req->timer.function = zfcp_fsf_request_timeout_handler;
35 fsf_req->timer.data = (unsigned long) fsf_req->adapter;
36 fsf_req->timer.expires = jiffies + timeout;
37 add_timer(&fsf_req->timer);
38}
39
40static void zfcp_fsf_start_erp_timer(struct zfcp_fsf_req *fsf_req)
41{
42 BUG_ON(!fsf_req->erp_action);
43 fsf_req->timer.function = zfcp_erp_timeout_handler;
44 fsf_req->timer.data = (unsigned long) fsf_req->erp_action;
45 fsf_req->timer.expires = jiffies + 30 * HZ;
46 add_timer(&fsf_req->timer);
47}
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049/* association between FSF command and FSF QTCB type */
50static u32 fsf_qtcb_type[] = {
51 [FSF_QTCB_FCP_CMND] = FSF_IO_COMMAND,
52 [FSF_QTCB_ABORT_FCP_CMND] = FSF_SUPPORT_COMMAND,
53 [FSF_QTCB_OPEN_PORT_WITH_DID] = FSF_SUPPORT_COMMAND,
54 [FSF_QTCB_OPEN_LUN] = FSF_SUPPORT_COMMAND,
55 [FSF_QTCB_CLOSE_LUN] = FSF_SUPPORT_COMMAND,
56 [FSF_QTCB_CLOSE_PORT] = FSF_SUPPORT_COMMAND,
57 [FSF_QTCB_CLOSE_PHYSICAL_PORT] = FSF_SUPPORT_COMMAND,
58 [FSF_QTCB_SEND_ELS] = FSF_SUPPORT_COMMAND,
59 [FSF_QTCB_SEND_GENERIC] = FSF_SUPPORT_COMMAND,
60 [FSF_QTCB_EXCHANGE_CONFIG_DATA] = FSF_CONFIG_COMMAND,
61 [FSF_QTCB_EXCHANGE_PORT_DATA] = FSF_PORT_COMMAND,
62 [FSF_QTCB_DOWNLOAD_CONTROL_FILE] = FSF_SUPPORT_COMMAND,
63 [FSF_QTCB_UPLOAD_CONTROL_FILE] = FSF_SUPPORT_COMMAND
64};
65
Christof Schmitt553448f2008-06-10 18:20:58 +020066static void zfcp_fsf_class_not_supp(struct zfcp_fsf_req *req)
67{
Christof Schmittff3b24f2008-10-01 12:42:15 +020068 dev_err(&req->adapter->ccw_device->dev, "FCP device not "
69 "operational because of an unsupported FC class\n");
Swen Schilligea4a3a62010-12-02 15:16:16 +010070 zfcp_erp_adapter_shutdown(req->adapter, 0, "fscns_1");
Christof Schmitt553448f2008-06-10 18:20:58 +020071 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
72}
73
Swen Schilligc41f8cb2008-07-02 10:56:39 +020074/**
75 * zfcp_fsf_req_free - free memory used by fsf request
76 * @fsf_req: pointer to struct zfcp_fsf_req
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 */
Swen Schilligc41f8cb2008-07-02 10:56:39 +020078void zfcp_fsf_req_free(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079{
Swen Schilligc41f8cb2008-07-02 10:56:39 +020080 if (likely(req->pool)) {
Swen Schilliga4623c42009-08-18 15:43:15 +020081 if (likely(req->qtcb))
82 mempool_free(req->qtcb, req->adapter->pool.qtcb_pool);
Swen Schilligc41f8cb2008-07-02 10:56:39 +020083 mempool_free(req, req->pool);
Heiko Carstensdd52e0e2006-09-18 22:28:49 +020084 return;
85 }
86
Swen Schilliga4623c42009-08-18 15:43:15 +020087 if (likely(req->qtcb))
Christof Schmitt259afe22011-02-22 19:54:44 +010088 kmem_cache_free(zfcp_fsf_qtcb_cache, req->qtcb);
Swen Schilliga4623c42009-08-18 15:43:15 +020089 kfree(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090}
91
Swen Schilligc41f8cb2008-07-02 10:56:39 +020092static void zfcp_fsf_status_read_port_closed(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093{
Swen Schilligecf0c772009-11-24 16:53:58 +010094 unsigned long flags;
Swen Schilligc41f8cb2008-07-02 10:56:39 +020095 struct fsf_status_read_buffer *sr_buf = req->data;
96 struct zfcp_adapter *adapter = req->adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 struct zfcp_port *port;
Christof Schmitt800c0ca2009-11-24 16:54:12 +010098 int d_id = ntoh24(sr_buf->d_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Swen Schilligecf0c772009-11-24 16:53:58 +0100100 read_lock_irqsave(&adapter->port_list_lock, flags);
101 list_for_each_entry(port, &adapter->port_list, list)
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200102 if (port->d_id == d_id) {
Swen Schilligea4a3a62010-12-02 15:16:16 +0100103 zfcp_erp_port_reopen(port, 0, "fssrpc1");
Swen Schilligecf0c772009-11-24 16:53:58 +0100104 break;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200105 }
Swen Schilligecf0c772009-11-24 16:53:58 +0100106 read_unlock_irqrestore(&adapter->port_list_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107}
108
Swen Schilligedaed852010-09-08 14:40:01 +0200109static void zfcp_fsf_link_down_info_eval(struct zfcp_fsf_req *req,
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200110 struct fsf_link_down_info *link_down)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200112 struct zfcp_adapter *adapter = req->adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200114 if (atomic_read(&adapter->status) & ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED)
115 return;
116
117 atomic_set_mask(ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED, &adapter->status);
Christof Schmitt70932932009-04-17 15:08:15 +0200118
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100119 zfcp_scsi_schedule_rports_block(adapter);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200120
121 if (!link_down)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 goto out;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200123
124 switch (link_down->error_code) {
125 case FSF_PSQ_LINK_NO_LIGHT:
126 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200127 "There is no light signal from the local "
128 "fibre channel cable\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200129 break;
130 case FSF_PSQ_LINK_WRAP_PLUG:
131 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200132 "There is a wrap plug instead of a fibre "
133 "channel cable\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200134 break;
135 case FSF_PSQ_LINK_NO_FCP:
136 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200137 "The adjacent fibre channel node does not "
138 "support FCP\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200139 break;
140 case FSF_PSQ_LINK_FIRMWARE_UPDATE:
141 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200142 "The FCP device is suspended because of a "
143 "firmware update\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200144 break;
145 case FSF_PSQ_LINK_INVALID_WWPN:
146 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200147 "The FCP device detected a WWPN that is "
148 "duplicate or not valid\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200149 break;
150 case FSF_PSQ_LINK_NO_NPIV_SUPPORT:
151 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200152 "The fibre channel fabric does not support NPIV\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200153 break;
154 case FSF_PSQ_LINK_NO_FCP_RESOURCES:
155 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200156 "The FCP adapter cannot support more NPIV ports\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200157 break;
158 case FSF_PSQ_LINK_NO_FABRIC_RESOURCES:
159 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200160 "The adjacent switch cannot support "
161 "more NPIV ports\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200162 break;
163 case FSF_PSQ_LINK_FABRIC_LOGIN_UNABLE:
164 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200165 "The FCP adapter could not log in to the "
166 "fibre channel fabric\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200167 break;
168 case FSF_PSQ_LINK_WWPN_ASSIGNMENT_CORRUPTED:
169 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200170 "The WWPN assignment file on the FCP adapter "
171 "has been damaged\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200172 break;
173 case FSF_PSQ_LINK_MODE_TABLE_CURRUPTED:
174 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200175 "The mode table on the FCP adapter "
176 "has been damaged\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200177 break;
178 case FSF_PSQ_LINK_NO_WWPN_ASSIGNMENT:
179 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200180 "All NPIV ports on the FCP adapter have "
181 "been assigned\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200182 break;
183 default:
184 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200185 "The link between the FCP adapter and "
186 "the FC fabric is down\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200187 }
188out:
Swen Schilligedaed852010-09-08 14:40:01 +0200189 zfcp_erp_set_adapter_status(adapter, ZFCP_STATUS_COMMON_ERP_FAILED);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200190}
191
192static void zfcp_fsf_status_read_link_down(struct zfcp_fsf_req *req)
193{
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200194 struct fsf_status_read_buffer *sr_buf = req->data;
195 struct fsf_link_down_info *ldi =
196 (struct fsf_link_down_info *) &sr_buf->payload;
197
198 switch (sr_buf->status_subtype) {
199 case FSF_STATUS_READ_SUB_NO_PHYSICAL_LINK:
Swen Schilligedaed852010-09-08 14:40:01 +0200200 zfcp_fsf_link_down_info_eval(req, ldi);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200201 break;
202 case FSF_STATUS_READ_SUB_FDISC_FAILED:
Swen Schilligedaed852010-09-08 14:40:01 +0200203 zfcp_fsf_link_down_info_eval(req, ldi);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200204 break;
205 case FSF_STATUS_READ_SUB_FIRMWARE_UPDATE:
Swen Schilligedaed852010-09-08 14:40:01 +0200206 zfcp_fsf_link_down_info_eval(req, NULL);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200207 };
208}
209
210static void zfcp_fsf_status_read_handler(struct zfcp_fsf_req *req)
211{
212 struct zfcp_adapter *adapter = req->adapter;
213 struct fsf_status_read_buffer *sr_buf = req->data;
214
215 if (req->status & ZFCP_STATUS_FSFREQ_DISMISSED) {
Swen Schilliga54ca0f2010-12-02 15:16:14 +0100216 zfcp_dbf_hba_fsf_uss("fssrh_1", req);
Christof Schmittc7b279a2011-02-22 19:54:40 +0100217 mempool_free(virt_to_page(sr_buf), adapter->pool.sr_data);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200218 zfcp_fsf_req_free(req);
219 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 }
221
Swen Schilliga54ca0f2010-12-02 15:16:14 +0100222 zfcp_dbf_hba_fsf_uss("fssrh_2", req);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200223
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200224 switch (sr_buf->status_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 case FSF_STATUS_READ_PORT_CLOSED:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200226 zfcp_fsf_status_read_port_closed(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 case FSF_STATUS_READ_INCOMING_ELS:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200229 zfcp_fc_incoming_els(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 case FSF_STATUS_READ_SENSE_DATA_AVAIL:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 case FSF_STATUS_READ_BIT_ERROR_THRESHOLD:
Christof Schmittff3b24f2008-10-01 12:42:15 +0200234 dev_warn(&adapter->ccw_device->dev,
235 "The error threshold for checksum statistics "
236 "has been exceeded\n");
Swen Schilliga54ca0f2010-12-02 15:16:14 +0100237 zfcp_dbf_hba_bit_err("fssrh_3", req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 case FSF_STATUS_READ_LINK_DOWN:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200240 zfcp_fsf_status_read_link_down(req);
Sven Schuetz2d1e5472010-07-16 15:37:39 +0200241 zfcp_fc_enqueue_event(adapter, FCH_EVT_LINKDOWN, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 case FSF_STATUS_READ_LINK_UP:
Christof Schmitt553448f2008-06-10 18:20:58 +0200244 dev_info(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200245 "The local link has been restored\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 /* All ports should be marked as ready to run again */
Swen Schilligedaed852010-09-08 14:40:01 +0200247 zfcp_erp_set_adapter_status(adapter,
248 ZFCP_STATUS_COMMON_RUNNING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 zfcp_erp_adapter_reopen(adapter,
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200250 ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED |
251 ZFCP_STATUS_COMMON_ERP_FAILED,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100252 "fssrh_2");
Sven Schuetz2d1e5472010-07-16 15:37:39 +0200253 zfcp_fc_enqueue_event(adapter, FCH_EVT_LINKUP, 0);
254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 break;
Maxim Shchetynin9eb69af2006-01-05 09:56:47 +0100256 case FSF_STATUS_READ_NOTIFICATION_LOST:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200257 if (sr_buf->status_subtype & FSF_STATUS_READ_SUB_ACT_UPDATED)
Christof Schmitta1ca4832010-09-08 14:39:59 +0200258 zfcp_cfdc_adapter_access_changed(adapter);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200259 if (sr_buf->status_subtype & FSF_STATUS_READ_SUB_INCOMING_ELS)
Swen Schillig9eae07e2009-11-24 16:54:06 +0100260 queue_work(adapter->work_queue, &adapter->scan_work);
Maxim Shchetynin9eb69af2006-01-05 09:56:47 +0100261 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 case FSF_STATUS_READ_CFDC_UPDATED:
Christof Schmitta1ca4832010-09-08 14:39:59 +0200263 zfcp_cfdc_adapter_access_changed(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 break;
Maxim Shchetyninaef4a982005-09-13 21:51:16 +0200265 case FSF_STATUS_READ_FEATURE_UPDATE_ALERT:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200266 adapter->adapter_features = sr_buf->payload.word[0];
Maxim Shchetyninaef4a982005-09-13 21:51:16 +0200267 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200269
Christof Schmittc7b279a2011-02-22 19:54:40 +0100270 mempool_free(virt_to_page(sr_buf), adapter->pool.sr_data);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200271 zfcp_fsf_req_free(req);
Swen Schilligd26ab062008-05-19 12:17:37 +0200272
273 atomic_inc(&adapter->stat_miss);
Swen Schillig45446832009-08-18 15:43:17 +0200274 queue_work(adapter->work_queue, &adapter->stat_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275}
276
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200277static void zfcp_fsf_fsfstatus_qual_eval(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278{
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200279 switch (req->qtcb->header.fsf_status_qual.word[0]) {
280 case FSF_SQ_FCP_RSP_AVAILABLE:
281 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
282 case FSF_SQ_NO_RETRY_POSSIBLE:
283 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
284 return;
285 case FSF_SQ_COMMAND_ABORTED:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200286 break;
287 case FSF_SQ_NO_RECOM:
288 dev_err(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200289 "The FCP adapter reported a problem "
290 "that cannot be recovered\n");
Christof Schmitt339f4f42010-07-16 15:37:43 +0200291 zfcp_qdio_siosl(req->adapter);
Swen Schilligea4a3a62010-12-02 15:16:16 +0100292 zfcp_erp_adapter_shutdown(req->adapter, 0, "fsfsqe1");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200293 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200295 /* all non-return stats set FSFREQ_ERROR*/
296 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
297}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200299static void zfcp_fsf_fsfstatus_eval(struct zfcp_fsf_req *req)
300{
301 if (unlikely(req->status & ZFCP_STATUS_FSFREQ_ERROR))
302 return;
Andreas Herrmann059c97d2005-09-13 21:47:52 +0200303
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200304 switch (req->qtcb->header.fsf_status) {
305 case FSF_UNKNOWN_COMMAND:
306 dev_err(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200307 "The FCP adapter does not recognize the command 0x%x\n",
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200308 req->qtcb->header.fsf_command);
Swen Schilligea4a3a62010-12-02 15:16:16 +0100309 zfcp_erp_adapter_shutdown(req->adapter, 0, "fsfse_1");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200310 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 case FSF_ADAPTER_STATUS_AVAILABLE:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200313 zfcp_fsf_fsfstatus_qual_eval(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316}
317
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200318static void zfcp_fsf_protstatus_eval(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319{
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200320 struct zfcp_adapter *adapter = req->adapter;
321 struct fsf_qtcb *qtcb = req->qtcb;
322 union fsf_prot_status_qual *psq = &qtcb->prefix.prot_status_qual;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Swen Schillig57717102009-08-18 15:43:21 +0200324 zfcp_dbf_hba_fsf_response(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200326 if (req->status & ZFCP_STATUS_FSFREQ_DISMISSED) {
Christof Schmitt4c571c62009-11-24 16:54:15 +0100327 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200328 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 }
330
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200331 switch (qtcb->prefix.prot_status) {
332 case FSF_PROT_GOOD:
333 case FSF_PROT_FSF_STATUS_PRESENTED:
334 return;
335 case FSF_PROT_QTCB_VERSION_ERROR:
336 dev_err(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200337 "QTCB version 0x%x not supported by FCP adapter "
338 "(0x%x to 0x%x)\n", FSF_QTCB_CURRENT_VERSION,
339 psq->word[0], psq->word[1]);
Swen Schilligea4a3a62010-12-02 15:16:16 +0100340 zfcp_erp_adapter_shutdown(adapter, 0, "fspse_1");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 break;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200342 case FSF_PROT_ERROR_STATE:
343 case FSF_PROT_SEQ_NUMB_ERROR:
Swen Schilligea4a3a62010-12-02 15:16:16 +0100344 zfcp_erp_adapter_reopen(adapter, 0, "fspse_2");
Christof Schmitt4c571c62009-11-24 16:54:15 +0100345 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 break;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200347 case FSF_PROT_UNSUPP_QTCB_TYPE:
348 dev_err(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200349 "The QTCB type is not supported by the FCP adapter\n");
Swen Schilligea4a3a62010-12-02 15:16:16 +0100350 zfcp_erp_adapter_shutdown(adapter, 0, "fspse_3");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 break;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200352 case FSF_PROT_HOST_CONNECTION_INITIALIZING:
353 atomic_set_mask(ZFCP_STATUS_ADAPTER_HOST_CON_INIT,
354 &adapter->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 break;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200356 case FSF_PROT_DUPLICATE_REQUEST_ID:
357 dev_err(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200358 "0x%Lx is an ambiguous request identifier\n",
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200359 (unsigned long long)qtcb->bottom.support.req_handle);
Swen Schilligea4a3a62010-12-02 15:16:16 +0100360 zfcp_erp_adapter_shutdown(adapter, 0, "fspse_4");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 break;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200362 case FSF_PROT_LINK_DOWN:
Swen Schilligedaed852010-09-08 14:40:01 +0200363 zfcp_fsf_link_down_info_eval(req, &psq->link_down_info);
Christof Schmitt452b5052010-02-17 11:18:51 +0100364 /* go through reopen to flush pending requests */
Swen Schilligea4a3a62010-12-02 15:16:16 +0100365 zfcp_erp_adapter_reopen(adapter, 0, "fspse_6");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 break;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200367 case FSF_PROT_REEST_QUEUE:
368 /* All ports should be marked as ready to run again */
Swen Schilligedaed852010-09-08 14:40:01 +0200369 zfcp_erp_set_adapter_status(adapter,
370 ZFCP_STATUS_COMMON_RUNNING);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200371 zfcp_erp_adapter_reopen(adapter,
372 ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED |
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100373 ZFCP_STATUS_COMMON_ERP_FAILED,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100374 "fspse_8");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200375 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 default:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200377 dev_err(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200378 "0x%x is not a valid transfer protocol status\n",
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200379 qtcb->prefix.prot_status);
Christof Schmitt339f4f42010-07-16 15:37:43 +0200380 zfcp_qdio_siosl(adapter);
Swen Schilligea4a3a62010-12-02 15:16:16 +0100381 zfcp_erp_adapter_shutdown(adapter, 0, "fspse_9");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200383 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384}
385
386/**
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200387 * zfcp_fsf_req_complete - process completion of a FSF request
388 * @fsf_req: The FSF request that has been completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 *
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200390 * When a request has been completed either from the FCP adapter,
391 * or it has been dismissed due to a queue shutdown, this function
392 * is called to process the completion status and trigger further
393 * events related to the FSF request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 */
Swen Schilligbd63eaf2009-08-18 15:43:13 +0200395static void zfcp_fsf_req_complete(struct zfcp_fsf_req *req)
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200396{
397 if (unlikely(req->fsf_command == FSF_QTCB_UNSOLICITED_STATUS)) {
398 zfcp_fsf_status_read_handler(req);
399 return;
400 }
401
402 del_timer(&req->timer);
403 zfcp_fsf_protstatus_eval(req);
404 zfcp_fsf_fsfstatus_eval(req);
405 req->handler(req);
406
407 if (req->erp_action)
Christof Schmitt287ac012008-07-02 10:56:40 +0200408 zfcp_erp_notify(req->erp_action, 0);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200409
410 if (likely(req->status & ZFCP_STATUS_FSFREQ_CLEANUP))
411 zfcp_fsf_req_free(req);
412 else
Swen Schillig058b8642009-08-18 15:43:14 +0200413 complete(&req->completion);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200414}
415
Swen Schilligbd63eaf2009-08-18 15:43:13 +0200416/**
417 * zfcp_fsf_req_dismiss_all - dismiss all fsf requests
418 * @adapter: pointer to struct zfcp_adapter
419 *
420 * Never ever call this without shutting down the adapter first.
421 * Otherwise the adapter would continue using and corrupting s390 storage.
422 * Included BUG_ON() call to ensure this is done.
423 * ERP is supposed to be the only user of this function.
424 */
425void zfcp_fsf_req_dismiss_all(struct zfcp_adapter *adapter)
426{
427 struct zfcp_fsf_req *req, *tmp;
Swen Schilligbd63eaf2009-08-18 15:43:13 +0200428 LIST_HEAD(remove_queue);
Swen Schilligbd63eaf2009-08-18 15:43:13 +0200429
430 BUG_ON(atomic_read(&adapter->status) & ZFCP_STATUS_ADAPTER_QDIOUP);
Christof Schmittb6bd2fb2010-02-17 11:18:50 +0100431 zfcp_reqlist_move(adapter->req_list, &remove_queue);
Swen Schilligbd63eaf2009-08-18 15:43:13 +0200432
433 list_for_each_entry_safe(req, tmp, &remove_queue, list) {
434 list_del(&req->list);
435 req->status |= ZFCP_STATUS_FSFREQ_DISMISSED;
436 zfcp_fsf_req_complete(req);
437 }
438}
439
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200440static int zfcp_fsf_exchange_config_evaluate(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441{
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100442 struct fsf_qtcb_bottom_config *bottom = &req->qtcb->bottom.config;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200443 struct zfcp_adapter *adapter = req->adapter;
Andreas Herrmann13e1e1f2005-09-19 16:56:17 +0200444 struct Scsi_Host *shost = adapter->scsi_host;
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100445 struct fc_els_flogi *nsp, *plogi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100447 /* adjust pointers for missing command code */
448 nsp = (struct fc_els_flogi *) ((u8 *)&bottom->nport_serv_param
449 - sizeof(u32));
450 plogi = (struct fc_els_flogi *) ((u8 *)&bottom->plogi_payload
451 - sizeof(u32));
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200452
453 if (req->data)
454 memcpy(req->data, bottom, sizeof(*bottom));
455
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100456 fc_host_port_name(shost) = nsp->fl_wwpn;
457 fc_host_node_name(shost) = nsp->fl_wwnn;
Christof Schmitt800c0ca2009-11-24 16:54:12 +0100458 fc_host_port_id(shost) = ntoh24(bottom->s_id);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200459 fc_host_speed(shost) = bottom->fc_link_speed;
460 fc_host_supported_classes(shost) = FC_COS_CLASS2 | FC_COS_CLASS3;
461
462 adapter->hydra_version = bottom->adapter_type;
Christof Schmittfaf4cd82010-07-16 15:37:36 +0200463 adapter->timer_ticks = bottom->timer_interval & ZFCP_FSF_TIMER_INT_MASK;
Christof Schmitt8d88cf32010-06-21 10:11:33 +0200464 adapter->stat_read_buf_num = max(bottom->status_read_buf_num,
465 (u16)FSF_STATUS_READS_RECOM);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200466
467 if (fc_host_permanent_port_name(shost) == -1)
468 fc_host_permanent_port_name(shost) = fc_host_port_name(shost);
469
470 switch (bottom->fc_topology) {
471 case FSF_TOPO_P2P:
Christof Schmitt800c0ca2009-11-24 16:54:12 +0100472 adapter->peer_d_id = ntoh24(bottom->peer_d_id);
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100473 adapter->peer_wwpn = plogi->fl_wwpn;
474 adapter->peer_wwnn = plogi->fl_wwnn;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200475 fc_host_port_type(shost) = FC_PORTTYPE_PTP;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200476 break;
477 case FSF_TOPO_FABRIC:
478 fc_host_port_type(shost) = FC_PORTTYPE_NPORT;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200479 break;
480 case FSF_TOPO_AL:
481 fc_host_port_type(shost) = FC_PORTTYPE_NLPORT;
Christof Schmittdceab652009-05-15 13:18:18 +0200482 /* fall through */
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200483 default:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200484 dev_err(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200485 "Unknown or unsupported arbitrated loop "
486 "fibre channel topology detected\n");
Swen Schilligea4a3a62010-12-02 15:16:16 +0100487 zfcp_erp_adapter_shutdown(adapter, 0, "fsece_1");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200488 return -EIO;
489 }
490
Felix Beckef3eb712010-07-16 15:37:42 +0200491 zfcp_scsi_set_prot(adapter);
492
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200493 return 0;
494}
495
496static void zfcp_fsf_exchange_config_data_handler(struct zfcp_fsf_req *req)
497{
498 struct zfcp_adapter *adapter = req->adapter;
499 struct fsf_qtcb *qtcb = req->qtcb;
500 struct fsf_qtcb_bottom_config *bottom = &qtcb->bottom.config;
501 struct Scsi_Host *shost = adapter->scsi_host;
502
503 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
504 return;
505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 adapter->fsf_lic_version = bottom->lic_version;
Maxim Shchetyninaef4a982005-09-13 21:51:16 +0200507 adapter->adapter_features = bottom->adapter_features;
508 adapter->connection_features = bottom->connection_features;
6f71d9b2005-04-10 23:04:28 -0500509 adapter->peer_wwpn = 0;
510 adapter->peer_wwnn = 0;
511 adapter->peer_d_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200513 switch (qtcb->header.fsf_status) {
514 case FSF_GOOD:
515 if (zfcp_fsf_exchange_config_evaluate(req))
516 return;
Swen Schillig52ef11a2007-08-28 09:31:09 +0200517
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200518 if (bottom->max_qtcb_size < sizeof(struct fsf_qtcb)) {
519 dev_err(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200520 "FCP adapter maximum QTCB size (%d bytes) "
521 "is too small\n",
522 bottom->max_qtcb_size);
Swen Schilligea4a3a62010-12-02 15:16:16 +0100523 zfcp_erp_adapter_shutdown(adapter, 0, "fsecdh1");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200524 return;
525 }
526 atomic_set_mask(ZFCP_STATUS_ADAPTER_XCONFIG_OK,
527 &adapter->status);
528 break;
529 case FSF_EXCHANGE_CONFIG_DATA_INCOMPLETE:
Andreas Herrmann13e1e1f2005-09-19 16:56:17 +0200530 fc_host_node_name(shost) = 0;
531 fc_host_port_name(shost) = 0;
532 fc_host_port_id(shost) = 0;
533 fc_host_speed(shost) = FC_PORTSPEED_UNKNOWN;
Andreas Herrmannad757cd2006-01-13 02:26:11 +0100534 fc_host_port_type(shost) = FC_PORTTYPE_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 adapter->hydra_version = 0;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200536
Swen Schilligedaed852010-09-08 14:40:01 +0200537 zfcp_fsf_link_down_info_eval(req,
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200538 &qtcb->header.fsf_status_qual.link_down_info);
539 break;
540 default:
Swen Schilligea4a3a62010-12-02 15:16:16 +0100541 zfcp_erp_adapter_shutdown(adapter, 0, "fsecdh3");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200542 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 }
544
Maxim Shchetyninaef4a982005-09-13 21:51:16 +0200545 if (adapter->adapter_features & FSF_FEATURE_HBAAPI_MANAGEMENT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 adapter->hardware_version = bottom->hardware_version;
Andreas Herrmann13e1e1f2005-09-19 16:56:17 +0200547 memcpy(fc_host_serial_number(shost), bottom->serial_number,
548 min(FC_SERIAL_NUMBER_SIZE, 17));
549 EBCASC(fc_host_serial_number(shost),
550 min(FC_SERIAL_NUMBER_SIZE, 17));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 }
552
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200553 if (FSF_QTCB_CURRENT_VERSION < bottom->low_qtcb_version) {
Christof Schmitt553448f2008-06-10 18:20:58 +0200554 dev_err(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200555 "The FCP adapter only supports newer "
556 "control block versions\n");
Swen Schilligea4a3a62010-12-02 15:16:16 +0100557 zfcp_erp_adapter_shutdown(adapter, 0, "fsecdh4");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200558 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200560 if (FSF_QTCB_CURRENT_VERSION > bottom->high_qtcb_version) {
Christof Schmitt553448f2008-06-10 18:20:58 +0200561 dev_err(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200562 "The FCP adapter only supports older "
563 "control block versions\n");
Swen Schilligea4a3a62010-12-02 15:16:16 +0100564 zfcp_erp_adapter_shutdown(adapter, 0, "fsecdh5");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566}
567
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200568static void zfcp_fsf_exchange_port_evaluate(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569{
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200570 struct zfcp_adapter *adapter = req->adapter;
571 struct fsf_qtcb_bottom_port *bottom = &req->qtcb->bottom.port;
572 struct Scsi_Host *shost = adapter->scsi_host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200574 if (req->data)
575 memcpy(req->data, bottom, sizeof(*bottom));
Andreas Herrmann2f8f3ed2006-02-11 01:41:50 +0100576
Christof Schmitt02829852009-03-02 13:09:06 +0100577 if (adapter->connection_features & FSF_FEATURE_NPIV_MODE) {
Andreas Herrmann2f8f3ed2006-02-11 01:41:50 +0100578 fc_host_permanent_port_name(shost) = bottom->wwpn;
Christof Schmitt02829852009-03-02 13:09:06 +0100579 fc_host_port_type(shost) = FC_PORTTYPE_NPIV;
580 } else
Andreas Herrmann2f8f3ed2006-02-11 01:41:50 +0100581 fc_host_permanent_port_name(shost) = fc_host_port_name(shost);
582 fc_host_maxframe_size(shost) = bottom->maximum_frame_size;
583 fc_host_supported_speeds(shost) = bottom->supported_speed;
Christof Schmitt2d8e62b2010-02-17 11:18:58 +0100584 memcpy(fc_host_supported_fc4s(shost), bottom->supported_fc4_types,
585 FC_FC4_LIST_SIZE);
586 memcpy(fc_host_active_fc4s(shost), bottom->active_fc4_types,
587 FC_FC4_LIST_SIZE);
Andreas Herrmann2f8f3ed2006-02-11 01:41:50 +0100588}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200590static void zfcp_fsf_exchange_port_data_handler(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591{
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200592 struct fsf_qtcb *qtcb = req->qtcb;
Andreas Herrmann2f8f3ed2006-02-11 01:41:50 +0100593
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200594 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 return;
596
Maxim Shchetyninaef4a982005-09-13 21:51:16 +0200597 switch (qtcb->header.fsf_status) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200598 case FSF_GOOD:
599 zfcp_fsf_exchange_port_evaluate(req);
Maxim Shchetyninaef4a982005-09-13 21:51:16 +0200600 break;
Maxim Shchetyninaef4a982005-09-13 21:51:16 +0200601 case FSF_EXCHANGE_CONFIG_DATA_INCOMPLETE:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200602 zfcp_fsf_exchange_port_evaluate(req);
Swen Schilligedaed852010-09-08 14:40:01 +0200603 zfcp_fsf_link_down_info_eval(req,
Maxim Shchetyninaef4a982005-09-13 21:51:16 +0200604 &qtcb->header.fsf_status_qual.link_down_info);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200605 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 }
607}
608
Swen Schilliga4623c42009-08-18 15:43:15 +0200609static struct zfcp_fsf_req *zfcp_fsf_alloc(mempool_t *pool)
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200610{
611 struct zfcp_fsf_req *req;
Swen Schilliga4623c42009-08-18 15:43:15 +0200612
613 if (likely(pool))
614 req = mempool_alloc(pool, GFP_ATOMIC);
615 else
616 req = kmalloc(sizeof(*req), GFP_ATOMIC);
617
618 if (unlikely(!req))
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200619 return NULL;
Swen Schilliga4623c42009-08-18 15:43:15 +0200620
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200621 memset(req, 0, sizeof(*req));
Christof Schmitt88f2a972008-11-04 16:35:07 +0100622 req->pool = pool;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200623 return req;
624}
625
Swen Schilliga4623c42009-08-18 15:43:15 +0200626static struct fsf_qtcb *zfcp_qtcb_alloc(mempool_t *pool)
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200627{
Swen Schilliga4623c42009-08-18 15:43:15 +0200628 struct fsf_qtcb *qtcb;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200629
630 if (likely(pool))
631 qtcb = mempool_alloc(pool, GFP_ATOMIC);
632 else
Christof Schmitt259afe22011-02-22 19:54:44 +0100633 qtcb = kmem_cache_alloc(zfcp_fsf_qtcb_cache, GFP_ATOMIC);
Swen Schilliga4623c42009-08-18 15:43:15 +0200634
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200635 if (unlikely(!qtcb))
636 return NULL;
637
638 memset(qtcb, 0, sizeof(*qtcb));
Swen Schilliga4623c42009-08-18 15:43:15 +0200639 return qtcb;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200640}
641
Swen Schillig564e1c82009-08-18 15:43:19 +0200642static struct zfcp_fsf_req *zfcp_fsf_req_create(struct zfcp_qdio *qdio,
Jan Glauber3ec908782011-06-06 14:14:40 +0200643 u32 fsf_cmd, u8 sbtype,
Christof Schmitt1674b402010-04-30 18:09:34 +0200644 mempool_t *pool)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645{
Swen Schillig564e1c82009-08-18 15:43:19 +0200646 struct zfcp_adapter *adapter = qdio->adapter;
Swen Schilliga4623c42009-08-18 15:43:15 +0200647 struct zfcp_fsf_req *req = zfcp_fsf_alloc(pool);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200648
649 if (unlikely(!req))
Christof Schmitt1e9b1642009-07-13 15:06:04 +0200650 return ERR_PTR(-ENOMEM);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200651
652 if (adapter->req_no == 0)
653 adapter->req_no++;
654
655 INIT_LIST_HEAD(&req->list);
656 init_timer(&req->timer);
Swen Schillig058b8642009-08-18 15:43:14 +0200657 init_completion(&req->completion);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200658
659 req->adapter = adapter;
660 req->fsf_command = fsf_cmd;
Christof Schmitt52bfb552009-03-02 13:08:58 +0100661 req->req_id = adapter->req_no;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200662
Swen Schilliga4623c42009-08-18 15:43:15 +0200663 if (likely(fsf_cmd != FSF_QTCB_UNSOLICITED_STATUS)) {
664 if (likely(pool))
665 req->qtcb = zfcp_qtcb_alloc(adapter->pool.qtcb_pool);
666 else
667 req->qtcb = zfcp_qtcb_alloc(NULL);
668
669 if (unlikely(!req->qtcb)) {
670 zfcp_fsf_req_free(req);
671 return ERR_PTR(-ENOMEM);
672 }
673
Christof Schmitt5bdecd22010-02-17 11:18:55 +0100674 req->seq_no = adapter->fsf_req_seq_no;
Swen Schillig564e1c82009-08-18 15:43:19 +0200675 req->qtcb->prefix.req_seq_no = adapter->fsf_req_seq_no;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200676 req->qtcb->prefix.req_id = req->req_id;
677 req->qtcb->prefix.ulp_info = 26;
678 req->qtcb->prefix.qtcb_type = fsf_qtcb_type[req->fsf_command];
679 req->qtcb->prefix.qtcb_version = FSF_QTCB_CURRENT_VERSION;
680 req->qtcb->header.req_handle = req->req_id;
681 req->qtcb->header.fsf_command = req->fsf_command;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200682 }
683
Christof Schmitt1674b402010-04-30 18:09:34 +0200684 zfcp_qdio_req_init(adapter->qdio, &req->qdio_req, req->req_id, sbtype,
685 req->qtcb, sizeof(struct fsf_qtcb));
686
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200687 return req;
688}
689
690static int zfcp_fsf_req_send(struct zfcp_fsf_req *req)
691{
692 struct zfcp_adapter *adapter = req->adapter;
Swen Schillig564e1c82009-08-18 15:43:19 +0200693 struct zfcp_qdio *qdio = adapter->qdio;
Christof Schmittb6bd2fb2010-02-17 11:18:50 +0100694 int with_qtcb = (req->qtcb != NULL);
Christof Schmitte60a6d62010-02-17 11:18:49 +0100695 int req_id = req->req_id;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200696
Christof Schmittb6bd2fb2010-02-17 11:18:50 +0100697 zfcp_reqlist_add(adapter->req_list, req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200698
Swen Schillig706eca42010-07-16 15:37:38 +0200699 req->qdio_req.qdio_outb_usage = atomic_read(&qdio->req_q_free);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200700 req->issued = get_clock();
Christof Schmitt34c2b712010-02-17 11:18:59 +0100701 if (zfcp_qdio_send(qdio, &req->qdio_req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200702 del_timer(&req->timer);
Christof Schmitt37651382008-11-04 16:35:08 +0100703 /* lookup request again, list might have changed */
Christof Schmittb6bd2fb2010-02-17 11:18:50 +0100704 zfcp_reqlist_find_rm(adapter->req_list, req_id);
Swen Schilligea4a3a62010-12-02 15:16:16 +0100705 zfcp_erp_adapter_reopen(adapter, 0, "fsrs__1");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200706 return -EIO;
707 }
708
709 /* Don't increase for unsolicited status */
Martin Petermann135ea132009-04-17 15:08:01 +0200710 if (with_qtcb)
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200711 adapter->fsf_req_seq_no++;
Christof Schmitt52bfb552009-03-02 13:08:58 +0100712 adapter->req_no++;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200713
714 return 0;
715}
716
717/**
718 * zfcp_fsf_status_read - send status read request
719 * @adapter: pointer to struct zfcp_adapter
720 * @req_flags: request flags
721 * Returns: 0 on success, ERROR otherwise
722 */
Swen Schillig564e1c82009-08-18 15:43:19 +0200723int zfcp_fsf_status_read(struct zfcp_qdio *qdio)
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200724{
Swen Schillig564e1c82009-08-18 15:43:19 +0200725 struct zfcp_adapter *adapter = qdio->adapter;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200726 struct zfcp_fsf_req *req;
727 struct fsf_status_read_buffer *sr_buf;
Christof Schmittc7b279a2011-02-22 19:54:40 +0100728 struct page *page;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200729 int retval = -EIO;
730
Christof Schmitt44a24cb2010-09-08 14:39:57 +0200731 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +0200732 if (zfcp_qdio_sbal_get(qdio))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
Christof Schmitt1674b402010-04-30 18:09:34 +0200735 req = zfcp_fsf_req_create(qdio, FSF_QTCB_UNSOLICITED_STATUS, 0,
Swen Schilliga4623c42009-08-18 15:43:15 +0200736 adapter->pool.status_read_req);
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +0200737 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200738 retval = PTR_ERR(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 goto out;
740 }
741
Christof Schmittc7b279a2011-02-22 19:54:40 +0100742 page = mempool_alloc(adapter->pool.sr_data, GFP_ATOMIC);
743 if (!page) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200744 retval = -ENOMEM;
745 goto failed_buf;
746 }
Christof Schmittc7b279a2011-02-22 19:54:40 +0100747 sr_buf = page_address(page);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200748 memset(sr_buf, 0, sizeof(*sr_buf));
749 req->data = sr_buf;
Christof Schmitt1674b402010-04-30 18:09:34 +0200750
751 zfcp_qdio_fill_next(qdio, &req->qdio_req, sr_buf, sizeof(*sr_buf));
752 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200753
754 retval = zfcp_fsf_req_send(req);
755 if (retval)
756 goto failed_req_send;
757
758 goto out;
759
760failed_req_send:
Swen Schilliga54ca0f2010-12-02 15:16:14 +0100761 req->data = NULL;
Christof Schmittc7b279a2011-02-22 19:54:40 +0100762 mempool_free(virt_to_page(sr_buf), adapter->pool.sr_data);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200763failed_buf:
Swen Schilliga54ca0f2010-12-02 15:16:14 +0100764 zfcp_dbf_hba_fsf_uss("fssr__1", req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200765 zfcp_fsf_req_free(req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200766out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +0200767 spin_unlock_irq(&qdio->req_q_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 return retval;
769}
770
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200771static void zfcp_fsf_abort_fcp_command_handler(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772{
Christof Schmittb62a8d92010-09-08 14:39:55 +0200773 struct scsi_device *sdev = req->data;
774 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200775 union fsf_status_qual *fsq = &req->qtcb->header.fsf_status_qual;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200777 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
778 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200780 switch (req->qtcb->header.fsf_status) {
781 case FSF_PORT_HANDLE_NOT_VALID:
782 if (fsq->word[0] == fsq->word[1]) {
Christof Schmittb62a8d92010-09-08 14:39:55 +0200783 zfcp_erp_adapter_reopen(zfcp_sdev->port->adapter, 0,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100784 "fsafch1");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200785 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
786 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 break;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200788 case FSF_LUN_HANDLE_NOT_VALID:
789 if (fsq->word[0] == fsq->word[1]) {
Swen Schilligea4a3a62010-12-02 15:16:16 +0100790 zfcp_erp_port_reopen(zfcp_sdev->port, 0, "fsafch2");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200791 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
792 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 break;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200794 case FSF_FCP_COMMAND_DOES_NOT_EXIST:
795 req->status |= ZFCP_STATUS_FSFREQ_ABORTNOTNEEDED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 break;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200797 case FSF_PORT_BOXED:
Swen Schilligedaed852010-09-08 14:40:01 +0200798 zfcp_erp_set_port_status(zfcp_sdev->port,
799 ZFCP_STATUS_COMMON_ACCESS_BOXED);
800 zfcp_erp_port_reopen(zfcp_sdev->port,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100801 ZFCP_STATUS_COMMON_ERP_FAILED, "fsafch3");
Christof Schmitt4c571c62009-11-24 16:54:15 +0100802 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200803 break;
804 case FSF_LUN_BOXED:
Swen Schilligedaed852010-09-08 14:40:01 +0200805 zfcp_erp_set_lun_status(sdev, ZFCP_STATUS_COMMON_ACCESS_BOXED);
806 zfcp_erp_lun_reopen(sdev, ZFCP_STATUS_COMMON_ERP_FAILED,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100807 "fsafch4");
Christof Schmitt4c571c62009-11-24 16:54:15 +0100808 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200809 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 case FSF_ADAPTER_STATUS_AVAILABLE:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200811 switch (fsq->word[0]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
Christof Schmittb62a8d92010-09-08 14:39:55 +0200813 zfcp_fc_test_link(zfcp_sdev->port);
Christof Schmittdceab652009-05-15 13:18:18 +0200814 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200816 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 break;
818 }
819 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 case FSF_GOOD:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200821 req->status |= ZFCP_STATUS_FSFREQ_ABORTSUCCEEDED;
822 break;
823 }
824}
825
826/**
Christof Schmittb62a8d92010-09-08 14:39:55 +0200827 * zfcp_fsf_abort_fcp_cmnd - abort running SCSI command
828 * @scmnd: The SCSI command to abort
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200829 * Returns: pointer to struct zfcp_fsf_req
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200830 */
831
Christof Schmittb62a8d92010-09-08 14:39:55 +0200832struct zfcp_fsf_req *zfcp_fsf_abort_fcp_cmnd(struct scsi_cmnd *scmnd)
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200833{
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200834 struct zfcp_fsf_req *req = NULL;
Christof Schmittb62a8d92010-09-08 14:39:55 +0200835 struct scsi_device *sdev = scmnd->device;
836 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
837 struct zfcp_qdio *qdio = zfcp_sdev->port->adapter->qdio;
838 unsigned long old_req_id = (unsigned long) scmnd->host_scribble;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200839
Christof Schmitt44a24cb2010-09-08 14:39:57 +0200840 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +0200841 if (zfcp_qdio_sbal_get(qdio))
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200842 goto out;
Swen Schillig564e1c82009-08-18 15:43:19 +0200843 req = zfcp_fsf_req_create(qdio, FSF_QTCB_ABORT_FCP_CMND,
Jan Glauber3ec908782011-06-06 14:14:40 +0200844 SBAL_SFLAGS0_TYPE_READ,
Swen Schillig564e1c82009-08-18 15:43:19 +0200845 qdio->adapter->pool.scsi_abort);
Swen Schillig633528c2008-11-26 18:07:37 +0100846 if (IS_ERR(req)) {
847 req = NULL;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200848 goto out;
Swen Schillig633528c2008-11-26 18:07:37 +0100849 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200850
Christof Schmittb62a8d92010-09-08 14:39:55 +0200851 if (unlikely(!(atomic_read(&zfcp_sdev->status) &
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200852 ZFCP_STATUS_COMMON_UNBLOCKED)))
853 goto out_error_free;
854
Christof Schmitt1674b402010-04-30 18:09:34 +0200855 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200856
Swen Schillig6fbf25e2010-11-17 14:23:41 +0100857 req->data = sdev;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200858 req->handler = zfcp_fsf_abort_fcp_command_handler;
Christof Schmittb62a8d92010-09-08 14:39:55 +0200859 req->qtcb->header.lun_handle = zfcp_sdev->lun_handle;
860 req->qtcb->header.port_handle = zfcp_sdev->port->handle;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200861 req->qtcb->bottom.support.req_handle = (u64) old_req_id;
862
863 zfcp_fsf_start_timer(req, ZFCP_SCSI_ER_TIMEOUT);
864 if (!zfcp_fsf_req_send(req))
865 goto out;
866
867out_error_free:
868 zfcp_fsf_req_free(req);
869 req = NULL;
870out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +0200871 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200872 return req;
873}
874
875static void zfcp_fsf_send_ct_handler(struct zfcp_fsf_req *req)
876{
877 struct zfcp_adapter *adapter = req->adapter;
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100878 struct zfcp_fsf_ct_els *ct = req->data;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200879 struct fsf_qtcb_header *header = &req->qtcb->header;
880
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100881 ct->status = -EINVAL;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200882
883 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
884 goto skip_fsfstatus;
885
886 switch (header->fsf_status) {
887 case FSF_GOOD:
Swen Schillig2c55b752010-12-02 15:16:13 +0100888 zfcp_dbf_san_res("fsscth1", req);
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100889 ct->status = 0;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200890 break;
891 case FSF_SERVICE_CLASS_NOT_SUPPORTED:
892 zfcp_fsf_class_not_supp(req);
893 break;
894 case FSF_ADAPTER_STATUS_AVAILABLE:
895 switch (header->fsf_status_qual.word[0]){
896 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200897 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
898 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
899 break;
900 }
901 break;
902 case FSF_ACCESS_DENIED:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200903 break;
904 case FSF_PORT_BOXED:
Christof Schmitt4c571c62009-11-24 16:54:15 +0100905 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200906 break;
907 case FSF_PORT_HANDLE_NOT_VALID:
Swen Schilligea4a3a62010-12-02 15:16:16 +0100908 zfcp_erp_adapter_reopen(adapter, 0, "fsscth1");
Christof Schmittdceab652009-05-15 13:18:18 +0200909 /* fall through */
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200910 case FSF_GENERIC_COMMAND_REJECTED:
911 case FSF_PAYLOAD_SIZE_MISMATCH:
912 case FSF_REQUEST_SIZE_TOO_LARGE:
913 case FSF_RESPONSE_SIZE_TOO_LARGE:
914 case FSF_SBAL_MISMATCH:
915 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
916 break;
917 }
918
919skip_fsfstatus:
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100920 if (ct->handler)
921 ct->handler(ct->handler_data);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200922}
923
Christof Schmitt1674b402010-04-30 18:09:34 +0200924static void zfcp_fsf_setup_ct_els_unchained(struct zfcp_qdio *qdio,
925 struct zfcp_qdio_req *q_req,
Christof Schmitt426f6052009-07-13 15:06:06 +0200926 struct scatterlist *sg_req,
927 struct scatterlist *sg_resp)
928{
Christof Schmitt1674b402010-04-30 18:09:34 +0200929 zfcp_qdio_fill_next(qdio, q_req, sg_virt(sg_req), sg_req->length);
930 zfcp_qdio_fill_next(qdio, q_req, sg_virt(sg_resp), sg_resp->length);
931 zfcp_qdio_set_sbale_last(qdio, q_req);
Christof Schmitt426f6052009-07-13 15:06:06 +0200932}
933
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100934static int zfcp_fsf_setup_ct_els_sbals(struct zfcp_fsf_req *req,
935 struct scatterlist *sg_req,
Swen Schillig01b04752010-07-16 15:37:37 +0200936 struct scatterlist *sg_resp)
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200937{
Swen Schillig42428f72009-08-18 15:43:18 +0200938 struct zfcp_adapter *adapter = req->adapter;
Swen Schillig42428f72009-08-18 15:43:18 +0200939 u32 feat = adapter->adapter_features;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200940 int bytes;
941
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100942 if (!(feat & FSF_FEATURE_ELS_CT_CHAINED_SBALS)) {
Christof Schmitt1674b402010-04-30 18:09:34 +0200943 if (!zfcp_qdio_sg_one_sbale(sg_req) ||
944 !zfcp_qdio_sg_one_sbale(sg_resp))
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100945 return -EOPNOTSUPP;
946
Christof Schmitt1674b402010-04-30 18:09:34 +0200947 zfcp_fsf_setup_ct_els_unchained(adapter->qdio, &req->qdio_req,
948 sg_req, sg_resp);
Christof Schmitt426f6052009-07-13 15:06:06 +0200949 return 0;
950 }
951
952 /* use single, unchained SBAL if it can hold the request */
Swen Schillig30b67772010-06-21 10:11:31 +0200953 if (zfcp_qdio_sg_one_sbale(sg_req) && zfcp_qdio_sg_one_sbale(sg_resp)) {
Christof Schmitt1674b402010-04-30 18:09:34 +0200954 zfcp_fsf_setup_ct_els_unchained(adapter->qdio, &req->qdio_req,
955 sg_req, sg_resp);
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100956 return 0;
957 }
958
Swen Schillig01b04752010-07-16 15:37:37 +0200959 bytes = zfcp_qdio_sbals_from_sg(adapter->qdio, &req->qdio_req, sg_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200960 if (bytes <= 0)
Christof Schmitt9072df42009-07-13 15:06:07 +0200961 return -EIO;
Felix Beckef3eb712010-07-16 15:37:42 +0200962 zfcp_qdio_set_sbale_last(adapter->qdio, &req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200963 req->qtcb->bottom.support.req_buf_length = bytes;
Christof Schmitt1674b402010-04-30 18:09:34 +0200964 zfcp_qdio_skip_to_last_sbale(&req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200965
Christof Schmitt34c2b712010-02-17 11:18:59 +0100966 bytes = zfcp_qdio_sbals_from_sg(adapter->qdio, &req->qdio_req,
Swen Schillig01b04752010-07-16 15:37:37 +0200967 sg_resp);
Christof Schmittb1a58982009-09-24 10:23:21 +0200968 req->qtcb->bottom.support.resp_buf_length = bytes;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200969 if (bytes <= 0)
Christof Schmitt9072df42009-07-13 15:06:07 +0200970 return -EIO;
Felix Beckef3eb712010-07-16 15:37:42 +0200971 zfcp_qdio_set_sbale_last(adapter->qdio, &req->qdio_req);
Christof Schmitt98fc4d52009-08-18 15:43:26 +0200972
Christof Schmittb1a58982009-09-24 10:23:21 +0200973 return 0;
974}
975
976static int zfcp_fsf_setup_ct_els(struct zfcp_fsf_req *req,
977 struct scatterlist *sg_req,
978 struct scatterlist *sg_resp,
Swen Schillig01b04752010-07-16 15:37:37 +0200979 unsigned int timeout)
Christof Schmittb1a58982009-09-24 10:23:21 +0200980{
981 int ret;
982
Swen Schillig01b04752010-07-16 15:37:37 +0200983 ret = zfcp_fsf_setup_ct_els_sbals(req, sg_req, sg_resp);
Christof Schmittb1a58982009-09-24 10:23:21 +0200984 if (ret)
985 return ret;
986
Christof Schmitt98fc4d52009-08-18 15:43:26 +0200987 /* common settings for ct/gs and els requests */
Swen Schillig51375ee2010-01-14 17:19:02 +0100988 if (timeout > 255)
989 timeout = 255; /* max value accepted by hardware */
Christof Schmitt98fc4d52009-08-18 15:43:26 +0200990 req->qtcb->bottom.support.service_class = FSF_CLASS_3;
Swen Schillig51375ee2010-01-14 17:19:02 +0100991 req->qtcb->bottom.support.timeout = timeout;
992 zfcp_fsf_start_timer(req, (timeout + 10) * HZ);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200993
994 return 0;
995}
996
997/**
998 * zfcp_fsf_send_ct - initiate a Generic Service request (FC-GS)
999 * @ct: pointer to struct zfcp_send_ct with data for request
1000 * @pool: if non-null this mempool is used to allocate struct zfcp_fsf_req
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001001 */
Christof Schmitt7c7dc192009-11-24 16:54:13 +01001002int zfcp_fsf_send_ct(struct zfcp_fc_wka_port *wka_port,
Swen Schillig51375ee2010-01-14 17:19:02 +01001003 struct zfcp_fsf_ct_els *ct, mempool_t *pool,
1004 unsigned int timeout)
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001005{
Swen Schillig564e1c82009-08-18 15:43:19 +02001006 struct zfcp_qdio *qdio = wka_port->adapter->qdio;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001007 struct zfcp_fsf_req *req;
1008 int ret = -EIO;
1009
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001010 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001011 if (zfcp_qdio_sbal_get(qdio))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001012 goto out;
1013
Christof Schmitt1674b402010-04-30 18:09:34 +02001014 req = zfcp_fsf_req_create(qdio, FSF_QTCB_SEND_GENERIC,
Jan Glauber3ec908782011-06-06 14:14:40 +02001015 SBAL_SFLAGS0_TYPE_WRITE_READ, pool);
Swen Schillig09a46c62009-08-18 15:43:16 +02001016
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001017 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001018 ret = PTR_ERR(req);
1019 goto out;
1020 }
1021
Swen Schillig09a46c62009-08-18 15:43:16 +02001022 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Swen Schillig01b04752010-07-16 15:37:37 +02001023 ret = zfcp_fsf_setup_ct_els(req, ct->req, ct->resp, timeout);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001024 if (ret)
1025 goto failed_send;
1026
1027 req->handler = zfcp_fsf_send_ct_handler;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001028 req->qtcb->header.port_handle = wka_port->handle;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001029 req->data = ct;
1030
Swen Schillig2c55b752010-12-02 15:16:13 +01001031 zfcp_dbf_san_req("fssct_1", req, wka_port->d_id);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001032
1033 ret = zfcp_fsf_req_send(req);
1034 if (ret)
1035 goto failed_send;
1036
1037 goto out;
1038
1039failed_send:
1040 zfcp_fsf_req_free(req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001041out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001042 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001043 return ret;
1044}
1045
1046static void zfcp_fsf_send_els_handler(struct zfcp_fsf_req *req)
1047{
Christof Schmitt7c7dc192009-11-24 16:54:13 +01001048 struct zfcp_fsf_ct_els *send_els = req->data;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001049 struct zfcp_port *port = send_els->port;
1050 struct fsf_qtcb_header *header = &req->qtcb->header;
1051
1052 send_els->status = -EINVAL;
1053
1054 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
1055 goto skip_fsfstatus;
1056
1057 switch (header->fsf_status) {
1058 case FSF_GOOD:
Swen Schillig2c55b752010-12-02 15:16:13 +01001059 zfcp_dbf_san_res("fsselh1", req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001060 send_els->status = 0;
1061 break;
1062 case FSF_SERVICE_CLASS_NOT_SUPPORTED:
1063 zfcp_fsf_class_not_supp(req);
1064 break;
1065 case FSF_ADAPTER_STATUS_AVAILABLE:
1066 switch (header->fsf_status_qual.word[0]){
1067 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001068 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
1069 case FSF_SQ_RETRY_IF_POSSIBLE:
1070 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1071 break;
1072 }
1073 break;
1074 case FSF_ELS_COMMAND_REJECTED:
1075 case FSF_PAYLOAD_SIZE_MISMATCH:
1076 case FSF_REQUEST_SIZE_TOO_LARGE:
1077 case FSF_RESPONSE_SIZE_TOO_LARGE:
1078 break;
1079 case FSF_ACCESS_DENIED:
Christof Schmitta1ca4832010-09-08 14:39:59 +02001080 if (port) {
1081 zfcp_cfdc_port_denied(port, &header->fsf_status_qual);
1082 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1083 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001084 break;
1085 case FSF_SBAL_MISMATCH:
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001086 /* should never occur, avoided in zfcp_fsf_send_els */
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001087 /* fall through */
1088 default:
1089 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1090 break;
1091 }
1092skip_fsfstatus:
1093 if (send_els->handler)
1094 send_els->handler(send_els->handler_data);
1095}
1096
1097/**
1098 * zfcp_fsf_send_els - initiate an ELS command (FC-FS)
1099 * @els: pointer to struct zfcp_send_els with data for the command
1100 */
Christof Schmitt7c7dc192009-11-24 16:54:13 +01001101int zfcp_fsf_send_els(struct zfcp_adapter *adapter, u32 d_id,
Swen Schillig51375ee2010-01-14 17:19:02 +01001102 struct zfcp_fsf_ct_els *els, unsigned int timeout)
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001103{
1104 struct zfcp_fsf_req *req;
Christof Schmitt7c7dc192009-11-24 16:54:13 +01001105 struct zfcp_qdio *qdio = adapter->qdio;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001106 int ret = -EIO;
1107
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001108 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001109 if (zfcp_qdio_sbal_get(qdio))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001110 goto out;
Swen Schillig09a46c62009-08-18 15:43:16 +02001111
Christof Schmitt1674b402010-04-30 18:09:34 +02001112 req = zfcp_fsf_req_create(qdio, FSF_QTCB_SEND_ELS,
Jan Glauber3ec908782011-06-06 14:14:40 +02001113 SBAL_SFLAGS0_TYPE_WRITE_READ, NULL);
Swen Schillig09a46c62009-08-18 15:43:16 +02001114
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001115 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001116 ret = PTR_ERR(req);
1117 goto out;
1118 }
1119
Swen Schillig09a46c62009-08-18 15:43:16 +02001120 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Swen Schillig01b04752010-07-16 15:37:37 +02001121
1122 zfcp_qdio_sbal_limit(qdio, &req->qdio_req, 2);
1123
1124 ret = zfcp_fsf_setup_ct_els(req, els->req, els->resp, timeout);
Swen Schillig44cc76f2008-10-01 12:42:16 +02001125
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001126 if (ret)
1127 goto failed_send;
1128
Christof Schmitt7c7dc192009-11-24 16:54:13 +01001129 hton24(req->qtcb->bottom.support.d_id, d_id);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001130 req->handler = zfcp_fsf_send_els_handler;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001131 req->data = els;
1132
Swen Schillig2c55b752010-12-02 15:16:13 +01001133 zfcp_dbf_san_req("fssels1", req, d_id);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001134
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001135 ret = zfcp_fsf_req_send(req);
1136 if (ret)
1137 goto failed_send;
1138
1139 goto out;
1140
1141failed_send:
1142 zfcp_fsf_req_free(req);
1143out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001144 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001145 return ret;
1146}
1147
1148int zfcp_fsf_exchange_config_data(struct zfcp_erp_action *erp_action)
1149{
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001150 struct zfcp_fsf_req *req;
Swen Schillig564e1c82009-08-18 15:43:19 +02001151 struct zfcp_qdio *qdio = erp_action->adapter->qdio;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001152 int retval = -EIO;
1153
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001154 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001155 if (zfcp_qdio_sbal_get(qdio))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001156 goto out;
Swen Schillig09a46c62009-08-18 15:43:16 +02001157
Swen Schillig564e1c82009-08-18 15:43:19 +02001158 req = zfcp_fsf_req_create(qdio, FSF_QTCB_EXCHANGE_CONFIG_DATA,
Jan Glauber3ec908782011-06-06 14:14:40 +02001159 SBAL_SFLAGS0_TYPE_READ,
Swen Schillig564e1c82009-08-18 15:43:19 +02001160 qdio->adapter->pool.erp_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02001161
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001162 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001163 retval = PTR_ERR(req);
1164 goto out;
1165 }
1166
Swen Schillig09a46c62009-08-18 15:43:16 +02001167 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Christof Schmitt1674b402010-04-30 18:09:34 +02001168 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001169
1170 req->qtcb->bottom.config.feature_selection =
1171 FSF_FEATURE_CFDC |
1172 FSF_FEATURE_LUN_SHARING |
1173 FSF_FEATURE_NOTIFICATION_LOST |
1174 FSF_FEATURE_UPDATE_ALERT;
1175 req->erp_action = erp_action;
1176 req->handler = zfcp_fsf_exchange_config_data_handler;
Christof Schmitte60a6d62010-02-17 11:18:49 +01001177 erp_action->fsf_req_id = req->req_id;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001178
Christof Schmitt287ac012008-07-02 10:56:40 +02001179 zfcp_fsf_start_erp_timer(req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001180 retval = zfcp_fsf_req_send(req);
1181 if (retval) {
1182 zfcp_fsf_req_free(req);
Christof Schmitte60a6d62010-02-17 11:18:49 +01001183 erp_action->fsf_req_id = 0;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001184 }
1185out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001186 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001187 return retval;
1188}
1189
Swen Schillig564e1c82009-08-18 15:43:19 +02001190int zfcp_fsf_exchange_config_data_sync(struct zfcp_qdio *qdio,
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001191 struct fsf_qtcb_bottom_config *data)
1192{
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001193 struct zfcp_fsf_req *req = NULL;
1194 int retval = -EIO;
1195
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001196 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001197 if (zfcp_qdio_sbal_get(qdio))
Christof Schmittada81b72009-04-17 15:08:03 +02001198 goto out_unlock;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001199
Christof Schmitt1674b402010-04-30 18:09:34 +02001200 req = zfcp_fsf_req_create(qdio, FSF_QTCB_EXCHANGE_CONFIG_DATA,
Jan Glauber3ec908782011-06-06 14:14:40 +02001201 SBAL_SFLAGS0_TYPE_READ, NULL);
Swen Schillig09a46c62009-08-18 15:43:16 +02001202
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001203 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001204 retval = PTR_ERR(req);
Christof Schmittada81b72009-04-17 15:08:03 +02001205 goto out_unlock;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001206 }
1207
Christof Schmitt1674b402010-04-30 18:09:34 +02001208 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001209 req->handler = zfcp_fsf_exchange_config_data_handler;
1210
1211 req->qtcb->bottom.config.feature_selection =
1212 FSF_FEATURE_CFDC |
1213 FSF_FEATURE_LUN_SHARING |
1214 FSF_FEATURE_NOTIFICATION_LOST |
1215 FSF_FEATURE_UPDATE_ALERT;
1216
1217 if (data)
1218 req->data = data;
1219
1220 zfcp_fsf_start_timer(req, ZFCP_FSF_REQUEST_TIMEOUT);
1221 retval = zfcp_fsf_req_send(req);
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001222 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001223 if (!retval)
Swen Schillig058b8642009-08-18 15:43:14 +02001224 wait_for_completion(&req->completion);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001225
1226 zfcp_fsf_req_free(req);
Christof Schmittada81b72009-04-17 15:08:03 +02001227 return retval;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001228
Christof Schmittada81b72009-04-17 15:08:03 +02001229out_unlock:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001230 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001231 return retval;
1232}
1233
1234/**
1235 * zfcp_fsf_exchange_port_data - request information about local port
1236 * @erp_action: ERP action for the adapter for which port data is requested
1237 * Returns: 0 on success, error otherwise
1238 */
1239int zfcp_fsf_exchange_port_data(struct zfcp_erp_action *erp_action)
1240{
Swen Schillig564e1c82009-08-18 15:43:19 +02001241 struct zfcp_qdio *qdio = erp_action->adapter->qdio;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001242 struct zfcp_fsf_req *req;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001243 int retval = -EIO;
1244
Swen Schillig564e1c82009-08-18 15:43:19 +02001245 if (!(qdio->adapter->adapter_features & FSF_FEATURE_HBAAPI_MANAGEMENT))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001246 return -EOPNOTSUPP;
1247
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001248 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001249 if (zfcp_qdio_sbal_get(qdio))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001250 goto out;
Swen Schillig09a46c62009-08-18 15:43:16 +02001251
Swen Schillig564e1c82009-08-18 15:43:19 +02001252 req = zfcp_fsf_req_create(qdio, FSF_QTCB_EXCHANGE_PORT_DATA,
Jan Glauber3ec908782011-06-06 14:14:40 +02001253 SBAL_SFLAGS0_TYPE_READ,
Swen Schillig564e1c82009-08-18 15:43:19 +02001254 qdio->adapter->pool.erp_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02001255
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001256 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001257 retval = PTR_ERR(req);
1258 goto out;
1259 }
1260
Swen Schillig09a46c62009-08-18 15:43:16 +02001261 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Christof Schmitt1674b402010-04-30 18:09:34 +02001262 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001263
1264 req->handler = zfcp_fsf_exchange_port_data_handler;
1265 req->erp_action = erp_action;
Christof Schmitte60a6d62010-02-17 11:18:49 +01001266 erp_action->fsf_req_id = req->req_id;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001267
Christof Schmitt287ac012008-07-02 10:56:40 +02001268 zfcp_fsf_start_erp_timer(req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001269 retval = zfcp_fsf_req_send(req);
1270 if (retval) {
1271 zfcp_fsf_req_free(req);
Christof Schmitte60a6d62010-02-17 11:18:49 +01001272 erp_action->fsf_req_id = 0;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001273 }
1274out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001275 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001276 return retval;
1277}
1278
1279/**
1280 * zfcp_fsf_exchange_port_data_sync - request information about local port
Swen Schillig564e1c82009-08-18 15:43:19 +02001281 * @qdio: pointer to struct zfcp_qdio
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001282 * @data: pointer to struct fsf_qtcb_bottom_port
1283 * Returns: 0 on success, error otherwise
1284 */
Swen Schillig564e1c82009-08-18 15:43:19 +02001285int zfcp_fsf_exchange_port_data_sync(struct zfcp_qdio *qdio,
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001286 struct fsf_qtcb_bottom_port *data)
1287{
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001288 struct zfcp_fsf_req *req = NULL;
1289 int retval = -EIO;
1290
Swen Schillig564e1c82009-08-18 15:43:19 +02001291 if (!(qdio->adapter->adapter_features & FSF_FEATURE_HBAAPI_MANAGEMENT))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001292 return -EOPNOTSUPP;
1293
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001294 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001295 if (zfcp_qdio_sbal_get(qdio))
Christof Schmittada81b72009-04-17 15:08:03 +02001296 goto out_unlock;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001297
Christof Schmitt1674b402010-04-30 18:09:34 +02001298 req = zfcp_fsf_req_create(qdio, FSF_QTCB_EXCHANGE_PORT_DATA,
Jan Glauber3ec908782011-06-06 14:14:40 +02001299 SBAL_SFLAGS0_TYPE_READ, NULL);
Swen Schillig09a46c62009-08-18 15:43:16 +02001300
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001301 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001302 retval = PTR_ERR(req);
Christof Schmittada81b72009-04-17 15:08:03 +02001303 goto out_unlock;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001304 }
1305
1306 if (data)
1307 req->data = data;
1308
Christof Schmitt1674b402010-04-30 18:09:34 +02001309 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001310
1311 req->handler = zfcp_fsf_exchange_port_data_handler;
1312 zfcp_fsf_start_timer(req, ZFCP_FSF_REQUEST_TIMEOUT);
1313 retval = zfcp_fsf_req_send(req);
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001314 spin_unlock_irq(&qdio->req_q_lock);
Christof Schmittada81b72009-04-17 15:08:03 +02001315
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001316 if (!retval)
Swen Schillig058b8642009-08-18 15:43:14 +02001317 wait_for_completion(&req->completion);
1318
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001319 zfcp_fsf_req_free(req);
1320
1321 return retval;
Christof Schmittada81b72009-04-17 15:08:03 +02001322
1323out_unlock:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001324 spin_unlock_irq(&qdio->req_q_lock);
Christof Schmittada81b72009-04-17 15:08:03 +02001325 return retval;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001326}
1327
1328static void zfcp_fsf_open_port_handler(struct zfcp_fsf_req *req)
1329{
1330 struct zfcp_port *port = req->data;
1331 struct fsf_qtcb_header *header = &req->qtcb->header;
Christof Schmitt9d05ce22009-11-24 16:54:09 +01001332 struct fc_els_flogi *plogi;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001333
1334 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
Martin Petermanna17c5852009-05-15 13:18:19 +02001335 goto out;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001336
1337 switch (header->fsf_status) {
1338 case FSF_PORT_ALREADY_OPEN:
1339 break;
1340 case FSF_ACCESS_DENIED:
Christof Schmitta1ca4832010-09-08 14:39:59 +02001341 zfcp_cfdc_port_denied(port, &header->fsf_status_qual);
1342 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001343 break;
1344 case FSF_MAXIMUM_NUMBER_OF_PORTS_EXCEEDED:
1345 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +02001346 "Not enough FCP adapter resources to open "
Swen Schillig7ba58c92008-10-01 12:42:18 +02001347 "remote port 0x%016Lx\n",
1348 (unsigned long long)port->wwpn);
Swen Schilligedaed852010-09-08 14:40:01 +02001349 zfcp_erp_set_port_status(port,
1350 ZFCP_STATUS_COMMON_ERP_FAILED);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001351 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1352 break;
1353 case FSF_ADAPTER_STATUS_AVAILABLE:
1354 switch (header->fsf_status_qual.word[0]) {
1355 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
1356 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001357 case FSF_SQ_NO_RETRY_POSSIBLE:
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001358 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1359 break;
1360 }
1361 break;
1362 case FSF_GOOD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 port->handle = header->port_handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 atomic_set_mask(ZFCP_STATUS_COMMON_OPEN |
1365 ZFCP_STATUS_PORT_PHYS_OPEN, &port->status);
Andreas Herrmannd736a27b2005-06-13 13:23:57 +02001366 atomic_clear_mask(ZFCP_STATUS_COMMON_ACCESS_DENIED |
1367 ZFCP_STATUS_COMMON_ACCESS_BOXED,
1368 &port->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 /* check whether D_ID has changed during open */
1370 /*
1371 * FIXME: This check is not airtight, as the FCP channel does
1372 * not monitor closures of target port connections caused on
1373 * the remote side. Thus, they might miss out on invalidating
1374 * locally cached WWPNs (and other N_Port parameters) of gone
1375 * target ports. So, our heroic attempt to make things safe
1376 * could be undermined by 'open port' response data tagged with
1377 * obsolete WWPNs. Another reason to monitor potential
1378 * connection closures ourself at least (by interpreting
1379 * incoming ELS' and unsolicited status). It just crosses my
1380 * mind that one should be able to cross-check by means of
1381 * another GID_PN straight after a port has been opened.
1382 * Alternately, an ADISC/PDISC ELS should suffice, as well.
1383 */
Christof Schmitt9d05ce22009-11-24 16:54:09 +01001384 plogi = (struct fc_els_flogi *) req->qtcb->bottom.support.els;
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +01001385 if (req->qtcb->bottom.support.els1_length >=
Christof Schmitt9d05ce22009-11-24 16:54:09 +01001386 FSF_PLOGI_MIN_LEN)
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001387 zfcp_fc_plogi_evaluate(port, plogi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 case FSF_UNKNOWN_OP_SUBTYPE:
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001390 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 break;
1392 }
Martin Petermanna17c5852009-05-15 13:18:19 +02001393
1394out:
Christof Schmitt615f59e2010-02-17 11:18:56 +01001395 put_device(&port->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396}
1397
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001398/**
1399 * zfcp_fsf_open_port - create and send open port request
1400 * @erp_action: pointer to struct zfcp_erp_action
1401 * Returns: 0 on success, error otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 */
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001403int zfcp_fsf_open_port(struct zfcp_erp_action *erp_action)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404{
Swen Schillig564e1c82009-08-18 15:43:19 +02001405 struct zfcp_qdio *qdio = erp_action->adapter->qdio;
Martin Petermanna17c5852009-05-15 13:18:19 +02001406 struct zfcp_port *port = erp_action->port;
Swen Schillig564e1c82009-08-18 15:43:19 +02001407 struct zfcp_fsf_req *req;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001408 int retval = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001410 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001411 if (zfcp_qdio_sbal_get(qdio))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413
Swen Schillig564e1c82009-08-18 15:43:19 +02001414 req = zfcp_fsf_req_create(qdio, FSF_QTCB_OPEN_PORT_WITH_DID,
Jan Glauber3ec908782011-06-06 14:14:40 +02001415 SBAL_SFLAGS0_TYPE_READ,
Swen Schillig564e1c82009-08-18 15:43:19 +02001416 qdio->adapter->pool.erp_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02001417
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001418 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001419 retval = PTR_ERR(req);
1420 goto out;
1421 }
1422
Swen Schillig09a46c62009-08-18 15:43:16 +02001423 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Christof Schmitt1674b402010-04-30 18:09:34 +02001424 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001426 req->handler = zfcp_fsf_open_port_handler;
Christof Schmitt800c0ca2009-11-24 16:54:12 +01001427 hton24(req->qtcb->bottom.support.d_id, port->d_id);
Martin Petermanna17c5852009-05-15 13:18:19 +02001428 req->data = port;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001429 req->erp_action = erp_action;
Christof Schmitte60a6d62010-02-17 11:18:49 +01001430 erp_action->fsf_req_id = req->req_id;
Christof Schmitt615f59e2010-02-17 11:18:56 +01001431 get_device(&port->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432
Christof Schmitt287ac012008-07-02 10:56:40 +02001433 zfcp_fsf_start_erp_timer(req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001434 retval = zfcp_fsf_req_send(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 if (retval) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001436 zfcp_fsf_req_free(req);
Christof Schmitte60a6d62010-02-17 11:18:49 +01001437 erp_action->fsf_req_id = 0;
Christof Schmitt615f59e2010-02-17 11:18:56 +01001438 put_device(&port->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001440out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001441 spin_unlock_irq(&qdio->req_q_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 return retval;
1443}
1444
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001445static void zfcp_fsf_close_port_handler(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446{
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001447 struct zfcp_port *port = req->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001449 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
Swen Schillig44cc76f2008-10-01 12:42:16 +02001450 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001452 switch (req->qtcb->header.fsf_status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 case FSF_PORT_HANDLE_NOT_VALID:
Swen Schilligea4a3a62010-12-02 15:16:16 +01001454 zfcp_erp_adapter_reopen(port->adapter, 0, "fscph_1");
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001455 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 case FSF_ADAPTER_STATUS_AVAILABLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 case FSF_GOOD:
Swen Schilligedaed852010-09-08 14:40:01 +02001460 zfcp_erp_clear_port_status(port, ZFCP_STATUS_COMMON_OPEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463}
1464
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001465/**
1466 * zfcp_fsf_close_port - create and send close port request
1467 * @erp_action: pointer to struct zfcp_erp_action
1468 * Returns: 0 on success, error otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 */
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001470int zfcp_fsf_close_port(struct zfcp_erp_action *erp_action)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471{
Swen Schillig564e1c82009-08-18 15:43:19 +02001472 struct zfcp_qdio *qdio = erp_action->adapter->qdio;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001473 struct zfcp_fsf_req *req;
1474 int retval = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001476 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001477 if (zfcp_qdio_sbal_get(qdio))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479
Swen Schillig564e1c82009-08-18 15:43:19 +02001480 req = zfcp_fsf_req_create(qdio, FSF_QTCB_CLOSE_PORT,
Jan Glauber3ec908782011-06-06 14:14:40 +02001481 SBAL_SFLAGS0_TYPE_READ,
Swen Schillig564e1c82009-08-18 15:43:19 +02001482 qdio->adapter->pool.erp_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02001483
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001484 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001485 retval = PTR_ERR(req);
1486 goto out;
1487 }
1488
Swen Schillig09a46c62009-08-18 15:43:16 +02001489 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Christof Schmitt1674b402010-04-30 18:09:34 +02001490 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001492 req->handler = zfcp_fsf_close_port_handler;
1493 req->data = erp_action->port;
1494 req->erp_action = erp_action;
1495 req->qtcb->header.port_handle = erp_action->port->handle;
Christof Schmitte60a6d62010-02-17 11:18:49 +01001496 erp_action->fsf_req_id = req->req_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497
Christof Schmitt287ac012008-07-02 10:56:40 +02001498 zfcp_fsf_start_erp_timer(req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001499 retval = zfcp_fsf_req_send(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 if (retval) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001501 zfcp_fsf_req_free(req);
Christof Schmitte60a6d62010-02-17 11:18:49 +01001502 erp_action->fsf_req_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001504out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001505 spin_unlock_irq(&qdio->req_q_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 return retval;
1507}
1508
Swen Schillig5ab944f2008-10-01 12:42:17 +02001509static void zfcp_fsf_open_wka_port_handler(struct zfcp_fsf_req *req)
1510{
Christof Schmittbd0072e2009-11-24 16:54:11 +01001511 struct zfcp_fc_wka_port *wka_port = req->data;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001512 struct fsf_qtcb_header *header = &req->qtcb->header;
1513
1514 if (req->status & ZFCP_STATUS_FSFREQ_ERROR) {
Christof Schmittbd0072e2009-11-24 16:54:11 +01001515 wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001516 goto out;
1517 }
1518
1519 switch (header->fsf_status) {
1520 case FSF_MAXIMUM_NUMBER_OF_PORTS_EXCEEDED:
1521 dev_warn(&req->adapter->ccw_device->dev,
1522 "Opening WKA port 0x%x failed\n", wka_port->d_id);
Christof Schmittdceab652009-05-15 13:18:18 +02001523 /* fall through */
Swen Schillig5ab944f2008-10-01 12:42:17 +02001524 case FSF_ADAPTER_STATUS_AVAILABLE:
1525 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Christof Schmittdceab652009-05-15 13:18:18 +02001526 /* fall through */
Swen Schillig5ab944f2008-10-01 12:42:17 +02001527 case FSF_ACCESS_DENIED:
Christof Schmittbd0072e2009-11-24 16:54:11 +01001528 wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001529 break;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001530 case FSF_GOOD:
1531 wka_port->handle = header->port_handle;
Swen Schillig27f492c2009-07-13 15:06:13 +02001532 /* fall through */
1533 case FSF_PORT_ALREADY_OPEN:
Christof Schmittbd0072e2009-11-24 16:54:11 +01001534 wka_port->status = ZFCP_FC_WKA_PORT_ONLINE;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001535 }
1536out:
1537 wake_up(&wka_port->completion_wq);
1538}
1539
1540/**
1541 * zfcp_fsf_open_wka_port - create and send open wka-port request
Christof Schmittbd0072e2009-11-24 16:54:11 +01001542 * @wka_port: pointer to struct zfcp_fc_wka_port
Swen Schillig5ab944f2008-10-01 12:42:17 +02001543 * Returns: 0 on success, error otherwise
1544 */
Christof Schmittbd0072e2009-11-24 16:54:11 +01001545int zfcp_fsf_open_wka_port(struct zfcp_fc_wka_port *wka_port)
Swen Schillig5ab944f2008-10-01 12:42:17 +02001546{
Swen Schillig564e1c82009-08-18 15:43:19 +02001547 struct zfcp_qdio *qdio = wka_port->adapter->qdio;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001548 struct zfcp_fsf_req *req;
1549 int retval = -EIO;
1550
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001551 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001552 if (zfcp_qdio_sbal_get(qdio))
Swen Schillig5ab944f2008-10-01 12:42:17 +02001553 goto out;
1554
Swen Schillig564e1c82009-08-18 15:43:19 +02001555 req = zfcp_fsf_req_create(qdio, FSF_QTCB_OPEN_PORT_WITH_DID,
Jan Glauber3ec908782011-06-06 14:14:40 +02001556 SBAL_SFLAGS0_TYPE_READ,
Swen Schillig564e1c82009-08-18 15:43:19 +02001557 qdio->adapter->pool.erp_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02001558
Tobias Klauser4e7d7af2011-02-22 19:54:38 +01001559 if (IS_ERR(req)) {
Swen Schillig5ab944f2008-10-01 12:42:17 +02001560 retval = PTR_ERR(req);
1561 goto out;
1562 }
1563
Swen Schillig09a46c62009-08-18 15:43:16 +02001564 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Christof Schmitt1674b402010-04-30 18:09:34 +02001565 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schillig5ab944f2008-10-01 12:42:17 +02001566
1567 req->handler = zfcp_fsf_open_wka_port_handler;
Christof Schmitt800c0ca2009-11-24 16:54:12 +01001568 hton24(req->qtcb->bottom.support.d_id, wka_port->d_id);
Swen Schillig5ab944f2008-10-01 12:42:17 +02001569 req->data = wka_port;
1570
1571 zfcp_fsf_start_timer(req, ZFCP_FSF_REQUEST_TIMEOUT);
1572 retval = zfcp_fsf_req_send(req);
1573 if (retval)
1574 zfcp_fsf_req_free(req);
1575out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001576 spin_unlock_irq(&qdio->req_q_lock);
Swen Schillig5ab944f2008-10-01 12:42:17 +02001577 return retval;
1578}
1579
1580static void zfcp_fsf_close_wka_port_handler(struct zfcp_fsf_req *req)
1581{
Christof Schmittbd0072e2009-11-24 16:54:11 +01001582 struct zfcp_fc_wka_port *wka_port = req->data;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001583
1584 if (req->qtcb->header.fsf_status == FSF_PORT_HANDLE_NOT_VALID) {
1585 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Swen Schilligea4a3a62010-12-02 15:16:16 +01001586 zfcp_erp_adapter_reopen(wka_port->adapter, 0, "fscwph1");
Swen Schillig5ab944f2008-10-01 12:42:17 +02001587 }
1588
Christof Schmittbd0072e2009-11-24 16:54:11 +01001589 wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001590 wake_up(&wka_port->completion_wq);
1591}
1592
1593/**
1594 * zfcp_fsf_close_wka_port - create and send close wka port request
Christof Schmittbd0072e2009-11-24 16:54:11 +01001595 * @wka_port: WKA port to open
Swen Schillig5ab944f2008-10-01 12:42:17 +02001596 * Returns: 0 on success, error otherwise
1597 */
Christof Schmittbd0072e2009-11-24 16:54:11 +01001598int zfcp_fsf_close_wka_port(struct zfcp_fc_wka_port *wka_port)
Swen Schillig5ab944f2008-10-01 12:42:17 +02001599{
Swen Schillig564e1c82009-08-18 15:43:19 +02001600 struct zfcp_qdio *qdio = wka_port->adapter->qdio;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001601 struct zfcp_fsf_req *req;
1602 int retval = -EIO;
1603
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001604 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001605 if (zfcp_qdio_sbal_get(qdio))
Swen Schillig5ab944f2008-10-01 12:42:17 +02001606 goto out;
1607
Swen Schillig564e1c82009-08-18 15:43:19 +02001608 req = zfcp_fsf_req_create(qdio, FSF_QTCB_CLOSE_PORT,
Jan Glauber3ec908782011-06-06 14:14:40 +02001609 SBAL_SFLAGS0_TYPE_READ,
Swen Schillig564e1c82009-08-18 15:43:19 +02001610 qdio->adapter->pool.erp_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02001611
Tobias Klauser4e7d7af2011-02-22 19:54:38 +01001612 if (IS_ERR(req)) {
Swen Schillig5ab944f2008-10-01 12:42:17 +02001613 retval = PTR_ERR(req);
1614 goto out;
1615 }
1616
Swen Schillig09a46c62009-08-18 15:43:16 +02001617 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Christof Schmitt1674b402010-04-30 18:09:34 +02001618 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schillig5ab944f2008-10-01 12:42:17 +02001619
1620 req->handler = zfcp_fsf_close_wka_port_handler;
1621 req->data = wka_port;
1622 req->qtcb->header.port_handle = wka_port->handle;
1623
1624 zfcp_fsf_start_timer(req, ZFCP_FSF_REQUEST_TIMEOUT);
1625 retval = zfcp_fsf_req_send(req);
1626 if (retval)
1627 zfcp_fsf_req_free(req);
1628out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001629 spin_unlock_irq(&qdio->req_q_lock);
Swen Schillig5ab944f2008-10-01 12:42:17 +02001630 return retval;
1631}
1632
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001633static void zfcp_fsf_close_physical_port_handler(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634{
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001635 struct zfcp_port *port = req->data;
1636 struct fsf_qtcb_header *header = &req->qtcb->header;
Christof Schmittb62a8d92010-09-08 14:39:55 +02001637 struct scsi_device *sdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001639 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
Christof Schmitta5b11dd2009-03-02 13:08:54 +01001640 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 switch (header->fsf_status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 case FSF_PORT_HANDLE_NOT_VALID:
Swen Schilligea4a3a62010-12-02 15:16:16 +01001644 zfcp_erp_adapter_reopen(port->adapter, 0, "fscpph1");
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001645 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 case FSF_ACCESS_DENIED:
Christof Schmitta1ca4832010-09-08 14:39:59 +02001648 zfcp_cfdc_port_denied(port, &header->fsf_status_qual);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 case FSF_PORT_BOXED:
Christof Schmitt5c815d12008-03-10 16:18:54 +01001651 /* can't use generic zfcp_erp_modify_port_status because
1652 * ZFCP_STATUS_COMMON_OPEN must not be reset for the port */
1653 atomic_clear_mask(ZFCP_STATUS_PORT_PHYS_OPEN, &port->status);
Christof Schmittb62a8d92010-09-08 14:39:55 +02001654 shost_for_each_device(sdev, port->adapter->scsi_host)
1655 if (sdev_to_zfcp(sdev)->port == port)
1656 atomic_clear_mask(ZFCP_STATUS_COMMON_OPEN,
1657 &sdev_to_zfcp(sdev)->status);
Swen Schilligedaed852010-09-08 14:40:01 +02001658 zfcp_erp_set_port_status(port, ZFCP_STATUS_COMMON_ACCESS_BOXED);
1659 zfcp_erp_port_reopen(port, ZFCP_STATUS_COMMON_ERP_FAILED,
Swen Schilligea4a3a62010-12-02 15:16:16 +01001660 "fscpph2");
Christof Schmitt4c571c62009-11-24 16:54:15 +01001661 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 case FSF_ADAPTER_STATUS_AVAILABLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 switch (header->fsf_status_qual.word[0]) {
1665 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001666 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001668 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 }
1671 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 case FSF_GOOD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 /* can't use generic zfcp_erp_modify_port_status because
1674 * ZFCP_STATUS_COMMON_OPEN must not be reset for the port
1675 */
1676 atomic_clear_mask(ZFCP_STATUS_PORT_PHYS_OPEN, &port->status);
Christof Schmittb62a8d92010-09-08 14:39:55 +02001677 shost_for_each_device(sdev, port->adapter->scsi_host)
1678 if (sdev_to_zfcp(sdev)->port == port)
1679 atomic_clear_mask(ZFCP_STATUS_COMMON_OPEN,
1680 &sdev_to_zfcp(sdev)->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683}
1684
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001685/**
1686 * zfcp_fsf_close_physical_port - close physical port
1687 * @erp_action: pointer to struct zfcp_erp_action
1688 * Returns: 0 on success
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 */
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001690int zfcp_fsf_close_physical_port(struct zfcp_erp_action *erp_action)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691{
Swen Schillig564e1c82009-08-18 15:43:19 +02001692 struct zfcp_qdio *qdio = erp_action->adapter->qdio;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001693 struct zfcp_fsf_req *req;
1694 int retval = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001696 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001697 if (zfcp_qdio_sbal_get(qdio))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699
Swen Schillig564e1c82009-08-18 15:43:19 +02001700 req = zfcp_fsf_req_create(qdio, FSF_QTCB_CLOSE_PHYSICAL_PORT,
Jan Glauber3ec908782011-06-06 14:14:40 +02001701 SBAL_SFLAGS0_TYPE_READ,
Swen Schillig564e1c82009-08-18 15:43:19 +02001702 qdio->adapter->pool.erp_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02001703
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001704 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001705 retval = PTR_ERR(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 goto out;
1707 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001708
Swen Schillig09a46c62009-08-18 15:43:16 +02001709 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Christof Schmitt1674b402010-04-30 18:09:34 +02001710 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001711
1712 req->data = erp_action->port;
1713 req->qtcb->header.port_handle = erp_action->port->handle;
1714 req->erp_action = erp_action;
1715 req->handler = zfcp_fsf_close_physical_port_handler;
Christof Schmitte60a6d62010-02-17 11:18:49 +01001716 erp_action->fsf_req_id = req->req_id;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001717
Christof Schmitt287ac012008-07-02 10:56:40 +02001718 zfcp_fsf_start_erp_timer(req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001719 retval = zfcp_fsf_req_send(req);
1720 if (retval) {
1721 zfcp_fsf_req_free(req);
Christof Schmitte60a6d62010-02-17 11:18:49 +01001722 erp_action->fsf_req_id = 0;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001723 }
1724out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001725 spin_unlock_irq(&qdio->req_q_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 return retval;
1727}
1728
Christof Schmittb62a8d92010-09-08 14:39:55 +02001729static void zfcp_fsf_open_lun_handler(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730{
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001731 struct zfcp_adapter *adapter = req->adapter;
Christof Schmittb62a8d92010-09-08 14:39:55 +02001732 struct scsi_device *sdev = req->data;
1733 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001734 struct fsf_qtcb_header *header = &req->qtcb->header;
1735 struct fsf_qtcb_bottom_support *bottom = &req->qtcb->bottom.support;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001737 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
Swen Schillig44cc76f2008-10-01 12:42:16 +02001738 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 atomic_clear_mask(ZFCP_STATUS_COMMON_ACCESS_DENIED |
Heiko Carstensb64ddf92007-05-08 11:19:57 +02001741 ZFCP_STATUS_COMMON_ACCESS_BOXED |
Christof Schmittb62a8d92010-09-08 14:39:55 +02001742 ZFCP_STATUS_LUN_SHARED |
1743 ZFCP_STATUS_LUN_READONLY,
1744 &zfcp_sdev->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 switch (header->fsf_status) {
1747
1748 case FSF_PORT_HANDLE_NOT_VALID:
Swen Schilligea4a3a62010-12-02 15:16:16 +01001749 zfcp_erp_adapter_reopen(adapter, 0, "fsouh_1");
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001750 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 case FSF_LUN_ALREADY_OPEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 case FSF_ACCESS_DENIED:
Christof Schmitta1ca4832010-09-08 14:39:59 +02001754 zfcp_cfdc_lun_denied(sdev, &header->fsf_status_qual);
1755 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 case FSF_PORT_BOXED:
Swen Schilligedaed852010-09-08 14:40:01 +02001758 zfcp_erp_set_port_status(zfcp_sdev->port,
1759 ZFCP_STATUS_COMMON_ACCESS_BOXED);
1760 zfcp_erp_port_reopen(zfcp_sdev->port,
Swen Schilligea4a3a62010-12-02 15:16:16 +01001761 ZFCP_STATUS_COMMON_ERP_FAILED, "fsouh_2");
Christof Schmitt4c571c62009-11-24 16:54:15 +01001762 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 case FSF_LUN_SHARING_VIOLATION:
Christof Schmitta1ca4832010-09-08 14:39:59 +02001765 zfcp_cfdc_lun_shrng_vltn(sdev, &header->fsf_status_qual);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001766 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 case FSF_MAXIMUM_NUMBER_OF_LUNS_EXCEEDED:
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001769 dev_warn(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +02001770 "No handle is available for LUN "
1771 "0x%016Lx on port 0x%016Lx\n",
Christof Schmittb62a8d92010-09-08 14:39:55 +02001772 (unsigned long long)zfcp_scsi_dev_lun(sdev),
1773 (unsigned long long)zfcp_sdev->port->wwpn);
Swen Schilligedaed852010-09-08 14:40:01 +02001774 zfcp_erp_set_lun_status(sdev, ZFCP_STATUS_COMMON_ERP_FAILED);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001775 /* fall through */
1776 case FSF_INVALID_COMMAND_OPTION:
1777 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 case FSF_ADAPTER_STATUS_AVAILABLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 switch (header->fsf_status_qual.word[0]) {
1781 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
Christof Schmittb62a8d92010-09-08 14:39:55 +02001782 zfcp_fc_test_link(zfcp_sdev->port);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001783 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001785 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 }
1788 break;
1789
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 case FSF_GOOD:
Christof Schmittb62a8d92010-09-08 14:39:55 +02001791 zfcp_sdev->lun_handle = header->lun_handle;
1792 atomic_set_mask(ZFCP_STATUS_COMMON_OPEN, &zfcp_sdev->status);
Christof Schmitta1ca4832010-09-08 14:39:59 +02001793 zfcp_cfdc_open_lun_eval(sdev, bottom);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796}
1797
1798/**
Christof Schmittb62a8d92010-09-08 14:39:55 +02001799 * zfcp_fsf_open_lun - open LUN
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001800 * @erp_action: pointer to struct zfcp_erp_action
1801 * Returns: 0 on success, error otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 */
Christof Schmittb62a8d92010-09-08 14:39:55 +02001803int zfcp_fsf_open_lun(struct zfcp_erp_action *erp_action)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804{
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001805 struct zfcp_adapter *adapter = erp_action->adapter;
Swen Schillig564e1c82009-08-18 15:43:19 +02001806 struct zfcp_qdio *qdio = adapter->qdio;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001807 struct zfcp_fsf_req *req;
1808 int retval = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001810 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001811 if (zfcp_qdio_sbal_get(qdio))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001812 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813
Swen Schillig564e1c82009-08-18 15:43:19 +02001814 req = zfcp_fsf_req_create(qdio, FSF_QTCB_OPEN_LUN,
Jan Glauber3ec908782011-06-06 14:14:40 +02001815 SBAL_SFLAGS0_TYPE_READ,
Swen Schilliga4623c42009-08-18 15:43:15 +02001816 adapter->pool.erp_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02001817
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001818 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001819 retval = PTR_ERR(req);
1820 goto out;
Christof Schmittba172422007-12-20 12:30:26 +01001821 }
1822
Swen Schillig09a46c62009-08-18 15:43:16 +02001823 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Christof Schmitt1674b402010-04-30 18:09:34 +02001824 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001826 req->qtcb->header.port_handle = erp_action->port->handle;
Christof Schmittb62a8d92010-09-08 14:39:55 +02001827 req->qtcb->bottom.support.fcp_lun = zfcp_scsi_dev_lun(erp_action->sdev);
1828 req->handler = zfcp_fsf_open_lun_handler;
1829 req->data = erp_action->sdev;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001830 req->erp_action = erp_action;
Christof Schmitte60a6d62010-02-17 11:18:49 +01001831 erp_action->fsf_req_id = req->req_id;
Andreas Herrmann059c97d2005-09-13 21:47:52 +02001832
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001833 if (!(adapter->connection_features & FSF_FEATURE_NPIV_MODE))
1834 req->qtcb->bottom.support.option = FSF_OPEN_LUN_SUPPRESS_BOXING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835
Christof Schmitt287ac012008-07-02 10:56:40 +02001836 zfcp_fsf_start_erp_timer(req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001837 retval = zfcp_fsf_req_send(req);
1838 if (retval) {
1839 zfcp_fsf_req_free(req);
Christof Schmitte60a6d62010-02-17 11:18:49 +01001840 erp_action->fsf_req_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001842out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001843 spin_unlock_irq(&qdio->req_q_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 return retval;
1845}
1846
Christof Schmittb62a8d92010-09-08 14:39:55 +02001847static void zfcp_fsf_close_lun_handler(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848{
Christof Schmittb62a8d92010-09-08 14:39:55 +02001849 struct scsi_device *sdev = req->data;
1850 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001851
1852 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
Swen Schillig44cc76f2008-10-01 12:42:16 +02001853 return;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001854
1855 switch (req->qtcb->header.fsf_status) {
1856 case FSF_PORT_HANDLE_NOT_VALID:
Swen Schilligea4a3a62010-12-02 15:16:16 +01001857 zfcp_erp_adapter_reopen(zfcp_sdev->port->adapter, 0, "fscuh_1");
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001858 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1859 break;
1860 case FSF_LUN_HANDLE_NOT_VALID:
Swen Schilligea4a3a62010-12-02 15:16:16 +01001861 zfcp_erp_port_reopen(zfcp_sdev->port, 0, "fscuh_2");
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001862 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1863 break;
1864 case FSF_PORT_BOXED:
Swen Schilligedaed852010-09-08 14:40:01 +02001865 zfcp_erp_set_port_status(zfcp_sdev->port,
1866 ZFCP_STATUS_COMMON_ACCESS_BOXED);
1867 zfcp_erp_port_reopen(zfcp_sdev->port,
Swen Schilligea4a3a62010-12-02 15:16:16 +01001868 ZFCP_STATUS_COMMON_ERP_FAILED, "fscuh_3");
Christof Schmitt4c571c62009-11-24 16:54:15 +01001869 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001870 break;
1871 case FSF_ADAPTER_STATUS_AVAILABLE:
1872 switch (req->qtcb->header.fsf_status_qual.word[0]) {
1873 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
Christof Schmittb62a8d92010-09-08 14:39:55 +02001874 zfcp_fc_test_link(zfcp_sdev->port);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001875 /* fall through */
1876 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
1877 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1878 break;
1879 }
1880 break;
1881 case FSF_GOOD:
Christof Schmittb62a8d92010-09-08 14:39:55 +02001882 atomic_clear_mask(ZFCP_STATUS_COMMON_OPEN, &zfcp_sdev->status);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001883 break;
1884 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001885}
1886
1887/**
Christof Schmittb62a8d92010-09-08 14:39:55 +02001888 * zfcp_fsf_close_LUN - close LUN
1889 * @erp_action: pointer to erp_action triggering the "close LUN"
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001890 * Returns: 0 on success, error otherwise
1891 */
Christof Schmittb62a8d92010-09-08 14:39:55 +02001892int zfcp_fsf_close_lun(struct zfcp_erp_action *erp_action)
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001893{
Swen Schillig564e1c82009-08-18 15:43:19 +02001894 struct zfcp_qdio *qdio = erp_action->adapter->qdio;
Christof Schmittb62a8d92010-09-08 14:39:55 +02001895 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(erp_action->sdev);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001896 struct zfcp_fsf_req *req;
1897 int retval = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001899 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001900 if (zfcp_qdio_sbal_get(qdio))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 goto out;
Swen Schillig09a46c62009-08-18 15:43:16 +02001902
Swen Schillig564e1c82009-08-18 15:43:19 +02001903 req = zfcp_fsf_req_create(qdio, FSF_QTCB_CLOSE_LUN,
Jan Glauber3ec908782011-06-06 14:14:40 +02001904 SBAL_SFLAGS0_TYPE_READ,
Swen Schillig564e1c82009-08-18 15:43:19 +02001905 qdio->adapter->pool.erp_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02001906
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001907 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001908 retval = PTR_ERR(req);
1909 goto out;
1910 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
Swen Schillig09a46c62009-08-18 15:43:16 +02001912 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Christof Schmitt1674b402010-04-30 18:09:34 +02001913 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001915 req->qtcb->header.port_handle = erp_action->port->handle;
Christof Schmittb62a8d92010-09-08 14:39:55 +02001916 req->qtcb->header.lun_handle = zfcp_sdev->lun_handle;
1917 req->handler = zfcp_fsf_close_lun_handler;
1918 req->data = erp_action->sdev;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001919 req->erp_action = erp_action;
Christof Schmitte60a6d62010-02-17 11:18:49 +01001920 erp_action->fsf_req_id = req->req_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921
Christof Schmitt287ac012008-07-02 10:56:40 +02001922 zfcp_fsf_start_erp_timer(req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001923 retval = zfcp_fsf_req_send(req);
1924 if (retval) {
1925 zfcp_fsf_req_free(req);
Christof Schmitte60a6d62010-02-17 11:18:49 +01001926 erp_action->fsf_req_id = 0;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001927 }
1928out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001929 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001930 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931}
1932
Christof Schmittc9615852008-05-06 11:00:05 +02001933static void zfcp_fsf_update_lat(struct fsf_latency_record *lat_rec, u32 lat)
1934{
1935 lat_rec->sum += lat;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001936 lat_rec->min = min(lat_rec->min, lat);
1937 lat_rec->max = max(lat_rec->max, lat);
Christof Schmittc9615852008-05-06 11:00:05 +02001938}
1939
Christof Schmittd9742b42009-11-24 16:54:03 +01001940static void zfcp_fsf_req_trace(struct zfcp_fsf_req *req, struct scsi_cmnd *scsi)
Christof Schmittc9615852008-05-06 11:00:05 +02001941{
Christof Schmittd9742b42009-11-24 16:54:03 +01001942 struct fsf_qual_latency_info *lat_in;
1943 struct latency_cont *lat = NULL;
Christof Schmittb62a8d92010-09-08 14:39:55 +02001944 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(scsi->device);
Christof Schmittd9742b42009-11-24 16:54:03 +01001945 struct zfcp_blk_drv_data blktrc;
1946 int ticks = req->adapter->timer_ticks;
Christof Schmittc9615852008-05-06 11:00:05 +02001947
Christof Schmittd9742b42009-11-24 16:54:03 +01001948 lat_in = &req->qtcb->prefix.prot_status_qual.latency_info;
Christof Schmittc9615852008-05-06 11:00:05 +02001949
Christof Schmittd9742b42009-11-24 16:54:03 +01001950 blktrc.flags = 0;
1951 blktrc.magic = ZFCP_BLK_DRV_DATA_MAGIC;
1952 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
1953 blktrc.flags |= ZFCP_BLK_REQ_ERROR;
Swen Schillig706eca42010-07-16 15:37:38 +02001954 blktrc.inb_usage = 0;
Christof Schmitt34c2b712010-02-17 11:18:59 +01001955 blktrc.outb_usage = req->qdio_req.qdio_outb_usage;
Christof Schmittd9742b42009-11-24 16:54:03 +01001956
Christof Schmitt5bbf2972010-04-01 13:04:08 +02001957 if (req->adapter->adapter_features & FSF_FEATURE_MEASUREMENT_DATA &&
1958 !(req->status & ZFCP_STATUS_FSFREQ_ERROR)) {
Christof Schmittd9742b42009-11-24 16:54:03 +01001959 blktrc.flags |= ZFCP_BLK_LAT_VALID;
1960 blktrc.channel_lat = lat_in->channel_lat * ticks;
1961 blktrc.fabric_lat = lat_in->fabric_lat * ticks;
1962
1963 switch (req->qtcb->bottom.io.data_direction) {
Felix Beckef3eb712010-07-16 15:37:42 +02001964 case FSF_DATADIR_DIF_READ_STRIP:
1965 case FSF_DATADIR_DIF_READ_CONVERT:
Christof Schmittd9742b42009-11-24 16:54:03 +01001966 case FSF_DATADIR_READ:
Christof Schmittb62a8d92010-09-08 14:39:55 +02001967 lat = &zfcp_sdev->latencies.read;
Christof Schmittd9742b42009-11-24 16:54:03 +01001968 break;
Felix Beckef3eb712010-07-16 15:37:42 +02001969 case FSF_DATADIR_DIF_WRITE_INSERT:
1970 case FSF_DATADIR_DIF_WRITE_CONVERT:
Christof Schmittd9742b42009-11-24 16:54:03 +01001971 case FSF_DATADIR_WRITE:
Christof Schmittb62a8d92010-09-08 14:39:55 +02001972 lat = &zfcp_sdev->latencies.write;
Christof Schmittd9742b42009-11-24 16:54:03 +01001973 break;
1974 case FSF_DATADIR_CMND:
Christof Schmittb62a8d92010-09-08 14:39:55 +02001975 lat = &zfcp_sdev->latencies.cmd;
Christof Schmittd9742b42009-11-24 16:54:03 +01001976 break;
1977 }
1978
1979 if (lat) {
Christof Schmittb62a8d92010-09-08 14:39:55 +02001980 spin_lock(&zfcp_sdev->latencies.lock);
Christof Schmittd9742b42009-11-24 16:54:03 +01001981 zfcp_fsf_update_lat(&lat->channel, lat_in->channel_lat);
1982 zfcp_fsf_update_lat(&lat->fabric, lat_in->fabric_lat);
1983 lat->counter++;
Christof Schmittb62a8d92010-09-08 14:39:55 +02001984 spin_unlock(&zfcp_sdev->latencies.lock);
Christof Schmittd9742b42009-11-24 16:54:03 +01001985 }
Christof Schmittc9615852008-05-06 11:00:05 +02001986 }
1987
Christof Schmittd9742b42009-11-24 16:54:03 +01001988 blk_add_driver_data(scsi->request->q, scsi->request, &blktrc,
1989 sizeof(blktrc));
Christof Schmittc9615852008-05-06 11:00:05 +02001990}
1991
Christof Schmittc61b5362010-09-08 14:39:58 +02001992static void zfcp_fsf_fcp_handler_common(struct zfcp_fsf_req *req)
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001993{
Christof Schmittb62a8d92010-09-08 14:39:55 +02001994 struct scsi_cmnd *scmnd = req->data;
1995 struct scsi_device *sdev = scmnd->device;
1996 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001997 struct fsf_qtcb_header *header = &req->qtcb->header;
1998
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001999 if (unlikely(req->status & ZFCP_STATUS_FSFREQ_ERROR))
Christof Schmittc61b5362010-09-08 14:39:58 +02002000 return;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002001
2002 switch (header->fsf_status) {
2003 case FSF_HANDLE_MISMATCH:
2004 case FSF_PORT_HANDLE_NOT_VALID:
Swen Schilligea4a3a62010-12-02 15:16:16 +01002005 zfcp_erp_adapter_reopen(zfcp_sdev->port->adapter, 0, "fssfch1");
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002006 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
2007 break;
2008 case FSF_FCPLUN_NOT_VALID:
2009 case FSF_LUN_HANDLE_NOT_VALID:
Swen Schilligea4a3a62010-12-02 15:16:16 +01002010 zfcp_erp_port_reopen(zfcp_sdev->port, 0, "fssfch2");
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002011 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
2012 break;
2013 case FSF_SERVICE_CLASS_NOT_SUPPORTED:
2014 zfcp_fsf_class_not_supp(req);
2015 break;
2016 case FSF_ACCESS_DENIED:
Christof Schmitta1ca4832010-09-08 14:39:59 +02002017 zfcp_cfdc_lun_denied(sdev, &header->fsf_status_qual);
2018 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002019 break;
2020 case FSF_DIRECTION_INDICATOR_NOT_VALID:
2021 dev_err(&req->adapter->ccw_device->dev,
Christof Schmittb62a8d92010-09-08 14:39:55 +02002022 "Incorrect direction %d, LUN 0x%016Lx on port "
Christof Schmittff3b24f2008-10-01 12:42:15 +02002023 "0x%016Lx closed\n",
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002024 req->qtcb->bottom.io.data_direction,
Christof Schmittb62a8d92010-09-08 14:39:55 +02002025 (unsigned long long)zfcp_scsi_dev_lun(sdev),
2026 (unsigned long long)zfcp_sdev->port->wwpn);
2027 zfcp_erp_adapter_shutdown(zfcp_sdev->port->adapter, 0,
Swen Schilligea4a3a62010-12-02 15:16:16 +01002028 "fssfch3");
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002029 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
2030 break;
2031 case FSF_CMND_LENGTH_NOT_VALID:
2032 dev_err(&req->adapter->ccw_device->dev,
Christof Schmittb62a8d92010-09-08 14:39:55 +02002033 "Incorrect CDB length %d, LUN 0x%016Lx on "
Christof Schmittff3b24f2008-10-01 12:42:15 +02002034 "port 0x%016Lx closed\n",
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002035 req->qtcb->bottom.io.fcp_cmnd_length,
Christof Schmittb62a8d92010-09-08 14:39:55 +02002036 (unsigned long long)zfcp_scsi_dev_lun(sdev),
2037 (unsigned long long)zfcp_sdev->port->wwpn);
2038 zfcp_erp_adapter_shutdown(zfcp_sdev->port->adapter, 0,
Swen Schilligea4a3a62010-12-02 15:16:16 +01002039 "fssfch4");
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002040 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
2041 break;
2042 case FSF_PORT_BOXED:
Swen Schilligedaed852010-09-08 14:40:01 +02002043 zfcp_erp_set_port_status(zfcp_sdev->port,
2044 ZFCP_STATUS_COMMON_ACCESS_BOXED);
2045 zfcp_erp_port_reopen(zfcp_sdev->port,
Swen Schilligea4a3a62010-12-02 15:16:16 +01002046 ZFCP_STATUS_COMMON_ERP_FAILED, "fssfch5");
Christof Schmitt4c571c62009-11-24 16:54:15 +01002047 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002048 break;
2049 case FSF_LUN_BOXED:
Swen Schilligedaed852010-09-08 14:40:01 +02002050 zfcp_erp_set_lun_status(sdev, ZFCP_STATUS_COMMON_ACCESS_BOXED);
2051 zfcp_erp_lun_reopen(sdev, ZFCP_STATUS_COMMON_ERP_FAILED,
Swen Schilligea4a3a62010-12-02 15:16:16 +01002052 "fssfch6");
Christof Schmitt4c571c62009-11-24 16:54:15 +01002053 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002054 break;
2055 case FSF_ADAPTER_STATUS_AVAILABLE:
2056 if (header->fsf_status_qual.word[0] ==
2057 FSF_SQ_INVOKE_LINK_TEST_PROCEDURE)
Christof Schmittb62a8d92010-09-08 14:39:55 +02002058 zfcp_fc_test_link(zfcp_sdev->port);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002059 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
2060 break;
2061 }
Christof Schmittc61b5362010-09-08 14:39:58 +02002062}
2063
2064static void zfcp_fsf_fcp_cmnd_handler(struct zfcp_fsf_req *req)
2065{
2066 struct scsi_cmnd *scpnt;
2067 struct fcp_resp_with_ext *fcp_rsp;
2068 unsigned long flags;
2069
Christof Schmittc61b5362010-09-08 14:39:58 +02002070 read_lock_irqsave(&req->adapter->abort_lock, flags);
2071
2072 scpnt = req->data;
2073 if (unlikely(!scpnt)) {
2074 read_unlock_irqrestore(&req->adapter->abort_lock, flags);
2075 return;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002076 }
Christof Schmittc61b5362010-09-08 14:39:58 +02002077
Swen Schillig5bfb2c32010-11-17 14:23:40 +01002078 zfcp_fsf_fcp_handler_common(req);
2079
Christof Schmittc61b5362010-09-08 14:39:58 +02002080 if (unlikely(req->status & ZFCP_STATUS_FSFREQ_ERROR)) {
2081 set_host_byte(scpnt, DID_TRANSPORT_DISRUPTED);
2082 goto skip_fsfstatus;
2083 }
2084
2085 switch (req->qtcb->header.fsf_status) {
2086 case FSF_INCONSISTENT_PROT_DATA:
2087 case FSF_INVALID_PROT_PARM:
2088 set_host_byte(scpnt, DID_ERROR);
2089 goto skip_fsfstatus;
2090 case FSF_BLOCK_GUARD_CHECK_FAILURE:
2091 zfcp_scsi_dif_sense_error(scpnt, 0x1);
2092 goto skip_fsfstatus;
2093 case FSF_APP_TAG_CHECK_FAILURE:
2094 zfcp_scsi_dif_sense_error(scpnt, 0x2);
2095 goto skip_fsfstatus;
2096 case FSF_REF_TAG_CHECK_FAILURE:
2097 zfcp_scsi_dif_sense_error(scpnt, 0x3);
2098 goto skip_fsfstatus;
2099 }
2100 fcp_rsp = (struct fcp_resp_with_ext *) &req->qtcb->bottom.io.fcp_rsp;
2101 zfcp_fc_eval_fcp_rsp(fcp_rsp, scpnt);
2102
2103skip_fsfstatus:
2104 zfcp_fsf_req_trace(req, scpnt);
Swen Schillig250a1352010-12-02 15:16:15 +01002105 zfcp_dbf_scsi_result(scpnt, req);
Christof Schmittc61b5362010-09-08 14:39:58 +02002106
2107 scpnt->host_scribble = NULL;
2108 (scpnt->scsi_done) (scpnt);
2109 /*
2110 * We must hold this lock until scsi_done has been called.
2111 * Otherwise we may call scsi_done after abort regarding this
2112 * command has completed.
2113 * Note: scsi_done must not block!
2114 */
2115 read_unlock_irqrestore(&req->adapter->abort_lock, flags);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002116}
2117
Felix Beckef3eb712010-07-16 15:37:42 +02002118static int zfcp_fsf_set_data_dir(struct scsi_cmnd *scsi_cmnd, u32 *data_dir)
2119{
2120 switch (scsi_get_prot_op(scsi_cmnd)) {
2121 case SCSI_PROT_NORMAL:
2122 switch (scsi_cmnd->sc_data_direction) {
2123 case DMA_NONE:
2124 *data_dir = FSF_DATADIR_CMND;
2125 break;
2126 case DMA_FROM_DEVICE:
2127 *data_dir = FSF_DATADIR_READ;
2128 break;
2129 case DMA_TO_DEVICE:
2130 *data_dir = FSF_DATADIR_WRITE;
2131 break;
2132 case DMA_BIDIRECTIONAL:
2133 return -EINVAL;
2134 }
2135 break;
2136
2137 case SCSI_PROT_READ_STRIP:
2138 *data_dir = FSF_DATADIR_DIF_READ_STRIP;
2139 break;
2140 case SCSI_PROT_WRITE_INSERT:
2141 *data_dir = FSF_DATADIR_DIF_WRITE_INSERT;
2142 break;
2143 case SCSI_PROT_READ_PASS:
2144 *data_dir = FSF_DATADIR_DIF_READ_CONVERT;
2145 break;
2146 case SCSI_PROT_WRITE_PASS:
2147 *data_dir = FSF_DATADIR_DIF_WRITE_CONVERT;
2148 break;
2149 default:
2150 return -EINVAL;
2151 }
2152
2153 return 0;
2154}
2155
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002156/**
Christof Schmittb62a8d92010-09-08 14:39:55 +02002157 * zfcp_fsf_fcp_cmnd - initiate an FCP command (for a SCSI command)
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002158 * @scsi_cmnd: scsi command to be sent
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002159 */
Christof Schmittb62a8d92010-09-08 14:39:55 +02002160int zfcp_fsf_fcp_cmnd(struct scsi_cmnd *scsi_cmnd)
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002161{
2162 struct zfcp_fsf_req *req;
Christof Schmitt4318e082009-11-24 16:54:08 +01002163 struct fcp_cmnd *fcp_cmnd;
Jan Glauber3ec908782011-06-06 14:14:40 +02002164 u8 sbtype = SBAL_SFLAGS0_TYPE_READ;
Felix Beckef3eb712010-07-16 15:37:42 +02002165 int real_bytes, retval = -EIO, dix_bytes = 0;
Christof Schmittb62a8d92010-09-08 14:39:55 +02002166 struct scsi_device *sdev = scsi_cmnd->device;
2167 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
2168 struct zfcp_adapter *adapter = zfcp_sdev->port->adapter;
Swen Schillig564e1c82009-08-18 15:43:19 +02002169 struct zfcp_qdio *qdio = adapter->qdio;
Felix Beckef3eb712010-07-16 15:37:42 +02002170 struct fsf_qtcb_bottom_io *io;
Christof Schmitte55f8752010-11-18 14:53:18 +01002171 unsigned long flags;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002172
Christof Schmittb62a8d92010-09-08 14:39:55 +02002173 if (unlikely(!(atomic_read(&zfcp_sdev->status) &
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002174 ZFCP_STATUS_COMMON_UNBLOCKED)))
2175 return -EBUSY;
2176
Christof Schmitte55f8752010-11-18 14:53:18 +01002177 spin_lock_irqsave(&qdio->req_q_lock, flags);
Swen Schillig706eca42010-07-16 15:37:38 +02002178 if (atomic_read(&qdio->req_q_free) <= 0) {
Swen Schillig564e1c82009-08-18 15:43:19 +02002179 atomic_inc(&qdio->req_q_full);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002180 goto out;
Christof Schmitt8fdf30d2009-03-02 13:09:01 +01002181 }
Swen Schillig09a46c62009-08-18 15:43:16 +02002182
Christof Schmitt1674b402010-04-30 18:09:34 +02002183 if (scsi_cmnd->sc_data_direction == DMA_TO_DEVICE)
Jan Glauber3ec908782011-06-06 14:14:40 +02002184 sbtype = SBAL_SFLAGS0_TYPE_WRITE;
Christof Schmitt1674b402010-04-30 18:09:34 +02002185
Swen Schillig564e1c82009-08-18 15:43:19 +02002186 req = zfcp_fsf_req_create(qdio, FSF_QTCB_FCP_CMND,
Christof Schmitt1674b402010-04-30 18:09:34 +02002187 sbtype, adapter->pool.scsi_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02002188
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02002189 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002190 retval = PTR_ERR(req);
2191 goto out;
2192 }
2193
Felix Beckef3eb712010-07-16 15:37:42 +02002194 scsi_cmnd->host_scribble = (unsigned char *) req->req_id;
2195
2196 io = &req->qtcb->bottom.io;
Swen Schillig09a46c62009-08-18 15:43:16 +02002197 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002198 req->data = scsi_cmnd;
Christof Schmittc61b5362010-09-08 14:39:58 +02002199 req->handler = zfcp_fsf_fcp_cmnd_handler;
Christof Schmittb62a8d92010-09-08 14:39:55 +02002200 req->qtcb->header.lun_handle = zfcp_sdev->lun_handle;
2201 req->qtcb->header.port_handle = zfcp_sdev->port->handle;
Felix Beckef3eb712010-07-16 15:37:42 +02002202 io->service_class = FSF_CLASS_3;
2203 io->fcp_cmnd_length = FCP_CMND_LEN;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002204
Felix Beckef3eb712010-07-16 15:37:42 +02002205 if (scsi_get_prot_op(scsi_cmnd) != SCSI_PROT_NORMAL) {
2206 io->data_block_length = scsi_cmnd->device->sector_size;
2207 io->ref_tag_value = scsi_get_lba(scsi_cmnd) & 0xFFFFFFFF;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002208 }
2209
Felix Beckef3eb712010-07-16 15:37:42 +02002210 zfcp_fsf_set_data_dir(scsi_cmnd, &io->data_direction);
2211
Christof Schmitt4318e082009-11-24 16:54:08 +01002212 fcp_cmnd = (struct fcp_cmnd *) &req->qtcb->bottom.io.fcp_cmnd;
Christof Schmitt2443c8b2011-02-22 19:54:45 +01002213 zfcp_fc_scsi_to_fcp(fcp_cmnd, scsi_cmnd, 0);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002214
Felix Beckef3eb712010-07-16 15:37:42 +02002215 if (scsi_prot_sg_count(scsi_cmnd)) {
2216 zfcp_qdio_set_data_div(qdio, &req->qdio_req,
2217 scsi_prot_sg_count(scsi_cmnd));
2218 dix_bytes = zfcp_qdio_sbals_from_sg(qdio, &req->qdio_req,
2219 scsi_prot_sglist(scsi_cmnd));
2220 io->prot_data_length = dix_bytes;
2221 }
2222
Christof Schmitt1674b402010-04-30 18:09:34 +02002223 real_bytes = zfcp_qdio_sbals_from_sg(qdio, &req->qdio_req,
Swen Schillig01b04752010-07-16 15:37:37 +02002224 scsi_sglist(scsi_cmnd));
Felix Beckef3eb712010-07-16 15:37:42 +02002225
2226 if (unlikely(real_bytes < 0) || unlikely(dix_bytes < 0))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002227 goto failed_scsi_cmnd;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002228
Felix Beckef3eb712010-07-16 15:37:42 +02002229 zfcp_qdio_set_sbale_last(adapter->qdio, &req->qdio_req);
2230
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002231 retval = zfcp_fsf_req_send(req);
2232 if (unlikely(retval))
2233 goto failed_scsi_cmnd;
2234
2235 goto out;
2236
2237failed_scsi_cmnd:
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002238 zfcp_fsf_req_free(req);
2239 scsi_cmnd->host_scribble = NULL;
2240out:
Christof Schmitte55f8752010-11-18 14:53:18 +01002241 spin_unlock_irqrestore(&qdio->req_q_lock, flags);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002242 return retval;
2243}
2244
Christof Schmittc61b5362010-09-08 14:39:58 +02002245static void zfcp_fsf_fcp_task_mgmt_handler(struct zfcp_fsf_req *req)
2246{
2247 struct fcp_resp_with_ext *fcp_rsp;
2248 struct fcp_resp_rsp_info *rsp_info;
2249
2250 zfcp_fsf_fcp_handler_common(req);
2251
2252 fcp_rsp = (struct fcp_resp_with_ext *) &req->qtcb->bottom.io.fcp_rsp;
2253 rsp_info = (struct fcp_resp_rsp_info *) &fcp_rsp[1];
2254
2255 if ((rsp_info->rsp_code != FCP_TMF_CMPL) ||
2256 (req->status & ZFCP_STATUS_FSFREQ_ERROR))
2257 req->status |= ZFCP_STATUS_FSFREQ_TMFUNCFAILED;
2258}
2259
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002260/**
Christof Schmittb62a8d92010-09-08 14:39:55 +02002261 * zfcp_fsf_fcp_task_mgmt - send SCSI task management command
2262 * @scmnd: SCSI command to send the task management command for
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002263 * @tm_flags: unsigned byte for task management flags
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002264 * Returns: on success pointer to struct fsf_req, NULL otherwise
2265 */
Christof Schmittb62a8d92010-09-08 14:39:55 +02002266struct zfcp_fsf_req *zfcp_fsf_fcp_task_mgmt(struct scsi_cmnd *scmnd,
2267 u8 tm_flags)
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002268{
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002269 struct zfcp_fsf_req *req = NULL;
Christof Schmitt4318e082009-11-24 16:54:08 +01002270 struct fcp_cmnd *fcp_cmnd;
Christof Schmittb62a8d92010-09-08 14:39:55 +02002271 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(scmnd->device);
2272 struct zfcp_qdio *qdio = zfcp_sdev->port->adapter->qdio;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002273
Christof Schmittb62a8d92010-09-08 14:39:55 +02002274 if (unlikely(!(atomic_read(&zfcp_sdev->status) &
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002275 ZFCP_STATUS_COMMON_UNBLOCKED)))
2276 return NULL;
2277
Christof Schmitt44a24cb2010-09-08 14:39:57 +02002278 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02002279 if (zfcp_qdio_sbal_get(qdio))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002280 goto out;
Swen Schillig09a46c62009-08-18 15:43:16 +02002281
Swen Schillig564e1c82009-08-18 15:43:19 +02002282 req = zfcp_fsf_req_create(qdio, FSF_QTCB_FCP_CMND,
Jan Glauber3ec908782011-06-06 14:14:40 +02002283 SBAL_SFLAGS0_TYPE_WRITE,
Swen Schillig564e1c82009-08-18 15:43:19 +02002284 qdio->adapter->pool.scsi_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02002285
Swen Schillig633528c2008-11-26 18:07:37 +01002286 if (IS_ERR(req)) {
2287 req = NULL;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002288 goto out;
Swen Schillig633528c2008-11-26 18:07:37 +01002289 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002290
Christof Schmittb62a8d92010-09-08 14:39:55 +02002291 req->data = scmnd;
Christof Schmittc61b5362010-09-08 14:39:58 +02002292 req->handler = zfcp_fsf_fcp_task_mgmt_handler;
Christof Schmittb62a8d92010-09-08 14:39:55 +02002293 req->qtcb->header.lun_handle = zfcp_sdev->lun_handle;
2294 req->qtcb->header.port_handle = zfcp_sdev->port->handle;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002295 req->qtcb->bottom.io.data_direction = FSF_DATADIR_CMND;
2296 req->qtcb->bottom.io.service_class = FSF_CLASS_3;
Christof Schmitt4318e082009-11-24 16:54:08 +01002297 req->qtcb->bottom.io.fcp_cmnd_length = FCP_CMND_LEN;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002298
Christof Schmitt1674b402010-04-30 18:09:34 +02002299 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002300
Christof Schmitt4318e082009-11-24 16:54:08 +01002301 fcp_cmnd = (struct fcp_cmnd *) &req->qtcb->bottom.io.fcp_cmnd;
Christof Schmitt2443c8b2011-02-22 19:54:45 +01002302 zfcp_fc_scsi_to_fcp(fcp_cmnd, scmnd, tm_flags);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002303
2304 zfcp_fsf_start_timer(req, ZFCP_SCSI_ER_TIMEOUT);
2305 if (!zfcp_fsf_req_send(req))
2306 goto out;
2307
2308 zfcp_fsf_req_free(req);
2309 req = NULL;
2310out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02002311 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002312 return req;
2313}
2314
2315static void zfcp_fsf_control_file_handler(struct zfcp_fsf_req *req)
2316{
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002317}
2318
2319/**
2320 * zfcp_fsf_control_file - control file upload/download
2321 * @adapter: pointer to struct zfcp_adapter
2322 * @fsf_cfdc: pointer to struct zfcp_fsf_cfdc
2323 * Returns: on success pointer to struct zfcp_fsf_req, NULL otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 */
Christof Schmitt45633fd2008-06-10 18:20:55 +02002325struct zfcp_fsf_req *zfcp_fsf_control_file(struct zfcp_adapter *adapter,
2326 struct zfcp_fsf_cfdc *fsf_cfdc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327{
Swen Schillig564e1c82009-08-18 15:43:19 +02002328 struct zfcp_qdio *qdio = adapter->qdio;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002329 struct zfcp_fsf_req *req = NULL;
2330 struct fsf_qtcb_bottom_support *bottom;
Jan Glauber3ec908782011-06-06 14:14:40 +02002331 int retval = -EIO, bytes;
2332 u8 direction;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333
Christof Schmitt45633fd2008-06-10 18:20:55 +02002334 if (!(adapter->adapter_features & FSF_FEATURE_CFDC))
2335 return ERR_PTR(-EOPNOTSUPP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336
Christof Schmitt45633fd2008-06-10 18:20:55 +02002337 switch (fsf_cfdc->command) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 case FSF_QTCB_DOWNLOAD_CONTROL_FILE:
Jan Glauber3ec908782011-06-06 14:14:40 +02002339 direction = SBAL_SFLAGS0_TYPE_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 case FSF_QTCB_UPLOAD_CONTROL_FILE:
Jan Glauber3ec908782011-06-06 14:14:40 +02002342 direction = SBAL_SFLAGS0_TYPE_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344 default:
Christof Schmitt45633fd2008-06-10 18:20:55 +02002345 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 }
2347
Christof Schmitt44a24cb2010-09-08 14:39:57 +02002348 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02002349 if (zfcp_qdio_sbal_get(qdio))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002350 goto out;
2351
Christof Schmitt1674b402010-04-30 18:09:34 +02002352 req = zfcp_fsf_req_create(qdio, fsf_cfdc->command, direction, NULL);
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02002353 if (IS_ERR(req)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 retval = -EPERM;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002355 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 }
2357
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002358 req->handler = zfcp_fsf_control_file_handler;
2359
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002360 bottom = &req->qtcb->bottom.support;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 bottom->operation_subtype = FSF_CFDC_OPERATION_SUBTYPE;
Christof Schmitt45633fd2008-06-10 18:20:55 +02002362 bottom->option = fsf_cfdc->option;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363
Swen Schillig01b04752010-07-16 15:37:37 +02002364 bytes = zfcp_qdio_sbals_from_sg(qdio, &req->qdio_req, fsf_cfdc->sg);
2365
Christof Schmitt45633fd2008-06-10 18:20:55 +02002366 if (bytes != ZFCP_CFDC_MAX_SIZE) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002367 zfcp_fsf_req_free(req);
2368 goto out;
Christof Schmitt45633fd2008-06-10 18:20:55 +02002369 }
Felix Beckef3eb712010-07-16 15:37:42 +02002370 zfcp_qdio_set_sbale_last(adapter->qdio, &req->qdio_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002372 zfcp_fsf_start_timer(req, ZFCP_FSF_REQUEST_TIMEOUT);
2373 retval = zfcp_fsf_req_send(req);
2374out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02002375 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002376
2377 if (!retval) {
Swen Schillig058b8642009-08-18 15:43:14 +02002378 wait_for_completion(&req->completion);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002379 return req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 }
Christof Schmitt45633fd2008-06-10 18:20:55 +02002381 return ERR_PTR(retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382}
Swen Schilligbd63eaf2009-08-18 15:43:13 +02002383
2384/**
2385 * zfcp_fsf_reqid_check - validate req_id contained in SBAL returned by QDIO
2386 * @adapter: pointer to struct zfcp_adapter
2387 * @sbal_idx: response queue index of SBAL to be processed
2388 */
Swen Schillig564e1c82009-08-18 15:43:19 +02002389void zfcp_fsf_reqid_check(struct zfcp_qdio *qdio, int sbal_idx)
Swen Schilligbd63eaf2009-08-18 15:43:13 +02002390{
Swen Schillig564e1c82009-08-18 15:43:19 +02002391 struct zfcp_adapter *adapter = qdio->adapter;
Swen Schillig706eca42010-07-16 15:37:38 +02002392 struct qdio_buffer *sbal = qdio->res_q[sbal_idx];
Swen Schilligbd63eaf2009-08-18 15:43:13 +02002393 struct qdio_buffer_element *sbale;
2394 struct zfcp_fsf_req *fsf_req;
Christof Schmittb6bd2fb2010-02-17 11:18:50 +01002395 unsigned long req_id;
Swen Schilligbd63eaf2009-08-18 15:43:13 +02002396 int idx;
2397
2398 for (idx = 0; idx < QDIO_MAX_ELEMENTS_PER_BUFFER; idx++) {
2399
2400 sbale = &sbal->element[idx];
2401 req_id = (unsigned long) sbale->addr;
Christof Schmittb6bd2fb2010-02-17 11:18:50 +01002402 fsf_req = zfcp_reqlist_find_rm(adapter->req_list, req_id);
Swen Schilligbd63eaf2009-08-18 15:43:13 +02002403
Christof Schmitt339f4f42010-07-16 15:37:43 +02002404 if (!fsf_req) {
Swen Schilligbd63eaf2009-08-18 15:43:13 +02002405 /*
2406 * Unknown request means that we have potentially memory
2407 * corruption and must stop the machine immediately.
2408 */
Christof Schmitt339f4f42010-07-16 15:37:43 +02002409 zfcp_qdio_siosl(adapter);
Swen Schilligbd63eaf2009-08-18 15:43:13 +02002410 panic("error: unknown req_id (%lx) on adapter %s.\n",
2411 req_id, dev_name(&adapter->ccw_device->dev));
Christof Schmitt339f4f42010-07-16 15:37:43 +02002412 }
Swen Schilligbd63eaf2009-08-18 15:43:13 +02002413
Christof Schmitt34c2b712010-02-17 11:18:59 +01002414 fsf_req->qdio_req.sbal_response = sbal_idx;
Swen Schilligbd63eaf2009-08-18 15:43:13 +02002415 zfcp_fsf_req_complete(fsf_req);
2416
Jan Glauber3ec908782011-06-06 14:14:40 +02002417 if (likely(sbale->eflags & SBAL_EFLAGS_LAST_ENTRY))
Swen Schilligbd63eaf2009-08-18 15:43:13 +02002418 break;
2419 }
2420}
Swen Schilliga54ca0f2010-12-02 15:16:14 +01002421
2422struct zfcp_fsf_req *zfcp_fsf_get_req(struct zfcp_qdio *qdio,
2423 struct qdio_buffer *sbal)
2424{
2425 struct qdio_buffer_element *sbale = &sbal->element[0];
2426 u64 req_id = (unsigned long) sbale->addr;
2427
2428 return zfcp_reqlist_find(qdio->adapter->req_list, req_id);
2429}