blob: 60ff9d172c79a60b56a7c9f1ec2970ffea4dde69 [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);
Swen Schilliga4623c42009-08-18 15:43:15 +0200215 mempool_free(sr_buf, adapter->pool.status_read_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
Swen Schilliga4623c42009-08-18 15:43:15 +0200268 mempool_free(sr_buf, adapter->pool.status_read_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;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200726 int retval = -EIO;
727
Christof Schmitt44a24cb2010-09-08 14:39:57 +0200728 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +0200729 if (zfcp_qdio_sbal_get(qdio))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
Christof Schmitt1674b402010-04-30 18:09:34 +0200732 req = zfcp_fsf_req_create(qdio, FSF_QTCB_UNSOLICITED_STATUS, 0,
Swen Schilliga4623c42009-08-18 15:43:15 +0200733 adapter->pool.status_read_req);
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +0200734 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200735 retval = PTR_ERR(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 goto out;
737 }
738
Swen Schilliga4623c42009-08-18 15:43:15 +0200739 sr_buf = mempool_alloc(adapter->pool.status_read_data, GFP_ATOMIC);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200740 if (!sr_buf) {
741 retval = -ENOMEM;
742 goto failed_buf;
743 }
744 memset(sr_buf, 0, sizeof(*sr_buf));
745 req->data = sr_buf;
Christof Schmitt1674b402010-04-30 18:09:34 +0200746
747 zfcp_qdio_fill_next(qdio, &req->qdio_req, sr_buf, sizeof(*sr_buf));
748 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200749
750 retval = zfcp_fsf_req_send(req);
751 if (retval)
752 goto failed_req_send;
753
754 goto out;
755
756failed_req_send:
Swen Schilliga54ca0f2010-12-02 15:16:14 +0100757 req->data = NULL;
Swen Schilliga4623c42009-08-18 15:43:15 +0200758 mempool_free(sr_buf, adapter->pool.status_read_data);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200759failed_buf:
Swen Schilliga54ca0f2010-12-02 15:16:14 +0100760 zfcp_dbf_hba_fsf_uss("fssr__1", req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200761 zfcp_fsf_req_free(req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200762out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +0200763 spin_unlock_irq(&qdio->req_q_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 return retval;
765}
766
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200767static void zfcp_fsf_abort_fcp_command_handler(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768{
Christof Schmittb62a8d92010-09-08 14:39:55 +0200769 struct scsi_device *sdev = req->data;
770 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200771 union fsf_status_qual *fsq = &req->qtcb->header.fsf_status_qual;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200773 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
774 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200776 switch (req->qtcb->header.fsf_status) {
777 case FSF_PORT_HANDLE_NOT_VALID:
778 if (fsq->word[0] == fsq->word[1]) {
Christof Schmittb62a8d92010-09-08 14:39:55 +0200779 zfcp_erp_adapter_reopen(zfcp_sdev->port->adapter, 0,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100780 "fsafch1");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200781 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
782 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 break;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200784 case FSF_LUN_HANDLE_NOT_VALID:
785 if (fsq->word[0] == fsq->word[1]) {
Swen Schilligea4a3a62010-12-02 15:16:16 +0100786 zfcp_erp_port_reopen(zfcp_sdev->port, 0, "fsafch2");
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200787 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
788 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 break;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200790 case FSF_FCP_COMMAND_DOES_NOT_EXIST:
791 req->status |= ZFCP_STATUS_FSFREQ_ABORTNOTNEEDED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 break;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200793 case FSF_PORT_BOXED:
Swen Schilligedaed852010-09-08 14:40:01 +0200794 zfcp_erp_set_port_status(zfcp_sdev->port,
795 ZFCP_STATUS_COMMON_ACCESS_BOXED);
796 zfcp_erp_port_reopen(zfcp_sdev->port,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100797 ZFCP_STATUS_COMMON_ERP_FAILED, "fsafch3");
Christof Schmitt4c571c62009-11-24 16:54:15 +0100798 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200799 break;
800 case FSF_LUN_BOXED:
Swen Schilligedaed852010-09-08 14:40:01 +0200801 zfcp_erp_set_lun_status(sdev, ZFCP_STATUS_COMMON_ACCESS_BOXED);
802 zfcp_erp_lun_reopen(sdev, ZFCP_STATUS_COMMON_ERP_FAILED,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100803 "fsafch4");
Christof Schmitt4c571c62009-11-24 16:54:15 +0100804 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200805 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 case FSF_ADAPTER_STATUS_AVAILABLE:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200807 switch (fsq->word[0]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
Christof Schmittb62a8d92010-09-08 14:39:55 +0200809 zfcp_fc_test_link(zfcp_sdev->port);
Christof Schmittdceab652009-05-15 13:18:18 +0200810 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200812 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 break;
814 }
815 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 case FSF_GOOD:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200817 req->status |= ZFCP_STATUS_FSFREQ_ABORTSUCCEEDED;
818 break;
819 }
820}
821
822/**
Christof Schmittb62a8d92010-09-08 14:39:55 +0200823 * zfcp_fsf_abort_fcp_cmnd - abort running SCSI command
824 * @scmnd: The SCSI command to abort
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200825 * Returns: pointer to struct zfcp_fsf_req
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200826 */
827
Christof Schmittb62a8d92010-09-08 14:39:55 +0200828struct zfcp_fsf_req *zfcp_fsf_abort_fcp_cmnd(struct scsi_cmnd *scmnd)
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200829{
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200830 struct zfcp_fsf_req *req = NULL;
Christof Schmittb62a8d92010-09-08 14:39:55 +0200831 struct scsi_device *sdev = scmnd->device;
832 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
833 struct zfcp_qdio *qdio = zfcp_sdev->port->adapter->qdio;
834 unsigned long old_req_id = (unsigned long) scmnd->host_scribble;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200835
Christof Schmitt44a24cb2010-09-08 14:39:57 +0200836 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +0200837 if (zfcp_qdio_sbal_get(qdio))
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200838 goto out;
Swen Schillig564e1c82009-08-18 15:43:19 +0200839 req = zfcp_fsf_req_create(qdio, FSF_QTCB_ABORT_FCP_CMND,
Christof Schmitt1674b402010-04-30 18:09:34 +0200840 SBAL_FLAGS0_TYPE_READ,
Swen Schillig564e1c82009-08-18 15:43:19 +0200841 qdio->adapter->pool.scsi_abort);
Swen Schillig633528c2008-11-26 18:07:37 +0100842 if (IS_ERR(req)) {
843 req = NULL;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200844 goto out;
Swen Schillig633528c2008-11-26 18:07:37 +0100845 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200846
Christof Schmittb62a8d92010-09-08 14:39:55 +0200847 if (unlikely(!(atomic_read(&zfcp_sdev->status) &
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200848 ZFCP_STATUS_COMMON_UNBLOCKED)))
849 goto out_error_free;
850
Christof Schmitt1674b402010-04-30 18:09:34 +0200851 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200852
Swen Schillig6fbf25e2010-11-17 14:23:41 +0100853 req->data = sdev;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200854 req->handler = zfcp_fsf_abort_fcp_command_handler;
Christof Schmittb62a8d92010-09-08 14:39:55 +0200855 req->qtcb->header.lun_handle = zfcp_sdev->lun_handle;
856 req->qtcb->header.port_handle = zfcp_sdev->port->handle;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200857 req->qtcb->bottom.support.req_handle = (u64) old_req_id;
858
859 zfcp_fsf_start_timer(req, ZFCP_SCSI_ER_TIMEOUT);
860 if (!zfcp_fsf_req_send(req))
861 goto out;
862
863out_error_free:
864 zfcp_fsf_req_free(req);
865 req = NULL;
866out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +0200867 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200868 return req;
869}
870
871static void zfcp_fsf_send_ct_handler(struct zfcp_fsf_req *req)
872{
873 struct zfcp_adapter *adapter = req->adapter;
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100874 struct zfcp_fsf_ct_els *ct = req->data;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200875 struct fsf_qtcb_header *header = &req->qtcb->header;
876
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100877 ct->status = -EINVAL;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200878
879 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
880 goto skip_fsfstatus;
881
882 switch (header->fsf_status) {
883 case FSF_GOOD:
Swen Schillig2c55b752010-12-02 15:16:13 +0100884 zfcp_dbf_san_res("fsscth1", req);
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100885 ct->status = 0;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200886 break;
887 case FSF_SERVICE_CLASS_NOT_SUPPORTED:
888 zfcp_fsf_class_not_supp(req);
889 break;
890 case FSF_ADAPTER_STATUS_AVAILABLE:
891 switch (header->fsf_status_qual.word[0]){
892 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200893 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
894 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
895 break;
896 }
897 break;
898 case FSF_ACCESS_DENIED:
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200899 break;
900 case FSF_PORT_BOXED:
Christof Schmitt4c571c62009-11-24 16:54:15 +0100901 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200902 break;
903 case FSF_PORT_HANDLE_NOT_VALID:
Swen Schilligea4a3a62010-12-02 15:16:16 +0100904 zfcp_erp_adapter_reopen(adapter, 0, "fsscth1");
Christof Schmittdceab652009-05-15 13:18:18 +0200905 /* fall through */
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200906 case FSF_GENERIC_COMMAND_REJECTED:
907 case FSF_PAYLOAD_SIZE_MISMATCH:
908 case FSF_REQUEST_SIZE_TOO_LARGE:
909 case FSF_RESPONSE_SIZE_TOO_LARGE:
910 case FSF_SBAL_MISMATCH:
911 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
912 break;
913 }
914
915skip_fsfstatus:
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100916 if (ct->handler)
917 ct->handler(ct->handler_data);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200918}
919
Christof Schmitt1674b402010-04-30 18:09:34 +0200920static void zfcp_fsf_setup_ct_els_unchained(struct zfcp_qdio *qdio,
921 struct zfcp_qdio_req *q_req,
Christof Schmitt426f6052009-07-13 15:06:06 +0200922 struct scatterlist *sg_req,
923 struct scatterlist *sg_resp)
924{
Christof Schmitt1674b402010-04-30 18:09:34 +0200925 zfcp_qdio_fill_next(qdio, q_req, sg_virt(sg_req), sg_req->length);
926 zfcp_qdio_fill_next(qdio, q_req, sg_virt(sg_resp), sg_resp->length);
927 zfcp_qdio_set_sbale_last(qdio, q_req);
Christof Schmitt426f6052009-07-13 15:06:06 +0200928}
929
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100930static int zfcp_fsf_setup_ct_els_sbals(struct zfcp_fsf_req *req,
931 struct scatterlist *sg_req,
Swen Schillig01b04752010-07-16 15:37:37 +0200932 struct scatterlist *sg_resp)
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200933{
Swen Schillig42428f72009-08-18 15:43:18 +0200934 struct zfcp_adapter *adapter = req->adapter;
Swen Schillig42428f72009-08-18 15:43:18 +0200935 u32 feat = adapter->adapter_features;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200936 int bytes;
937
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100938 if (!(feat & FSF_FEATURE_ELS_CT_CHAINED_SBALS)) {
Christof Schmitt1674b402010-04-30 18:09:34 +0200939 if (!zfcp_qdio_sg_one_sbale(sg_req) ||
940 !zfcp_qdio_sg_one_sbale(sg_resp))
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100941 return -EOPNOTSUPP;
942
Christof Schmitt1674b402010-04-30 18:09:34 +0200943 zfcp_fsf_setup_ct_els_unchained(adapter->qdio, &req->qdio_req,
944 sg_req, sg_resp);
Christof Schmitt426f6052009-07-13 15:06:06 +0200945 return 0;
946 }
947
948 /* use single, unchained SBAL if it can hold the request */
Swen Schillig30b67772010-06-21 10:11:31 +0200949 if (zfcp_qdio_sg_one_sbale(sg_req) && zfcp_qdio_sg_one_sbale(sg_resp)) {
Christof Schmitt1674b402010-04-30 18:09:34 +0200950 zfcp_fsf_setup_ct_els_unchained(adapter->qdio, &req->qdio_req,
951 sg_req, sg_resp);
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100952 return 0;
953 }
954
Swen Schillig01b04752010-07-16 15:37:37 +0200955 bytes = zfcp_qdio_sbals_from_sg(adapter->qdio, &req->qdio_req, sg_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200956 if (bytes <= 0)
Christof Schmitt9072df42009-07-13 15:06:07 +0200957 return -EIO;
Felix Beckef3eb712010-07-16 15:37:42 +0200958 zfcp_qdio_set_sbale_last(adapter->qdio, &req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200959 req->qtcb->bottom.support.req_buf_length = bytes;
Christof Schmitt1674b402010-04-30 18:09:34 +0200960 zfcp_qdio_skip_to_last_sbale(&req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200961
Christof Schmitt34c2b712010-02-17 11:18:59 +0100962 bytes = zfcp_qdio_sbals_from_sg(adapter->qdio, &req->qdio_req,
Swen Schillig01b04752010-07-16 15:37:37 +0200963 sg_resp);
Christof Schmittb1a58982009-09-24 10:23:21 +0200964 req->qtcb->bottom.support.resp_buf_length = bytes;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200965 if (bytes <= 0)
Christof Schmitt9072df42009-07-13 15:06:07 +0200966 return -EIO;
Felix Beckef3eb712010-07-16 15:37:42 +0200967 zfcp_qdio_set_sbale_last(adapter->qdio, &req->qdio_req);
Christof Schmitt98fc4d52009-08-18 15:43:26 +0200968
Christof Schmittb1a58982009-09-24 10:23:21 +0200969 return 0;
970}
971
972static int zfcp_fsf_setup_ct_els(struct zfcp_fsf_req *req,
973 struct scatterlist *sg_req,
974 struct scatterlist *sg_resp,
Swen Schillig01b04752010-07-16 15:37:37 +0200975 unsigned int timeout)
Christof Schmittb1a58982009-09-24 10:23:21 +0200976{
977 int ret;
978
Swen Schillig01b04752010-07-16 15:37:37 +0200979 ret = zfcp_fsf_setup_ct_els_sbals(req, sg_req, sg_resp);
Christof Schmittb1a58982009-09-24 10:23:21 +0200980 if (ret)
981 return ret;
982
Christof Schmitt98fc4d52009-08-18 15:43:26 +0200983 /* common settings for ct/gs and els requests */
Swen Schillig51375ee2010-01-14 17:19:02 +0100984 if (timeout > 255)
985 timeout = 255; /* max value accepted by hardware */
Christof Schmitt98fc4d52009-08-18 15:43:26 +0200986 req->qtcb->bottom.support.service_class = FSF_CLASS_3;
Swen Schillig51375ee2010-01-14 17:19:02 +0100987 req->qtcb->bottom.support.timeout = timeout;
988 zfcp_fsf_start_timer(req, (timeout + 10) * HZ);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200989
990 return 0;
991}
992
993/**
994 * zfcp_fsf_send_ct - initiate a Generic Service request (FC-GS)
995 * @ct: pointer to struct zfcp_send_ct with data for request
996 * @pool: if non-null this mempool is used to allocate struct zfcp_fsf_req
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200997 */
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100998int zfcp_fsf_send_ct(struct zfcp_fc_wka_port *wka_port,
Swen Schillig51375ee2010-01-14 17:19:02 +0100999 struct zfcp_fsf_ct_els *ct, mempool_t *pool,
1000 unsigned int timeout)
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001001{
Swen Schillig564e1c82009-08-18 15:43:19 +02001002 struct zfcp_qdio *qdio = wka_port->adapter->qdio;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001003 struct zfcp_fsf_req *req;
1004 int ret = -EIO;
1005
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001006 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001007 if (zfcp_qdio_sbal_get(qdio))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001008 goto out;
1009
Christof Schmitt1674b402010-04-30 18:09:34 +02001010 req = zfcp_fsf_req_create(qdio, FSF_QTCB_SEND_GENERIC,
1011 SBAL_FLAGS0_TYPE_WRITE_READ, pool);
Swen Schillig09a46c62009-08-18 15:43:16 +02001012
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001013 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001014 ret = PTR_ERR(req);
1015 goto out;
1016 }
1017
Swen Schillig09a46c62009-08-18 15:43:16 +02001018 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Swen Schillig01b04752010-07-16 15:37:37 +02001019 ret = zfcp_fsf_setup_ct_els(req, ct->req, ct->resp, timeout);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001020 if (ret)
1021 goto failed_send;
1022
1023 req->handler = zfcp_fsf_send_ct_handler;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001024 req->qtcb->header.port_handle = wka_port->handle;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001025 req->data = ct;
1026
Swen Schillig2c55b752010-12-02 15:16:13 +01001027 zfcp_dbf_san_req("fssct_1", req, wka_port->d_id);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001028
1029 ret = zfcp_fsf_req_send(req);
1030 if (ret)
1031 goto failed_send;
1032
1033 goto out;
1034
1035failed_send:
1036 zfcp_fsf_req_free(req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001037out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001038 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001039 return ret;
1040}
1041
1042static void zfcp_fsf_send_els_handler(struct zfcp_fsf_req *req)
1043{
Christof Schmitt7c7dc192009-11-24 16:54:13 +01001044 struct zfcp_fsf_ct_els *send_els = req->data;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001045 struct zfcp_port *port = send_els->port;
1046 struct fsf_qtcb_header *header = &req->qtcb->header;
1047
1048 send_els->status = -EINVAL;
1049
1050 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
1051 goto skip_fsfstatus;
1052
1053 switch (header->fsf_status) {
1054 case FSF_GOOD:
Swen Schillig2c55b752010-12-02 15:16:13 +01001055 zfcp_dbf_san_res("fsselh1", req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001056 send_els->status = 0;
1057 break;
1058 case FSF_SERVICE_CLASS_NOT_SUPPORTED:
1059 zfcp_fsf_class_not_supp(req);
1060 break;
1061 case FSF_ADAPTER_STATUS_AVAILABLE:
1062 switch (header->fsf_status_qual.word[0]){
1063 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001064 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
1065 case FSF_SQ_RETRY_IF_POSSIBLE:
1066 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1067 break;
1068 }
1069 break;
1070 case FSF_ELS_COMMAND_REJECTED:
1071 case FSF_PAYLOAD_SIZE_MISMATCH:
1072 case FSF_REQUEST_SIZE_TOO_LARGE:
1073 case FSF_RESPONSE_SIZE_TOO_LARGE:
1074 break;
1075 case FSF_ACCESS_DENIED:
Christof Schmitta1ca4832010-09-08 14:39:59 +02001076 if (port) {
1077 zfcp_cfdc_port_denied(port, &header->fsf_status_qual);
1078 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1079 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001080 break;
1081 case FSF_SBAL_MISMATCH:
1082 /* should never occure, avoided in zfcp_fsf_send_els */
1083 /* fall through */
1084 default:
1085 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1086 break;
1087 }
1088skip_fsfstatus:
1089 if (send_els->handler)
1090 send_els->handler(send_els->handler_data);
1091}
1092
1093/**
1094 * zfcp_fsf_send_els - initiate an ELS command (FC-FS)
1095 * @els: pointer to struct zfcp_send_els with data for the command
1096 */
Christof Schmitt7c7dc192009-11-24 16:54:13 +01001097int zfcp_fsf_send_els(struct zfcp_adapter *adapter, u32 d_id,
Swen Schillig51375ee2010-01-14 17:19:02 +01001098 struct zfcp_fsf_ct_els *els, unsigned int timeout)
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001099{
1100 struct zfcp_fsf_req *req;
Christof Schmitt7c7dc192009-11-24 16:54:13 +01001101 struct zfcp_qdio *qdio = adapter->qdio;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001102 int ret = -EIO;
1103
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001104 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001105 if (zfcp_qdio_sbal_get(qdio))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001106 goto out;
Swen Schillig09a46c62009-08-18 15:43:16 +02001107
Christof Schmitt1674b402010-04-30 18:09:34 +02001108 req = zfcp_fsf_req_create(qdio, FSF_QTCB_SEND_ELS,
1109 SBAL_FLAGS0_TYPE_WRITE_READ, NULL);
Swen Schillig09a46c62009-08-18 15:43:16 +02001110
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001111 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001112 ret = PTR_ERR(req);
1113 goto out;
1114 }
1115
Swen Schillig09a46c62009-08-18 15:43:16 +02001116 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Swen Schillig01b04752010-07-16 15:37:37 +02001117
1118 zfcp_qdio_sbal_limit(qdio, &req->qdio_req, 2);
1119
1120 ret = zfcp_fsf_setup_ct_els(req, els->req, els->resp, timeout);
Swen Schillig44cc76f2008-10-01 12:42:16 +02001121
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001122 if (ret)
1123 goto failed_send;
1124
Christof Schmitt7c7dc192009-11-24 16:54:13 +01001125 hton24(req->qtcb->bottom.support.d_id, d_id);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001126 req->handler = zfcp_fsf_send_els_handler;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001127 req->data = els;
1128
Swen Schillig2c55b752010-12-02 15:16:13 +01001129 zfcp_dbf_san_req("fssels1", req, d_id);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001130
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001131 ret = zfcp_fsf_req_send(req);
1132 if (ret)
1133 goto failed_send;
1134
1135 goto out;
1136
1137failed_send:
1138 zfcp_fsf_req_free(req);
1139out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001140 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001141 return ret;
1142}
1143
1144int zfcp_fsf_exchange_config_data(struct zfcp_erp_action *erp_action)
1145{
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001146 struct zfcp_fsf_req *req;
Swen Schillig564e1c82009-08-18 15:43:19 +02001147 struct zfcp_qdio *qdio = erp_action->adapter->qdio;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001148 int retval = -EIO;
1149
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001150 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001151 if (zfcp_qdio_sbal_get(qdio))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001152 goto out;
Swen Schillig09a46c62009-08-18 15:43:16 +02001153
Swen Schillig564e1c82009-08-18 15:43:19 +02001154 req = zfcp_fsf_req_create(qdio, FSF_QTCB_EXCHANGE_CONFIG_DATA,
Christof Schmitt1674b402010-04-30 18:09:34 +02001155 SBAL_FLAGS0_TYPE_READ,
Swen Schillig564e1c82009-08-18 15:43:19 +02001156 qdio->adapter->pool.erp_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02001157
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001158 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001159 retval = PTR_ERR(req);
1160 goto out;
1161 }
1162
Swen Schillig09a46c62009-08-18 15:43:16 +02001163 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Christof Schmitt1674b402010-04-30 18:09:34 +02001164 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001165
1166 req->qtcb->bottom.config.feature_selection =
1167 FSF_FEATURE_CFDC |
1168 FSF_FEATURE_LUN_SHARING |
1169 FSF_FEATURE_NOTIFICATION_LOST |
1170 FSF_FEATURE_UPDATE_ALERT;
1171 req->erp_action = erp_action;
1172 req->handler = zfcp_fsf_exchange_config_data_handler;
Christof Schmitte60a6d62010-02-17 11:18:49 +01001173 erp_action->fsf_req_id = req->req_id;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001174
Christof Schmitt287ac012008-07-02 10:56:40 +02001175 zfcp_fsf_start_erp_timer(req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001176 retval = zfcp_fsf_req_send(req);
1177 if (retval) {
1178 zfcp_fsf_req_free(req);
Christof Schmitte60a6d62010-02-17 11:18:49 +01001179 erp_action->fsf_req_id = 0;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001180 }
1181out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001182 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001183 return retval;
1184}
1185
Swen Schillig564e1c82009-08-18 15:43:19 +02001186int zfcp_fsf_exchange_config_data_sync(struct zfcp_qdio *qdio,
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001187 struct fsf_qtcb_bottom_config *data)
1188{
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001189 struct zfcp_fsf_req *req = NULL;
1190 int retval = -EIO;
1191
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001192 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001193 if (zfcp_qdio_sbal_get(qdio))
Christof Schmittada81b72009-04-17 15:08:03 +02001194 goto out_unlock;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001195
Christof Schmitt1674b402010-04-30 18:09:34 +02001196 req = zfcp_fsf_req_create(qdio, FSF_QTCB_EXCHANGE_CONFIG_DATA,
1197 SBAL_FLAGS0_TYPE_READ, NULL);
Swen Schillig09a46c62009-08-18 15:43:16 +02001198
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001199 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001200 retval = PTR_ERR(req);
Christof Schmittada81b72009-04-17 15:08:03 +02001201 goto out_unlock;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001202 }
1203
Christof Schmitt1674b402010-04-30 18:09:34 +02001204 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001205 req->handler = zfcp_fsf_exchange_config_data_handler;
1206
1207 req->qtcb->bottom.config.feature_selection =
1208 FSF_FEATURE_CFDC |
1209 FSF_FEATURE_LUN_SHARING |
1210 FSF_FEATURE_NOTIFICATION_LOST |
1211 FSF_FEATURE_UPDATE_ALERT;
1212
1213 if (data)
1214 req->data = data;
1215
1216 zfcp_fsf_start_timer(req, ZFCP_FSF_REQUEST_TIMEOUT);
1217 retval = zfcp_fsf_req_send(req);
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001218 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001219 if (!retval)
Swen Schillig058b8642009-08-18 15:43:14 +02001220 wait_for_completion(&req->completion);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001221
1222 zfcp_fsf_req_free(req);
Christof Schmittada81b72009-04-17 15:08:03 +02001223 return retval;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001224
Christof Schmittada81b72009-04-17 15:08:03 +02001225out_unlock:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001226 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001227 return retval;
1228}
1229
1230/**
1231 * zfcp_fsf_exchange_port_data - request information about local port
1232 * @erp_action: ERP action for the adapter for which port data is requested
1233 * Returns: 0 on success, error otherwise
1234 */
1235int zfcp_fsf_exchange_port_data(struct zfcp_erp_action *erp_action)
1236{
Swen Schillig564e1c82009-08-18 15:43:19 +02001237 struct zfcp_qdio *qdio = erp_action->adapter->qdio;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001238 struct zfcp_fsf_req *req;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001239 int retval = -EIO;
1240
Swen Schillig564e1c82009-08-18 15:43:19 +02001241 if (!(qdio->adapter->adapter_features & FSF_FEATURE_HBAAPI_MANAGEMENT))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001242 return -EOPNOTSUPP;
1243
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001244 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001245 if (zfcp_qdio_sbal_get(qdio))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001246 goto out;
Swen Schillig09a46c62009-08-18 15:43:16 +02001247
Swen Schillig564e1c82009-08-18 15:43:19 +02001248 req = zfcp_fsf_req_create(qdio, FSF_QTCB_EXCHANGE_PORT_DATA,
Christof Schmitt1674b402010-04-30 18:09:34 +02001249 SBAL_FLAGS0_TYPE_READ,
Swen Schillig564e1c82009-08-18 15:43:19 +02001250 qdio->adapter->pool.erp_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02001251
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001252 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001253 retval = PTR_ERR(req);
1254 goto out;
1255 }
1256
Swen Schillig09a46c62009-08-18 15:43:16 +02001257 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Christof Schmitt1674b402010-04-30 18:09:34 +02001258 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001259
1260 req->handler = zfcp_fsf_exchange_port_data_handler;
1261 req->erp_action = erp_action;
Christof Schmitte60a6d62010-02-17 11:18:49 +01001262 erp_action->fsf_req_id = req->req_id;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001263
Christof Schmitt287ac012008-07-02 10:56:40 +02001264 zfcp_fsf_start_erp_timer(req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001265 retval = zfcp_fsf_req_send(req);
1266 if (retval) {
1267 zfcp_fsf_req_free(req);
Christof Schmitte60a6d62010-02-17 11:18:49 +01001268 erp_action->fsf_req_id = 0;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001269 }
1270out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001271 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001272 return retval;
1273}
1274
1275/**
1276 * zfcp_fsf_exchange_port_data_sync - request information about local port
Swen Schillig564e1c82009-08-18 15:43:19 +02001277 * @qdio: pointer to struct zfcp_qdio
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001278 * @data: pointer to struct fsf_qtcb_bottom_port
1279 * Returns: 0 on success, error otherwise
1280 */
Swen Schillig564e1c82009-08-18 15:43:19 +02001281int zfcp_fsf_exchange_port_data_sync(struct zfcp_qdio *qdio,
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001282 struct fsf_qtcb_bottom_port *data)
1283{
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001284 struct zfcp_fsf_req *req = NULL;
1285 int retval = -EIO;
1286
Swen Schillig564e1c82009-08-18 15:43:19 +02001287 if (!(qdio->adapter->adapter_features & FSF_FEATURE_HBAAPI_MANAGEMENT))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001288 return -EOPNOTSUPP;
1289
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001290 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001291 if (zfcp_qdio_sbal_get(qdio))
Christof Schmittada81b72009-04-17 15:08:03 +02001292 goto out_unlock;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001293
Christof Schmitt1674b402010-04-30 18:09:34 +02001294 req = zfcp_fsf_req_create(qdio, FSF_QTCB_EXCHANGE_PORT_DATA,
1295 SBAL_FLAGS0_TYPE_READ, NULL);
Swen Schillig09a46c62009-08-18 15:43:16 +02001296
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001297 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001298 retval = PTR_ERR(req);
Christof Schmittada81b72009-04-17 15:08:03 +02001299 goto out_unlock;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001300 }
1301
1302 if (data)
1303 req->data = data;
1304
Christof Schmitt1674b402010-04-30 18:09:34 +02001305 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001306
1307 req->handler = zfcp_fsf_exchange_port_data_handler;
1308 zfcp_fsf_start_timer(req, ZFCP_FSF_REQUEST_TIMEOUT);
1309 retval = zfcp_fsf_req_send(req);
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001310 spin_unlock_irq(&qdio->req_q_lock);
Christof Schmittada81b72009-04-17 15:08:03 +02001311
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001312 if (!retval)
Swen Schillig058b8642009-08-18 15:43:14 +02001313 wait_for_completion(&req->completion);
1314
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001315 zfcp_fsf_req_free(req);
1316
1317 return retval;
Christof Schmittada81b72009-04-17 15:08:03 +02001318
1319out_unlock:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001320 spin_unlock_irq(&qdio->req_q_lock);
Christof Schmittada81b72009-04-17 15:08:03 +02001321 return retval;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001322}
1323
1324static void zfcp_fsf_open_port_handler(struct zfcp_fsf_req *req)
1325{
1326 struct zfcp_port *port = req->data;
1327 struct fsf_qtcb_header *header = &req->qtcb->header;
Christof Schmitt9d05ce22009-11-24 16:54:09 +01001328 struct fc_els_flogi *plogi;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001329
1330 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
Martin Petermanna17c5852009-05-15 13:18:19 +02001331 goto out;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001332
1333 switch (header->fsf_status) {
1334 case FSF_PORT_ALREADY_OPEN:
1335 break;
1336 case FSF_ACCESS_DENIED:
Christof Schmitta1ca4832010-09-08 14:39:59 +02001337 zfcp_cfdc_port_denied(port, &header->fsf_status_qual);
1338 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001339 break;
1340 case FSF_MAXIMUM_NUMBER_OF_PORTS_EXCEEDED:
1341 dev_warn(&req->adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +02001342 "Not enough FCP adapter resources to open "
Swen Schillig7ba58c92008-10-01 12:42:18 +02001343 "remote port 0x%016Lx\n",
1344 (unsigned long long)port->wwpn);
Swen Schilligedaed852010-09-08 14:40:01 +02001345 zfcp_erp_set_port_status(port,
1346 ZFCP_STATUS_COMMON_ERP_FAILED);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001347 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1348 break;
1349 case FSF_ADAPTER_STATUS_AVAILABLE:
1350 switch (header->fsf_status_qual.word[0]) {
1351 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
1352 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001353 case FSF_SQ_NO_RETRY_POSSIBLE:
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001354 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1355 break;
1356 }
1357 break;
1358 case FSF_GOOD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 port->handle = header->port_handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 atomic_set_mask(ZFCP_STATUS_COMMON_OPEN |
1361 ZFCP_STATUS_PORT_PHYS_OPEN, &port->status);
Andreas Herrmannd736a27b2005-06-13 13:23:57 +02001362 atomic_clear_mask(ZFCP_STATUS_COMMON_ACCESS_DENIED |
1363 ZFCP_STATUS_COMMON_ACCESS_BOXED,
1364 &port->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 /* check whether D_ID has changed during open */
1366 /*
1367 * FIXME: This check is not airtight, as the FCP channel does
1368 * not monitor closures of target port connections caused on
1369 * the remote side. Thus, they might miss out on invalidating
1370 * locally cached WWPNs (and other N_Port parameters) of gone
1371 * target ports. So, our heroic attempt to make things safe
1372 * could be undermined by 'open port' response data tagged with
1373 * obsolete WWPNs. Another reason to monitor potential
1374 * connection closures ourself at least (by interpreting
1375 * incoming ELS' and unsolicited status). It just crosses my
1376 * mind that one should be able to cross-check by means of
1377 * another GID_PN straight after a port has been opened.
1378 * Alternately, an ADISC/PDISC ELS should suffice, as well.
1379 */
Christof Schmitt9d05ce22009-11-24 16:54:09 +01001380 plogi = (struct fc_els_flogi *) req->qtcb->bottom.support.els;
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +01001381 if (req->qtcb->bottom.support.els1_length >=
Christof Schmitt9d05ce22009-11-24 16:54:09 +01001382 FSF_PLOGI_MIN_LEN)
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001383 zfcp_fc_plogi_evaluate(port, plogi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 case FSF_UNKNOWN_OP_SUBTYPE:
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001386 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 break;
1388 }
Martin Petermanna17c5852009-05-15 13:18:19 +02001389
1390out:
Christof Schmitt615f59e2010-02-17 11:18:56 +01001391 put_device(&port->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392}
1393
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001394/**
1395 * zfcp_fsf_open_port - create and send open port request
1396 * @erp_action: pointer to struct zfcp_erp_action
1397 * Returns: 0 on success, error otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 */
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001399int zfcp_fsf_open_port(struct zfcp_erp_action *erp_action)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400{
Swen Schillig564e1c82009-08-18 15:43:19 +02001401 struct zfcp_qdio *qdio = erp_action->adapter->qdio;
Martin Petermanna17c5852009-05-15 13:18:19 +02001402 struct zfcp_port *port = erp_action->port;
Swen Schillig564e1c82009-08-18 15:43:19 +02001403 struct zfcp_fsf_req *req;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001404 int retval = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001406 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001407 if (zfcp_qdio_sbal_get(qdio))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
Swen Schillig564e1c82009-08-18 15:43:19 +02001410 req = zfcp_fsf_req_create(qdio, FSF_QTCB_OPEN_PORT_WITH_DID,
Christof Schmitt1674b402010-04-30 18:09:34 +02001411 SBAL_FLAGS0_TYPE_READ,
Swen Schillig564e1c82009-08-18 15:43:19 +02001412 qdio->adapter->pool.erp_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02001413
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001414 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001415 retval = PTR_ERR(req);
1416 goto out;
1417 }
1418
Swen Schillig09a46c62009-08-18 15:43:16 +02001419 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Christof Schmitt1674b402010-04-30 18:09:34 +02001420 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001422 req->handler = zfcp_fsf_open_port_handler;
Christof Schmitt800c0ca2009-11-24 16:54:12 +01001423 hton24(req->qtcb->bottom.support.d_id, port->d_id);
Martin Petermanna17c5852009-05-15 13:18:19 +02001424 req->data = port;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001425 req->erp_action = erp_action;
Christof Schmitte60a6d62010-02-17 11:18:49 +01001426 erp_action->fsf_req_id = req->req_id;
Christof Schmitt615f59e2010-02-17 11:18:56 +01001427 get_device(&port->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
Christof Schmitt287ac012008-07-02 10:56:40 +02001429 zfcp_fsf_start_erp_timer(req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001430 retval = zfcp_fsf_req_send(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 if (retval) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001432 zfcp_fsf_req_free(req);
Christof Schmitte60a6d62010-02-17 11:18:49 +01001433 erp_action->fsf_req_id = 0;
Christof Schmitt615f59e2010-02-17 11:18:56 +01001434 put_device(&port->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001436out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001437 spin_unlock_irq(&qdio->req_q_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 return retval;
1439}
1440
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001441static void zfcp_fsf_close_port_handler(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442{
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001443 struct zfcp_port *port = req->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001445 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
Swen Schillig44cc76f2008-10-01 12:42:16 +02001446 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001448 switch (req->qtcb->header.fsf_status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 case FSF_PORT_HANDLE_NOT_VALID:
Swen Schilligea4a3a62010-12-02 15:16:16 +01001450 zfcp_erp_adapter_reopen(port->adapter, 0, "fscph_1");
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001451 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 case FSF_ADAPTER_STATUS_AVAILABLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 case FSF_GOOD:
Swen Schilligedaed852010-09-08 14:40:01 +02001456 zfcp_erp_clear_port_status(port, ZFCP_STATUS_COMMON_OPEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459}
1460
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001461/**
1462 * zfcp_fsf_close_port - create and send close port request
1463 * @erp_action: pointer to struct zfcp_erp_action
1464 * Returns: 0 on success, error otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 */
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001466int zfcp_fsf_close_port(struct zfcp_erp_action *erp_action)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467{
Swen Schillig564e1c82009-08-18 15:43:19 +02001468 struct zfcp_qdio *qdio = erp_action->adapter->qdio;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001469 struct zfcp_fsf_req *req;
1470 int retval = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001472 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001473 if (zfcp_qdio_sbal_get(qdio))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
Swen Schillig564e1c82009-08-18 15:43:19 +02001476 req = zfcp_fsf_req_create(qdio, FSF_QTCB_CLOSE_PORT,
Christof Schmitt1674b402010-04-30 18:09:34 +02001477 SBAL_FLAGS0_TYPE_READ,
Swen Schillig564e1c82009-08-18 15:43:19 +02001478 qdio->adapter->pool.erp_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02001479
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001480 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001481 retval = PTR_ERR(req);
1482 goto out;
1483 }
1484
Swen Schillig09a46c62009-08-18 15:43:16 +02001485 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Christof Schmitt1674b402010-04-30 18:09:34 +02001486 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001488 req->handler = zfcp_fsf_close_port_handler;
1489 req->data = erp_action->port;
1490 req->erp_action = erp_action;
1491 req->qtcb->header.port_handle = erp_action->port->handle;
Christof Schmitte60a6d62010-02-17 11:18:49 +01001492 erp_action->fsf_req_id = req->req_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493
Christof Schmitt287ac012008-07-02 10:56:40 +02001494 zfcp_fsf_start_erp_timer(req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001495 retval = zfcp_fsf_req_send(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 if (retval) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001497 zfcp_fsf_req_free(req);
Christof Schmitte60a6d62010-02-17 11:18:49 +01001498 erp_action->fsf_req_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001500out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001501 spin_unlock_irq(&qdio->req_q_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 return retval;
1503}
1504
Swen Schillig5ab944f2008-10-01 12:42:17 +02001505static void zfcp_fsf_open_wka_port_handler(struct zfcp_fsf_req *req)
1506{
Christof Schmittbd0072e2009-11-24 16:54:11 +01001507 struct zfcp_fc_wka_port *wka_port = req->data;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001508 struct fsf_qtcb_header *header = &req->qtcb->header;
1509
1510 if (req->status & ZFCP_STATUS_FSFREQ_ERROR) {
Christof Schmittbd0072e2009-11-24 16:54:11 +01001511 wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001512 goto out;
1513 }
1514
1515 switch (header->fsf_status) {
1516 case FSF_MAXIMUM_NUMBER_OF_PORTS_EXCEEDED:
1517 dev_warn(&req->adapter->ccw_device->dev,
1518 "Opening WKA port 0x%x failed\n", wka_port->d_id);
Christof Schmittdceab652009-05-15 13:18:18 +02001519 /* fall through */
Swen Schillig5ab944f2008-10-01 12:42:17 +02001520 case FSF_ADAPTER_STATUS_AVAILABLE:
1521 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Christof Schmittdceab652009-05-15 13:18:18 +02001522 /* fall through */
Swen Schillig5ab944f2008-10-01 12:42:17 +02001523 case FSF_ACCESS_DENIED:
Christof Schmittbd0072e2009-11-24 16:54:11 +01001524 wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001525 break;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001526 case FSF_GOOD:
1527 wka_port->handle = header->port_handle;
Swen Schillig27f492c2009-07-13 15:06:13 +02001528 /* fall through */
1529 case FSF_PORT_ALREADY_OPEN:
Christof Schmittbd0072e2009-11-24 16:54:11 +01001530 wka_port->status = ZFCP_FC_WKA_PORT_ONLINE;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001531 }
1532out:
1533 wake_up(&wka_port->completion_wq);
1534}
1535
1536/**
1537 * zfcp_fsf_open_wka_port - create and send open wka-port request
Christof Schmittbd0072e2009-11-24 16:54:11 +01001538 * @wka_port: pointer to struct zfcp_fc_wka_port
Swen Schillig5ab944f2008-10-01 12:42:17 +02001539 * Returns: 0 on success, error otherwise
1540 */
Christof Schmittbd0072e2009-11-24 16:54:11 +01001541int zfcp_fsf_open_wka_port(struct zfcp_fc_wka_port *wka_port)
Swen Schillig5ab944f2008-10-01 12:42:17 +02001542{
Swen Schillig564e1c82009-08-18 15:43:19 +02001543 struct zfcp_qdio *qdio = wka_port->adapter->qdio;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001544 struct zfcp_fsf_req *req;
1545 int retval = -EIO;
1546
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001547 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001548 if (zfcp_qdio_sbal_get(qdio))
Swen Schillig5ab944f2008-10-01 12:42:17 +02001549 goto out;
1550
Swen Schillig564e1c82009-08-18 15:43:19 +02001551 req = zfcp_fsf_req_create(qdio, FSF_QTCB_OPEN_PORT_WITH_DID,
Christof Schmitt1674b402010-04-30 18:09:34 +02001552 SBAL_FLAGS0_TYPE_READ,
Swen Schillig564e1c82009-08-18 15:43:19 +02001553 qdio->adapter->pool.erp_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02001554
Swen Schillig5ab944f2008-10-01 12:42:17 +02001555 if (unlikely(IS_ERR(req))) {
1556 retval = PTR_ERR(req);
1557 goto out;
1558 }
1559
Swen Schillig09a46c62009-08-18 15:43:16 +02001560 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Christof Schmitt1674b402010-04-30 18:09:34 +02001561 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schillig5ab944f2008-10-01 12:42:17 +02001562
1563 req->handler = zfcp_fsf_open_wka_port_handler;
Christof Schmitt800c0ca2009-11-24 16:54:12 +01001564 hton24(req->qtcb->bottom.support.d_id, wka_port->d_id);
Swen Schillig5ab944f2008-10-01 12:42:17 +02001565 req->data = wka_port;
1566
1567 zfcp_fsf_start_timer(req, ZFCP_FSF_REQUEST_TIMEOUT);
1568 retval = zfcp_fsf_req_send(req);
1569 if (retval)
1570 zfcp_fsf_req_free(req);
1571out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001572 spin_unlock_irq(&qdio->req_q_lock);
Swen Schillig5ab944f2008-10-01 12:42:17 +02001573 return retval;
1574}
1575
1576static void zfcp_fsf_close_wka_port_handler(struct zfcp_fsf_req *req)
1577{
Christof Schmittbd0072e2009-11-24 16:54:11 +01001578 struct zfcp_fc_wka_port *wka_port = req->data;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001579
1580 if (req->qtcb->header.fsf_status == FSF_PORT_HANDLE_NOT_VALID) {
1581 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Swen Schilligea4a3a62010-12-02 15:16:16 +01001582 zfcp_erp_adapter_reopen(wka_port->adapter, 0, "fscwph1");
Swen Schillig5ab944f2008-10-01 12:42:17 +02001583 }
1584
Christof Schmittbd0072e2009-11-24 16:54:11 +01001585 wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001586 wake_up(&wka_port->completion_wq);
1587}
1588
1589/**
1590 * zfcp_fsf_close_wka_port - create and send close wka port request
Christof Schmittbd0072e2009-11-24 16:54:11 +01001591 * @wka_port: WKA port to open
Swen Schillig5ab944f2008-10-01 12:42:17 +02001592 * Returns: 0 on success, error otherwise
1593 */
Christof Schmittbd0072e2009-11-24 16:54:11 +01001594int zfcp_fsf_close_wka_port(struct zfcp_fc_wka_port *wka_port)
Swen Schillig5ab944f2008-10-01 12:42:17 +02001595{
Swen Schillig564e1c82009-08-18 15:43:19 +02001596 struct zfcp_qdio *qdio = wka_port->adapter->qdio;
Swen Schillig5ab944f2008-10-01 12:42:17 +02001597 struct zfcp_fsf_req *req;
1598 int retval = -EIO;
1599
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001600 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001601 if (zfcp_qdio_sbal_get(qdio))
Swen Schillig5ab944f2008-10-01 12:42:17 +02001602 goto out;
1603
Swen Schillig564e1c82009-08-18 15:43:19 +02001604 req = zfcp_fsf_req_create(qdio, FSF_QTCB_CLOSE_PORT,
Christof Schmitt1674b402010-04-30 18:09:34 +02001605 SBAL_FLAGS0_TYPE_READ,
Swen Schillig564e1c82009-08-18 15:43:19 +02001606 qdio->adapter->pool.erp_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02001607
Swen Schillig5ab944f2008-10-01 12:42:17 +02001608 if (unlikely(IS_ERR(req))) {
1609 retval = PTR_ERR(req);
1610 goto out;
1611 }
1612
Swen Schillig09a46c62009-08-18 15:43:16 +02001613 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Christof Schmitt1674b402010-04-30 18:09:34 +02001614 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schillig5ab944f2008-10-01 12:42:17 +02001615
1616 req->handler = zfcp_fsf_close_wka_port_handler;
1617 req->data = wka_port;
1618 req->qtcb->header.port_handle = wka_port->handle;
1619
1620 zfcp_fsf_start_timer(req, ZFCP_FSF_REQUEST_TIMEOUT);
1621 retval = zfcp_fsf_req_send(req);
1622 if (retval)
1623 zfcp_fsf_req_free(req);
1624out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001625 spin_unlock_irq(&qdio->req_q_lock);
Swen Schillig5ab944f2008-10-01 12:42:17 +02001626 return retval;
1627}
1628
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001629static void zfcp_fsf_close_physical_port_handler(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630{
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001631 struct zfcp_port *port = req->data;
1632 struct fsf_qtcb_header *header = &req->qtcb->header;
Christof Schmittb62a8d92010-09-08 14:39:55 +02001633 struct scsi_device *sdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001635 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
Christof Schmitta5b11dd2009-03-02 13:08:54 +01001636 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 switch (header->fsf_status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 case FSF_PORT_HANDLE_NOT_VALID:
Swen Schilligea4a3a62010-12-02 15:16:16 +01001640 zfcp_erp_adapter_reopen(port->adapter, 0, "fscpph1");
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001641 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 case FSF_ACCESS_DENIED:
Christof Schmitta1ca4832010-09-08 14:39:59 +02001644 zfcp_cfdc_port_denied(port, &header->fsf_status_qual);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 case FSF_PORT_BOXED:
Christof Schmitt5c815d12008-03-10 16:18:54 +01001647 /* can't use generic zfcp_erp_modify_port_status because
1648 * ZFCP_STATUS_COMMON_OPEN must not be reset for the port */
1649 atomic_clear_mask(ZFCP_STATUS_PORT_PHYS_OPEN, &port->status);
Christof Schmittb62a8d92010-09-08 14:39:55 +02001650 shost_for_each_device(sdev, port->adapter->scsi_host)
1651 if (sdev_to_zfcp(sdev)->port == port)
1652 atomic_clear_mask(ZFCP_STATUS_COMMON_OPEN,
1653 &sdev_to_zfcp(sdev)->status);
Swen Schilligedaed852010-09-08 14:40:01 +02001654 zfcp_erp_set_port_status(port, ZFCP_STATUS_COMMON_ACCESS_BOXED);
1655 zfcp_erp_port_reopen(port, ZFCP_STATUS_COMMON_ERP_FAILED,
Swen Schilligea4a3a62010-12-02 15:16:16 +01001656 "fscpph2");
Christof Schmitt4c571c62009-11-24 16:54:15 +01001657 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 case FSF_ADAPTER_STATUS_AVAILABLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 switch (header->fsf_status_qual.word[0]) {
1661 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001662 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001664 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 }
1667 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 case FSF_GOOD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 /* can't use generic zfcp_erp_modify_port_status because
1670 * ZFCP_STATUS_COMMON_OPEN must not be reset for the port
1671 */
1672 atomic_clear_mask(ZFCP_STATUS_PORT_PHYS_OPEN, &port->status);
Christof Schmittb62a8d92010-09-08 14:39:55 +02001673 shost_for_each_device(sdev, port->adapter->scsi_host)
1674 if (sdev_to_zfcp(sdev)->port == port)
1675 atomic_clear_mask(ZFCP_STATUS_COMMON_OPEN,
1676 &sdev_to_zfcp(sdev)->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679}
1680
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001681/**
1682 * zfcp_fsf_close_physical_port - close physical port
1683 * @erp_action: pointer to struct zfcp_erp_action
1684 * Returns: 0 on success
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 */
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001686int zfcp_fsf_close_physical_port(struct zfcp_erp_action *erp_action)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687{
Swen Schillig564e1c82009-08-18 15:43:19 +02001688 struct zfcp_qdio *qdio = erp_action->adapter->qdio;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001689 struct zfcp_fsf_req *req;
1690 int retval = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001692 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001693 if (zfcp_qdio_sbal_get(qdio))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
Swen Schillig564e1c82009-08-18 15:43:19 +02001696 req = zfcp_fsf_req_create(qdio, FSF_QTCB_CLOSE_PHYSICAL_PORT,
Christof Schmitt1674b402010-04-30 18:09:34 +02001697 SBAL_FLAGS0_TYPE_READ,
Swen Schillig564e1c82009-08-18 15:43:19 +02001698 qdio->adapter->pool.erp_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02001699
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001700 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001701 retval = PTR_ERR(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 goto out;
1703 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001704
Swen Schillig09a46c62009-08-18 15:43:16 +02001705 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Christof Schmitt1674b402010-04-30 18:09:34 +02001706 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001707
1708 req->data = erp_action->port;
1709 req->qtcb->header.port_handle = erp_action->port->handle;
1710 req->erp_action = erp_action;
1711 req->handler = zfcp_fsf_close_physical_port_handler;
Christof Schmitte60a6d62010-02-17 11:18:49 +01001712 erp_action->fsf_req_id = req->req_id;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001713
Christof Schmitt287ac012008-07-02 10:56:40 +02001714 zfcp_fsf_start_erp_timer(req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001715 retval = zfcp_fsf_req_send(req);
1716 if (retval) {
1717 zfcp_fsf_req_free(req);
Christof Schmitte60a6d62010-02-17 11:18:49 +01001718 erp_action->fsf_req_id = 0;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001719 }
1720out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001721 spin_unlock_irq(&qdio->req_q_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 return retval;
1723}
1724
Christof Schmittb62a8d92010-09-08 14:39:55 +02001725static void zfcp_fsf_open_lun_handler(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726{
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001727 struct zfcp_adapter *adapter = req->adapter;
Christof Schmittb62a8d92010-09-08 14:39:55 +02001728 struct scsi_device *sdev = req->data;
1729 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001730 struct fsf_qtcb_header *header = &req->qtcb->header;
1731 struct fsf_qtcb_bottom_support *bottom = &req->qtcb->bottom.support;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001733 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
Swen Schillig44cc76f2008-10-01 12:42:16 +02001734 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 atomic_clear_mask(ZFCP_STATUS_COMMON_ACCESS_DENIED |
Heiko Carstensb64ddf92007-05-08 11:19:57 +02001737 ZFCP_STATUS_COMMON_ACCESS_BOXED |
Christof Schmittb62a8d92010-09-08 14:39:55 +02001738 ZFCP_STATUS_LUN_SHARED |
1739 ZFCP_STATUS_LUN_READONLY,
1740 &zfcp_sdev->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 switch (header->fsf_status) {
1743
1744 case FSF_PORT_HANDLE_NOT_VALID:
Swen Schilligea4a3a62010-12-02 15:16:16 +01001745 zfcp_erp_adapter_reopen(adapter, 0, "fsouh_1");
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001746 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 case FSF_LUN_ALREADY_OPEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 case FSF_ACCESS_DENIED:
Christof Schmitta1ca4832010-09-08 14:39:59 +02001750 zfcp_cfdc_lun_denied(sdev, &header->fsf_status_qual);
1751 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 case FSF_PORT_BOXED:
Swen Schilligedaed852010-09-08 14:40:01 +02001754 zfcp_erp_set_port_status(zfcp_sdev->port,
1755 ZFCP_STATUS_COMMON_ACCESS_BOXED);
1756 zfcp_erp_port_reopen(zfcp_sdev->port,
Swen Schilligea4a3a62010-12-02 15:16:16 +01001757 ZFCP_STATUS_COMMON_ERP_FAILED, "fsouh_2");
Christof Schmitt4c571c62009-11-24 16:54:15 +01001758 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 case FSF_LUN_SHARING_VIOLATION:
Christof Schmitta1ca4832010-09-08 14:39:59 +02001761 zfcp_cfdc_lun_shrng_vltn(sdev, &header->fsf_status_qual);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001762 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 case FSF_MAXIMUM_NUMBER_OF_LUNS_EXCEEDED:
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001765 dev_warn(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +02001766 "No handle is available for LUN "
1767 "0x%016Lx on port 0x%016Lx\n",
Christof Schmittb62a8d92010-09-08 14:39:55 +02001768 (unsigned long long)zfcp_scsi_dev_lun(sdev),
1769 (unsigned long long)zfcp_sdev->port->wwpn);
Swen Schilligedaed852010-09-08 14:40:01 +02001770 zfcp_erp_set_lun_status(sdev, ZFCP_STATUS_COMMON_ERP_FAILED);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001771 /* fall through */
1772 case FSF_INVALID_COMMAND_OPTION:
1773 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 case FSF_ADAPTER_STATUS_AVAILABLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 switch (header->fsf_status_qual.word[0]) {
1777 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
Christof Schmittb62a8d92010-09-08 14:39:55 +02001778 zfcp_fc_test_link(zfcp_sdev->port);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001779 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001781 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 }
1784 break;
1785
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 case FSF_GOOD:
Christof Schmittb62a8d92010-09-08 14:39:55 +02001787 zfcp_sdev->lun_handle = header->lun_handle;
1788 atomic_set_mask(ZFCP_STATUS_COMMON_OPEN, &zfcp_sdev->status);
Christof Schmitta1ca4832010-09-08 14:39:59 +02001789 zfcp_cfdc_open_lun_eval(sdev, bottom);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792}
1793
1794/**
Christof Schmittb62a8d92010-09-08 14:39:55 +02001795 * zfcp_fsf_open_lun - open LUN
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001796 * @erp_action: pointer to struct zfcp_erp_action
1797 * Returns: 0 on success, error otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 */
Christof Schmittb62a8d92010-09-08 14:39:55 +02001799int zfcp_fsf_open_lun(struct zfcp_erp_action *erp_action)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800{
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001801 struct zfcp_adapter *adapter = erp_action->adapter;
Swen Schillig564e1c82009-08-18 15:43:19 +02001802 struct zfcp_qdio *qdio = adapter->qdio;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001803 struct zfcp_fsf_req *req;
1804 int retval = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001806 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001807 if (zfcp_qdio_sbal_get(qdio))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001808 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809
Swen Schillig564e1c82009-08-18 15:43:19 +02001810 req = zfcp_fsf_req_create(qdio, FSF_QTCB_OPEN_LUN,
Christof Schmitt1674b402010-04-30 18:09:34 +02001811 SBAL_FLAGS0_TYPE_READ,
Swen Schilliga4623c42009-08-18 15:43:15 +02001812 adapter->pool.erp_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02001813
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001814 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001815 retval = PTR_ERR(req);
1816 goto out;
Christof Schmittba172422007-12-20 12:30:26 +01001817 }
1818
Swen Schillig09a46c62009-08-18 15:43:16 +02001819 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Christof Schmitt1674b402010-04-30 18:09:34 +02001820 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001822 req->qtcb->header.port_handle = erp_action->port->handle;
Christof Schmittb62a8d92010-09-08 14:39:55 +02001823 req->qtcb->bottom.support.fcp_lun = zfcp_scsi_dev_lun(erp_action->sdev);
1824 req->handler = zfcp_fsf_open_lun_handler;
1825 req->data = erp_action->sdev;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001826 req->erp_action = erp_action;
Christof Schmitte60a6d62010-02-17 11:18:49 +01001827 erp_action->fsf_req_id = req->req_id;
Andreas Herrmann059c97d2005-09-13 21:47:52 +02001828
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001829 if (!(adapter->connection_features & FSF_FEATURE_NPIV_MODE))
1830 req->qtcb->bottom.support.option = FSF_OPEN_LUN_SUPPRESS_BOXING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831
Christof Schmitt287ac012008-07-02 10:56:40 +02001832 zfcp_fsf_start_erp_timer(req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001833 retval = zfcp_fsf_req_send(req);
1834 if (retval) {
1835 zfcp_fsf_req_free(req);
Christof Schmitte60a6d62010-02-17 11:18:49 +01001836 erp_action->fsf_req_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001838out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001839 spin_unlock_irq(&qdio->req_q_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 return retval;
1841}
1842
Christof Schmittb62a8d92010-09-08 14:39:55 +02001843static void zfcp_fsf_close_lun_handler(struct zfcp_fsf_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844{
Christof Schmittb62a8d92010-09-08 14:39:55 +02001845 struct scsi_device *sdev = req->data;
1846 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001847
1848 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
Swen Schillig44cc76f2008-10-01 12:42:16 +02001849 return;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001850
1851 switch (req->qtcb->header.fsf_status) {
1852 case FSF_PORT_HANDLE_NOT_VALID:
Swen Schilligea4a3a62010-12-02 15:16:16 +01001853 zfcp_erp_adapter_reopen(zfcp_sdev->port->adapter, 0, "fscuh_1");
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001854 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1855 break;
1856 case FSF_LUN_HANDLE_NOT_VALID:
Swen Schilligea4a3a62010-12-02 15:16:16 +01001857 zfcp_erp_port_reopen(zfcp_sdev->port, 0, "fscuh_2");
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001858 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1859 break;
1860 case FSF_PORT_BOXED:
Swen Schilligedaed852010-09-08 14:40:01 +02001861 zfcp_erp_set_port_status(zfcp_sdev->port,
1862 ZFCP_STATUS_COMMON_ACCESS_BOXED);
1863 zfcp_erp_port_reopen(zfcp_sdev->port,
Swen Schilligea4a3a62010-12-02 15:16:16 +01001864 ZFCP_STATUS_COMMON_ERP_FAILED, "fscuh_3");
Christof Schmitt4c571c62009-11-24 16:54:15 +01001865 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001866 break;
1867 case FSF_ADAPTER_STATUS_AVAILABLE:
1868 switch (req->qtcb->header.fsf_status_qual.word[0]) {
1869 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
Christof Schmittb62a8d92010-09-08 14:39:55 +02001870 zfcp_fc_test_link(zfcp_sdev->port);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001871 /* fall through */
1872 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
1873 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1874 break;
1875 }
1876 break;
1877 case FSF_GOOD:
Christof Schmittb62a8d92010-09-08 14:39:55 +02001878 atomic_clear_mask(ZFCP_STATUS_COMMON_OPEN, &zfcp_sdev->status);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001879 break;
1880 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001881}
1882
1883/**
Christof Schmittb62a8d92010-09-08 14:39:55 +02001884 * zfcp_fsf_close_LUN - close LUN
1885 * @erp_action: pointer to erp_action triggering the "close LUN"
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001886 * Returns: 0 on success, error otherwise
1887 */
Christof Schmittb62a8d92010-09-08 14:39:55 +02001888int zfcp_fsf_close_lun(struct zfcp_erp_action *erp_action)
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001889{
Swen Schillig564e1c82009-08-18 15:43:19 +02001890 struct zfcp_qdio *qdio = erp_action->adapter->qdio;
Christof Schmittb62a8d92010-09-08 14:39:55 +02001891 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(erp_action->sdev);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001892 struct zfcp_fsf_req *req;
1893 int retval = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001895 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02001896 if (zfcp_qdio_sbal_get(qdio))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 goto out;
Swen Schillig09a46c62009-08-18 15:43:16 +02001898
Swen Schillig564e1c82009-08-18 15:43:19 +02001899 req = zfcp_fsf_req_create(qdio, FSF_QTCB_CLOSE_LUN,
Christof Schmitt1674b402010-04-30 18:09:34 +02001900 SBAL_FLAGS0_TYPE_READ,
Swen Schillig564e1c82009-08-18 15:43:19 +02001901 qdio->adapter->pool.erp_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02001902
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02001903 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001904 retval = PTR_ERR(req);
1905 goto out;
1906 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907
Swen Schillig09a46c62009-08-18 15:43:16 +02001908 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Christof Schmitt1674b402010-04-30 18:09:34 +02001909 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001911 req->qtcb->header.port_handle = erp_action->port->handle;
Christof Schmittb62a8d92010-09-08 14:39:55 +02001912 req->qtcb->header.lun_handle = zfcp_sdev->lun_handle;
1913 req->handler = zfcp_fsf_close_lun_handler;
1914 req->data = erp_action->sdev;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001915 req->erp_action = erp_action;
Christof Schmitte60a6d62010-02-17 11:18:49 +01001916 erp_action->fsf_req_id = req->req_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917
Christof Schmitt287ac012008-07-02 10:56:40 +02001918 zfcp_fsf_start_erp_timer(req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001919 retval = zfcp_fsf_req_send(req);
1920 if (retval) {
1921 zfcp_fsf_req_free(req);
Christof Schmitte60a6d62010-02-17 11:18:49 +01001922 erp_action->fsf_req_id = 0;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001923 }
1924out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02001925 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001926 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927}
1928
Christof Schmittc9615852008-05-06 11:00:05 +02001929static void zfcp_fsf_update_lat(struct fsf_latency_record *lat_rec, u32 lat)
1930{
1931 lat_rec->sum += lat;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001932 lat_rec->min = min(lat_rec->min, lat);
1933 lat_rec->max = max(lat_rec->max, lat);
Christof Schmittc9615852008-05-06 11:00:05 +02001934}
1935
Christof Schmittd9742b42009-11-24 16:54:03 +01001936static void zfcp_fsf_req_trace(struct zfcp_fsf_req *req, struct scsi_cmnd *scsi)
Christof Schmittc9615852008-05-06 11:00:05 +02001937{
Christof Schmittd9742b42009-11-24 16:54:03 +01001938 struct fsf_qual_latency_info *lat_in;
1939 struct latency_cont *lat = NULL;
Christof Schmittb62a8d92010-09-08 14:39:55 +02001940 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(scsi->device);
Christof Schmittd9742b42009-11-24 16:54:03 +01001941 struct zfcp_blk_drv_data blktrc;
1942 int ticks = req->adapter->timer_ticks;
Christof Schmittc9615852008-05-06 11:00:05 +02001943
Christof Schmittd9742b42009-11-24 16:54:03 +01001944 lat_in = &req->qtcb->prefix.prot_status_qual.latency_info;
Christof Schmittc9615852008-05-06 11:00:05 +02001945
Christof Schmittd9742b42009-11-24 16:54:03 +01001946 blktrc.flags = 0;
1947 blktrc.magic = ZFCP_BLK_DRV_DATA_MAGIC;
1948 if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
1949 blktrc.flags |= ZFCP_BLK_REQ_ERROR;
Swen Schillig706eca42010-07-16 15:37:38 +02001950 blktrc.inb_usage = 0;
Christof Schmitt34c2b712010-02-17 11:18:59 +01001951 blktrc.outb_usage = req->qdio_req.qdio_outb_usage;
Christof Schmittd9742b42009-11-24 16:54:03 +01001952
Christof Schmitt5bbf2972010-04-01 13:04:08 +02001953 if (req->adapter->adapter_features & FSF_FEATURE_MEASUREMENT_DATA &&
1954 !(req->status & ZFCP_STATUS_FSFREQ_ERROR)) {
Christof Schmittd9742b42009-11-24 16:54:03 +01001955 blktrc.flags |= ZFCP_BLK_LAT_VALID;
1956 blktrc.channel_lat = lat_in->channel_lat * ticks;
1957 blktrc.fabric_lat = lat_in->fabric_lat * ticks;
1958
1959 switch (req->qtcb->bottom.io.data_direction) {
Felix Beckef3eb712010-07-16 15:37:42 +02001960 case FSF_DATADIR_DIF_READ_STRIP:
1961 case FSF_DATADIR_DIF_READ_CONVERT:
Christof Schmittd9742b42009-11-24 16:54:03 +01001962 case FSF_DATADIR_READ:
Christof Schmittb62a8d92010-09-08 14:39:55 +02001963 lat = &zfcp_sdev->latencies.read;
Christof Schmittd9742b42009-11-24 16:54:03 +01001964 break;
Felix Beckef3eb712010-07-16 15:37:42 +02001965 case FSF_DATADIR_DIF_WRITE_INSERT:
1966 case FSF_DATADIR_DIF_WRITE_CONVERT:
Christof Schmittd9742b42009-11-24 16:54:03 +01001967 case FSF_DATADIR_WRITE:
Christof Schmittb62a8d92010-09-08 14:39:55 +02001968 lat = &zfcp_sdev->latencies.write;
Christof Schmittd9742b42009-11-24 16:54:03 +01001969 break;
1970 case FSF_DATADIR_CMND:
Christof Schmittb62a8d92010-09-08 14:39:55 +02001971 lat = &zfcp_sdev->latencies.cmd;
Christof Schmittd9742b42009-11-24 16:54:03 +01001972 break;
1973 }
1974
1975 if (lat) {
Christof Schmittb62a8d92010-09-08 14:39:55 +02001976 spin_lock(&zfcp_sdev->latencies.lock);
Christof Schmittd9742b42009-11-24 16:54:03 +01001977 zfcp_fsf_update_lat(&lat->channel, lat_in->channel_lat);
1978 zfcp_fsf_update_lat(&lat->fabric, lat_in->fabric_lat);
1979 lat->counter++;
Christof Schmittb62a8d92010-09-08 14:39:55 +02001980 spin_unlock(&zfcp_sdev->latencies.lock);
Christof Schmittd9742b42009-11-24 16:54:03 +01001981 }
Christof Schmittc9615852008-05-06 11:00:05 +02001982 }
1983
Christof Schmittd9742b42009-11-24 16:54:03 +01001984 blk_add_driver_data(scsi->request->q, scsi->request, &blktrc,
1985 sizeof(blktrc));
Christof Schmittc9615852008-05-06 11:00:05 +02001986}
1987
Christof Schmittc61b5362010-09-08 14:39:58 +02001988static void zfcp_fsf_fcp_handler_common(struct zfcp_fsf_req *req)
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001989{
Christof Schmittb62a8d92010-09-08 14:39:55 +02001990 struct scsi_cmnd *scmnd = req->data;
1991 struct scsi_device *sdev = scmnd->device;
1992 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001993 struct fsf_qtcb_header *header = &req->qtcb->header;
1994
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001995 if (unlikely(req->status & ZFCP_STATUS_FSFREQ_ERROR))
Christof Schmittc61b5362010-09-08 14:39:58 +02001996 return;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02001997
1998 switch (header->fsf_status) {
1999 case FSF_HANDLE_MISMATCH:
2000 case FSF_PORT_HANDLE_NOT_VALID:
Swen Schilligea4a3a62010-12-02 15:16:16 +01002001 zfcp_erp_adapter_reopen(zfcp_sdev->port->adapter, 0, "fssfch1");
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002002 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
2003 break;
2004 case FSF_FCPLUN_NOT_VALID:
2005 case FSF_LUN_HANDLE_NOT_VALID:
Swen Schilligea4a3a62010-12-02 15:16:16 +01002006 zfcp_erp_port_reopen(zfcp_sdev->port, 0, "fssfch2");
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002007 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
2008 break;
2009 case FSF_SERVICE_CLASS_NOT_SUPPORTED:
2010 zfcp_fsf_class_not_supp(req);
2011 break;
2012 case FSF_ACCESS_DENIED:
Christof Schmitta1ca4832010-09-08 14:39:59 +02002013 zfcp_cfdc_lun_denied(sdev, &header->fsf_status_qual);
2014 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002015 break;
2016 case FSF_DIRECTION_INDICATOR_NOT_VALID:
2017 dev_err(&req->adapter->ccw_device->dev,
Christof Schmittb62a8d92010-09-08 14:39:55 +02002018 "Incorrect direction %d, LUN 0x%016Lx on port "
Christof Schmittff3b24f2008-10-01 12:42:15 +02002019 "0x%016Lx closed\n",
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002020 req->qtcb->bottom.io.data_direction,
Christof Schmittb62a8d92010-09-08 14:39:55 +02002021 (unsigned long long)zfcp_scsi_dev_lun(sdev),
2022 (unsigned long long)zfcp_sdev->port->wwpn);
2023 zfcp_erp_adapter_shutdown(zfcp_sdev->port->adapter, 0,
Swen Schilligea4a3a62010-12-02 15:16:16 +01002024 "fssfch3");
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002025 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
2026 break;
2027 case FSF_CMND_LENGTH_NOT_VALID:
2028 dev_err(&req->adapter->ccw_device->dev,
Christof Schmittb62a8d92010-09-08 14:39:55 +02002029 "Incorrect CDB length %d, LUN 0x%016Lx on "
Christof Schmittff3b24f2008-10-01 12:42:15 +02002030 "port 0x%016Lx closed\n",
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002031 req->qtcb->bottom.io.fcp_cmnd_length,
Christof Schmittb62a8d92010-09-08 14:39:55 +02002032 (unsigned long long)zfcp_scsi_dev_lun(sdev),
2033 (unsigned long long)zfcp_sdev->port->wwpn);
2034 zfcp_erp_adapter_shutdown(zfcp_sdev->port->adapter, 0,
Swen Schilligea4a3a62010-12-02 15:16:16 +01002035 "fssfch4");
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002036 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
2037 break;
2038 case FSF_PORT_BOXED:
Swen Schilligedaed852010-09-08 14:40:01 +02002039 zfcp_erp_set_port_status(zfcp_sdev->port,
2040 ZFCP_STATUS_COMMON_ACCESS_BOXED);
2041 zfcp_erp_port_reopen(zfcp_sdev->port,
Swen Schilligea4a3a62010-12-02 15:16:16 +01002042 ZFCP_STATUS_COMMON_ERP_FAILED, "fssfch5");
Christof Schmitt4c571c62009-11-24 16:54:15 +01002043 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002044 break;
2045 case FSF_LUN_BOXED:
Swen Schilligedaed852010-09-08 14:40:01 +02002046 zfcp_erp_set_lun_status(sdev, ZFCP_STATUS_COMMON_ACCESS_BOXED);
2047 zfcp_erp_lun_reopen(sdev, ZFCP_STATUS_COMMON_ERP_FAILED,
Swen Schilligea4a3a62010-12-02 15:16:16 +01002048 "fssfch6");
Christof Schmitt4c571c62009-11-24 16:54:15 +01002049 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002050 break;
2051 case FSF_ADAPTER_STATUS_AVAILABLE:
2052 if (header->fsf_status_qual.word[0] ==
2053 FSF_SQ_INVOKE_LINK_TEST_PROCEDURE)
Christof Schmittb62a8d92010-09-08 14:39:55 +02002054 zfcp_fc_test_link(zfcp_sdev->port);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002055 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
2056 break;
2057 }
Christof Schmittc61b5362010-09-08 14:39:58 +02002058}
2059
2060static void zfcp_fsf_fcp_cmnd_handler(struct zfcp_fsf_req *req)
2061{
2062 struct scsi_cmnd *scpnt;
2063 struct fcp_resp_with_ext *fcp_rsp;
2064 unsigned long flags;
2065
Christof Schmittc61b5362010-09-08 14:39:58 +02002066 read_lock_irqsave(&req->adapter->abort_lock, flags);
2067
2068 scpnt = req->data;
2069 if (unlikely(!scpnt)) {
2070 read_unlock_irqrestore(&req->adapter->abort_lock, flags);
2071 return;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002072 }
Christof Schmittc61b5362010-09-08 14:39:58 +02002073
Swen Schillig5bfb2c32010-11-17 14:23:40 +01002074 zfcp_fsf_fcp_handler_common(req);
2075
Christof Schmittc61b5362010-09-08 14:39:58 +02002076 if (unlikely(req->status & ZFCP_STATUS_FSFREQ_ERROR)) {
2077 set_host_byte(scpnt, DID_TRANSPORT_DISRUPTED);
2078 goto skip_fsfstatus;
2079 }
2080
2081 switch (req->qtcb->header.fsf_status) {
2082 case FSF_INCONSISTENT_PROT_DATA:
2083 case FSF_INVALID_PROT_PARM:
2084 set_host_byte(scpnt, DID_ERROR);
2085 goto skip_fsfstatus;
2086 case FSF_BLOCK_GUARD_CHECK_FAILURE:
2087 zfcp_scsi_dif_sense_error(scpnt, 0x1);
2088 goto skip_fsfstatus;
2089 case FSF_APP_TAG_CHECK_FAILURE:
2090 zfcp_scsi_dif_sense_error(scpnt, 0x2);
2091 goto skip_fsfstatus;
2092 case FSF_REF_TAG_CHECK_FAILURE:
2093 zfcp_scsi_dif_sense_error(scpnt, 0x3);
2094 goto skip_fsfstatus;
2095 }
2096 fcp_rsp = (struct fcp_resp_with_ext *) &req->qtcb->bottom.io.fcp_rsp;
2097 zfcp_fc_eval_fcp_rsp(fcp_rsp, scpnt);
2098
2099skip_fsfstatus:
2100 zfcp_fsf_req_trace(req, scpnt);
Swen Schillig250a1352010-12-02 15:16:15 +01002101 zfcp_dbf_scsi_result(scpnt, req);
Christof Schmittc61b5362010-09-08 14:39:58 +02002102
2103 scpnt->host_scribble = NULL;
2104 (scpnt->scsi_done) (scpnt);
2105 /*
2106 * We must hold this lock until scsi_done has been called.
2107 * Otherwise we may call scsi_done after abort regarding this
2108 * command has completed.
2109 * Note: scsi_done must not block!
2110 */
2111 read_unlock_irqrestore(&req->adapter->abort_lock, flags);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002112}
2113
Felix Beckef3eb712010-07-16 15:37:42 +02002114static int zfcp_fsf_set_data_dir(struct scsi_cmnd *scsi_cmnd, u32 *data_dir)
2115{
2116 switch (scsi_get_prot_op(scsi_cmnd)) {
2117 case SCSI_PROT_NORMAL:
2118 switch (scsi_cmnd->sc_data_direction) {
2119 case DMA_NONE:
2120 *data_dir = FSF_DATADIR_CMND;
2121 break;
2122 case DMA_FROM_DEVICE:
2123 *data_dir = FSF_DATADIR_READ;
2124 break;
2125 case DMA_TO_DEVICE:
2126 *data_dir = FSF_DATADIR_WRITE;
2127 break;
2128 case DMA_BIDIRECTIONAL:
2129 return -EINVAL;
2130 }
2131 break;
2132
2133 case SCSI_PROT_READ_STRIP:
2134 *data_dir = FSF_DATADIR_DIF_READ_STRIP;
2135 break;
2136 case SCSI_PROT_WRITE_INSERT:
2137 *data_dir = FSF_DATADIR_DIF_WRITE_INSERT;
2138 break;
2139 case SCSI_PROT_READ_PASS:
2140 *data_dir = FSF_DATADIR_DIF_READ_CONVERT;
2141 break;
2142 case SCSI_PROT_WRITE_PASS:
2143 *data_dir = FSF_DATADIR_DIF_WRITE_CONVERT;
2144 break;
2145 default:
2146 return -EINVAL;
2147 }
2148
2149 return 0;
2150}
2151
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002152/**
Christof Schmittb62a8d92010-09-08 14:39:55 +02002153 * zfcp_fsf_fcp_cmnd - initiate an FCP command (for a SCSI command)
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002154 * @scsi_cmnd: scsi command to be sent
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002155 */
Christof Schmittb62a8d92010-09-08 14:39:55 +02002156int zfcp_fsf_fcp_cmnd(struct scsi_cmnd *scsi_cmnd)
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002157{
2158 struct zfcp_fsf_req *req;
Christof Schmitt4318e082009-11-24 16:54:08 +01002159 struct fcp_cmnd *fcp_cmnd;
Christof Schmittbc90c862009-05-15 13:18:17 +02002160 unsigned int sbtype = SBAL_FLAGS0_TYPE_READ;
Felix Beckef3eb712010-07-16 15:37:42 +02002161 int real_bytes, retval = -EIO, dix_bytes = 0;
Christof Schmittb62a8d92010-09-08 14:39:55 +02002162 struct scsi_device *sdev = scsi_cmnd->device;
2163 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
2164 struct zfcp_adapter *adapter = zfcp_sdev->port->adapter;
Swen Schillig564e1c82009-08-18 15:43:19 +02002165 struct zfcp_qdio *qdio = adapter->qdio;
Felix Beckef3eb712010-07-16 15:37:42 +02002166 struct fsf_qtcb_bottom_io *io;
Christof Schmitte55f8752010-11-18 14:53:18 +01002167 unsigned long flags;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002168
Christof Schmittb62a8d92010-09-08 14:39:55 +02002169 if (unlikely(!(atomic_read(&zfcp_sdev->status) &
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002170 ZFCP_STATUS_COMMON_UNBLOCKED)))
2171 return -EBUSY;
2172
Christof Schmitte55f8752010-11-18 14:53:18 +01002173 spin_lock_irqsave(&qdio->req_q_lock, flags);
Swen Schillig706eca42010-07-16 15:37:38 +02002174 if (atomic_read(&qdio->req_q_free) <= 0) {
Swen Schillig564e1c82009-08-18 15:43:19 +02002175 atomic_inc(&qdio->req_q_full);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002176 goto out;
Christof Schmitt8fdf30d2009-03-02 13:09:01 +01002177 }
Swen Schillig09a46c62009-08-18 15:43:16 +02002178
Christof Schmitt1674b402010-04-30 18:09:34 +02002179 if (scsi_cmnd->sc_data_direction == DMA_TO_DEVICE)
2180 sbtype = SBAL_FLAGS0_TYPE_WRITE;
2181
Swen Schillig564e1c82009-08-18 15:43:19 +02002182 req = zfcp_fsf_req_create(qdio, FSF_QTCB_FCP_CMND,
Christof Schmitt1674b402010-04-30 18:09:34 +02002183 sbtype, adapter->pool.scsi_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02002184
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02002185 if (IS_ERR(req)) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002186 retval = PTR_ERR(req);
2187 goto out;
2188 }
2189
Felix Beckef3eb712010-07-16 15:37:42 +02002190 scsi_cmnd->host_scribble = (unsigned char *) req->req_id;
2191
2192 io = &req->qtcb->bottom.io;
Swen Schillig09a46c62009-08-18 15:43:16 +02002193 req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002194 req->data = scsi_cmnd;
Christof Schmittc61b5362010-09-08 14:39:58 +02002195 req->handler = zfcp_fsf_fcp_cmnd_handler;
Christof Schmittb62a8d92010-09-08 14:39:55 +02002196 req->qtcb->header.lun_handle = zfcp_sdev->lun_handle;
2197 req->qtcb->header.port_handle = zfcp_sdev->port->handle;
Felix Beckef3eb712010-07-16 15:37:42 +02002198 io->service_class = FSF_CLASS_3;
2199 io->fcp_cmnd_length = FCP_CMND_LEN;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002200
Felix Beckef3eb712010-07-16 15:37:42 +02002201 if (scsi_get_prot_op(scsi_cmnd) != SCSI_PROT_NORMAL) {
2202 io->data_block_length = scsi_cmnd->device->sector_size;
2203 io->ref_tag_value = scsi_get_lba(scsi_cmnd) & 0xFFFFFFFF;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002204 }
2205
Felix Beckef3eb712010-07-16 15:37:42 +02002206 zfcp_fsf_set_data_dir(scsi_cmnd, &io->data_direction);
2207
Christof Schmitt4318e082009-11-24 16:54:08 +01002208 fcp_cmnd = (struct fcp_cmnd *) &req->qtcb->bottom.io.fcp_cmnd;
2209 zfcp_fc_scsi_to_fcp(fcp_cmnd, scsi_cmnd);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002210
Felix Beckef3eb712010-07-16 15:37:42 +02002211 if (scsi_prot_sg_count(scsi_cmnd)) {
2212 zfcp_qdio_set_data_div(qdio, &req->qdio_req,
2213 scsi_prot_sg_count(scsi_cmnd));
2214 dix_bytes = zfcp_qdio_sbals_from_sg(qdio, &req->qdio_req,
2215 scsi_prot_sglist(scsi_cmnd));
2216 io->prot_data_length = dix_bytes;
2217 }
2218
Christof Schmitt1674b402010-04-30 18:09:34 +02002219 real_bytes = zfcp_qdio_sbals_from_sg(qdio, &req->qdio_req,
Swen Schillig01b04752010-07-16 15:37:37 +02002220 scsi_sglist(scsi_cmnd));
Felix Beckef3eb712010-07-16 15:37:42 +02002221
2222 if (unlikely(real_bytes < 0) || unlikely(dix_bytes < 0))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002223 goto failed_scsi_cmnd;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002224
Felix Beckef3eb712010-07-16 15:37:42 +02002225 zfcp_qdio_set_sbale_last(adapter->qdio, &req->qdio_req);
2226
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002227 retval = zfcp_fsf_req_send(req);
2228 if (unlikely(retval))
2229 goto failed_scsi_cmnd;
2230
2231 goto out;
2232
2233failed_scsi_cmnd:
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002234 zfcp_fsf_req_free(req);
2235 scsi_cmnd->host_scribble = NULL;
2236out:
Christof Schmitte55f8752010-11-18 14:53:18 +01002237 spin_unlock_irqrestore(&qdio->req_q_lock, flags);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002238 return retval;
2239}
2240
Christof Schmittc61b5362010-09-08 14:39:58 +02002241static void zfcp_fsf_fcp_task_mgmt_handler(struct zfcp_fsf_req *req)
2242{
2243 struct fcp_resp_with_ext *fcp_rsp;
2244 struct fcp_resp_rsp_info *rsp_info;
2245
2246 zfcp_fsf_fcp_handler_common(req);
2247
2248 fcp_rsp = (struct fcp_resp_with_ext *) &req->qtcb->bottom.io.fcp_rsp;
2249 rsp_info = (struct fcp_resp_rsp_info *) &fcp_rsp[1];
2250
2251 if ((rsp_info->rsp_code != FCP_TMF_CMPL) ||
2252 (req->status & ZFCP_STATUS_FSFREQ_ERROR))
2253 req->status |= ZFCP_STATUS_FSFREQ_TMFUNCFAILED;
2254}
2255
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002256/**
Christof Schmittb62a8d92010-09-08 14:39:55 +02002257 * zfcp_fsf_fcp_task_mgmt - send SCSI task management command
2258 * @scmnd: SCSI command to send the task management command for
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002259 * @tm_flags: unsigned byte for task management flags
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002260 * Returns: on success pointer to struct fsf_req, NULL otherwise
2261 */
Christof Schmittb62a8d92010-09-08 14:39:55 +02002262struct zfcp_fsf_req *zfcp_fsf_fcp_task_mgmt(struct scsi_cmnd *scmnd,
2263 u8 tm_flags)
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002264{
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002265 struct zfcp_fsf_req *req = NULL;
Christof Schmitt4318e082009-11-24 16:54:08 +01002266 struct fcp_cmnd *fcp_cmnd;
Christof Schmittb62a8d92010-09-08 14:39:55 +02002267 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(scmnd->device);
2268 struct zfcp_qdio *qdio = zfcp_sdev->port->adapter->qdio;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002269
Christof Schmittb62a8d92010-09-08 14:39:55 +02002270 if (unlikely(!(atomic_read(&zfcp_sdev->status) &
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002271 ZFCP_STATUS_COMMON_UNBLOCKED)))
2272 return NULL;
2273
Christof Schmitt44a24cb2010-09-08 14:39:57 +02002274 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02002275 if (zfcp_qdio_sbal_get(qdio))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002276 goto out;
Swen Schillig09a46c62009-08-18 15:43:16 +02002277
Swen Schillig564e1c82009-08-18 15:43:19 +02002278 req = zfcp_fsf_req_create(qdio, FSF_QTCB_FCP_CMND,
Christof Schmitt1674b402010-04-30 18:09:34 +02002279 SBAL_FLAGS0_TYPE_WRITE,
Swen Schillig564e1c82009-08-18 15:43:19 +02002280 qdio->adapter->pool.scsi_req);
Swen Schillig09a46c62009-08-18 15:43:16 +02002281
Swen Schillig633528c2008-11-26 18:07:37 +01002282 if (IS_ERR(req)) {
2283 req = NULL;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002284 goto out;
Swen Schillig633528c2008-11-26 18:07:37 +01002285 }
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002286
2287 req->status |= ZFCP_STATUS_FSFREQ_TASK_MANAGEMENT;
Christof Schmittb62a8d92010-09-08 14:39:55 +02002288 req->data = scmnd;
Christof Schmittc61b5362010-09-08 14:39:58 +02002289 req->handler = zfcp_fsf_fcp_task_mgmt_handler;
Christof Schmittb62a8d92010-09-08 14:39:55 +02002290 req->qtcb->header.lun_handle = zfcp_sdev->lun_handle;
2291 req->qtcb->header.port_handle = zfcp_sdev->port->handle;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002292 req->qtcb->bottom.io.data_direction = FSF_DATADIR_CMND;
2293 req->qtcb->bottom.io.service_class = FSF_CLASS_3;
Christof Schmitt4318e082009-11-24 16:54:08 +01002294 req->qtcb->bottom.io.fcp_cmnd_length = FCP_CMND_LEN;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002295
Christof Schmitt1674b402010-04-30 18:09:34 +02002296 zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002297
Christof Schmitt4318e082009-11-24 16:54:08 +01002298 fcp_cmnd = (struct fcp_cmnd *) &req->qtcb->bottom.io.fcp_cmnd;
Christof Schmittb62a8d92010-09-08 14:39:55 +02002299 zfcp_fc_fcp_tm(fcp_cmnd, scmnd->device, tm_flags);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002300
2301 zfcp_fsf_start_timer(req, ZFCP_SCSI_ER_TIMEOUT);
2302 if (!zfcp_fsf_req_send(req))
2303 goto out;
2304
2305 zfcp_fsf_req_free(req);
2306 req = NULL;
2307out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02002308 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002309 return req;
2310}
2311
2312static void zfcp_fsf_control_file_handler(struct zfcp_fsf_req *req)
2313{
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002314}
2315
2316/**
2317 * zfcp_fsf_control_file - control file upload/download
2318 * @adapter: pointer to struct zfcp_adapter
2319 * @fsf_cfdc: pointer to struct zfcp_fsf_cfdc
2320 * Returns: on success pointer to struct zfcp_fsf_req, NULL otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 */
Christof Schmitt45633fd2008-06-10 18:20:55 +02002322struct zfcp_fsf_req *zfcp_fsf_control_file(struct zfcp_adapter *adapter,
2323 struct zfcp_fsf_cfdc *fsf_cfdc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324{
Swen Schillig564e1c82009-08-18 15:43:19 +02002325 struct zfcp_qdio *qdio = adapter->qdio;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002326 struct zfcp_fsf_req *req = NULL;
2327 struct fsf_qtcb_bottom_support *bottom;
2328 int direction, retval = -EIO, bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329
Christof Schmitt45633fd2008-06-10 18:20:55 +02002330 if (!(adapter->adapter_features & FSF_FEATURE_CFDC))
2331 return ERR_PTR(-EOPNOTSUPP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332
Christof Schmitt45633fd2008-06-10 18:20:55 +02002333 switch (fsf_cfdc->command) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 case FSF_QTCB_DOWNLOAD_CONTROL_FILE:
2335 direction = SBAL_FLAGS0_TYPE_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 case FSF_QTCB_UPLOAD_CONTROL_FILE:
2338 direction = SBAL_FLAGS0_TYPE_READ;
2339 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 default:
Christof Schmitt45633fd2008-06-10 18:20:55 +02002341 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342 }
2343
Christof Schmitt44a24cb2010-09-08 14:39:57 +02002344 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +02002345 if (zfcp_qdio_sbal_get(qdio))
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002346 goto out;
2347
Christof Schmitt1674b402010-04-30 18:09:34 +02002348 req = zfcp_fsf_req_create(qdio, fsf_cfdc->command, direction, NULL);
Hirofumi Nakagawa025270f2008-08-21 13:43:37 +02002349 if (IS_ERR(req)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 retval = -EPERM;
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002351 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 }
2353
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002354 req->handler = zfcp_fsf_control_file_handler;
2355
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002356 bottom = &req->qtcb->bottom.support;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 bottom->operation_subtype = FSF_CFDC_OPERATION_SUBTYPE;
Christof Schmitt45633fd2008-06-10 18:20:55 +02002358 bottom->option = fsf_cfdc->option;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359
Swen Schillig01b04752010-07-16 15:37:37 +02002360 bytes = zfcp_qdio_sbals_from_sg(qdio, &req->qdio_req, fsf_cfdc->sg);
2361
Christof Schmitt45633fd2008-06-10 18:20:55 +02002362 if (bytes != ZFCP_CFDC_MAX_SIZE) {
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002363 zfcp_fsf_req_free(req);
2364 goto out;
Christof Schmitt45633fd2008-06-10 18:20:55 +02002365 }
Felix Beckef3eb712010-07-16 15:37:42 +02002366 zfcp_qdio_set_sbale_last(adapter->qdio, &req->qdio_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002368 zfcp_fsf_start_timer(req, ZFCP_FSF_REQUEST_TIMEOUT);
2369 retval = zfcp_fsf_req_send(req);
2370out:
Christof Schmitt44a24cb2010-09-08 14:39:57 +02002371 spin_unlock_irq(&qdio->req_q_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002372
2373 if (!retval) {
Swen Schillig058b8642009-08-18 15:43:14 +02002374 wait_for_completion(&req->completion);
Swen Schilligc41f8cb2008-07-02 10:56:39 +02002375 return req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 }
Christof Schmitt45633fd2008-06-10 18:20:55 +02002377 return ERR_PTR(retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378}
Swen Schilligbd63eaf2009-08-18 15:43:13 +02002379
2380/**
2381 * zfcp_fsf_reqid_check - validate req_id contained in SBAL returned by QDIO
2382 * @adapter: pointer to struct zfcp_adapter
2383 * @sbal_idx: response queue index of SBAL to be processed
2384 */
Swen Schillig564e1c82009-08-18 15:43:19 +02002385void zfcp_fsf_reqid_check(struct zfcp_qdio *qdio, int sbal_idx)
Swen Schilligbd63eaf2009-08-18 15:43:13 +02002386{
Swen Schillig564e1c82009-08-18 15:43:19 +02002387 struct zfcp_adapter *adapter = qdio->adapter;
Swen Schillig706eca42010-07-16 15:37:38 +02002388 struct qdio_buffer *sbal = qdio->res_q[sbal_idx];
Swen Schilligbd63eaf2009-08-18 15:43:13 +02002389 struct qdio_buffer_element *sbale;
2390 struct zfcp_fsf_req *fsf_req;
Christof Schmittb6bd2fb2010-02-17 11:18:50 +01002391 unsigned long req_id;
Swen Schilligbd63eaf2009-08-18 15:43:13 +02002392 int idx;
2393
2394 for (idx = 0; idx < QDIO_MAX_ELEMENTS_PER_BUFFER; idx++) {
2395
2396 sbale = &sbal->element[idx];
2397 req_id = (unsigned long) sbale->addr;
Christof Schmittb6bd2fb2010-02-17 11:18:50 +01002398 fsf_req = zfcp_reqlist_find_rm(adapter->req_list, req_id);
Swen Schilligbd63eaf2009-08-18 15:43:13 +02002399
Christof Schmitt339f4f42010-07-16 15:37:43 +02002400 if (!fsf_req) {
Swen Schilligbd63eaf2009-08-18 15:43:13 +02002401 /*
2402 * Unknown request means that we have potentially memory
2403 * corruption and must stop the machine immediately.
2404 */
Christof Schmitt339f4f42010-07-16 15:37:43 +02002405 zfcp_qdio_siosl(adapter);
Swen Schilligbd63eaf2009-08-18 15:43:13 +02002406 panic("error: unknown req_id (%lx) on adapter %s.\n",
2407 req_id, dev_name(&adapter->ccw_device->dev));
Christof Schmitt339f4f42010-07-16 15:37:43 +02002408 }
Swen Schilligbd63eaf2009-08-18 15:43:13 +02002409
Christof Schmitt34c2b712010-02-17 11:18:59 +01002410 fsf_req->qdio_req.sbal_response = sbal_idx;
Swen Schilligbd63eaf2009-08-18 15:43:13 +02002411 zfcp_fsf_req_complete(fsf_req);
2412
2413 if (likely(sbale->flags & SBAL_FLAGS_LAST_ENTRY))
2414 break;
2415 }
2416}
Swen Schilliga54ca0f2010-12-02 15:16:14 +01002417
2418struct zfcp_fsf_req *zfcp_fsf_get_req(struct zfcp_qdio *qdio,
2419 struct qdio_buffer *sbal)
2420{
2421 struct qdio_buffer_element *sbale = &sbal->element[0];
2422 u64 req_id = (unsigned long) sbale->addr;
2423
2424 return zfcp_reqlist_find(qdio->adapter->req_list, req_id);
2425}