blob: a2b0e8435fc34f41e917cd87631bf76c59130629 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Christof Schmitt553448f2008-06-10 18:20:58 +02002 * zfcp device driver
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Christof Schmitt553448f2008-06-10 18:20:58 +02004 * Implementation of FSF commands.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
Christof Schmitt615f59e2010-02-17 11:18:56 +01006 * Copyright IBM Corporation 2002, 2010
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 */
8
Christof Schmittecf39d42008-12-25 13:39:53 +01009#define KMSG_COMPONENT "zfcp"
10#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
11
Stefan Raspl0997f1c2008-10-16 08:23:39 +020012#include <linux/blktrace_api.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Christof Schmitt9d05ce22009-11-24 16:54:09 +010014#include <scsi/fc/fc_els.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include "zfcp_ext.h"
Christof Schmitt4318e082009-11-24 16:54:08 +010016#include "zfcp_fc.h"
Christof Schmittdcd20e22009-08-18 15:43:08 +020017#include "zfcp_dbf.h"
Christof Schmitt34c2b712010-02-17 11:18:59 +010018#include "zfcp_qdio.h"
Christof Schmittb6bd2fb2010-02-17 11:18:50 +010019#include "zfcp_reqlist.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Christof Schmitt287ac012008-07-02 10:56:40 +020021static void zfcp_fsf_request_timeout_handler(unsigned long data)
22{
23 struct zfcp_adapter *adapter = (struct zfcp_adapter *) data;
Christof Schmitt339f4f42010-07-16 15:37:43 +020024 zfcp_qdio_siosl(adapter);
Swen Schillig5ffd51a2009-03-02 13:09:04 +010025 zfcp_erp_adapter_reopen(adapter, ZFCP_STATUS_COMMON_ERP_FAILED,
Swen Schilligea4a3a62010-12-02 15:16:16 +010026 "fsrth_1");
Christof Schmitt287ac012008-07-02 10:56:40 +020027}
28
29static void zfcp_fsf_start_timer(struct zfcp_fsf_req *fsf_req,
30 unsigned long timeout)
31{
32 fsf_req->timer.function = zfcp_fsf_request_timeout_handler;
33 fsf_req->timer.data = (unsigned long) fsf_req->adapter;
34 fsf_req->timer.expires = jiffies + timeout;
35 add_timer(&fsf_req->timer);
36}
37
38static void zfcp_fsf_start_erp_timer(struct zfcp_fsf_req *fsf_req)
39{
40 BUG_ON(!fsf_req->erp_action);
41 fsf_req->timer.function = zfcp_erp_timeout_handler;
42 fsf_req->timer.data = (unsigned long) fsf_req->erp_action;
43 fsf_req->timer.expires = jiffies + 30 * HZ;
44 add_timer(&fsf_req->timer);
45}
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047/* association between FSF command and FSF QTCB type */
48static u32 fsf_qtcb_type[] = {
49 [FSF_QTCB_FCP_CMND] = FSF_IO_COMMAND,
50 [FSF_QTCB_ABORT_FCP_CMND] = FSF_SUPPORT_COMMAND,
51 [FSF_QTCB_OPEN_PORT_WITH_DID] = FSF_SUPPORT_COMMAND,
52 [FSF_QTCB_OPEN_LUN] = FSF_SUPPORT_COMMAND,
53 [FSF_QTCB_CLOSE_LUN] = FSF_SUPPORT_COMMAND,
54 [FSF_QTCB_CLOSE_PORT] = FSF_SUPPORT_COMMAND,
55 [FSF_QTCB_CLOSE_PHYSICAL_PORT] = FSF_SUPPORT_COMMAND,
56 [FSF_QTCB_SEND_ELS] = FSF_SUPPORT_COMMAND,
57 [FSF_QTCB_SEND_GENERIC] = FSF_SUPPORT_COMMAND,
58 [FSF_QTCB_EXCHANGE_CONFIG_DATA] = FSF_CONFIG_COMMAND,
59 [FSF_QTCB_EXCHANGE_PORT_DATA] = FSF_PORT_COMMAND,
60 [FSF_QTCB_DOWNLOAD_CONTROL_FILE] = FSF_SUPPORT_COMMAND,
61 [FSF_QTCB_UPLOAD_CONTROL_FILE] = FSF_SUPPORT_COMMAND
62};
63
Christof Schmitt553448f2008-06-10 18:20:58 +020064static void zfcp_fsf_class_not_supp(struct zfcp_fsf_req *req)
65{
Christof Schmittff3b24f2008-10-01 12:42:15 +020066 dev_err(&req->adapter->ccw_device->dev, "FCP device not "
67 "operational because of an unsupported FC class\n");
Swen Schilligea4a3a62010-12-02 15:16:16 +010068 zfcp_erp_adapter_shutdown(req->adapter, 0, "fscns_1");
Christof Schmitt553448f2008-06-10 18:20:58 +020069 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
70}
71
Swen Schilligc41f8cb2008-07-02 10:56:39 +020072/**
73 * zfcp_fsf_req_free - free memory used by fsf request
74 * @fsf_req: pointer to struct zfcp_fsf_req
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 */
Swen Schilligc41f8cb2008-07-02 10:56:39 +020076void zfcp_fsf_req_free(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077{
Swen Schilligc41f8cb2008-07-02 10:56:39 +020078 if (likely(req->pool)) {
Swen Schilliga4623c42009-08-18 15:43:15 +020079 if (likely(req->qtcb))
80 mempool_free(req->qtcb, req->adapter->pool.qtcb_pool);
Swen Schilligc41f8cb2008-07-02 10:56:39 +020081 mempool_free(req, req->pool);
Heiko Carstensdd52e0e2006-09-18 22:28:49 +020082 return;
83 }
84
Swen Schilliga4623c42009-08-18 15:43:15 +020085 if (likely(req->qtcb))
86 kmem_cache_free(zfcp_data.qtcb_cache, req->qtcb);
87 kfree(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088}
89
Swen Schilligc41f8cb2008-07-02 10:56:39 +020090static void zfcp_fsf_status_read_port_closed(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
Swen Schilligecf0c772009-11-24 16:53:58 +010092 unsigned long flags;
Swen Schilligc41f8cb2008-07-02 10:56:39 +020093 struct fsf_status_read_buffer *sr_buf = req->data;
94 struct zfcp_adapter *adapter = req->adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 struct zfcp_port *port;
Christof Schmitt800c0ca2009-11-24 16:54:12 +010096 int d_id = ntoh24(sr_buf->d_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Swen Schilligecf0c772009-11-24 16:53:58 +010098 read_lock_irqsave(&adapter->port_list_lock, flags);
99 list_for_each_entry(port, &adapter->port_list, list)
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200100 if (port->d_id == d_id) {
Swen Schilligea4a3a62010-12-02 15:16:16 +0100101 zfcp_erp_port_reopen(port, 0, "fssrpc1");
Swen Schilligecf0c772009-11-24 16:53:58 +0100102 break;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200103 }
Swen Schilligecf0c772009-11-24 16:53:58 +0100104 read_unlock_irqrestore(&adapter->port_list_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105}
106
Swen Schilligedaed852010-09-08 14:40:01 +0200107static void zfcp_fsf_link_down_info_eval(struct zfcp_fsf_req *req,
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200108 struct fsf_link_down_info *link_down)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200110 struct zfcp_adapter *adapter = req->adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200112 if (atomic_read(&adapter->status) & ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED)
113 return;
114
115 atomic_set_mask(ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED, &adapter->status);
Christof Schmitt70932932009-04-17 15:08:15 +0200116
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100117 zfcp_scsi_schedule_rports_block(adapter);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200118
119 if (!link_down)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 goto out;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200121
122 switch (link_down->error_code) {
123 case FSF_PSQ_LINK_NO_LIGHT:
124 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200125 "There is no light signal from the local "
126 "fibre channel cable\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200127 break;
128 case FSF_PSQ_LINK_WRAP_PLUG:
129 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200130 "There is a wrap plug instead of a fibre "
131 "channel cable\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200132 break;
133 case FSF_PSQ_LINK_NO_FCP:
134 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200135 "The adjacent fibre channel node does not "
136 "support FCP\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200137 break;
138 case FSF_PSQ_LINK_FIRMWARE_UPDATE:
139 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200140 "The FCP device is suspended because of a "
141 "firmware update\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200142 break;
143 case FSF_PSQ_LINK_INVALID_WWPN:
144 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200145 "The FCP device detected a WWPN that is "
146 "duplicate or not valid\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200147 break;
148 case FSF_PSQ_LINK_NO_NPIV_SUPPORT:
149 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200150 "The fibre channel fabric does not support NPIV\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200151 break;
152 case FSF_PSQ_LINK_NO_FCP_RESOURCES:
153 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200154 "The FCP adapter cannot support more NPIV ports\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200155 break;
156 case FSF_PSQ_LINK_NO_FABRIC_RESOURCES:
157 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200158 "The adjacent switch cannot support "
159 "more NPIV ports\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200160 break;
161 case FSF_PSQ_LINK_FABRIC_LOGIN_UNABLE:
162 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200163 "The FCP adapter could not log in to the "
164 "fibre channel fabric\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200165 break;
166 case FSF_PSQ_LINK_WWPN_ASSIGNMENT_CORRUPTED:
167 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200168 "The WWPN assignment file on the FCP adapter "
169 "has been damaged\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200170 break;
171 case FSF_PSQ_LINK_MODE_TABLE_CURRUPTED:
172 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200173 "The mode table on the FCP adapter "
174 "has been damaged\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200175 break;
176 case FSF_PSQ_LINK_NO_WWPN_ASSIGNMENT:
177 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200178 "All NPIV ports on the FCP adapter have "
179 "been assigned\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200180 break;
181 default:
182 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200183 "The link between the FCP adapter and "
184 "the FC fabric is down\n");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200185 }
186out:
Swen Schilligedaed852010-09-08 14:40:01 +0200187 zfcp_erp_set_adapter_status(adapter, ZFCP_STATUS_COMMON_ERP_FAILED);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200188}
189
190static void zfcp_fsf_status_read_link_down(struct zfcp_fsf_req *req)
191{
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200192 struct fsf_status_read_buffer *sr_buf = req->data;
193 struct fsf_link_down_info *ldi =
194 (struct fsf_link_down_info *) &sr_buf->payload;
195
196 switch (sr_buf->status_subtype) {
197 case FSF_STATUS_READ_SUB_NO_PHYSICAL_LINK:
Swen Schilligedaed852010-09-08 14:40:01 +0200198 zfcp_fsf_link_down_info_eval(req, ldi);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200199 break;
200 case FSF_STATUS_READ_SUB_FDISC_FAILED:
Swen Schilligedaed852010-09-08 14:40:01 +0200201 zfcp_fsf_link_down_info_eval(req, ldi);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200202 break;
203 case FSF_STATUS_READ_SUB_FIRMWARE_UPDATE:
Swen Schilligedaed852010-09-08 14:40:01 +0200204 zfcp_fsf_link_down_info_eval(req, NULL);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200205 };
206}
207
208static void zfcp_fsf_status_read_handler(struct zfcp_fsf_req *req)
209{
210 struct zfcp_adapter *adapter = req->adapter;
211 struct fsf_status_read_buffer *sr_buf = req->data;
212
213 if (req->status & ZFCP_STATUS_FSFREQ_DISMISSED) {
Swen Schilliga54ca0f2010-12-02 15:16:14 +0100214 zfcp_dbf_hba_fsf_uss("fssrh_1", req);
Christof Schmittc7b279a2011-02-22 19:54:40 +0100215 mempool_free(virt_to_page(sr_buf), adapter->pool.sr_data);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200216 zfcp_fsf_req_free(req);
217 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 }
219
Swen Schilliga54ca0f2010-12-02 15:16:14 +0100220 zfcp_dbf_hba_fsf_uss("fssrh_2", req);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200221
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200222 switch (sr_buf->status_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 case FSF_STATUS_READ_PORT_CLOSED:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200224 zfcp_fsf_status_read_port_closed(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 case FSF_STATUS_READ_INCOMING_ELS:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200227 zfcp_fc_incoming_els(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 case FSF_STATUS_READ_SENSE_DATA_AVAIL:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 case FSF_STATUS_READ_BIT_ERROR_THRESHOLD:
Christof Schmittff3b24f2008-10-01 12:42:15 +0200232 dev_warn(&adapter->ccw_device->dev,
233 "The error threshold for checksum statistics "
234 "has been exceeded\n");
Swen Schilliga54ca0f2010-12-02 15:16:14 +0100235 zfcp_dbf_hba_bit_err("fssrh_3", req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 case FSF_STATUS_READ_LINK_DOWN:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200238 zfcp_fsf_status_read_link_down(req);
Sven Schuetz2d1e5472010-07-16 15:37:39 +0200239 zfcp_fc_enqueue_event(adapter, FCH_EVT_LINKDOWN, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 case FSF_STATUS_READ_LINK_UP:
Christof Schmitt553448f2008-06-10 18:20:58 +0200242 dev_info(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200243 "The local link has been restored\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 /* All ports should be marked as ready to run again */
Swen Schilligedaed852010-09-08 14:40:01 +0200245 zfcp_erp_set_adapter_status(adapter,
246 ZFCP_STATUS_COMMON_RUNNING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 zfcp_erp_adapter_reopen(adapter,
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200248 ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED |
249 ZFCP_STATUS_COMMON_ERP_FAILED,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100250 "fssrh_2");
Sven Schuetz2d1e5472010-07-16 15:37:39 +0200251 zfcp_fc_enqueue_event(adapter, FCH_EVT_LINKUP, 0);
252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 break;
Maxim Shchetynin9eb69af2006-01-05 09:56:47 +0100254 case FSF_STATUS_READ_NOTIFICATION_LOST:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200255 if (sr_buf->status_subtype & FSF_STATUS_READ_SUB_ACT_UPDATED)
Christof Schmitta1ca4832010-09-08 14:39:59 +0200256 zfcp_cfdc_adapter_access_changed(adapter);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200257 if (sr_buf->status_subtype & FSF_STATUS_READ_SUB_INCOMING_ELS)
Swen Schillig9eae07e2009-11-24 16:54:06 +0100258 queue_work(adapter->work_queue, &adapter->scan_work);
Maxim Shchetynin9eb69af2006-01-05 09:56:47 +0100259 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 case FSF_STATUS_READ_CFDC_UPDATED:
Christof Schmitta1ca4832010-09-08 14:39:59 +0200261 zfcp_cfdc_adapter_access_changed(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 break;
Maxim Shchetyninaef4a982005-09-13 21:51:16 +0200263 case FSF_STATUS_READ_FEATURE_UPDATE_ALERT:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200264 adapter->adapter_features = sr_buf->payload.word[0];
Maxim Shchetyninaef4a982005-09-13 21:51:16 +0200265 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200267
Christof Schmittc7b279a2011-02-22 19:54:40 +0100268 mempool_free(virt_to_page(sr_buf), adapter->pool.sr_data);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200269 zfcp_fsf_req_free(req);
Swen Schilligd26ab062008-05-19 12:17:37 +0200270
271 atomic_inc(&adapter->stat_miss);
Swen Schillig45446832009-08-18 15:43:17 +0200272 queue_work(adapter->work_queue, &adapter->stat_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273}
274
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200275static void zfcp_fsf_fsfstatus_qual_eval(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200277 switch (req->qtcb->header.fsf_status_qual.word[0]) {
278 case FSF_SQ_FCP_RSP_AVAILABLE:
279 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
280 case FSF_SQ_NO_RETRY_POSSIBLE:
281 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
282 return;
283 case FSF_SQ_COMMAND_ABORTED:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200284 break;
285 case FSF_SQ_NO_RECOM:
286 dev_err(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200287 "The FCP adapter reported a problem "
288 "that cannot be recovered\n");
Christof Schmitt339f4f42010-07-16 15:37:43 +0200289 zfcp_qdio_siosl(req->adapter);
Swen Schilligea4a3a62010-12-02 15:16:16 +0100290 zfcp_erp_adapter_shutdown(req->adapter, 0, "fsfsqe1");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200291 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200293 /* all non-return stats set FSFREQ_ERROR*/
294 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
295}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200297static void zfcp_fsf_fsfstatus_eval(struct zfcp_fsf_req *req)
298{
299 if (unlikely(req->status & ZFCP_STATUS_FSFREQ_ERROR))
300 return;
Andreas Herrmann059c97d2005-09-13 21:47:52 +0200301
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200302 switch (req->qtcb->header.fsf_status) {
303 case FSF_UNKNOWN_COMMAND:
304 dev_err(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200305 "The FCP adapter does not recognize the command 0x%x\n",
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200306 req->qtcb->header.fsf_command);
Swen Schilligea4a3a62010-12-02 15:16:16 +0100307 zfcp_erp_adapter_shutdown(req->adapter, 0, "fsfse_1");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200308 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 case FSF_ADAPTER_STATUS_AVAILABLE:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200311 zfcp_fsf_fsfstatus_qual_eval(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314}
315
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200316static void zfcp_fsf_protstatus_eval(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317{
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200318 struct zfcp_adapter *adapter = req->adapter;
319 struct fsf_qtcb *qtcb = req->qtcb;
320 union fsf_prot_status_qual *psq = &qtcb->prefix.prot_status_qual;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Swen Schillig57717102009-08-18 15:43:21 +0200322 zfcp_dbf_hba_fsf_response(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200324 if (req->status & ZFCP_STATUS_FSFREQ_DISMISSED) {
Christof Schmitt4c571c62009-11-24 16:54:15 +0100325 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200326 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 }
328
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200329 switch (qtcb->prefix.prot_status) {
330 case FSF_PROT_GOOD:
331 case FSF_PROT_FSF_STATUS_PRESENTED:
332 return;
333 case FSF_PROT_QTCB_VERSION_ERROR:
334 dev_err(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200335 "QTCB version 0x%x not supported by FCP adapter "
336 "(0x%x to 0x%x)\n", FSF_QTCB_CURRENT_VERSION,
337 psq->word[0], psq->word[1]);
Swen Schilligea4a3a62010-12-02 15:16:16 +0100338 zfcp_erp_adapter_shutdown(adapter, 0, "fspse_1");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 break;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200340 case FSF_PROT_ERROR_STATE:
341 case FSF_PROT_SEQ_NUMB_ERROR:
Swen Schilligea4a3a62010-12-02 15:16:16 +0100342 zfcp_erp_adapter_reopen(adapter, 0, "fspse_2");
Christof Schmitt4c571c62009-11-24 16:54:15 +0100343 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 break;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200345 case FSF_PROT_UNSUPP_QTCB_TYPE:
346 dev_err(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200347 "The QTCB type is not supported by the FCP adapter\n");
Swen Schilligea4a3a62010-12-02 15:16:16 +0100348 zfcp_erp_adapter_shutdown(adapter, 0, "fspse_3");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 break;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200350 case FSF_PROT_HOST_CONNECTION_INITIALIZING:
351 atomic_set_mask(ZFCP_STATUS_ADAPTER_HOST_CON_INIT,
352 &adapter->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 break;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200354 case FSF_PROT_DUPLICATE_REQUEST_ID:
355 dev_err(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200356 "0x%Lx is an ambiguous request identifier\n",
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200357 (unsigned long long)qtcb->bottom.support.req_handle);
Swen Schilligea4a3a62010-12-02 15:16:16 +0100358 zfcp_erp_adapter_shutdown(adapter, 0, "fspse_4");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 break;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200360 case FSF_PROT_LINK_DOWN:
Swen Schilligedaed852010-09-08 14:40:01 +0200361 zfcp_fsf_link_down_info_eval(req, &psq->link_down_info);
Christof Schmitt452b5052010-02-17 11:18:51 +0100362 /* go through reopen to flush pending requests */
Swen Schilligea4a3a62010-12-02 15:16:16 +0100363 zfcp_erp_adapter_reopen(adapter, 0, "fspse_6");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 break;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200365 case FSF_PROT_REEST_QUEUE:
366 /* All ports should be marked as ready to run again */
Swen Schilligedaed852010-09-08 14:40:01 +0200367 zfcp_erp_set_adapter_status(adapter,
368 ZFCP_STATUS_COMMON_RUNNING);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200369 zfcp_erp_adapter_reopen(adapter,
370 ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED |
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100371 ZFCP_STATUS_COMMON_ERP_FAILED,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100372 "fspse_8");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200373 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 default:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200375 dev_err(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200376 "0x%x is not a valid transfer protocol status\n",
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200377 qtcb->prefix.prot_status);
Christof Schmitt339f4f42010-07-16 15:37:43 +0200378 zfcp_qdio_siosl(adapter);
Swen Schilligea4a3a62010-12-02 15:16:16 +0100379 zfcp_erp_adapter_shutdown(adapter, 0, "fspse_9");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200381 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382}
383
384/**
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200385 * zfcp_fsf_req_complete - process completion of a FSF request
386 * @fsf_req: The FSF request that has been completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 *
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200388 * When a request has been completed either from the FCP adapter,
389 * or it has been dismissed due to a queue shutdown, this function
390 * is called to process the completion status and trigger further
391 * events related to the FSF request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 */
Swen Schilligbd63eaf2009-08-18 15:43:13 +0200393static void zfcp_fsf_req_complete(struct zfcp_fsf_req *req)
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200394{
395 if (unlikely(req->fsf_command == FSF_QTCB_UNSOLICITED_STATUS)) {
396 zfcp_fsf_status_read_handler(req);
397 return;
398 }
399
400 del_timer(&req->timer);
401 zfcp_fsf_protstatus_eval(req);
402 zfcp_fsf_fsfstatus_eval(req);
403 req->handler(req);
404
405 if (req->erp_action)
Christof Schmitt287ac012008-07-02 10:56:40 +0200406 zfcp_erp_notify(req->erp_action, 0);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200407
408 if (likely(req->status & ZFCP_STATUS_FSFREQ_CLEANUP))
409 zfcp_fsf_req_free(req);
410 else
Swen Schillig058b8642009-08-18 15:43:14 +0200411 complete(&req->completion);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200412}
413
Swen Schilligbd63eaf2009-08-18 15:43:13 +0200414/**
415 * zfcp_fsf_req_dismiss_all - dismiss all fsf requests
416 * @adapter: pointer to struct zfcp_adapter
417 *
418 * Never ever call this without shutting down the adapter first.
419 * Otherwise the adapter would continue using and corrupting s390 storage.
420 * Included BUG_ON() call to ensure this is done.
421 * ERP is supposed to be the only user of this function.
422 */
423void zfcp_fsf_req_dismiss_all(struct zfcp_adapter *adapter)
424{
425 struct zfcp_fsf_req *req, *tmp;
Swen Schilligbd63eaf2009-08-18 15:43:13 +0200426 LIST_HEAD(remove_queue);
Swen Schilligbd63eaf2009-08-18 15:43:13 +0200427
428 BUG_ON(atomic_read(&adapter->status) & ZFCP_STATUS_ADAPTER_QDIOUP);
Christof Schmittb6bd2fb2010-02-17 11:18:50 +0100429 zfcp_reqlist_move(adapter->req_list, &remove_queue);
Swen Schilligbd63eaf2009-08-18 15:43:13 +0200430
431 list_for_each_entry_safe(req, tmp, &remove_queue, list) {
432 list_del(&req->list);
433 req->status |= ZFCP_STATUS_FSFREQ_DISMISSED;
434 zfcp_fsf_req_complete(req);
435 }
436}
437
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200438static int zfcp_fsf_exchange_config_evaluate(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439{
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100440 struct fsf_qtcb_bottom_config *bottom = &req->qtcb->bottom.config;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200441 struct zfcp_adapter *adapter = req->adapter;
Andreas Herrmann13e1e1f2005-09-19 16:56:17 +0200442 struct Scsi_Host *shost = adapter->scsi_host;
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100443 struct fc_els_flogi *nsp, *plogi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100445 /* adjust pointers for missing command code */
446 nsp = (struct fc_els_flogi *) ((u8 *)&bottom->nport_serv_param
447 - sizeof(u32));
448 plogi = (struct fc_els_flogi *) ((u8 *)&bottom->plogi_payload
449 - sizeof(u32));
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200450
451 if (req->data)
452 memcpy(req->data, bottom, sizeof(*bottom));
453
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100454 fc_host_port_name(shost) = nsp->fl_wwpn;
455 fc_host_node_name(shost) = nsp->fl_wwnn;
Christof Schmitt800c0ca2009-11-24 16:54:12 +0100456 fc_host_port_id(shost) = ntoh24(bottom->s_id);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200457 fc_host_speed(shost) = bottom->fc_link_speed;
458 fc_host_supported_classes(shost) = FC_COS_CLASS2 | FC_COS_CLASS3;
459
460 adapter->hydra_version = bottom->adapter_type;
Christof Schmittfaf4cd82010-07-16 15:37:36 +0200461 adapter->timer_ticks = bottom->timer_interval & ZFCP_FSF_TIMER_INT_MASK;
Christof Schmitt8d88cf32010-06-21 10:11:33 +0200462 adapter->stat_read_buf_num = max(bottom->status_read_buf_num,
463 (u16)FSF_STATUS_READS_RECOM);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200464
465 if (fc_host_permanent_port_name(shost) == -1)
466 fc_host_permanent_port_name(shost) = fc_host_port_name(shost);
467
468 switch (bottom->fc_topology) {
469 case FSF_TOPO_P2P:
Christof Schmitt800c0ca2009-11-24 16:54:12 +0100470 adapter->peer_d_id = ntoh24(bottom->peer_d_id);
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100471 adapter->peer_wwpn = plogi->fl_wwpn;
472 adapter->peer_wwnn = plogi->fl_wwnn;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200473 fc_host_port_type(shost) = FC_PORTTYPE_PTP;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200474 break;
475 case FSF_TOPO_FABRIC:
476 fc_host_port_type(shost) = FC_PORTTYPE_NPORT;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200477 break;
478 case FSF_TOPO_AL:
479 fc_host_port_type(shost) = FC_PORTTYPE_NLPORT;
Christof Schmittdceab652009-05-15 13:18:18 +0200480 /* fall through */
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200481 default:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200482 dev_err(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200483 "Unknown or unsupported arbitrated loop "
484 "fibre channel topology detected\n");
Swen Schilligea4a3a62010-12-02 15:16:16 +0100485 zfcp_erp_adapter_shutdown(adapter, 0, "fsece_1");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200486 return -EIO;
487 }
488
Felix Beckef3eb712010-07-16 15:37:42 +0200489 zfcp_scsi_set_prot(adapter);
490
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200491 return 0;
492}
493
494static void zfcp_fsf_exchange_config_data_handler(struct zfcp_fsf_req *req)
495{
496 struct zfcp_adapter *adapter = req->adapter;
497 struct fsf_qtcb *qtcb = req->qtcb;
498 struct fsf_qtcb_bottom_config *bottom = &qtcb->bottom.config;
499 struct Scsi_Host *shost = adapter->scsi_host;
500
501 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
502 return;
503
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 adapter->fsf_lic_version = bottom->lic_version;
Maxim Shchetyninaef4a982005-09-13 21:51:16 +0200505 adapter->adapter_features = bottom->adapter_features;
506 adapter->connection_features = bottom->connection_features;
6f71d9b2005-04-10 23:04:28 -0500507 adapter->peer_wwpn = 0;
508 adapter->peer_wwnn = 0;
509 adapter->peer_d_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200511 switch (qtcb->header.fsf_status) {
512 case FSF_GOOD:
513 if (zfcp_fsf_exchange_config_evaluate(req))
514 return;
Swen Schillig52ef11a2007-08-28 09:31:09 +0200515
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200516 if (bottom->max_qtcb_size < sizeof(struct fsf_qtcb)) {
517 dev_err(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200518 "FCP adapter maximum QTCB size (%d bytes) "
519 "is too small\n",
520 bottom->max_qtcb_size);
Swen Schilligea4a3a62010-12-02 15:16:16 +0100521 zfcp_erp_adapter_shutdown(adapter, 0, "fsecdh1");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200522 return;
523 }
524 atomic_set_mask(ZFCP_STATUS_ADAPTER_XCONFIG_OK,
525 &adapter->status);
526 break;
527 case FSF_EXCHANGE_CONFIG_DATA_INCOMPLETE:
Andreas Herrmann13e1e1f2005-09-19 16:56:17 +0200528 fc_host_node_name(shost) = 0;
529 fc_host_port_name(shost) = 0;
530 fc_host_port_id(shost) = 0;
531 fc_host_speed(shost) = FC_PORTSPEED_UNKNOWN;
Andreas Herrmannad757cd2006-01-13 02:26:11 +0100532 fc_host_port_type(shost) = FC_PORTTYPE_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 adapter->hydra_version = 0;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200534
Swen Schilligedaed852010-09-08 14:40:01 +0200535 zfcp_fsf_link_down_info_eval(req,
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200536 &qtcb->header.fsf_status_qual.link_down_info);
537 break;
538 default:
Swen Schilligea4a3a62010-12-02 15:16:16 +0100539 zfcp_erp_adapter_shutdown(adapter, 0, "fsecdh3");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200540 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 }
542
Maxim Shchetyninaef4a982005-09-13 21:51:16 +0200543 if (adapter->adapter_features & FSF_FEATURE_HBAAPI_MANAGEMENT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 adapter->hardware_version = bottom->hardware_version;
Andreas Herrmann13e1e1f2005-09-19 16:56:17 +0200545 memcpy(fc_host_serial_number(shost), bottom->serial_number,
546 min(FC_SERIAL_NUMBER_SIZE, 17));
547 EBCASC(fc_host_serial_number(shost),
548 min(FC_SERIAL_NUMBER_SIZE, 17));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 }
550
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200551 if (FSF_QTCB_CURRENT_VERSION < bottom->low_qtcb_version) {
Christof Schmitt553448f2008-06-10 18:20:58 +0200552 dev_err(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200553 "The FCP adapter only supports newer "
554 "control block versions\n");
Swen Schilligea4a3a62010-12-02 15:16:16 +0100555 zfcp_erp_adapter_shutdown(adapter, 0, "fsecdh4");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200556 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200558 if (FSF_QTCB_CURRENT_VERSION > bottom->high_qtcb_version) {
Christof Schmitt553448f2008-06-10 18:20:58 +0200559 dev_err(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200560 "The FCP adapter only supports older "
561 "control block versions\n");
Swen Schilligea4a3a62010-12-02 15:16:16 +0100562 zfcp_erp_adapter_shutdown(adapter, 0, "fsecdh5");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564}
565
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200566static void zfcp_fsf_exchange_port_evaluate(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567{
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200568 struct zfcp_adapter *adapter = req->adapter;
569 struct fsf_qtcb_bottom_port *bottom = &req->qtcb->bottom.port;
570 struct Scsi_Host *shost = adapter->scsi_host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200572 if (req->data)
573 memcpy(req->data, bottom, sizeof(*bottom));
Andreas Herrmann2f8f3ed2006-02-11 01:41:50 +0100574
Christof Schmitt02829852009-03-02 13:09:06 +0100575 if (adapter->connection_features & FSF_FEATURE_NPIV_MODE) {
Andreas Herrmann2f8f3ed2006-02-11 01:41:50 +0100576 fc_host_permanent_port_name(shost) = bottom->wwpn;
Christof Schmitt02829852009-03-02 13:09:06 +0100577 fc_host_port_type(shost) = FC_PORTTYPE_NPIV;
578 } else
Andreas Herrmann2f8f3ed2006-02-11 01:41:50 +0100579 fc_host_permanent_port_name(shost) = fc_host_port_name(shost);
580 fc_host_maxframe_size(shost) = bottom->maximum_frame_size;
581 fc_host_supported_speeds(shost) = bottom->supported_speed;
Christof Schmitt2d8e62b2010-02-17 11:18:58 +0100582 memcpy(fc_host_supported_fc4s(shost), bottom->supported_fc4_types,
583 FC_FC4_LIST_SIZE);
584 memcpy(fc_host_active_fc4s(shost), bottom->active_fc4_types,
585 FC_FC4_LIST_SIZE);
Andreas Herrmann2f8f3ed2006-02-11 01:41:50 +0100586}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200588static void zfcp_fsf_exchange_port_data_handler(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589{
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200590 struct fsf_qtcb *qtcb = req->qtcb;
Andreas Herrmann2f8f3ed2006-02-11 01:41:50 +0100591
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200592 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 return;
594
Maxim Shchetyninaef4a982005-09-13 21:51:16 +0200595 switch (qtcb->header.fsf_status) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200596 case FSF_GOOD:
597 zfcp_fsf_exchange_port_evaluate(req);
Maxim Shchetyninaef4a982005-09-13 21:51:16 +0200598 break;
Maxim Shchetyninaef4a982005-09-13 21:51:16 +0200599 case FSF_EXCHANGE_CONFIG_DATA_INCOMPLETE:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200600 zfcp_fsf_exchange_port_evaluate(req);
Swen Schilligedaed852010-09-08 14:40:01 +0200601 zfcp_fsf_link_down_info_eval(req,
Maxim Shchetyninaef4a982005-09-13 21:51:16 +0200602 &qtcb->header.fsf_status_qual.link_down_info);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200603 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 }
605}
606
Swen Schilliga4623c42009-08-18 15:43:15 +0200607static struct zfcp_fsf_req *zfcp_fsf_alloc(mempool_t *pool)
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200608{
609 struct zfcp_fsf_req *req;
Swen Schilliga4623c42009-08-18 15:43:15 +0200610
611 if (likely(pool))
612 req = mempool_alloc(pool, GFP_ATOMIC);
613 else
614 req = kmalloc(sizeof(*req), GFP_ATOMIC);
615
616 if (unlikely(!req))
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200617 return NULL;
Swen Schilliga4623c42009-08-18 15:43:15 +0200618
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200619 memset(req, 0, sizeof(*req));
Christof Schmitt88f2a972008-11-04 16:35:07 +0100620 req->pool = pool;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200621 return req;
622}
623
Swen Schilliga4623c42009-08-18 15:43:15 +0200624static struct fsf_qtcb *zfcp_qtcb_alloc(mempool_t *pool)
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200625{
Swen Schilliga4623c42009-08-18 15:43:15 +0200626 struct fsf_qtcb *qtcb;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200627
628 if (likely(pool))
629 qtcb = mempool_alloc(pool, GFP_ATOMIC);
630 else
Swen Schilliga4623c42009-08-18 15:43:15 +0200631 qtcb = kmem_cache_alloc(zfcp_data.qtcb_cache, GFP_ATOMIC);
632
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200633 if (unlikely(!qtcb))
634 return NULL;
635
636 memset(qtcb, 0, sizeof(*qtcb));
Swen Schilliga4623c42009-08-18 15:43:15 +0200637 return qtcb;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200638}
639
Swen Schillig564e1c82009-08-18 15:43:19 +0200640static struct zfcp_fsf_req *zfcp_fsf_req_create(struct zfcp_qdio *qdio,
Christof Schmitt1674b402010-04-30 18:09:34 +0200641 u32 fsf_cmd, u32 sbtype,
642 mempool_t *pool)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643{
Swen Schillig564e1c82009-08-18 15:43:19 +0200644 struct zfcp_adapter *adapter = qdio->adapter;
Swen Schilliga4623c42009-08-18 15:43:15 +0200645 struct zfcp_fsf_req *req = zfcp_fsf_alloc(pool);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200646
647 if (unlikely(!req))
Christof Schmitt1e9b1642009-07-13 15:06:04 +0200648 return ERR_PTR(-ENOMEM);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200649
650 if (adapter->req_no == 0)
651 adapter->req_no++;
652
653 INIT_LIST_HEAD(&req->list);
654 init_timer(&req->timer);
Swen Schillig058b8642009-08-18 15:43:14 +0200655 init_completion(&req->completion);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200656
657 req->adapter = adapter;
658 req->fsf_command = fsf_cmd;
Christof Schmitt52bfb552009-03-02 13:08:58 +0100659 req->req_id = adapter->req_no;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200660
Swen Schilliga4623c42009-08-18 15:43:15 +0200661 if (likely(fsf_cmd != FSF_QTCB_UNSOLICITED_STATUS)) {
662 if (likely(pool))
663 req->qtcb = zfcp_qtcb_alloc(adapter->pool.qtcb_pool);
664 else
665 req->qtcb = zfcp_qtcb_alloc(NULL);
666
667 if (unlikely(!req->qtcb)) {
668 zfcp_fsf_req_free(req);
669 return ERR_PTR(-ENOMEM);
670 }
671
Christof Schmitt5bdecd22010-02-17 11:18:55 +0100672 req->seq_no = adapter->fsf_req_seq_no;
Swen Schillig564e1c82009-08-18 15:43:19 +0200673 req->qtcb->prefix.req_seq_no = adapter->fsf_req_seq_no;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200674 req->qtcb->prefix.req_id = req->req_id;
675 req->qtcb->prefix.ulp_info = 26;
676 req->qtcb->prefix.qtcb_type = fsf_qtcb_type[req->fsf_command];
677 req->qtcb->prefix.qtcb_version = FSF_QTCB_CURRENT_VERSION;
678 req->qtcb->header.req_handle = req->req_id;
679 req->qtcb->header.fsf_command = req->fsf_command;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200680 }
681
Christof Schmitt1674b402010-04-30 18:09:34 +0200682 zfcp_qdio_req_init(adapter->qdio, &req->qdio_req, req->req_id, sbtype,
683 req->qtcb, sizeof(struct fsf_qtcb));
684
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200685 return req;
686}
687
688static int zfcp_fsf_req_send(struct zfcp_fsf_req *req)
689{
690 struct zfcp_adapter *adapter = req->adapter;
Swen Schillig564e1c82009-08-18 15:43:19 +0200691 struct zfcp_qdio *qdio = adapter->qdio;
Christof Schmittb6bd2fb2010-02-17 11:18:50 +0100692 int with_qtcb = (req->qtcb != NULL);
Christof Schmitte60a6d62010-02-17 11:18:49 +0100693 int req_id = req->req_id;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200694
Christof Schmittb6bd2fb2010-02-17 11:18:50 +0100695 zfcp_reqlist_add(adapter->req_list, req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200696
Swen Schillig706eca42010-07-16 15:37:38 +0200697 req->qdio_req.qdio_outb_usage = atomic_read(&qdio->req_q_free);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200698 req->issued = get_clock();
Christof Schmitt34c2b712010-02-17 11:18:59 +0100699 if (zfcp_qdio_send(qdio, &req->qdio_req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200700 del_timer(&req->timer);
Christof Schmitt37651382008-11-04 16:35:08 +0100701 /* lookup request again, list might have changed */
Christof Schmittb6bd2fb2010-02-17 11:18:50 +0100702 zfcp_reqlist_find_rm(adapter->req_list, req_id);
Swen Schilligea4a3a62010-12-02 15:16:16 +0100703 zfcp_erp_adapter_reopen(adapter, 0, "fsrs__1");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200704 return -EIO;
705 }
706
707 /* Don't increase for unsolicited status */
Martin Petermann135ea132009-04-17 15:08:01 +0200708 if (with_qtcb)
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200709 adapter->fsf_req_seq_no++;
Christof Schmitt52bfb552009-03-02 13:08:58 +0100710 adapter->req_no++;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200711
712 return 0;
713}
714
715/**
716 * zfcp_fsf_status_read - send status read request
717 * @adapter: pointer to struct zfcp_adapter
718 * @req_flags: request flags
719 * Returns: 0 on success, ERROR otherwise
720 */
Swen Schillig564e1c82009-08-18 15:43:19 +0200721int zfcp_fsf_status_read(struct zfcp_qdio *qdio)
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200722{
Swen Schillig564e1c82009-08-18 15:43:19 +0200723 struct zfcp_adapter *adapter = qdio->adapter;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200724 struct zfcp_fsf_req *req;
725 struct fsf_status_read_buffer *sr_buf;
Christof Schmittc7b279a2011-02-22 19:54:40 +0100726 struct page *page;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200727 int retval = -EIO;
728
Christof Schmitt44a24cb2010-09-08 14:39:57 +0200729 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +0200730 if (zfcp_qdio_sbal_get(qdio))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
Christof Schmitt1674b402010-04-30 18:09:34 +0200733 req = zfcp_fsf_req_create(qdio, FSF_QTCB_UNSOLICITED_STATUS, 0,
Swen Schilliga4623c42009-08-18 15:43:15 +0200734 adapter->pool.status_read_req);
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +0200735 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200736 retval = PTR_ERR(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 goto out;
738 }
739
Christof Schmittc7b279a2011-02-22 19:54:40 +0100740 page = mempool_alloc(adapter->pool.sr_data, GFP_ATOMIC);
741 if (!page) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200742 retval = -ENOMEM;
743 goto failed_buf;
744 }
Christof Schmittc7b279a2011-02-22 19:54:40 +0100745 sr_buf = page_address(page);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200746 memset(sr_buf, 0, sizeof(*sr_buf));
747 req->data = sr_buf;
Christof Schmitt1674b402010-04-30 18:09:34 +0200748
749 zfcp_qdio_fill_next(qdio, &req->qdio_req, sr_buf, sizeof(*sr_buf));
750 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200751
752 retval = zfcp_fsf_req_send(req);
753 if (retval)
754 goto failed_req_send;
755
756 goto out;
757
758failed_req_send:
Swen Schilliga54ca0f2010-12-02 15:16:14 +0100759 req->data = NULL;
Christof Schmittc7b279a2011-02-22 19:54:40 +0100760 mempool_free(virt_to_page(sr_buf), adapter->pool.sr_data);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200761failed_buf:
Swen Schilliga54ca0f2010-12-02 15:16:14 +0100762 zfcp_dbf_hba_fsf_uss("fssr__1", req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200763 zfcp_fsf_req_free(req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200764out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +0200765 spin_unlock_irq(&qdio->req_q_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 return retval;
767}
768
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200769static void zfcp_fsf_abort_fcp_command_handler(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770{
Christof Schmittb62a8d92010-09-08 14:39:55 +0200771 struct scsi_device *sdev = req->data;
772 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200773 union fsf_status_qual *fsq = &req->qtcb->header.fsf_status_qual;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200775 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
776 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200778 switch (req->qtcb->header.fsf_status) {
779 case FSF_PORT_HANDLE_NOT_VALID:
780 if (fsq->word[0] == fsq->word[1]) {
Christof Schmittb62a8d92010-09-08 14:39:55 +0200781 zfcp_erp_adapter_reopen(zfcp_sdev->port->adapter, 0,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100782 "fsafch1");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200783 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
784 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 break;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200786 case FSF_LUN_HANDLE_NOT_VALID:
787 if (fsq->word[0] == fsq->word[1]) {
Swen Schilligea4a3a62010-12-02 15:16:16 +0100788 zfcp_erp_port_reopen(zfcp_sdev->port, 0, "fsafch2");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200789 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
790 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 break;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200792 case FSF_FCP_COMMAND_DOES_NOT_EXIST:
793 req->status |= ZFCP_STATUS_FSFREQ_ABORTNOTNEEDED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 break;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200795 case FSF_PORT_BOXED:
Swen Schilligedaed852010-09-08 14:40:01 +0200796 zfcp_erp_set_port_status(zfcp_sdev->port,
797 ZFCP_STATUS_COMMON_ACCESS_BOXED);
798 zfcp_erp_port_reopen(zfcp_sdev->port,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100799 ZFCP_STATUS_COMMON_ERP_FAILED, "fsafch3");
Christof Schmitt4c571c62009-11-24 16:54:15 +0100800 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200801 break;
802 case FSF_LUN_BOXED:
Swen Schilligedaed852010-09-08 14:40:01 +0200803 zfcp_erp_set_lun_status(sdev, ZFCP_STATUS_COMMON_ACCESS_BOXED);
804 zfcp_erp_lun_reopen(sdev, ZFCP_STATUS_COMMON_ERP_FAILED,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100805 "fsafch4");
Christof Schmitt4c571c62009-11-24 16:54:15 +0100806 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200807 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 case FSF_ADAPTER_STATUS_AVAILABLE:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200809 switch (fsq->word[0]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
Christof Schmittb62a8d92010-09-08 14:39:55 +0200811 zfcp_fc_test_link(zfcp_sdev->port);
Christof Schmittdceab652009-05-15 13:18:18 +0200812 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200814 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 break;
816 }
817 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 case FSF_GOOD:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200819 req->status |= ZFCP_STATUS_FSFREQ_ABORTSUCCEEDED;
820 break;
821 }
822}
823
824/**
Christof Schmittb62a8d92010-09-08 14:39:55 +0200825 * zfcp_fsf_abort_fcp_cmnd - abort running SCSI command
826 * @scmnd: The SCSI command to abort
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200827 * Returns: pointer to struct zfcp_fsf_req
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200828 */
829
Christof Schmittb62a8d92010-09-08 14:39:55 +0200830struct zfcp_fsf_req *zfcp_fsf_abort_fcp_cmnd(struct scsi_cmnd *scmnd)
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200831{
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200832 struct zfcp_fsf_req *req = NULL;
Christof Schmittb62a8d92010-09-08 14:39:55 +0200833 struct scsi_device *sdev = scmnd->device;
834 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
835 struct zfcp_qdio *qdio = zfcp_sdev->port->adapter->qdio;
836 unsigned long old_req_id = (unsigned long) scmnd->host_scribble;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200837
Christof Schmitt44a24cb2010-09-08 14:39:57 +0200838 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +0200839 if (zfcp_qdio_sbal_get(qdio))
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200840 goto out;
Swen Schillig564e1c82009-08-18 15:43:19 +0200841 req = zfcp_fsf_req_create(qdio, FSF_QTCB_ABORT_FCP_CMND,
Christof Schmitt1674b402010-04-30 18:09:34 +0200842 SBAL_FLAGS0_TYPE_READ,
Swen Schillig564e1c82009-08-18 15:43:19 +0200843 qdio->adapter->pool.scsi_abort);
Swen Schillig633528c2008-11-26 18:07:37 +0100844 if (IS_ERR(req)) {
845 req = NULL;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200846 goto out;
Swen Schillig633528c2008-11-26 18:07:37 +0100847 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200848
Christof Schmittb62a8d92010-09-08 14:39:55 +0200849 if (unlikely(!(atomic_read(&zfcp_sdev->status) &
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200850 ZFCP_STATUS_COMMON_UNBLOCKED)))
851 goto out_error_free;
852
Christof Schmitt1674b402010-04-30 18:09:34 +0200853 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200854
Swen Schillig6fbf25e2010-11-17 14:23:41 +0100855 req->data = sdev;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200856 req->handler = zfcp_fsf_abort_fcp_command_handler;
Christof Schmittb62a8d92010-09-08 14:39:55 +0200857 req->qtcb->header.lun_handle = zfcp_sdev->lun_handle;
858 req->qtcb->header.port_handle = zfcp_sdev->port->handle;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200859 req->qtcb->bottom.support.req_handle = (u64) old_req_id;
860
861 zfcp_fsf_start_timer(req, ZFCP_SCSI_ER_TIMEOUT);
862 if (!zfcp_fsf_req_send(req))
863 goto out;
864
865out_error_free:
866 zfcp_fsf_req_free(req);
867 req = NULL;
868out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +0200869 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200870 return req;
871}
872
873static void zfcp_fsf_send_ct_handler(struct zfcp_fsf_req *req)
874{
875 struct zfcp_adapter *adapter = req->adapter;
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100876 struct zfcp_fsf_ct_els *ct = req->data;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200877 struct fsf_qtcb_header *header = &req->qtcb->header;
878
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100879 ct->status = -EINVAL;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200880
881 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
882 goto skip_fsfstatus;
883
884 switch (header->fsf_status) {
885 case FSF_GOOD:
Swen Schillig2c55b752010-12-02 15:16:13 +0100886 zfcp_dbf_san_res("fsscth1", req);
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100887 ct->status = 0;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200888 break;
889 case FSF_SERVICE_CLASS_NOT_SUPPORTED:
890 zfcp_fsf_class_not_supp(req);
891 break;
892 case FSF_ADAPTER_STATUS_AVAILABLE:
893 switch (header->fsf_status_qual.word[0]){
894 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200895 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
896 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
897 break;
898 }
899 break;
900 case FSF_ACCESS_DENIED:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200901 break;
902 case FSF_PORT_BOXED:
Christof Schmitt4c571c62009-11-24 16:54:15 +0100903 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200904 break;
905 case FSF_PORT_HANDLE_NOT_VALID:
Swen Schilligea4a3a62010-12-02 15:16:16 +0100906 zfcp_erp_adapter_reopen(adapter, 0, "fsscth1");
Christof Schmittdceab652009-05-15 13:18:18 +0200907 /* fall through */
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200908 case FSF_GENERIC_COMMAND_REJECTED:
909 case FSF_PAYLOAD_SIZE_MISMATCH:
910 case FSF_REQUEST_SIZE_TOO_LARGE:
911 case FSF_RESPONSE_SIZE_TOO_LARGE:
912 case FSF_SBAL_MISMATCH:
913 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
914 break;
915 }
916
917skip_fsfstatus:
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100918 if (ct->handler)
919 ct->handler(ct->handler_data);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200920}
921
Christof Schmitt1674b402010-04-30 18:09:34 +0200922static void zfcp_fsf_setup_ct_els_unchained(struct zfcp_qdio *qdio,
923 struct zfcp_qdio_req *q_req,
Christof Schmitt426f6052009-07-13 15:06:06 +0200924 struct scatterlist *sg_req,
925 struct scatterlist *sg_resp)
926{
Christof Schmitt1674b402010-04-30 18:09:34 +0200927 zfcp_qdio_fill_next(qdio, q_req, sg_virt(sg_req), sg_req->length);
928 zfcp_qdio_fill_next(qdio, q_req, sg_virt(sg_resp), sg_resp->length);
929 zfcp_qdio_set_sbale_last(qdio, q_req);
Christof Schmitt426f6052009-07-13 15:06:06 +0200930}
931
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100932static int zfcp_fsf_setup_ct_els_sbals(struct zfcp_fsf_req *req,
933 struct scatterlist *sg_req,
Swen Schillig01b04752010-07-16 15:37:37 +0200934 struct scatterlist *sg_resp)
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200935{
Swen Schillig42428f72009-08-18 15:43:18 +0200936 struct zfcp_adapter *adapter = req->adapter;
Swen Schillig42428f72009-08-18 15:43:18 +0200937 u32 feat = adapter->adapter_features;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200938 int bytes;
939
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100940 if (!(feat & FSF_FEATURE_ELS_CT_CHAINED_SBALS)) {
Christof Schmitt1674b402010-04-30 18:09:34 +0200941 if (!zfcp_qdio_sg_one_sbale(sg_req) ||
942 !zfcp_qdio_sg_one_sbale(sg_resp))
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100943 return -EOPNOTSUPP;
944
Christof Schmitt1674b402010-04-30 18:09:34 +0200945 zfcp_fsf_setup_ct_els_unchained(adapter->qdio, &req->qdio_req,
946 sg_req, sg_resp);
Christof Schmitt426f6052009-07-13 15:06:06 +0200947 return 0;
948 }
949
950 /* use single, unchained SBAL if it can hold the request */
Swen Schillig30b67772010-06-21 10:11:31 +0200951 if (zfcp_qdio_sg_one_sbale(sg_req) && zfcp_qdio_sg_one_sbale(sg_resp)) {
Christof Schmitt1674b402010-04-30 18:09:34 +0200952 zfcp_fsf_setup_ct_els_unchained(adapter->qdio, &req->qdio_req,
953 sg_req, sg_resp);
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100954 return 0;
955 }
956
Swen Schillig01b04752010-07-16 15:37:37 +0200957 bytes = zfcp_qdio_sbals_from_sg(adapter->qdio, &req->qdio_req, sg_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200958 if (bytes <= 0)
Christof Schmitt9072df42009-07-13 15:06:07 +0200959 return -EIO;
Felix Beckef3eb712010-07-16 15:37:42 +0200960 zfcp_qdio_set_sbale_last(adapter->qdio, &req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200961 req->qtcb->bottom.support.req_buf_length = bytes;
Christof Schmitt1674b402010-04-30 18:09:34 +0200962 zfcp_qdio_skip_to_last_sbale(&req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200963
Christof Schmitt34c2b712010-02-17 11:18:59 +0100964 bytes = zfcp_qdio_sbals_from_sg(adapter->qdio, &req->qdio_req,
Swen Schillig01b04752010-07-16 15:37:37 +0200965 sg_resp);
Christof Schmittb1a58982009-09-24 10:23:21 +0200966 req->qtcb->bottom.support.resp_buf_length = bytes;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200967 if (bytes <= 0)
Christof Schmitt9072df42009-07-13 15:06:07 +0200968 return -EIO;
Felix Beckef3eb712010-07-16 15:37:42 +0200969 zfcp_qdio_set_sbale_last(adapter->qdio, &req->qdio_req);
Christof Schmitt98fc4d52009-08-18 15:43:26 +0200970
Christof Schmittb1a58982009-09-24 10:23:21 +0200971 return 0;
972}
973
974static int zfcp_fsf_setup_ct_els(struct zfcp_fsf_req *req,
975 struct scatterlist *sg_req,
976 struct scatterlist *sg_resp,
Swen Schillig01b04752010-07-16 15:37:37 +0200977 unsigned int timeout)
Christof Schmittb1a58982009-09-24 10:23:21 +0200978{
979 int ret;
980
Swen Schillig01b04752010-07-16 15:37:37 +0200981 ret = zfcp_fsf_setup_ct_els_sbals(req, sg_req, sg_resp);
Christof Schmittb1a58982009-09-24 10:23:21 +0200982 if (ret)
983 return ret;
984
Christof Schmitt98fc4d52009-08-18 15:43:26 +0200985 /* common settings for ct/gs and els requests */
Swen Schillig51375ee2010-01-14 17:19:02 +0100986 if (timeout > 255)
987 timeout = 255; /* max value accepted by hardware */
Christof Schmitt98fc4d52009-08-18 15:43:26 +0200988 req->qtcb->bottom.support.service_class = FSF_CLASS_3;
Swen Schillig51375ee2010-01-14 17:19:02 +0100989 req->qtcb->bottom.support.timeout = timeout;
990 zfcp_fsf_start_timer(req, (timeout + 10) * HZ);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200991
992 return 0;
993}
994
995/**
996 * zfcp_fsf_send_ct - initiate a Generic Service request (FC-GS)
997 * @ct: pointer to struct zfcp_send_ct with data for request
998 * @pool: if non-null this mempool is used to allocate struct zfcp_fsf_req
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200999 */
Christof Schmitt7c7dc192009-11-24 16:54:13 +01001000int zfcp_fsf_send_ct(struct zfcp_fc_wka_port *wka_port,
Swen Schillig51375ee2010-01-14 17:19:02 +01001001 struct zfcp_fsf_ct_els *ct, mempool_t *pool,
1002 unsigned int timeout)
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001003{
Swen Schillig564e1c82009-08-18 15:43:19 +02001004 struct zfcp_qdio *qdio = wka_port->adapter->qdio;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001005 struct zfcp_fsf_req *req;
1006 int ret = -EIO;
1007
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001008 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001009 if (zfcp_qdio_sbal_get(qdio))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001010 goto out;
1011
Christof Schmitt1674b402010-04-30 18:09:34 +02001012 req = zfcp_fsf_req_create(qdio, FSF_QTCB_SEND_GENERIC,
1013 SBAL_FLAGS0_TYPE_WRITE_READ, pool);
Swen Schillig09a46c62009-08-18 15:43:16 +02001014
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001015 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001016 ret = PTR_ERR(req);
1017 goto out;
1018 }
1019
Swen Schillig09a46c62009-08-18 15:43:16 +02001020 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Swen Schillig01b04752010-07-16 15:37:37 +02001021 ret = zfcp_fsf_setup_ct_els(req, ct->req, ct->resp, timeout);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001022 if (ret)
1023 goto failed_send;
1024
1025 req->handler = zfcp_fsf_send_ct_handler;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001026 req->qtcb->header.port_handle = wka_port->handle;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001027 req->data = ct;
1028
Swen Schillig2c55b752010-12-02 15:16:13 +01001029 zfcp_dbf_san_req("fssct_1", req, wka_port->d_id);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001030
1031 ret = zfcp_fsf_req_send(req);
1032 if (ret)
1033 goto failed_send;
1034
1035 goto out;
1036
1037failed_send:
1038 zfcp_fsf_req_free(req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001039out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001040 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001041 return ret;
1042}
1043
1044static void zfcp_fsf_send_els_handler(struct zfcp_fsf_req *req)
1045{
Christof Schmitt7c7dc192009-11-24 16:54:13 +01001046 struct zfcp_fsf_ct_els *send_els = req->data;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001047 struct zfcp_port *port = send_els->port;
1048 struct fsf_qtcb_header *header = &req->qtcb->header;
1049
1050 send_els->status = -EINVAL;
1051
1052 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
1053 goto skip_fsfstatus;
1054
1055 switch (header->fsf_status) {
1056 case FSF_GOOD:
Swen Schillig2c55b752010-12-02 15:16:13 +01001057 zfcp_dbf_san_res("fsselh1", req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001058 send_els->status = 0;
1059 break;
1060 case FSF_SERVICE_CLASS_NOT_SUPPORTED:
1061 zfcp_fsf_class_not_supp(req);
1062 break;
1063 case FSF_ADAPTER_STATUS_AVAILABLE:
1064 switch (header->fsf_status_qual.word[0]){
1065 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001066 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
1067 case FSF_SQ_RETRY_IF_POSSIBLE:
1068 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1069 break;
1070 }
1071 break;
1072 case FSF_ELS_COMMAND_REJECTED:
1073 case FSF_PAYLOAD_SIZE_MISMATCH:
1074 case FSF_REQUEST_SIZE_TOO_LARGE:
1075 case FSF_RESPONSE_SIZE_TOO_LARGE:
1076 break;
1077 case FSF_ACCESS_DENIED:
Christof Schmitta1ca4832010-09-08 14:39:59 +02001078 if (port) {
1079 zfcp_cfdc_port_denied(port, &header->fsf_status_qual);
1080 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1081 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001082 break;
1083 case FSF_SBAL_MISMATCH:
1084 /* should never occure, avoided in zfcp_fsf_send_els */
1085 /* fall through */
1086 default:
1087 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1088 break;
1089 }
1090skip_fsfstatus:
1091 if (send_els->handler)
1092 send_els->handler(send_els->handler_data);
1093}
1094
1095/**
1096 * zfcp_fsf_send_els - initiate an ELS command (FC-FS)
1097 * @els: pointer to struct zfcp_send_els with data for the command
1098 */
Christof Schmitt7c7dc192009-11-24 16:54:13 +01001099int zfcp_fsf_send_els(struct zfcp_adapter *adapter, u32 d_id,
Swen Schillig51375ee2010-01-14 17:19:02 +01001100 struct zfcp_fsf_ct_els *els, unsigned int timeout)
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001101{
1102 struct zfcp_fsf_req *req;
Christof Schmitt7c7dc192009-11-24 16:54:13 +01001103 struct zfcp_qdio *qdio = adapter->qdio;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001104 int ret = -EIO;
1105
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001106 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001107 if (zfcp_qdio_sbal_get(qdio))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001108 goto out;
Swen Schillig09a46c62009-08-18 15:43:16 +02001109
Christof Schmitt1674b402010-04-30 18:09:34 +02001110 req = zfcp_fsf_req_create(qdio, FSF_QTCB_SEND_ELS,
1111 SBAL_FLAGS0_TYPE_WRITE_READ, NULL);
Swen Schillig09a46c62009-08-18 15:43:16 +02001112
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001113 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001114 ret = PTR_ERR(req);
1115 goto out;
1116 }
1117
Swen Schillig09a46c62009-08-18 15:43:16 +02001118 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Swen Schillig01b04752010-07-16 15:37:37 +02001119
1120 zfcp_qdio_sbal_limit(qdio, &req->qdio_req, 2);
1121
1122 ret = zfcp_fsf_setup_ct_els(req, els->req, els->resp, timeout);
Swen Schillig44cc76f2008-10-01 12:42:16 +02001123
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001124 if (ret)
1125 goto failed_send;
1126
Christof Schmitt7c7dc192009-11-24 16:54:13 +01001127 hton24(req->qtcb->bottom.support.d_id, d_id);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001128 req->handler = zfcp_fsf_send_els_handler;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001129 req->data = els;
1130
Swen Schillig2c55b752010-12-02 15:16:13 +01001131 zfcp_dbf_san_req("fssels1", req, d_id);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001132
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001133 ret = zfcp_fsf_req_send(req);
1134 if (ret)
1135 goto failed_send;
1136
1137 goto out;
1138
1139failed_send:
1140 zfcp_fsf_req_free(req);
1141out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001142 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001143 return ret;
1144}
1145
1146int zfcp_fsf_exchange_config_data(struct zfcp_erp_action *erp_action)
1147{
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001148 struct zfcp_fsf_req *req;
Swen Schillig564e1c82009-08-18 15:43:19 +02001149 struct zfcp_qdio *qdio = erp_action->adapter->qdio;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001150 int retval = -EIO;
1151
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001152 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001153 if (zfcp_qdio_sbal_get(qdio))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001154 goto out;
Swen Schillig09a46c62009-08-18 15:43:16 +02001155
Swen Schillig564e1c82009-08-18 15:43:19 +02001156 req = zfcp_fsf_req_create(qdio, FSF_QTCB_EXCHANGE_CONFIG_DATA,
Christof Schmitt1674b402010-04-30 18:09:34 +02001157 SBAL_FLAGS0_TYPE_READ,
Swen Schillig564e1c82009-08-18 15:43:19 +02001158 qdio->adapter->pool.erp_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02001159
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001160 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001161 retval = PTR_ERR(req);
1162 goto out;
1163 }
1164
Swen Schillig09a46c62009-08-18 15:43:16 +02001165 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Christof Schmitt1674b402010-04-30 18:09:34 +02001166 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001167
1168 req->qtcb->bottom.config.feature_selection =
1169 FSF_FEATURE_CFDC |
1170 FSF_FEATURE_LUN_SHARING |
1171 FSF_FEATURE_NOTIFICATION_LOST |
1172 FSF_FEATURE_UPDATE_ALERT;
1173 req->erp_action = erp_action;
1174 req->handler = zfcp_fsf_exchange_config_data_handler;
Christof Schmitte60a6d62010-02-17 11:18:49 +01001175 erp_action->fsf_req_id = req->req_id;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001176
Christof Schmitt287ac012008-07-02 10:56:40 +02001177 zfcp_fsf_start_erp_timer(req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001178 retval = zfcp_fsf_req_send(req);
1179 if (retval) {
1180 zfcp_fsf_req_free(req);
Christof Schmitte60a6d62010-02-17 11:18:49 +01001181 erp_action->fsf_req_id = 0;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001182 }
1183out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001184 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001185 return retval;
1186}
1187
Swen Schillig564e1c82009-08-18 15:43:19 +02001188int zfcp_fsf_exchange_config_data_sync(struct zfcp_qdio *qdio,
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001189 struct fsf_qtcb_bottom_config *data)
1190{
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001191 struct zfcp_fsf_req *req = NULL;
1192 int retval = -EIO;
1193
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001194 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001195 if (zfcp_qdio_sbal_get(qdio))
Christof Schmittada81b72009-04-17 15:08:03 +02001196 goto out_unlock;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001197
Christof Schmitt1674b402010-04-30 18:09:34 +02001198 req = zfcp_fsf_req_create(qdio, FSF_QTCB_EXCHANGE_CONFIG_DATA,
1199 SBAL_FLAGS0_TYPE_READ, NULL);
Swen Schillig09a46c62009-08-18 15:43:16 +02001200
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001201 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001202 retval = PTR_ERR(req);
Christof Schmittada81b72009-04-17 15:08:03 +02001203 goto out_unlock;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001204 }
1205
Christof Schmitt1674b402010-04-30 18:09:34 +02001206 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001207 req->handler = zfcp_fsf_exchange_config_data_handler;
1208
1209 req->qtcb->bottom.config.feature_selection =
1210 FSF_FEATURE_CFDC |
1211 FSF_FEATURE_LUN_SHARING |
1212 FSF_FEATURE_NOTIFICATION_LOST |
1213 FSF_FEATURE_UPDATE_ALERT;
1214
1215 if (data)
1216 req->data = data;
1217
1218 zfcp_fsf_start_timer(req, ZFCP_FSF_REQUEST_TIMEOUT);
1219 retval = zfcp_fsf_req_send(req);
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001220 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001221 if (!retval)
Swen Schillig058b8642009-08-18 15:43:14 +02001222 wait_for_completion(&req->completion);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001223
1224 zfcp_fsf_req_free(req);
Christof Schmittada81b72009-04-17 15:08:03 +02001225 return retval;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001226
Christof Schmittada81b72009-04-17 15:08:03 +02001227out_unlock:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001228 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001229 return retval;
1230}
1231
1232/**
1233 * zfcp_fsf_exchange_port_data - request information about local port
1234 * @erp_action: ERP action for the adapter for which port data is requested
1235 * Returns: 0 on success, error otherwise
1236 */
1237int zfcp_fsf_exchange_port_data(struct zfcp_erp_action *erp_action)
1238{
Swen Schillig564e1c82009-08-18 15:43:19 +02001239 struct zfcp_qdio *qdio = erp_action->adapter->qdio;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001240 struct zfcp_fsf_req *req;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001241 int retval = -EIO;
1242
Swen Schillig564e1c82009-08-18 15:43:19 +02001243 if (!(qdio->adapter->adapter_features & FSF_FEATURE_HBAAPI_MANAGEMENT))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001244 return -EOPNOTSUPP;
1245
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001246 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001247 if (zfcp_qdio_sbal_get(qdio))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001248 goto out;
Swen Schillig09a46c62009-08-18 15:43:16 +02001249
Swen Schillig564e1c82009-08-18 15:43:19 +02001250 req = zfcp_fsf_req_create(qdio, FSF_QTCB_EXCHANGE_PORT_DATA,
Christof Schmitt1674b402010-04-30 18:09:34 +02001251 SBAL_FLAGS0_TYPE_READ,
Swen Schillig564e1c82009-08-18 15:43:19 +02001252 qdio->adapter->pool.erp_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02001253
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001254 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001255 retval = PTR_ERR(req);
1256 goto out;
1257 }
1258
Swen Schillig09a46c62009-08-18 15:43:16 +02001259 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Christof Schmitt1674b402010-04-30 18:09:34 +02001260 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001261
1262 req->handler = zfcp_fsf_exchange_port_data_handler;
1263 req->erp_action = erp_action;
Christof Schmitte60a6d62010-02-17 11:18:49 +01001264 erp_action->fsf_req_id = req->req_id;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001265
Christof Schmitt287ac012008-07-02 10:56:40 +02001266 zfcp_fsf_start_erp_timer(req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001267 retval = zfcp_fsf_req_send(req);
1268 if (retval) {
1269 zfcp_fsf_req_free(req);
Christof Schmitte60a6d62010-02-17 11:18:49 +01001270 erp_action->fsf_req_id = 0;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001271 }
1272out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001273 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001274 return retval;
1275}
1276
1277/**
1278 * zfcp_fsf_exchange_port_data_sync - request information about local port
Swen Schillig564e1c82009-08-18 15:43:19 +02001279 * @qdio: pointer to struct zfcp_qdio
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001280 * @data: pointer to struct fsf_qtcb_bottom_port
1281 * Returns: 0 on success, error otherwise
1282 */
Swen Schillig564e1c82009-08-18 15:43:19 +02001283int zfcp_fsf_exchange_port_data_sync(struct zfcp_qdio *qdio,
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001284 struct fsf_qtcb_bottom_port *data)
1285{
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001286 struct zfcp_fsf_req *req = NULL;
1287 int retval = -EIO;
1288
Swen Schillig564e1c82009-08-18 15:43:19 +02001289 if (!(qdio->adapter->adapter_features & FSF_FEATURE_HBAAPI_MANAGEMENT))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001290 return -EOPNOTSUPP;
1291
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001292 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001293 if (zfcp_qdio_sbal_get(qdio))
Christof Schmittada81b72009-04-17 15:08:03 +02001294 goto out_unlock;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001295
Christof Schmitt1674b402010-04-30 18:09:34 +02001296 req = zfcp_fsf_req_create(qdio, FSF_QTCB_EXCHANGE_PORT_DATA,
1297 SBAL_FLAGS0_TYPE_READ, NULL);
Swen Schillig09a46c62009-08-18 15:43:16 +02001298
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001299 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001300 retval = PTR_ERR(req);
Christof Schmittada81b72009-04-17 15:08:03 +02001301 goto out_unlock;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001302 }
1303
1304 if (data)
1305 req->data = data;
1306
Christof Schmitt1674b402010-04-30 18:09:34 +02001307 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001308
1309 req->handler = zfcp_fsf_exchange_port_data_handler;
1310 zfcp_fsf_start_timer(req, ZFCP_FSF_REQUEST_TIMEOUT);
1311 retval = zfcp_fsf_req_send(req);
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001312 spin_unlock_irq(&qdio->req_q_lock);
Christof Schmittada81b72009-04-17 15:08:03 +02001313
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001314 if (!retval)
Swen Schillig058b8642009-08-18 15:43:14 +02001315 wait_for_completion(&req->completion);
1316
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001317 zfcp_fsf_req_free(req);
1318
1319 return retval;
Christof Schmittada81b72009-04-17 15:08:03 +02001320
1321out_unlock:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001322 spin_unlock_irq(&qdio->req_q_lock);
Christof Schmittada81b72009-04-17 15:08:03 +02001323 return retval;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001324}
1325
1326static void zfcp_fsf_open_port_handler(struct zfcp_fsf_req *req)
1327{
1328 struct zfcp_port *port = req->data;
1329 struct fsf_qtcb_header *header = &req->qtcb->header;
Christof Schmitt9d05ce22009-11-24 16:54:09 +01001330 struct fc_els_flogi *plogi;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001331
1332 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
Martin Petermanna17c5852009-05-15 13:18:19 +02001333 goto out;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001334
1335 switch (header->fsf_status) {
1336 case FSF_PORT_ALREADY_OPEN:
1337 break;
1338 case FSF_ACCESS_DENIED:
Christof Schmitta1ca4832010-09-08 14:39:59 +02001339 zfcp_cfdc_port_denied(port, &header->fsf_status_qual);
1340 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001341 break;
1342 case FSF_MAXIMUM_NUMBER_OF_PORTS_EXCEEDED:
1343 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +02001344 "Not enough FCP adapter resources to open "
Swen Schillig7ba58c92008-10-01 12:42:18 +02001345 "remote port 0x%016Lx\n",
1346 (unsigned long long)port->wwpn);
Swen Schilligedaed852010-09-08 14:40:01 +02001347 zfcp_erp_set_port_status(port,
1348 ZFCP_STATUS_COMMON_ERP_FAILED);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001349 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1350 break;
1351 case FSF_ADAPTER_STATUS_AVAILABLE:
1352 switch (header->fsf_status_qual.word[0]) {
1353 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
1354 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001355 case FSF_SQ_NO_RETRY_POSSIBLE:
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001356 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1357 break;
1358 }
1359 break;
1360 case FSF_GOOD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 port->handle = header->port_handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 atomic_set_mask(ZFCP_STATUS_COMMON_OPEN |
1363 ZFCP_STATUS_PORT_PHYS_OPEN, &port->status);
Andreas Herrmannd736a27b2005-06-13 13:23:57 +02001364 atomic_clear_mask(ZFCP_STATUS_COMMON_ACCESS_DENIED |
1365 ZFCP_STATUS_COMMON_ACCESS_BOXED,
1366 &port->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 /* check whether D_ID has changed during open */
1368 /*
1369 * FIXME: This check is not airtight, as the FCP channel does
1370 * not monitor closures of target port connections caused on
1371 * the remote side. Thus, they might miss out on invalidating
1372 * locally cached WWPNs (and other N_Port parameters) of gone
1373 * target ports. So, our heroic attempt to make things safe
1374 * could be undermined by 'open port' response data tagged with
1375 * obsolete WWPNs. Another reason to monitor potential
1376 * connection closures ourself at least (by interpreting
1377 * incoming ELS' and unsolicited status). It just crosses my
1378 * mind that one should be able to cross-check by means of
1379 * another GID_PN straight after a port has been opened.
1380 * Alternately, an ADISC/PDISC ELS should suffice, as well.
1381 */
Christof Schmitt9d05ce22009-11-24 16:54:09 +01001382 plogi = (struct fc_els_flogi *) req->qtcb->bottom.support.els;
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +01001383 if (req->qtcb->bottom.support.els1_length >=
Christof Schmitt9d05ce22009-11-24 16:54:09 +01001384 FSF_PLOGI_MIN_LEN)
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001385 zfcp_fc_plogi_evaluate(port, plogi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 case FSF_UNKNOWN_OP_SUBTYPE:
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001388 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 break;
1390 }
Martin Petermanna17c5852009-05-15 13:18:19 +02001391
1392out:
Christof Schmitt615f59e2010-02-17 11:18:56 +01001393 put_device(&port->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394}
1395
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001396/**
1397 * zfcp_fsf_open_port - create and send open port request
1398 * @erp_action: pointer to struct zfcp_erp_action
1399 * Returns: 0 on success, error otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 */
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001401int zfcp_fsf_open_port(struct zfcp_erp_action *erp_action)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402{
Swen Schillig564e1c82009-08-18 15:43:19 +02001403 struct zfcp_qdio *qdio = erp_action->adapter->qdio;
Martin Petermanna17c5852009-05-15 13:18:19 +02001404 struct zfcp_port *port = erp_action->port;
Swen Schillig564e1c82009-08-18 15:43:19 +02001405 struct zfcp_fsf_req *req;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001406 int retval = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001408 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001409 if (zfcp_qdio_sbal_get(qdio))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
Swen Schillig564e1c82009-08-18 15:43:19 +02001412 req = zfcp_fsf_req_create(qdio, FSF_QTCB_OPEN_PORT_WITH_DID,
Christof Schmitt1674b402010-04-30 18:09:34 +02001413 SBAL_FLAGS0_TYPE_READ,
Swen Schillig564e1c82009-08-18 15:43:19 +02001414 qdio->adapter->pool.erp_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02001415
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001416 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001417 retval = PTR_ERR(req);
1418 goto out;
1419 }
1420
Swen Schillig09a46c62009-08-18 15:43:16 +02001421 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Christof Schmitt1674b402010-04-30 18:09:34 +02001422 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001424 req->handler = zfcp_fsf_open_port_handler;
Christof Schmitt800c0ca2009-11-24 16:54:12 +01001425 hton24(req->qtcb->bottom.support.d_id, port->d_id);
Martin Petermanna17c5852009-05-15 13:18:19 +02001426 req->data = port;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001427 req->erp_action = erp_action;
Christof Schmitte60a6d62010-02-17 11:18:49 +01001428 erp_action->fsf_req_id = req->req_id;
Christof Schmitt615f59e2010-02-17 11:18:56 +01001429 get_device(&port->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
Christof Schmitt287ac012008-07-02 10:56:40 +02001431 zfcp_fsf_start_erp_timer(req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001432 retval = zfcp_fsf_req_send(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 if (retval) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001434 zfcp_fsf_req_free(req);
Christof Schmitte60a6d62010-02-17 11:18:49 +01001435 erp_action->fsf_req_id = 0;
Christof Schmitt615f59e2010-02-17 11:18:56 +01001436 put_device(&port->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001438out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001439 spin_unlock_irq(&qdio->req_q_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 return retval;
1441}
1442
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001443static void zfcp_fsf_close_port_handler(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444{
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001445 struct zfcp_port *port = req->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001447 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
Swen Schillig44cc76f2008-10-01 12:42:16 +02001448 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001450 switch (req->qtcb->header.fsf_status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 case FSF_PORT_HANDLE_NOT_VALID:
Swen Schilligea4a3a62010-12-02 15:16:16 +01001452 zfcp_erp_adapter_reopen(port->adapter, 0, "fscph_1");
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001453 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 case FSF_ADAPTER_STATUS_AVAILABLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 case FSF_GOOD:
Swen Schilligedaed852010-09-08 14:40:01 +02001458 zfcp_erp_clear_port_status(port, ZFCP_STATUS_COMMON_OPEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461}
1462
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001463/**
1464 * zfcp_fsf_close_port - create and send close port request
1465 * @erp_action: pointer to struct zfcp_erp_action
1466 * Returns: 0 on success, error otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 */
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001468int zfcp_fsf_close_port(struct zfcp_erp_action *erp_action)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469{
Swen Schillig564e1c82009-08-18 15:43:19 +02001470 struct zfcp_qdio *qdio = erp_action->adapter->qdio;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001471 struct zfcp_fsf_req *req;
1472 int retval = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001474 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001475 if (zfcp_qdio_sbal_get(qdio))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
Swen Schillig564e1c82009-08-18 15:43:19 +02001478 req = zfcp_fsf_req_create(qdio, FSF_QTCB_CLOSE_PORT,
Christof Schmitt1674b402010-04-30 18:09:34 +02001479 SBAL_FLAGS0_TYPE_READ,
Swen Schillig564e1c82009-08-18 15:43:19 +02001480 qdio->adapter->pool.erp_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02001481
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001482 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001483 retval = PTR_ERR(req);
1484 goto out;
1485 }
1486
Swen Schillig09a46c62009-08-18 15:43:16 +02001487 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Christof Schmitt1674b402010-04-30 18:09:34 +02001488 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001490 req->handler = zfcp_fsf_close_port_handler;
1491 req->data = erp_action->port;
1492 req->erp_action = erp_action;
1493 req->qtcb->header.port_handle = erp_action->port->handle;
Christof Schmitte60a6d62010-02-17 11:18:49 +01001494 erp_action->fsf_req_id = req->req_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
Christof Schmitt287ac012008-07-02 10:56:40 +02001496 zfcp_fsf_start_erp_timer(req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001497 retval = zfcp_fsf_req_send(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 if (retval) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001499 zfcp_fsf_req_free(req);
Christof Schmitte60a6d62010-02-17 11:18:49 +01001500 erp_action->fsf_req_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001502out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001503 spin_unlock_irq(&qdio->req_q_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 return retval;
1505}
1506
Swen Schillig5ab944f2008-10-01 12:42:17 +02001507static void zfcp_fsf_open_wka_port_handler(struct zfcp_fsf_req *req)
1508{
Christof Schmittbd0072e2009-11-24 16:54:11 +01001509 struct zfcp_fc_wka_port *wka_port = req->data;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001510 struct fsf_qtcb_header *header = &req->qtcb->header;
1511
1512 if (req->status & ZFCP_STATUS_FSFREQ_ERROR) {
Christof Schmittbd0072e2009-11-24 16:54:11 +01001513 wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001514 goto out;
1515 }
1516
1517 switch (header->fsf_status) {
1518 case FSF_MAXIMUM_NUMBER_OF_PORTS_EXCEEDED:
1519 dev_warn(&req->adapter->ccw_device->dev,
1520 "Opening WKA port 0x%x failed\n", wka_port->d_id);
Christof Schmittdceab652009-05-15 13:18:18 +02001521 /* fall through */
Swen Schillig5ab944f2008-10-01 12:42:17 +02001522 case FSF_ADAPTER_STATUS_AVAILABLE:
1523 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Christof Schmittdceab652009-05-15 13:18:18 +02001524 /* fall through */
Swen Schillig5ab944f2008-10-01 12:42:17 +02001525 case FSF_ACCESS_DENIED:
Christof Schmittbd0072e2009-11-24 16:54:11 +01001526 wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001527 break;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001528 case FSF_GOOD:
1529 wka_port->handle = header->port_handle;
Swen Schillig27f492c2009-07-13 15:06:13 +02001530 /* fall through */
1531 case FSF_PORT_ALREADY_OPEN:
Christof Schmittbd0072e2009-11-24 16:54:11 +01001532 wka_port->status = ZFCP_FC_WKA_PORT_ONLINE;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001533 }
1534out:
1535 wake_up(&wka_port->completion_wq);
1536}
1537
1538/**
1539 * zfcp_fsf_open_wka_port - create and send open wka-port request
Christof Schmittbd0072e2009-11-24 16:54:11 +01001540 * @wka_port: pointer to struct zfcp_fc_wka_port
Swen Schillig5ab944f2008-10-01 12:42:17 +02001541 * Returns: 0 on success, error otherwise
1542 */
Christof Schmittbd0072e2009-11-24 16:54:11 +01001543int zfcp_fsf_open_wka_port(struct zfcp_fc_wka_port *wka_port)
Swen Schillig5ab944f2008-10-01 12:42:17 +02001544{
Swen Schillig564e1c82009-08-18 15:43:19 +02001545 struct zfcp_qdio *qdio = wka_port->adapter->qdio;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001546 struct zfcp_fsf_req *req;
1547 int retval = -EIO;
1548
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001549 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001550 if (zfcp_qdio_sbal_get(qdio))
Swen Schillig5ab944f2008-10-01 12:42:17 +02001551 goto out;
1552
Swen Schillig564e1c82009-08-18 15:43:19 +02001553 req = zfcp_fsf_req_create(qdio, FSF_QTCB_OPEN_PORT_WITH_DID,
Christof Schmitt1674b402010-04-30 18:09:34 +02001554 SBAL_FLAGS0_TYPE_READ,
Swen Schillig564e1c82009-08-18 15:43:19 +02001555 qdio->adapter->pool.erp_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02001556
Tobias Klauser4e7d7af2011-02-22 19:54:38 +01001557 if (IS_ERR(req)) {
Swen Schillig5ab944f2008-10-01 12:42:17 +02001558 retval = PTR_ERR(req);
1559 goto out;
1560 }
1561
Swen Schillig09a46c62009-08-18 15:43:16 +02001562 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Christof Schmitt1674b402010-04-30 18:09:34 +02001563 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schillig5ab944f2008-10-01 12:42:17 +02001564
1565 req->handler = zfcp_fsf_open_wka_port_handler;
Christof Schmitt800c0ca2009-11-24 16:54:12 +01001566 hton24(req->qtcb->bottom.support.d_id, wka_port->d_id);
Swen Schillig5ab944f2008-10-01 12:42:17 +02001567 req->data = wka_port;
1568
1569 zfcp_fsf_start_timer(req, ZFCP_FSF_REQUEST_TIMEOUT);
1570 retval = zfcp_fsf_req_send(req);
1571 if (retval)
1572 zfcp_fsf_req_free(req);
1573out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001574 spin_unlock_irq(&qdio->req_q_lock);
Swen Schillig5ab944f2008-10-01 12:42:17 +02001575 return retval;
1576}
1577
1578static void zfcp_fsf_close_wka_port_handler(struct zfcp_fsf_req *req)
1579{
Christof Schmittbd0072e2009-11-24 16:54:11 +01001580 struct zfcp_fc_wka_port *wka_port = req->data;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001581
1582 if (req->qtcb->header.fsf_status == FSF_PORT_HANDLE_NOT_VALID) {
1583 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Swen Schilligea4a3a62010-12-02 15:16:16 +01001584 zfcp_erp_adapter_reopen(wka_port->adapter, 0, "fscwph1");
Swen Schillig5ab944f2008-10-01 12:42:17 +02001585 }
1586
Christof Schmittbd0072e2009-11-24 16:54:11 +01001587 wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001588 wake_up(&wka_port->completion_wq);
1589}
1590
1591/**
1592 * zfcp_fsf_close_wka_port - create and send close wka port request
Christof Schmittbd0072e2009-11-24 16:54:11 +01001593 * @wka_port: WKA port to open
Swen Schillig5ab944f2008-10-01 12:42:17 +02001594 * Returns: 0 on success, error otherwise
1595 */
Christof Schmittbd0072e2009-11-24 16:54:11 +01001596int zfcp_fsf_close_wka_port(struct zfcp_fc_wka_port *wka_port)
Swen Schillig5ab944f2008-10-01 12:42:17 +02001597{
Swen Schillig564e1c82009-08-18 15:43:19 +02001598 struct zfcp_qdio *qdio = wka_port->adapter->qdio;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001599 struct zfcp_fsf_req *req;
1600 int retval = -EIO;
1601
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001602 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001603 if (zfcp_qdio_sbal_get(qdio))
Swen Schillig5ab944f2008-10-01 12:42:17 +02001604 goto out;
1605
Swen Schillig564e1c82009-08-18 15:43:19 +02001606 req = zfcp_fsf_req_create(qdio, FSF_QTCB_CLOSE_PORT,
Christof Schmitt1674b402010-04-30 18:09:34 +02001607 SBAL_FLAGS0_TYPE_READ,
Swen Schillig564e1c82009-08-18 15:43:19 +02001608 qdio->adapter->pool.erp_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02001609
Tobias Klauser4e7d7af2011-02-22 19:54:38 +01001610 if (IS_ERR(req)) {
Swen Schillig5ab944f2008-10-01 12:42:17 +02001611 retval = PTR_ERR(req);
1612 goto out;
1613 }
1614
Swen Schillig09a46c62009-08-18 15:43:16 +02001615 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Christof Schmitt1674b402010-04-30 18:09:34 +02001616 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schillig5ab944f2008-10-01 12:42:17 +02001617
1618 req->handler = zfcp_fsf_close_wka_port_handler;
1619 req->data = wka_port;
1620 req->qtcb->header.port_handle = wka_port->handle;
1621
1622 zfcp_fsf_start_timer(req, ZFCP_FSF_REQUEST_TIMEOUT);
1623 retval = zfcp_fsf_req_send(req);
1624 if (retval)
1625 zfcp_fsf_req_free(req);
1626out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001627 spin_unlock_irq(&qdio->req_q_lock);
Swen Schillig5ab944f2008-10-01 12:42:17 +02001628 return retval;
1629}
1630
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001631static void zfcp_fsf_close_physical_port_handler(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632{
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001633 struct zfcp_port *port = req->data;
1634 struct fsf_qtcb_header *header = &req->qtcb->header;
Christof Schmittb62a8d92010-09-08 14:39:55 +02001635 struct scsi_device *sdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001637 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
Christof Schmitta5b11dd2009-03-02 13:08:54 +01001638 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 switch (header->fsf_status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 case FSF_PORT_HANDLE_NOT_VALID:
Swen Schilligea4a3a62010-12-02 15:16:16 +01001642 zfcp_erp_adapter_reopen(port->adapter, 0, "fscpph1");
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001643 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 case FSF_ACCESS_DENIED:
Christof Schmitta1ca4832010-09-08 14:39:59 +02001646 zfcp_cfdc_port_denied(port, &header->fsf_status_qual);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 case FSF_PORT_BOXED:
Christof Schmitt5c815d12008-03-10 16:18:54 +01001649 /* can't use generic zfcp_erp_modify_port_status because
1650 * ZFCP_STATUS_COMMON_OPEN must not be reset for the port */
1651 atomic_clear_mask(ZFCP_STATUS_PORT_PHYS_OPEN, &port->status);
Christof Schmittb62a8d92010-09-08 14:39:55 +02001652 shost_for_each_device(sdev, port->adapter->scsi_host)
1653 if (sdev_to_zfcp(sdev)->port == port)
1654 atomic_clear_mask(ZFCP_STATUS_COMMON_OPEN,
1655 &sdev_to_zfcp(sdev)->status);
Swen Schilligedaed852010-09-08 14:40:01 +02001656 zfcp_erp_set_port_status(port, ZFCP_STATUS_COMMON_ACCESS_BOXED);
1657 zfcp_erp_port_reopen(port, ZFCP_STATUS_COMMON_ERP_FAILED,
Swen Schilligea4a3a62010-12-02 15:16:16 +01001658 "fscpph2");
Christof Schmitt4c571c62009-11-24 16:54:15 +01001659 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 case FSF_ADAPTER_STATUS_AVAILABLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 switch (header->fsf_status_qual.word[0]) {
1663 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001664 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001666 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 }
1669 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 case FSF_GOOD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 /* can't use generic zfcp_erp_modify_port_status because
1672 * ZFCP_STATUS_COMMON_OPEN must not be reset for the port
1673 */
1674 atomic_clear_mask(ZFCP_STATUS_PORT_PHYS_OPEN, &port->status);
Christof Schmittb62a8d92010-09-08 14:39:55 +02001675 shost_for_each_device(sdev, port->adapter->scsi_host)
1676 if (sdev_to_zfcp(sdev)->port == port)
1677 atomic_clear_mask(ZFCP_STATUS_COMMON_OPEN,
1678 &sdev_to_zfcp(sdev)->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681}
1682
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001683/**
1684 * zfcp_fsf_close_physical_port - close physical port
1685 * @erp_action: pointer to struct zfcp_erp_action
1686 * Returns: 0 on success
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 */
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001688int zfcp_fsf_close_physical_port(struct zfcp_erp_action *erp_action)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689{
Swen Schillig564e1c82009-08-18 15:43:19 +02001690 struct zfcp_qdio *qdio = erp_action->adapter->qdio;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001691 struct zfcp_fsf_req *req;
1692 int retval = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001694 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001695 if (zfcp_qdio_sbal_get(qdio))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697
Swen Schillig564e1c82009-08-18 15:43:19 +02001698 req = zfcp_fsf_req_create(qdio, FSF_QTCB_CLOSE_PHYSICAL_PORT,
Christof Schmitt1674b402010-04-30 18:09:34 +02001699 SBAL_FLAGS0_TYPE_READ,
Swen Schillig564e1c82009-08-18 15:43:19 +02001700 qdio->adapter->pool.erp_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02001701
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001702 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001703 retval = PTR_ERR(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 goto out;
1705 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001706
Swen Schillig09a46c62009-08-18 15:43:16 +02001707 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Christof Schmitt1674b402010-04-30 18:09:34 +02001708 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001709
1710 req->data = erp_action->port;
1711 req->qtcb->header.port_handle = erp_action->port->handle;
1712 req->erp_action = erp_action;
1713 req->handler = zfcp_fsf_close_physical_port_handler;
Christof Schmitte60a6d62010-02-17 11:18:49 +01001714 erp_action->fsf_req_id = req->req_id;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001715
Christof Schmitt287ac012008-07-02 10:56:40 +02001716 zfcp_fsf_start_erp_timer(req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001717 retval = zfcp_fsf_req_send(req);
1718 if (retval) {
1719 zfcp_fsf_req_free(req);
Christof Schmitte60a6d62010-02-17 11:18:49 +01001720 erp_action->fsf_req_id = 0;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001721 }
1722out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001723 spin_unlock_irq(&qdio->req_q_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 return retval;
1725}
1726
Christof Schmittb62a8d92010-09-08 14:39:55 +02001727static void zfcp_fsf_open_lun_handler(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728{
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001729 struct zfcp_adapter *adapter = req->adapter;
Christof Schmittb62a8d92010-09-08 14:39:55 +02001730 struct scsi_device *sdev = req->data;
1731 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001732 struct fsf_qtcb_header *header = &req->qtcb->header;
1733 struct fsf_qtcb_bottom_support *bottom = &req->qtcb->bottom.support;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001735 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
Swen Schillig44cc76f2008-10-01 12:42:16 +02001736 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 atomic_clear_mask(ZFCP_STATUS_COMMON_ACCESS_DENIED |
Heiko Carstensb64ddf92007-05-08 11:19:57 +02001739 ZFCP_STATUS_COMMON_ACCESS_BOXED |
Christof Schmittb62a8d92010-09-08 14:39:55 +02001740 ZFCP_STATUS_LUN_SHARED |
1741 ZFCP_STATUS_LUN_READONLY,
1742 &zfcp_sdev->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 switch (header->fsf_status) {
1745
1746 case FSF_PORT_HANDLE_NOT_VALID:
Swen Schilligea4a3a62010-12-02 15:16:16 +01001747 zfcp_erp_adapter_reopen(adapter, 0, "fsouh_1");
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001748 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 case FSF_LUN_ALREADY_OPEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 case FSF_ACCESS_DENIED:
Christof Schmitta1ca4832010-09-08 14:39:59 +02001752 zfcp_cfdc_lun_denied(sdev, &header->fsf_status_qual);
1753 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 case FSF_PORT_BOXED:
Swen Schilligedaed852010-09-08 14:40:01 +02001756 zfcp_erp_set_port_status(zfcp_sdev->port,
1757 ZFCP_STATUS_COMMON_ACCESS_BOXED);
1758 zfcp_erp_port_reopen(zfcp_sdev->port,
Swen Schilligea4a3a62010-12-02 15:16:16 +01001759 ZFCP_STATUS_COMMON_ERP_FAILED, "fsouh_2");
Christof Schmitt4c571c62009-11-24 16:54:15 +01001760 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 case FSF_LUN_SHARING_VIOLATION:
Christof Schmitta1ca4832010-09-08 14:39:59 +02001763 zfcp_cfdc_lun_shrng_vltn(sdev, &header->fsf_status_qual);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001764 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 case FSF_MAXIMUM_NUMBER_OF_LUNS_EXCEEDED:
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001767 dev_warn(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +02001768 "No handle is available for LUN "
1769 "0x%016Lx on port 0x%016Lx\n",
Christof Schmittb62a8d92010-09-08 14:39:55 +02001770 (unsigned long long)zfcp_scsi_dev_lun(sdev),
1771 (unsigned long long)zfcp_sdev->port->wwpn);
Swen Schilligedaed852010-09-08 14:40:01 +02001772 zfcp_erp_set_lun_status(sdev, ZFCP_STATUS_COMMON_ERP_FAILED);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001773 /* fall through */
1774 case FSF_INVALID_COMMAND_OPTION:
1775 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 case FSF_ADAPTER_STATUS_AVAILABLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 switch (header->fsf_status_qual.word[0]) {
1779 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
Christof Schmittb62a8d92010-09-08 14:39:55 +02001780 zfcp_fc_test_link(zfcp_sdev->port);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001781 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001783 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 }
1786 break;
1787
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 case FSF_GOOD:
Christof Schmittb62a8d92010-09-08 14:39:55 +02001789 zfcp_sdev->lun_handle = header->lun_handle;
1790 atomic_set_mask(ZFCP_STATUS_COMMON_OPEN, &zfcp_sdev->status);
Christof Schmitta1ca4832010-09-08 14:39:59 +02001791 zfcp_cfdc_open_lun_eval(sdev, bottom);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794}
1795
1796/**
Christof Schmittb62a8d92010-09-08 14:39:55 +02001797 * zfcp_fsf_open_lun - open LUN
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001798 * @erp_action: pointer to struct zfcp_erp_action
1799 * Returns: 0 on success, error otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 */
Christof Schmittb62a8d92010-09-08 14:39:55 +02001801int zfcp_fsf_open_lun(struct zfcp_erp_action *erp_action)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802{
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001803 struct zfcp_adapter *adapter = erp_action->adapter;
Swen Schillig564e1c82009-08-18 15:43:19 +02001804 struct zfcp_qdio *qdio = adapter->qdio;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001805 struct zfcp_fsf_req *req;
1806 int retval = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001808 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001809 if (zfcp_qdio_sbal_get(qdio))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001810 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811
Swen Schillig564e1c82009-08-18 15:43:19 +02001812 req = zfcp_fsf_req_create(qdio, FSF_QTCB_OPEN_LUN,
Christof Schmitt1674b402010-04-30 18:09:34 +02001813 SBAL_FLAGS0_TYPE_READ,
Swen Schilliga4623c42009-08-18 15:43:15 +02001814 adapter->pool.erp_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02001815
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001816 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001817 retval = PTR_ERR(req);
1818 goto out;
Christof Schmittba172422007-12-20 12:30:26 +01001819 }
1820
Swen Schillig09a46c62009-08-18 15:43:16 +02001821 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Christof Schmitt1674b402010-04-30 18:09:34 +02001822 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001824 req->qtcb->header.port_handle = erp_action->port->handle;
Christof Schmittb62a8d92010-09-08 14:39:55 +02001825 req->qtcb->bottom.support.fcp_lun = zfcp_scsi_dev_lun(erp_action->sdev);
1826 req->handler = zfcp_fsf_open_lun_handler;
1827 req->data = erp_action->sdev;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001828 req->erp_action = erp_action;
Christof Schmitte60a6d62010-02-17 11:18:49 +01001829 erp_action->fsf_req_id = req->req_id;
Andreas Herrmann059c97d2005-09-13 21:47:52 +02001830
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001831 if (!(adapter->connection_features & FSF_FEATURE_NPIV_MODE))
1832 req->qtcb->bottom.support.option = FSF_OPEN_LUN_SUPPRESS_BOXING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833
Christof Schmitt287ac012008-07-02 10:56:40 +02001834 zfcp_fsf_start_erp_timer(req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001835 retval = zfcp_fsf_req_send(req);
1836 if (retval) {
1837 zfcp_fsf_req_free(req);
Christof Schmitte60a6d62010-02-17 11:18:49 +01001838 erp_action->fsf_req_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001840out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001841 spin_unlock_irq(&qdio->req_q_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 return retval;
1843}
1844
Christof Schmittb62a8d92010-09-08 14:39:55 +02001845static void zfcp_fsf_close_lun_handler(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846{
Christof Schmittb62a8d92010-09-08 14:39:55 +02001847 struct scsi_device *sdev = req->data;
1848 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001849
1850 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
Swen Schillig44cc76f2008-10-01 12:42:16 +02001851 return;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001852
1853 switch (req->qtcb->header.fsf_status) {
1854 case FSF_PORT_HANDLE_NOT_VALID:
Swen Schilligea4a3a62010-12-02 15:16:16 +01001855 zfcp_erp_adapter_reopen(zfcp_sdev->port->adapter, 0, "fscuh_1");
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001856 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1857 break;
1858 case FSF_LUN_HANDLE_NOT_VALID:
Swen Schilligea4a3a62010-12-02 15:16:16 +01001859 zfcp_erp_port_reopen(zfcp_sdev->port, 0, "fscuh_2");
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001860 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1861 break;
1862 case FSF_PORT_BOXED:
Swen Schilligedaed852010-09-08 14:40:01 +02001863 zfcp_erp_set_port_status(zfcp_sdev->port,
1864 ZFCP_STATUS_COMMON_ACCESS_BOXED);
1865 zfcp_erp_port_reopen(zfcp_sdev->port,
Swen Schilligea4a3a62010-12-02 15:16:16 +01001866 ZFCP_STATUS_COMMON_ERP_FAILED, "fscuh_3");
Christof Schmitt4c571c62009-11-24 16:54:15 +01001867 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001868 break;
1869 case FSF_ADAPTER_STATUS_AVAILABLE:
1870 switch (req->qtcb->header.fsf_status_qual.word[0]) {
1871 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
Christof Schmittb62a8d92010-09-08 14:39:55 +02001872 zfcp_fc_test_link(zfcp_sdev->port);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001873 /* fall through */
1874 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
1875 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1876 break;
1877 }
1878 break;
1879 case FSF_GOOD:
Christof Schmittb62a8d92010-09-08 14:39:55 +02001880 atomic_clear_mask(ZFCP_STATUS_COMMON_OPEN, &zfcp_sdev->status);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001881 break;
1882 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001883}
1884
1885/**
Christof Schmittb62a8d92010-09-08 14:39:55 +02001886 * zfcp_fsf_close_LUN - close LUN
1887 * @erp_action: pointer to erp_action triggering the "close LUN"
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001888 * Returns: 0 on success, error otherwise
1889 */
Christof Schmittb62a8d92010-09-08 14:39:55 +02001890int zfcp_fsf_close_lun(struct zfcp_erp_action *erp_action)
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001891{
Swen Schillig564e1c82009-08-18 15:43:19 +02001892 struct zfcp_qdio *qdio = erp_action->adapter->qdio;
Christof Schmittb62a8d92010-09-08 14:39:55 +02001893 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(erp_action->sdev);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001894 struct zfcp_fsf_req *req;
1895 int retval = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001897 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001898 if (zfcp_qdio_sbal_get(qdio))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 goto out;
Swen Schillig09a46c62009-08-18 15:43:16 +02001900
Swen Schillig564e1c82009-08-18 15:43:19 +02001901 req = zfcp_fsf_req_create(qdio, FSF_QTCB_CLOSE_LUN,
Christof Schmitt1674b402010-04-30 18:09:34 +02001902 SBAL_FLAGS0_TYPE_READ,
Swen Schillig564e1c82009-08-18 15:43:19 +02001903 qdio->adapter->pool.erp_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02001904
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001905 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001906 retval = PTR_ERR(req);
1907 goto out;
1908 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909
Swen Schillig09a46c62009-08-18 15:43:16 +02001910 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Christof Schmitt1674b402010-04-30 18:09:34 +02001911 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001913 req->qtcb->header.port_handle = erp_action->port->handle;
Christof Schmittb62a8d92010-09-08 14:39:55 +02001914 req->qtcb->header.lun_handle = zfcp_sdev->lun_handle;
1915 req->handler = zfcp_fsf_close_lun_handler;
1916 req->data = erp_action->sdev;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001917 req->erp_action = erp_action;
Christof Schmitte60a6d62010-02-17 11:18:49 +01001918 erp_action->fsf_req_id = req->req_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919
Christof Schmitt287ac012008-07-02 10:56:40 +02001920 zfcp_fsf_start_erp_timer(req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001921 retval = zfcp_fsf_req_send(req);
1922 if (retval) {
1923 zfcp_fsf_req_free(req);
Christof Schmitte60a6d62010-02-17 11:18:49 +01001924 erp_action->fsf_req_id = 0;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001925 }
1926out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001927 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001928 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929}
1930
Christof Schmittc9615852008-05-06 11:00:05 +02001931static void zfcp_fsf_update_lat(struct fsf_latency_record *lat_rec, u32 lat)
1932{
1933 lat_rec->sum += lat;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001934 lat_rec->min = min(lat_rec->min, lat);
1935 lat_rec->max = max(lat_rec->max, lat);
Christof Schmittc9615852008-05-06 11:00:05 +02001936}
1937
Christof Schmittd9742b42009-11-24 16:54:03 +01001938static void zfcp_fsf_req_trace(struct zfcp_fsf_req *req, struct scsi_cmnd *scsi)
Christof Schmittc9615852008-05-06 11:00:05 +02001939{
Christof Schmittd9742b42009-11-24 16:54:03 +01001940 struct fsf_qual_latency_info *lat_in;
1941 struct latency_cont *lat = NULL;
Christof Schmittb62a8d92010-09-08 14:39:55 +02001942 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(scsi->device);
Christof Schmittd9742b42009-11-24 16:54:03 +01001943 struct zfcp_blk_drv_data blktrc;
1944 int ticks = req->adapter->timer_ticks;
Christof Schmittc9615852008-05-06 11:00:05 +02001945
Christof Schmittd9742b42009-11-24 16:54:03 +01001946 lat_in = &req->qtcb->prefix.prot_status_qual.latency_info;
Christof Schmittc9615852008-05-06 11:00:05 +02001947
Christof Schmittd9742b42009-11-24 16:54:03 +01001948 blktrc.flags = 0;
1949 blktrc.magic = ZFCP_BLK_DRV_DATA_MAGIC;
1950 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
1951 blktrc.flags |= ZFCP_BLK_REQ_ERROR;
Swen Schillig706eca42010-07-16 15:37:38 +02001952 blktrc.inb_usage = 0;
Christof Schmitt34c2b712010-02-17 11:18:59 +01001953 blktrc.outb_usage = req->qdio_req.qdio_outb_usage;
Christof Schmittd9742b42009-11-24 16:54:03 +01001954
Christof Schmitt5bbf2972010-04-01 13:04:08 +02001955 if (req->adapter->adapter_features & FSF_FEATURE_MEASUREMENT_DATA &&
1956 !(req->status & ZFCP_STATUS_FSFREQ_ERROR)) {
Christof Schmittd9742b42009-11-24 16:54:03 +01001957 blktrc.flags |= ZFCP_BLK_LAT_VALID;
1958 blktrc.channel_lat = lat_in->channel_lat * ticks;
1959 blktrc.fabric_lat = lat_in->fabric_lat * ticks;
1960
1961 switch (req->qtcb->bottom.io.data_direction) {
Felix Beckef3eb712010-07-16 15:37:42 +02001962 case FSF_DATADIR_DIF_READ_STRIP:
1963 case FSF_DATADIR_DIF_READ_CONVERT:
Christof Schmittd9742b42009-11-24 16:54:03 +01001964 case FSF_DATADIR_READ:
Christof Schmittb62a8d92010-09-08 14:39:55 +02001965 lat = &zfcp_sdev->latencies.read;
Christof Schmittd9742b42009-11-24 16:54:03 +01001966 break;
Felix Beckef3eb712010-07-16 15:37:42 +02001967 case FSF_DATADIR_DIF_WRITE_INSERT:
1968 case FSF_DATADIR_DIF_WRITE_CONVERT:
Christof Schmittd9742b42009-11-24 16:54:03 +01001969 case FSF_DATADIR_WRITE:
Christof Schmittb62a8d92010-09-08 14:39:55 +02001970 lat = &zfcp_sdev->latencies.write;
Christof Schmittd9742b42009-11-24 16:54:03 +01001971 break;
1972 case FSF_DATADIR_CMND:
Christof Schmittb62a8d92010-09-08 14:39:55 +02001973 lat = &zfcp_sdev->latencies.cmd;
Christof Schmittd9742b42009-11-24 16:54:03 +01001974 break;
1975 }
1976
1977 if (lat) {
Christof Schmittb62a8d92010-09-08 14:39:55 +02001978 spin_lock(&zfcp_sdev->latencies.lock);
Christof Schmittd9742b42009-11-24 16:54:03 +01001979 zfcp_fsf_update_lat(&lat->channel, lat_in->channel_lat);
1980 zfcp_fsf_update_lat(&lat->fabric, lat_in->fabric_lat);
1981 lat->counter++;
Christof Schmittb62a8d92010-09-08 14:39:55 +02001982 spin_unlock(&zfcp_sdev->latencies.lock);
Christof Schmittd9742b42009-11-24 16:54:03 +01001983 }
Christof Schmittc9615852008-05-06 11:00:05 +02001984 }
1985
Christof Schmittd9742b42009-11-24 16:54:03 +01001986 blk_add_driver_data(scsi->request->q, scsi->request, &blktrc,
1987 sizeof(blktrc));
Christof Schmittc9615852008-05-06 11:00:05 +02001988}
1989
Christof Schmittc61b5362010-09-08 14:39:58 +02001990static void zfcp_fsf_fcp_handler_common(struct zfcp_fsf_req *req)
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001991{
Christof Schmittb62a8d92010-09-08 14:39:55 +02001992 struct scsi_cmnd *scmnd = req->data;
1993 struct scsi_device *sdev = scmnd->device;
1994 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001995 struct fsf_qtcb_header *header = &req->qtcb->header;
1996
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001997 if (unlikely(req->status & ZFCP_STATUS_FSFREQ_ERROR))
Christof Schmittc61b5362010-09-08 14:39:58 +02001998 return;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001999
2000 switch (header->fsf_status) {
2001 case FSF_HANDLE_MISMATCH:
2002 case FSF_PORT_HANDLE_NOT_VALID:
Swen Schilligea4a3a62010-12-02 15:16:16 +01002003 zfcp_erp_adapter_reopen(zfcp_sdev->port->adapter, 0, "fssfch1");
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002004 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
2005 break;
2006 case FSF_FCPLUN_NOT_VALID:
2007 case FSF_LUN_HANDLE_NOT_VALID:
Swen Schilligea4a3a62010-12-02 15:16:16 +01002008 zfcp_erp_port_reopen(zfcp_sdev->port, 0, "fssfch2");
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002009 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
2010 break;
2011 case FSF_SERVICE_CLASS_NOT_SUPPORTED:
2012 zfcp_fsf_class_not_supp(req);
2013 break;
2014 case FSF_ACCESS_DENIED:
Christof Schmitta1ca4832010-09-08 14:39:59 +02002015 zfcp_cfdc_lun_denied(sdev, &header->fsf_status_qual);
2016 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002017 break;
2018 case FSF_DIRECTION_INDICATOR_NOT_VALID:
2019 dev_err(&req->adapter->ccw_device->dev,
Christof Schmittb62a8d92010-09-08 14:39:55 +02002020 "Incorrect direction %d, LUN 0x%016Lx on port "
Christof Schmittff3b24f2008-10-01 12:42:15 +02002021 "0x%016Lx closed\n",
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002022 req->qtcb->bottom.io.data_direction,
Christof Schmittb62a8d92010-09-08 14:39:55 +02002023 (unsigned long long)zfcp_scsi_dev_lun(sdev),
2024 (unsigned long long)zfcp_sdev->port->wwpn);
2025 zfcp_erp_adapter_shutdown(zfcp_sdev->port->adapter, 0,
Swen Schilligea4a3a62010-12-02 15:16:16 +01002026 "fssfch3");
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002027 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
2028 break;
2029 case FSF_CMND_LENGTH_NOT_VALID:
2030 dev_err(&req->adapter->ccw_device->dev,
Christof Schmittb62a8d92010-09-08 14:39:55 +02002031 "Incorrect CDB length %d, LUN 0x%016Lx on "
Christof Schmittff3b24f2008-10-01 12:42:15 +02002032 "port 0x%016Lx closed\n",
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002033 req->qtcb->bottom.io.fcp_cmnd_length,
Christof Schmittb62a8d92010-09-08 14:39:55 +02002034 (unsigned long long)zfcp_scsi_dev_lun(sdev),
2035 (unsigned long long)zfcp_sdev->port->wwpn);
2036 zfcp_erp_adapter_shutdown(zfcp_sdev->port->adapter, 0,
Swen Schilligea4a3a62010-12-02 15:16:16 +01002037 "fssfch4");
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002038 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
2039 break;
2040 case FSF_PORT_BOXED:
Swen Schilligedaed852010-09-08 14:40:01 +02002041 zfcp_erp_set_port_status(zfcp_sdev->port,
2042 ZFCP_STATUS_COMMON_ACCESS_BOXED);
2043 zfcp_erp_port_reopen(zfcp_sdev->port,
Swen Schilligea4a3a62010-12-02 15:16:16 +01002044 ZFCP_STATUS_COMMON_ERP_FAILED, "fssfch5");
Christof Schmitt4c571c62009-11-24 16:54:15 +01002045 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002046 break;
2047 case FSF_LUN_BOXED:
Swen Schilligedaed852010-09-08 14:40:01 +02002048 zfcp_erp_set_lun_status(sdev, ZFCP_STATUS_COMMON_ACCESS_BOXED);
2049 zfcp_erp_lun_reopen(sdev, ZFCP_STATUS_COMMON_ERP_FAILED,
Swen Schilligea4a3a62010-12-02 15:16:16 +01002050 "fssfch6");
Christof Schmitt4c571c62009-11-24 16:54:15 +01002051 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002052 break;
2053 case FSF_ADAPTER_STATUS_AVAILABLE:
2054 if (header->fsf_status_qual.word[0] ==
2055 FSF_SQ_INVOKE_LINK_TEST_PROCEDURE)
Christof Schmittb62a8d92010-09-08 14:39:55 +02002056 zfcp_fc_test_link(zfcp_sdev->port);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002057 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
2058 break;
2059 }
Christof Schmittc61b5362010-09-08 14:39:58 +02002060}
2061
2062static void zfcp_fsf_fcp_cmnd_handler(struct zfcp_fsf_req *req)
2063{
2064 struct scsi_cmnd *scpnt;
2065 struct fcp_resp_with_ext *fcp_rsp;
2066 unsigned long flags;
2067
Christof Schmittc61b5362010-09-08 14:39:58 +02002068 read_lock_irqsave(&req->adapter->abort_lock, flags);
2069
2070 scpnt = req->data;
2071 if (unlikely(!scpnt)) {
2072 read_unlock_irqrestore(&req->adapter->abort_lock, flags);
2073 return;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002074 }
Christof Schmittc61b5362010-09-08 14:39:58 +02002075
Swen Schillig5bfb2c32010-11-17 14:23:40 +01002076 zfcp_fsf_fcp_handler_common(req);
2077
Christof Schmittc61b5362010-09-08 14:39:58 +02002078 if (unlikely(req->status & ZFCP_STATUS_FSFREQ_ERROR)) {
2079 set_host_byte(scpnt, DID_TRANSPORT_DISRUPTED);
2080 goto skip_fsfstatus;
2081 }
2082
2083 switch (req->qtcb->header.fsf_status) {
2084 case FSF_INCONSISTENT_PROT_DATA:
2085 case FSF_INVALID_PROT_PARM:
2086 set_host_byte(scpnt, DID_ERROR);
2087 goto skip_fsfstatus;
2088 case FSF_BLOCK_GUARD_CHECK_FAILURE:
2089 zfcp_scsi_dif_sense_error(scpnt, 0x1);
2090 goto skip_fsfstatus;
2091 case FSF_APP_TAG_CHECK_FAILURE:
2092 zfcp_scsi_dif_sense_error(scpnt, 0x2);
2093 goto skip_fsfstatus;
2094 case FSF_REF_TAG_CHECK_FAILURE:
2095 zfcp_scsi_dif_sense_error(scpnt, 0x3);
2096 goto skip_fsfstatus;
2097 }
2098 fcp_rsp = (struct fcp_resp_with_ext *) &req->qtcb->bottom.io.fcp_rsp;
2099 zfcp_fc_eval_fcp_rsp(fcp_rsp, scpnt);
2100
2101skip_fsfstatus:
2102 zfcp_fsf_req_trace(req, scpnt);
Swen Schillig250a1352010-12-02 15:16:15 +01002103 zfcp_dbf_scsi_result(scpnt, req);
Christof Schmittc61b5362010-09-08 14:39:58 +02002104
2105 scpnt->host_scribble = NULL;
2106 (scpnt->scsi_done) (scpnt);
2107 /*
2108 * We must hold this lock until scsi_done has been called.
2109 * Otherwise we may call scsi_done after abort regarding this
2110 * command has completed.
2111 * Note: scsi_done must not block!
2112 */
2113 read_unlock_irqrestore(&req->adapter->abort_lock, flags);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002114}
2115
Felix Beckef3eb712010-07-16 15:37:42 +02002116static int zfcp_fsf_set_data_dir(struct scsi_cmnd *scsi_cmnd, u32 *data_dir)
2117{
2118 switch (scsi_get_prot_op(scsi_cmnd)) {
2119 case SCSI_PROT_NORMAL:
2120 switch (scsi_cmnd->sc_data_direction) {
2121 case DMA_NONE:
2122 *data_dir = FSF_DATADIR_CMND;
2123 break;
2124 case DMA_FROM_DEVICE:
2125 *data_dir = FSF_DATADIR_READ;
2126 break;
2127 case DMA_TO_DEVICE:
2128 *data_dir = FSF_DATADIR_WRITE;
2129 break;
2130 case DMA_BIDIRECTIONAL:
2131 return -EINVAL;
2132 }
2133 break;
2134
2135 case SCSI_PROT_READ_STRIP:
2136 *data_dir = FSF_DATADIR_DIF_READ_STRIP;
2137 break;
2138 case SCSI_PROT_WRITE_INSERT:
2139 *data_dir = FSF_DATADIR_DIF_WRITE_INSERT;
2140 break;
2141 case SCSI_PROT_READ_PASS:
2142 *data_dir = FSF_DATADIR_DIF_READ_CONVERT;
2143 break;
2144 case SCSI_PROT_WRITE_PASS:
2145 *data_dir = FSF_DATADIR_DIF_WRITE_CONVERT;
2146 break;
2147 default:
2148 return -EINVAL;
2149 }
2150
2151 return 0;
2152}
2153
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002154/**
Christof Schmittb62a8d92010-09-08 14:39:55 +02002155 * zfcp_fsf_fcp_cmnd - initiate an FCP command (for a SCSI command)
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002156 * @scsi_cmnd: scsi command to be sent
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002157 */
Christof Schmittb62a8d92010-09-08 14:39:55 +02002158int zfcp_fsf_fcp_cmnd(struct scsi_cmnd *scsi_cmnd)
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002159{
2160 struct zfcp_fsf_req *req;
Christof Schmitt4318e082009-11-24 16:54:08 +01002161 struct fcp_cmnd *fcp_cmnd;
Christof Schmittbc90c862009-05-15 13:18:17 +02002162 unsigned int sbtype = SBAL_FLAGS0_TYPE_READ;
Felix Beckef3eb712010-07-16 15:37:42 +02002163 int real_bytes, retval = -EIO, dix_bytes = 0;
Christof Schmittb62a8d92010-09-08 14:39:55 +02002164 struct scsi_device *sdev = scsi_cmnd->device;
2165 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
2166 struct zfcp_adapter *adapter = zfcp_sdev->port->adapter;
Swen Schillig564e1c82009-08-18 15:43:19 +02002167 struct zfcp_qdio *qdio = adapter->qdio;
Felix Beckef3eb712010-07-16 15:37:42 +02002168 struct fsf_qtcb_bottom_io *io;
Christof Schmitte55f8752010-11-18 14:53:18 +01002169 unsigned long flags;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002170
Christof Schmittb62a8d92010-09-08 14:39:55 +02002171 if (unlikely(!(atomic_read(&zfcp_sdev->status) &
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002172 ZFCP_STATUS_COMMON_UNBLOCKED)))
2173 return -EBUSY;
2174
Christof Schmitte55f8752010-11-18 14:53:18 +01002175 spin_lock_irqsave(&qdio->req_q_lock, flags);
Swen Schillig706eca42010-07-16 15:37:38 +02002176 if (atomic_read(&qdio->req_q_free) <= 0) {
Swen Schillig564e1c82009-08-18 15:43:19 +02002177 atomic_inc(&qdio->req_q_full);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002178 goto out;
Christof Schmitt8fdf30d2009-03-02 13:09:01 +01002179 }
Swen Schillig09a46c62009-08-18 15:43:16 +02002180
Christof Schmitt1674b402010-04-30 18:09:34 +02002181 if (scsi_cmnd->sc_data_direction == DMA_TO_DEVICE)
2182 sbtype = SBAL_FLAGS0_TYPE_WRITE;
2183
Swen Schillig564e1c82009-08-18 15:43:19 +02002184 req = zfcp_fsf_req_create(qdio, FSF_QTCB_FCP_CMND,
Christof Schmitt1674b402010-04-30 18:09:34 +02002185 sbtype, adapter->pool.scsi_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02002186
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02002187 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002188 retval = PTR_ERR(req);
2189 goto out;
2190 }
2191
Felix Beckef3eb712010-07-16 15:37:42 +02002192 scsi_cmnd->host_scribble = (unsigned char *) req->req_id;
2193
2194 io = &req->qtcb->bottom.io;
Swen Schillig09a46c62009-08-18 15:43:16 +02002195 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002196 req->data = scsi_cmnd;
Christof Schmittc61b5362010-09-08 14:39:58 +02002197 req->handler = zfcp_fsf_fcp_cmnd_handler;
Christof Schmittb62a8d92010-09-08 14:39:55 +02002198 req->qtcb->header.lun_handle = zfcp_sdev->lun_handle;
2199 req->qtcb->header.port_handle = zfcp_sdev->port->handle;
Felix Beckef3eb712010-07-16 15:37:42 +02002200 io->service_class = FSF_CLASS_3;
2201 io->fcp_cmnd_length = FCP_CMND_LEN;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002202
Felix Beckef3eb712010-07-16 15:37:42 +02002203 if (scsi_get_prot_op(scsi_cmnd) != SCSI_PROT_NORMAL) {
2204 io->data_block_length = scsi_cmnd->device->sector_size;
2205 io->ref_tag_value = scsi_get_lba(scsi_cmnd) & 0xFFFFFFFF;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002206 }
2207
Felix Beckef3eb712010-07-16 15:37:42 +02002208 zfcp_fsf_set_data_dir(scsi_cmnd, &io->data_direction);
2209
Christof Schmitt4318e082009-11-24 16:54:08 +01002210 fcp_cmnd = (struct fcp_cmnd *) &req->qtcb->bottom.io.fcp_cmnd;
2211 zfcp_fc_scsi_to_fcp(fcp_cmnd, scsi_cmnd);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002212
Felix Beckef3eb712010-07-16 15:37:42 +02002213 if (scsi_prot_sg_count(scsi_cmnd)) {
2214 zfcp_qdio_set_data_div(qdio, &req->qdio_req,
2215 scsi_prot_sg_count(scsi_cmnd));
2216 dix_bytes = zfcp_qdio_sbals_from_sg(qdio, &req->qdio_req,
2217 scsi_prot_sglist(scsi_cmnd));
2218 io->prot_data_length = dix_bytes;
2219 }
2220
Christof Schmitt1674b402010-04-30 18:09:34 +02002221 real_bytes = zfcp_qdio_sbals_from_sg(qdio, &req->qdio_req,
Swen Schillig01b04752010-07-16 15:37:37 +02002222 scsi_sglist(scsi_cmnd));
Felix Beckef3eb712010-07-16 15:37:42 +02002223
2224 if (unlikely(real_bytes < 0) || unlikely(dix_bytes < 0))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002225 goto failed_scsi_cmnd;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002226
Felix Beckef3eb712010-07-16 15:37:42 +02002227 zfcp_qdio_set_sbale_last(adapter->qdio, &req->qdio_req);
2228
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002229 retval = zfcp_fsf_req_send(req);
2230 if (unlikely(retval))
2231 goto failed_scsi_cmnd;
2232
2233 goto out;
2234
2235failed_scsi_cmnd:
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002236 zfcp_fsf_req_free(req);
2237 scsi_cmnd->host_scribble = NULL;
2238out:
Christof Schmitte55f8752010-11-18 14:53:18 +01002239 spin_unlock_irqrestore(&qdio->req_q_lock, flags);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002240 return retval;
2241}
2242
Christof Schmittc61b5362010-09-08 14:39:58 +02002243static void zfcp_fsf_fcp_task_mgmt_handler(struct zfcp_fsf_req *req)
2244{
2245 struct fcp_resp_with_ext *fcp_rsp;
2246 struct fcp_resp_rsp_info *rsp_info;
2247
2248 zfcp_fsf_fcp_handler_common(req);
2249
2250 fcp_rsp = (struct fcp_resp_with_ext *) &req->qtcb->bottom.io.fcp_rsp;
2251 rsp_info = (struct fcp_resp_rsp_info *) &fcp_rsp[1];
2252
2253 if ((rsp_info->rsp_code != FCP_TMF_CMPL) ||
2254 (req->status & ZFCP_STATUS_FSFREQ_ERROR))
2255 req->status |= ZFCP_STATUS_FSFREQ_TMFUNCFAILED;
2256}
2257
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002258/**
Christof Schmittb62a8d92010-09-08 14:39:55 +02002259 * zfcp_fsf_fcp_task_mgmt - send SCSI task management command
2260 * @scmnd: SCSI command to send the task management command for
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002261 * @tm_flags: unsigned byte for task management flags
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002262 * Returns: on success pointer to struct fsf_req, NULL otherwise
2263 */
Christof Schmittb62a8d92010-09-08 14:39:55 +02002264struct zfcp_fsf_req *zfcp_fsf_fcp_task_mgmt(struct scsi_cmnd *scmnd,
2265 u8 tm_flags)
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002266{
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002267 struct zfcp_fsf_req *req = NULL;
Christof Schmitt4318e082009-11-24 16:54:08 +01002268 struct fcp_cmnd *fcp_cmnd;
Christof Schmittb62a8d92010-09-08 14:39:55 +02002269 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(scmnd->device);
2270 struct zfcp_qdio *qdio = zfcp_sdev->port->adapter->qdio;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002271
Christof Schmittb62a8d92010-09-08 14:39:55 +02002272 if (unlikely(!(atomic_read(&zfcp_sdev->status) &
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002273 ZFCP_STATUS_COMMON_UNBLOCKED)))
2274 return NULL;
2275
Christof Schmitt44a24cb2010-09-08 14:39:57 +02002276 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02002277 if (zfcp_qdio_sbal_get(qdio))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002278 goto out;
Swen Schillig09a46c62009-08-18 15:43:16 +02002279
Swen Schillig564e1c82009-08-18 15:43:19 +02002280 req = zfcp_fsf_req_create(qdio, FSF_QTCB_FCP_CMND,
Christof Schmitt1674b402010-04-30 18:09:34 +02002281 SBAL_FLAGS0_TYPE_WRITE,
Swen Schillig564e1c82009-08-18 15:43:19 +02002282 qdio->adapter->pool.scsi_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02002283
Swen Schillig633528c2008-11-26 18:07:37 +01002284 if (IS_ERR(req)) {
2285 req = NULL;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002286 goto out;
Swen Schillig633528c2008-11-26 18:07:37 +01002287 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002288
Christof Schmittb62a8d92010-09-08 14:39:55 +02002289 req->data = scmnd;
Christof Schmittc61b5362010-09-08 14:39:58 +02002290 req->handler = zfcp_fsf_fcp_task_mgmt_handler;
Christof Schmittb62a8d92010-09-08 14:39:55 +02002291 req->qtcb->header.lun_handle = zfcp_sdev->lun_handle;
2292 req->qtcb->header.port_handle = zfcp_sdev->port->handle;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002293 req->qtcb->bottom.io.data_direction = FSF_DATADIR_CMND;
2294 req->qtcb->bottom.io.service_class = FSF_CLASS_3;
Christof Schmitt4318e082009-11-24 16:54:08 +01002295 req->qtcb->bottom.io.fcp_cmnd_length = FCP_CMND_LEN;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002296
Christof Schmitt1674b402010-04-30 18:09:34 +02002297 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002298
Christof Schmitt4318e082009-11-24 16:54:08 +01002299 fcp_cmnd = (struct fcp_cmnd *) &req->qtcb->bottom.io.fcp_cmnd;
Christof Schmittb62a8d92010-09-08 14:39:55 +02002300 zfcp_fc_fcp_tm(fcp_cmnd, scmnd->device, tm_flags);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002301
2302 zfcp_fsf_start_timer(req, ZFCP_SCSI_ER_TIMEOUT);
2303 if (!zfcp_fsf_req_send(req))
2304 goto out;
2305
2306 zfcp_fsf_req_free(req);
2307 req = NULL;
2308out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02002309 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002310 return req;
2311}
2312
2313static void zfcp_fsf_control_file_handler(struct zfcp_fsf_req *req)
2314{
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002315}
2316
2317/**
2318 * zfcp_fsf_control_file - control file upload/download
2319 * @adapter: pointer to struct zfcp_adapter
2320 * @fsf_cfdc: pointer to struct zfcp_fsf_cfdc
2321 * Returns: on success pointer to struct zfcp_fsf_req, NULL otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 */
Christof Schmitt45633fd2008-06-10 18:20:55 +02002323struct zfcp_fsf_req *zfcp_fsf_control_file(struct zfcp_adapter *adapter,
2324 struct zfcp_fsf_cfdc *fsf_cfdc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325{
Swen Schillig564e1c82009-08-18 15:43:19 +02002326 struct zfcp_qdio *qdio = adapter->qdio;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002327 struct zfcp_fsf_req *req = NULL;
2328 struct fsf_qtcb_bottom_support *bottom;
2329 int direction, retval = -EIO, bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330
Christof Schmitt45633fd2008-06-10 18:20:55 +02002331 if (!(adapter->adapter_features & FSF_FEATURE_CFDC))
2332 return ERR_PTR(-EOPNOTSUPP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333
Christof Schmitt45633fd2008-06-10 18:20:55 +02002334 switch (fsf_cfdc->command) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 case FSF_QTCB_DOWNLOAD_CONTROL_FILE:
2336 direction = SBAL_FLAGS0_TYPE_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 case FSF_QTCB_UPLOAD_CONTROL_FILE:
2339 direction = SBAL_FLAGS0_TYPE_READ;
2340 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 default:
Christof Schmitt45633fd2008-06-10 18:20:55 +02002342 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 }
2344
Christof Schmitt44a24cb2010-09-08 14:39:57 +02002345 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02002346 if (zfcp_qdio_sbal_get(qdio))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002347 goto out;
2348
Christof Schmitt1674b402010-04-30 18:09:34 +02002349 req = zfcp_fsf_req_create(qdio, fsf_cfdc->command, direction, NULL);
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02002350 if (IS_ERR(req)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 retval = -EPERM;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002352 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353 }
2354
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002355 req->handler = zfcp_fsf_control_file_handler;
2356
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002357 bottom = &req->qtcb->bottom.support;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 bottom->operation_subtype = FSF_CFDC_OPERATION_SUBTYPE;
Christof Schmitt45633fd2008-06-10 18:20:55 +02002359 bottom->option = fsf_cfdc->option;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360
Swen Schillig01b04752010-07-16 15:37:37 +02002361 bytes = zfcp_qdio_sbals_from_sg(qdio, &req->qdio_req, fsf_cfdc->sg);
2362
Christof Schmitt45633fd2008-06-10 18:20:55 +02002363 if (bytes != ZFCP_CFDC_MAX_SIZE) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002364 zfcp_fsf_req_free(req);
2365 goto out;
Christof Schmitt45633fd2008-06-10 18:20:55 +02002366 }
Felix Beckef3eb712010-07-16 15:37:42 +02002367 zfcp_qdio_set_sbale_last(adapter->qdio, &req->qdio_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002369 zfcp_fsf_start_timer(req, ZFCP_FSF_REQUEST_TIMEOUT);
2370 retval = zfcp_fsf_req_send(req);
2371out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02002372 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002373
2374 if (!retval) {
Swen Schillig058b8642009-08-18 15:43:14 +02002375 wait_for_completion(&req->completion);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002376 return req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 }
Christof Schmitt45633fd2008-06-10 18:20:55 +02002378 return ERR_PTR(retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379}
Swen Schilligbd63eaf2009-08-18 15:43:13 +02002380
2381/**
2382 * zfcp_fsf_reqid_check - validate req_id contained in SBAL returned by QDIO
2383 * @adapter: pointer to struct zfcp_adapter
2384 * @sbal_idx: response queue index of SBAL to be processed
2385 */
Swen Schillig564e1c82009-08-18 15:43:19 +02002386void zfcp_fsf_reqid_check(struct zfcp_qdio *qdio, int sbal_idx)
Swen Schilligbd63eaf2009-08-18 15:43:13 +02002387{
Swen Schillig564e1c82009-08-18 15:43:19 +02002388 struct zfcp_adapter *adapter = qdio->adapter;
Swen Schillig706eca42010-07-16 15:37:38 +02002389 struct qdio_buffer *sbal = qdio->res_q[sbal_idx];
Swen Schilligbd63eaf2009-08-18 15:43:13 +02002390 struct qdio_buffer_element *sbale;
2391 struct zfcp_fsf_req *fsf_req;
Christof Schmittb6bd2fb2010-02-17 11:18:50 +01002392 unsigned long req_id;
Swen Schilligbd63eaf2009-08-18 15:43:13 +02002393 int idx;
2394
2395 for (idx = 0; idx < QDIO_MAX_ELEMENTS_PER_BUFFER; idx++) {
2396
2397 sbale = &sbal->element[idx];
2398 req_id = (unsigned long) sbale->addr;
Christof Schmittb6bd2fb2010-02-17 11:18:50 +01002399 fsf_req = zfcp_reqlist_find_rm(adapter->req_list, req_id);
Swen Schilligbd63eaf2009-08-18 15:43:13 +02002400
Christof Schmitt339f4f42010-07-16 15:37:43 +02002401 if (!fsf_req) {
Swen Schilligbd63eaf2009-08-18 15:43:13 +02002402 /*
2403 * Unknown request means that we have potentially memory
2404 * corruption and must stop the machine immediately.
2405 */
Christof Schmitt339f4f42010-07-16 15:37:43 +02002406 zfcp_qdio_siosl(adapter);
Swen Schilligbd63eaf2009-08-18 15:43:13 +02002407 panic("error: unknown req_id (%lx) on adapter %s.\n",
2408 req_id, dev_name(&adapter->ccw_device->dev));
Christof Schmitt339f4f42010-07-16 15:37:43 +02002409 }
Swen Schilligbd63eaf2009-08-18 15:43:13 +02002410
Christof Schmitt34c2b712010-02-17 11:18:59 +01002411 fsf_req->qdio_req.sbal_response = sbal_idx;
Swen Schilligbd63eaf2009-08-18 15:43:13 +02002412 zfcp_fsf_req_complete(fsf_req);
2413
2414 if (likely(sbale->flags & SBAL_FLAGS_LAST_ENTRY))
2415 break;
2416 }
2417}
Swen Schilliga54ca0f2010-12-02 15:16:14 +01002418
2419struct zfcp_fsf_req *zfcp_fsf_get_req(struct zfcp_qdio *qdio,
2420 struct qdio_buffer *sbal)
2421{
2422 struct qdio_buffer_element *sbale = &sbal->element[0];
2423 u64 req_id = (unsigned long) sbale->addr;
2424
2425 return zfcp_reqlist_find(qdio->adapter->req_list, req_id);
2426}