zfcp_fsf.c 66.6 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
C
Christof Schmitt 已提交
2
 * zfcp device driver
L
Linus Torvalds 已提交
3
 *
C
Christof Schmitt 已提交
4
 * Implementation of FSF commands.
L
Linus Torvalds 已提交
5
 *
6
 * Copyright IBM Corporation 2002, 2010
L
Linus Torvalds 已提交
7 8
 */

9 10 11
#define KMSG_COMPONENT "zfcp"
#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt

S
Stefan Raspl 已提交
12
#include <linux/blktrace_api.h>
13
#include <linux/slab.h>
14
#include <scsi/fc/fc_els.h>
L
Linus Torvalds 已提交
15
#include "zfcp_ext.h"
16
#include "zfcp_fc.h"
17
#include "zfcp_dbf.h"
18
#include "zfcp_qdio.h"
19
#include "zfcp_reqlist.h"
L
Linus Torvalds 已提交
20

21 22
struct kmem_cache *zfcp_fsf_qtcb_cache;

23 24 25
static void zfcp_fsf_request_timeout_handler(unsigned long data)
{
	struct zfcp_adapter *adapter = (struct zfcp_adapter *) data;
26
	zfcp_qdio_siosl(adapter);
27
	zfcp_erp_adapter_reopen(adapter, ZFCP_STATUS_COMMON_ERP_FAILED,
28
				"fsrth_1");
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
}

static void zfcp_fsf_start_timer(struct zfcp_fsf_req *fsf_req,
				 unsigned long timeout)
{
	fsf_req->timer.function = zfcp_fsf_request_timeout_handler;
	fsf_req->timer.data = (unsigned long) fsf_req->adapter;
	fsf_req->timer.expires = jiffies + timeout;
	add_timer(&fsf_req->timer);
}

static void zfcp_fsf_start_erp_timer(struct zfcp_fsf_req *fsf_req)
{
	BUG_ON(!fsf_req->erp_action);
	fsf_req->timer.function = zfcp_erp_timeout_handler;
	fsf_req->timer.data = (unsigned long) fsf_req->erp_action;
	fsf_req->timer.expires = jiffies + 30 * HZ;
	add_timer(&fsf_req->timer);
}

L
Linus Torvalds 已提交
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
/* association between FSF command and FSF QTCB type */
static u32 fsf_qtcb_type[] = {
	[FSF_QTCB_FCP_CMND] =             FSF_IO_COMMAND,
	[FSF_QTCB_ABORT_FCP_CMND] =       FSF_SUPPORT_COMMAND,
	[FSF_QTCB_OPEN_PORT_WITH_DID] =   FSF_SUPPORT_COMMAND,
	[FSF_QTCB_OPEN_LUN] =             FSF_SUPPORT_COMMAND,
	[FSF_QTCB_CLOSE_LUN] =            FSF_SUPPORT_COMMAND,
	[FSF_QTCB_CLOSE_PORT] =           FSF_SUPPORT_COMMAND,
	[FSF_QTCB_CLOSE_PHYSICAL_PORT] =  FSF_SUPPORT_COMMAND,
	[FSF_QTCB_SEND_ELS] =             FSF_SUPPORT_COMMAND,
	[FSF_QTCB_SEND_GENERIC] =         FSF_SUPPORT_COMMAND,
	[FSF_QTCB_EXCHANGE_CONFIG_DATA] = FSF_CONFIG_COMMAND,
	[FSF_QTCB_EXCHANGE_PORT_DATA] =   FSF_PORT_COMMAND,
	[FSF_QTCB_DOWNLOAD_CONTROL_FILE] = FSF_SUPPORT_COMMAND,
	[FSF_QTCB_UPLOAD_CONTROL_FILE] =  FSF_SUPPORT_COMMAND
};

C
Christof Schmitt 已提交
66 67
static void zfcp_fsf_class_not_supp(struct zfcp_fsf_req *req)
{
68 69
	dev_err(&req->adapter->ccw_device->dev, "FCP device not "
		"operational because of an unsupported FC class\n");
70
	zfcp_erp_adapter_shutdown(req->adapter, 0, "fscns_1");
C
Christof Schmitt 已提交
71 72 73
	req->status |= ZFCP_STATUS_FSFREQ_ERROR;
}

S
Swen Schillig 已提交
74 75 76
/**
 * zfcp_fsf_req_free - free memory used by fsf request
 * @fsf_req: pointer to struct zfcp_fsf_req
L
Linus Torvalds 已提交
77
 */
S
Swen Schillig 已提交
78
void zfcp_fsf_req_free(struct zfcp_fsf_req *req)
L
Linus Torvalds 已提交
79
{
S
Swen Schillig 已提交
80
	if (likely(req->pool)) {
81 82
		if (likely(req->qtcb))
			mempool_free(req->qtcb, req->adapter->pool.qtcb_pool);
S
Swen Schillig 已提交
83
		mempool_free(req, req->pool);
84 85 86
		return;
	}

87
	if (likely(req->qtcb))
88
		kmem_cache_free(zfcp_fsf_qtcb_cache, req->qtcb);
89
	kfree(req);
L
Linus Torvalds 已提交
90 91
}

S
Swen Schillig 已提交
92
static void zfcp_fsf_status_read_port_closed(struct zfcp_fsf_req *req)
L
Linus Torvalds 已提交
93
{
94
	unsigned long flags;
S
Swen Schillig 已提交
95 96 97
	struct fsf_status_read_buffer *sr_buf = req->data;
	struct zfcp_adapter *adapter = req->adapter;
	struct zfcp_port *port;
98
	int d_id = ntoh24(sr_buf->d_id);
L
Linus Torvalds 已提交
99

100 101
	read_lock_irqsave(&adapter->port_list_lock, flags);
	list_for_each_entry(port, &adapter->port_list, list)
S
Swen Schillig 已提交
102
		if (port->d_id == d_id) {
103
			zfcp_erp_port_reopen(port, 0, "fssrpc1");
104
			break;
S
Swen Schillig 已提交
105
		}
106
	read_unlock_irqrestore(&adapter->port_list_lock, flags);
L
Linus Torvalds 已提交
107 108
}

109
static void zfcp_fsf_link_down_info_eval(struct zfcp_fsf_req *req,
S
Swen Schillig 已提交
110
					 struct fsf_link_down_info *link_down)
111
{
S
Swen Schillig 已提交
112
	struct zfcp_adapter *adapter = req->adapter;
113

S
Swen Schillig 已提交
114
	if (atomic_read(&adapter->status) & ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED)
115 116 117
		return;

	atomic_set_mask(ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED, &adapter->status);
118

119
	zfcp_scsi_schedule_rports_block(adapter);
120

S
Swen Schillig 已提交
121
	if (!link_down)
122
		goto out;
123

124 125
	switch (link_down->error_code) {
	case FSF_PSQ_LINK_NO_LIGHT:
S
Swen Schillig 已提交
126
		dev_warn(&req->adapter->ccw_device->dev,
127 128
			 "There is no light signal from the local "
			 "fibre channel cable\n");
129 130
		break;
	case FSF_PSQ_LINK_WRAP_PLUG:
S
Swen Schillig 已提交
131
		dev_warn(&req->adapter->ccw_device->dev,
132 133
			 "There is a wrap plug instead of a fibre "
			 "channel cable\n");
134 135
		break;
	case FSF_PSQ_LINK_NO_FCP:
S
Swen Schillig 已提交
136
		dev_warn(&req->adapter->ccw_device->dev,
137 138
			 "The adjacent fibre channel node does not "
			 "support FCP\n");
139 140
		break;
	case FSF_PSQ_LINK_FIRMWARE_UPDATE:
S
Swen Schillig 已提交
141
		dev_warn(&req->adapter->ccw_device->dev,
142 143
			 "The FCP device is suspended because of a "
			 "firmware update\n");
C
Christof Schmitt 已提交
144
		break;
145
	case FSF_PSQ_LINK_INVALID_WWPN:
S
Swen Schillig 已提交
146
		dev_warn(&req->adapter->ccw_device->dev,
147 148
			 "The FCP device detected a WWPN that is "
			 "duplicate or not valid\n");
149 150
		break;
	case FSF_PSQ_LINK_NO_NPIV_SUPPORT:
S
Swen Schillig 已提交
151
		dev_warn(&req->adapter->ccw_device->dev,
152
			 "The fibre channel fabric does not support NPIV\n");
153 154
		break;
	case FSF_PSQ_LINK_NO_FCP_RESOURCES:
S
Swen Schillig 已提交
155
		dev_warn(&req->adapter->ccw_device->dev,
156
			 "The FCP adapter cannot support more NPIV ports\n");
157 158
		break;
	case FSF_PSQ_LINK_NO_FABRIC_RESOURCES:
S
Swen Schillig 已提交
159
		dev_warn(&req->adapter->ccw_device->dev,
160 161
			 "The adjacent switch cannot support "
			 "more NPIV ports\n");
162 163
		break;
	case FSF_PSQ_LINK_FABRIC_LOGIN_UNABLE:
S
Swen Schillig 已提交
164
		dev_warn(&req->adapter->ccw_device->dev,
165 166
			 "The FCP adapter could not log in to the "
			 "fibre channel fabric\n");
167 168
		break;
	case FSF_PSQ_LINK_WWPN_ASSIGNMENT_CORRUPTED:
S
Swen Schillig 已提交
169
		dev_warn(&req->adapter->ccw_device->dev,
170 171
			 "The WWPN assignment file on the FCP adapter "
			 "has been damaged\n");
172 173
		break;
	case FSF_PSQ_LINK_MODE_TABLE_CURRUPTED:
S
Swen Schillig 已提交
174
		dev_warn(&req->adapter->ccw_device->dev,
175 176
			 "The mode table on the FCP adapter "
			 "has been damaged\n");
177 178
		break;
	case FSF_PSQ_LINK_NO_WWPN_ASSIGNMENT:
S
Swen Schillig 已提交
179
		dev_warn(&req->adapter->ccw_device->dev,
180 181
			 "All NPIV ports on the FCP adapter have "
			 "been assigned\n");
182 183
		break;
	default:
S
Swen Schillig 已提交
184
		dev_warn(&req->adapter->ccw_device->dev,
185 186
			 "The link between the FCP adapter and "
			 "the FC fabric is down\n");
187
	}
S
Swen Schillig 已提交
188
out:
189
	zfcp_erp_set_adapter_status(adapter, ZFCP_STATUS_COMMON_ERP_FAILED);
190 191
}

S
Swen Schillig 已提交
192
static void zfcp_fsf_status_read_link_down(struct zfcp_fsf_req *req)
L
Linus Torvalds 已提交
193
{
S
Swen Schillig 已提交
194 195 196
	struct fsf_status_read_buffer *sr_buf = req->data;
	struct fsf_link_down_info *ldi =
		(struct fsf_link_down_info *) &sr_buf->payload;
L
Linus Torvalds 已提交
197

S
Swen Schillig 已提交
198 199
	switch (sr_buf->status_subtype) {
	case FSF_STATUS_READ_SUB_NO_PHYSICAL_LINK:
200
		zfcp_fsf_link_down_info_eval(req, ldi);
L
Linus Torvalds 已提交
201
		break;
S
Swen Schillig 已提交
202
	case FSF_STATUS_READ_SUB_FDISC_FAILED:
203
		zfcp_fsf_link_down_info_eval(req, ldi);
L
Linus Torvalds 已提交
204
		break;
S
Swen Schillig 已提交
205
	case FSF_STATUS_READ_SUB_FIRMWARE_UPDATE:
206
		zfcp_fsf_link_down_info_eval(req, NULL);
S
Swen Schillig 已提交
207 208
	};
}
L
Linus Torvalds 已提交
209

S
Swen Schillig 已提交
210 211 212 213
static void zfcp_fsf_status_read_handler(struct zfcp_fsf_req *req)
{
	struct zfcp_adapter *adapter = req->adapter;
	struct fsf_status_read_buffer *sr_buf = req->data;
L
Linus Torvalds 已提交
214

S
Swen Schillig 已提交
215
	if (req->status & ZFCP_STATUS_FSFREQ_DISMISSED) {
216
		zfcp_dbf_hba_fsf_uss("fssrh_1", req);
217
		mempool_free(virt_to_page(sr_buf), adapter->pool.sr_data);
S
Swen Schillig 已提交
218 219 220
		zfcp_fsf_req_free(req);
		return;
	}
L
Linus Torvalds 已提交
221

222
	zfcp_dbf_hba_fsf_uss("fssrh_2", req);
L
Linus Torvalds 已提交
223

S
Swen Schillig 已提交
224 225 226
	switch (sr_buf->status_type) {
	case FSF_STATUS_READ_PORT_CLOSED:
		zfcp_fsf_status_read_port_closed(req);
L
Linus Torvalds 已提交
227
		break;
S
Swen Schillig 已提交
228 229
	case FSF_STATUS_READ_INCOMING_ELS:
		zfcp_fc_incoming_els(req);
L
Linus Torvalds 已提交
230
		break;
S
Swen Schillig 已提交
231
	case FSF_STATUS_READ_SENSE_DATA_AVAIL:
L
Linus Torvalds 已提交
232
		break;
S
Swen Schillig 已提交
233
	case FSF_STATUS_READ_BIT_ERROR_THRESHOLD:
234 235 236
		dev_warn(&adapter->ccw_device->dev,
			 "The error threshold for checksum statistics "
			 "has been exceeded\n");
237
		zfcp_dbf_hba_bit_err("fssrh_3", req);
L
Linus Torvalds 已提交
238
		break;
S
Swen Schillig 已提交
239 240
	case FSF_STATUS_READ_LINK_DOWN:
		zfcp_fsf_status_read_link_down(req);
241
		zfcp_fc_enqueue_event(adapter, FCH_EVT_LINKDOWN, 0);
S
Swen Schillig 已提交
242 243 244
		break;
	case FSF_STATUS_READ_LINK_UP:
		dev_info(&adapter->ccw_device->dev,
245
			 "The local link has been restored\n");
S
Swen Schillig 已提交
246
		/* All ports should be marked as ready to run again */
247 248
		zfcp_erp_set_adapter_status(adapter,
					    ZFCP_STATUS_COMMON_RUNNING);
S
Swen Schillig 已提交
249 250 251
		zfcp_erp_adapter_reopen(adapter,
					ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED |
					ZFCP_STATUS_COMMON_ERP_FAILED,
252
					"fssrh_2");
253 254
		zfcp_fc_enqueue_event(adapter, FCH_EVT_LINKUP, 0);

S
Swen Schillig 已提交
255 256 257
		break;
	case FSF_STATUS_READ_NOTIFICATION_LOST:
		if (sr_buf->status_subtype & FSF_STATUS_READ_SUB_ACT_UPDATED)
258
			zfcp_cfdc_adapter_access_changed(adapter);
S
Swen Schillig 已提交
259
		if (sr_buf->status_subtype & FSF_STATUS_READ_SUB_INCOMING_ELS)
260
			queue_work(adapter->work_queue, &adapter->scan_work);
S
Swen Schillig 已提交
261 262
		break;
	case FSF_STATUS_READ_CFDC_UPDATED:
263
		zfcp_cfdc_adapter_access_changed(adapter);
S
Swen Schillig 已提交
264 265 266
		break;
	case FSF_STATUS_READ_FEATURE_UPDATE_ALERT:
		adapter->adapter_features = sr_buf->payload.word[0];
L
Linus Torvalds 已提交
267 268 269
		break;
	}

270
	mempool_free(virt_to_page(sr_buf), adapter->pool.sr_data);
S
Swen Schillig 已提交
271
	zfcp_fsf_req_free(req);
L
Linus Torvalds 已提交
272

S
Swen Schillig 已提交
273
	atomic_inc(&adapter->stat_miss);
274
	queue_work(adapter->work_queue, &adapter->stat_work);
S
Swen Schillig 已提交
275
}
L
Linus Torvalds 已提交
276

S
Swen Schillig 已提交
277 278 279 280 281 282 283 284 285 286 287 288
static void zfcp_fsf_fsfstatus_qual_eval(struct zfcp_fsf_req *req)
{
	switch (req->qtcb->header.fsf_status_qual.word[0]) {
	case FSF_SQ_FCP_RSP_AVAILABLE:
	case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
	case FSF_SQ_NO_RETRY_POSSIBLE:
	case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
		return;
	case FSF_SQ_COMMAND_ABORTED:
		break;
	case FSF_SQ_NO_RECOM:
		dev_err(&req->adapter->ccw_device->dev,
289 290
			"The FCP adapter reported a problem "
			"that cannot be recovered\n");
291
		zfcp_qdio_siosl(req->adapter);
292
		zfcp_erp_adapter_shutdown(req->adapter, 0, "fsfsqe1");
S
Swen Schillig 已提交
293 294 295 296
		break;
	}
	/* all non-return stats set FSFREQ_ERROR*/
	req->status |= ZFCP_STATUS_FSFREQ_ERROR;
L
Linus Torvalds 已提交
297 298
}

S
Swen Schillig 已提交
299
static void zfcp_fsf_fsfstatus_eval(struct zfcp_fsf_req *req)
L
Linus Torvalds 已提交
300
{
S
Swen Schillig 已提交
301 302
	if (unlikely(req->status & ZFCP_STATUS_FSFREQ_ERROR))
		return;
L
Linus Torvalds 已提交
303

S
Swen Schillig 已提交
304 305 306
	switch (req->qtcb->header.fsf_status) {
	case FSF_UNKNOWN_COMMAND:
		dev_err(&req->adapter->ccw_device->dev,
307
			"The FCP adapter does not recognize the command 0x%x\n",
S
Swen Schillig 已提交
308
			req->qtcb->header.fsf_command);
309
		zfcp_erp_adapter_shutdown(req->adapter, 0, "fsfse_1");
S
Swen Schillig 已提交
310 311 312 313 314 315 316
		req->status |= ZFCP_STATUS_FSFREQ_ERROR;
		break;
	case FSF_ADAPTER_STATUS_AVAILABLE:
		zfcp_fsf_fsfstatus_qual_eval(req);
		break;
	}
}
L
Linus Torvalds 已提交
317

S
Swen Schillig 已提交
318 319 320 321 322
static void zfcp_fsf_protstatus_eval(struct zfcp_fsf_req *req)
{
	struct zfcp_adapter *adapter = req->adapter;
	struct fsf_qtcb *qtcb = req->qtcb;
	union fsf_prot_status_qual *psq = &qtcb->prefix.prot_status_qual;
L
Linus Torvalds 已提交
323

S
Swen Schillig 已提交
324
	zfcp_dbf_hba_fsf_response(req);
L
Linus Torvalds 已提交
325

S
Swen Schillig 已提交
326
	if (req->status & ZFCP_STATUS_FSFREQ_DISMISSED) {
327
		req->status |= ZFCP_STATUS_FSFREQ_ERROR;
S
Swen Schillig 已提交
328 329
		return;
	}
L
Linus Torvalds 已提交
330

S
Swen Schillig 已提交
331 332 333 334 335 336
	switch (qtcb->prefix.prot_status) {
	case FSF_PROT_GOOD:
	case FSF_PROT_FSF_STATUS_PRESENTED:
		return;
	case FSF_PROT_QTCB_VERSION_ERROR:
		dev_err(&adapter->ccw_device->dev,
337 338 339
			"QTCB version 0x%x not supported by FCP adapter "
			"(0x%x to 0x%x)\n", FSF_QTCB_CURRENT_VERSION,
			psq->word[0], psq->word[1]);
340
		zfcp_erp_adapter_shutdown(adapter, 0, "fspse_1");
S
Swen Schillig 已提交
341 342 343
		break;
	case FSF_PROT_ERROR_STATE:
	case FSF_PROT_SEQ_NUMB_ERROR:
344
		zfcp_erp_adapter_reopen(adapter, 0, "fspse_2");
345
		req->status |= ZFCP_STATUS_FSFREQ_ERROR;
S
Swen Schillig 已提交
346 347 348
		break;
	case FSF_PROT_UNSUPP_QTCB_TYPE:
		dev_err(&adapter->ccw_device->dev,
349
			"The QTCB type is not supported by the FCP adapter\n");
350
		zfcp_erp_adapter_shutdown(adapter, 0, "fspse_3");
S
Swen Schillig 已提交
351 352 353 354 355 356 357
		break;
	case FSF_PROT_HOST_CONNECTION_INITIALIZING:
		atomic_set_mask(ZFCP_STATUS_ADAPTER_HOST_CON_INIT,
				&adapter->status);
		break;
	case FSF_PROT_DUPLICATE_REQUEST_ID:
		dev_err(&adapter->ccw_device->dev,
358
			"0x%Lx is an ambiguous request identifier\n",
S
Swen Schillig 已提交
359
			(unsigned long long)qtcb->bottom.support.req_handle);
360
		zfcp_erp_adapter_shutdown(adapter, 0, "fspse_4");
S
Swen Schillig 已提交
361 362
		break;
	case FSF_PROT_LINK_DOWN:
363
		zfcp_fsf_link_down_info_eval(req, &psq->link_down_info);
364
		/* go through reopen to flush pending requests */
365
		zfcp_erp_adapter_reopen(adapter, 0, "fspse_6");
S
Swen Schillig 已提交
366 367 368
		break;
	case FSF_PROT_REEST_QUEUE:
		/* All ports should be marked as ready to run again */
369 370
		zfcp_erp_set_adapter_status(adapter,
					    ZFCP_STATUS_COMMON_RUNNING);
S
Swen Schillig 已提交
371 372
		zfcp_erp_adapter_reopen(adapter,
					ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED |
373
					ZFCP_STATUS_COMMON_ERP_FAILED,
374
					"fspse_8");
S
Swen Schillig 已提交
375 376 377
		break;
	default:
		dev_err(&adapter->ccw_device->dev,
378
			"0x%x is not a valid transfer protocol status\n",
S
Swen Schillig 已提交
379
			qtcb->prefix.prot_status);
380
		zfcp_qdio_siosl(adapter);
381
		zfcp_erp_adapter_shutdown(adapter, 0, "fspse_9");
S
Swen Schillig 已提交
382 383
	}
	req->status |= ZFCP_STATUS_FSFREQ_ERROR;
L
Linus Torvalds 已提交
384 385
}

S
Swen Schillig 已提交
386 387 388 389 390 391 392 393 394
/**
 * zfcp_fsf_req_complete - process completion of a FSF request
 * @fsf_req: The FSF request that has been completed.
 *
 * When a request has been completed either from the FCP adapter,
 * or it has been dismissed due to a queue shutdown, this function
 * is called to process the completion status and trigger further
 * events related to the FSF request.
 */
395
static void zfcp_fsf_req_complete(struct zfcp_fsf_req *req)
L
Linus Torvalds 已提交
396
{
S
Swen Schillig 已提交
397 398 399 400
	if (unlikely(req->fsf_command == FSF_QTCB_UNSOLICITED_STATUS)) {
		zfcp_fsf_status_read_handler(req);
		return;
	}
L
Linus Torvalds 已提交
401

S
Swen Schillig 已提交
402 403 404 405
	del_timer(&req->timer);
	zfcp_fsf_protstatus_eval(req);
	zfcp_fsf_fsfstatus_eval(req);
	req->handler(req);
L
Linus Torvalds 已提交
406

S
Swen Schillig 已提交
407
	if (req->erp_action)
408
		zfcp_erp_notify(req->erp_action, 0);
L
Linus Torvalds 已提交
409

S
Swen Schillig 已提交
410 411 412
	if (likely(req->status & ZFCP_STATUS_FSFREQ_CLEANUP))
		zfcp_fsf_req_free(req);
	else
413
		complete(&req->completion);
S
Swen Schillig 已提交
414
}
L
Linus Torvalds 已提交
415

416 417 418 419 420 421 422 423 424 425 426 427 428 429 430
/**
 * zfcp_fsf_req_dismiss_all - dismiss all fsf requests
 * @adapter: pointer to struct zfcp_adapter
 *
 * Never ever call this without shutting down the adapter first.
 * Otherwise the adapter would continue using and corrupting s390 storage.
 * Included BUG_ON() call to ensure this is done.
 * ERP is supposed to be the only user of this function.
 */
void zfcp_fsf_req_dismiss_all(struct zfcp_adapter *adapter)
{
	struct zfcp_fsf_req *req, *tmp;
	LIST_HEAD(remove_queue);

	BUG_ON(atomic_read(&adapter->status) & ZFCP_STATUS_ADAPTER_QDIOUP);
431
	zfcp_reqlist_move(adapter->req_list, &remove_queue);
432 433 434 435 436 437 438 439

	list_for_each_entry_safe(req, tmp, &remove_queue, list) {
		list_del(&req->list);
		req->status |= ZFCP_STATUS_FSFREQ_DISMISSED;
		zfcp_fsf_req_complete(req);
	}
}

S
Swen Schillig 已提交
440 441
static int zfcp_fsf_exchange_config_evaluate(struct zfcp_fsf_req *req)
{
442
	struct fsf_qtcb_bottom_config *bottom = &req->qtcb->bottom.config;
S
Swen Schillig 已提交
443 444
	struct zfcp_adapter *adapter = req->adapter;
	struct Scsi_Host *shost = adapter->scsi_host;
445
	struct fc_els_flogi *nsp, *plogi;
L
Linus Torvalds 已提交
446

447 448 449 450 451
	/* adjust pointers for missing command code */
	nsp = (struct fc_els_flogi *) ((u8 *)&bottom->nport_serv_param
					- sizeof(u32));
	plogi = (struct fc_els_flogi *) ((u8 *)&bottom->plogi_payload
					- sizeof(u32));
L
Linus Torvalds 已提交
452

S
Swen Schillig 已提交
453 454 455
	if (req->data)
		memcpy(req->data, bottom, sizeof(*bottom));

456 457
	fc_host_port_name(shost) = nsp->fl_wwpn;
	fc_host_node_name(shost) = nsp->fl_wwnn;
458
	fc_host_port_id(shost) = ntoh24(bottom->s_id);
S
Swen Schillig 已提交
459 460 461 462
	fc_host_speed(shost) = bottom->fc_link_speed;
	fc_host_supported_classes(shost) = FC_COS_CLASS2 | FC_COS_CLASS3;

	adapter->hydra_version = bottom->adapter_type;
463
	adapter->timer_ticks = bottom->timer_interval & ZFCP_FSF_TIMER_INT_MASK;
464 465
	adapter->stat_read_buf_num = max(bottom->status_read_buf_num,
					 (u16)FSF_STATUS_READS_RECOM);
S
Swen Schillig 已提交
466 467 468 469 470 471

	if (fc_host_permanent_port_name(shost) == -1)
		fc_host_permanent_port_name(shost) = fc_host_port_name(shost);

	switch (bottom->fc_topology) {
	case FSF_TOPO_P2P:
472
		adapter->peer_d_id = ntoh24(bottom->peer_d_id);
473 474
		adapter->peer_wwpn = plogi->fl_wwpn;
		adapter->peer_wwnn = plogi->fl_wwnn;
S
Swen Schillig 已提交
475 476 477 478 479 480 481
		fc_host_port_type(shost) = FC_PORTTYPE_PTP;
		break;
	case FSF_TOPO_FABRIC:
		fc_host_port_type(shost) = FC_PORTTYPE_NPORT;
		break;
	case FSF_TOPO_AL:
		fc_host_port_type(shost) = FC_PORTTYPE_NLPORT;
482
		/* fall through */
S
Swen Schillig 已提交
483 484
	default:
		dev_err(&adapter->ccw_device->dev,
485 486
			"Unknown or unsupported arbitrated loop "
			"fibre channel topology detected\n");
487
		zfcp_erp_adapter_shutdown(adapter, 0, "fsece_1");
S
Swen Schillig 已提交
488
		return -EIO;
L
Linus Torvalds 已提交
489
	}
S
Swen Schillig 已提交
490

491 492
	zfcp_scsi_set_prot(adapter);

L
Linus Torvalds 已提交
493 494 495
	return 0;
}

S
Swen Schillig 已提交
496
static void zfcp_fsf_exchange_config_data_handler(struct zfcp_fsf_req *req)
C
Christof Schmitt 已提交
497 498
{
	struct zfcp_adapter *adapter = req->adapter;
S
Swen Schillig 已提交
499 500 501
	struct fsf_qtcb *qtcb = req->qtcb;
	struct fsf_qtcb_bottom_config *bottom = &qtcb->bottom.config;
	struct Scsi_Host *shost = adapter->scsi_host;
C
Christof Schmitt 已提交
502

S
Swen Schillig 已提交
503 504
	if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
		return;
L
Linus Torvalds 已提交
505

S
Swen Schillig 已提交
506 507 508 509 510 511
	adapter->fsf_lic_version = bottom->lic_version;
	adapter->adapter_features = bottom->adapter_features;
	adapter->connection_features = bottom->connection_features;
	adapter->peer_wwpn = 0;
	adapter->peer_wwnn = 0;
	adapter->peer_d_id = 0;
512

S
Swen Schillig 已提交
513 514 515 516
	switch (qtcb->header.fsf_status) {
	case FSF_GOOD:
		if (zfcp_fsf_exchange_config_evaluate(req))
			return;
L
Linus Torvalds 已提交
517

S
Swen Schillig 已提交
518 519
		if (bottom->max_qtcb_size < sizeof(struct fsf_qtcb)) {
			dev_err(&adapter->ccw_device->dev,
520 521 522
				"FCP adapter maximum QTCB size (%d bytes) "
				"is too small\n",
				bottom->max_qtcb_size);
523
			zfcp_erp_adapter_shutdown(adapter, 0, "fsecdh1");
S
Swen Schillig 已提交
524 525 526 527
			return;
		}
		atomic_set_mask(ZFCP_STATUS_ADAPTER_XCONFIG_OK,
				&adapter->status);
L
Linus Torvalds 已提交
528
		break;
S
Swen Schillig 已提交
529 530 531 532 533 534 535
	case FSF_EXCHANGE_CONFIG_DATA_INCOMPLETE:
		fc_host_node_name(shost) = 0;
		fc_host_port_name(shost) = 0;
		fc_host_port_id(shost) = 0;
		fc_host_speed(shost) = FC_PORTSPEED_UNKNOWN;
		fc_host_port_type(shost) = FC_PORTTYPE_UNKNOWN;
		adapter->hydra_version = 0;
L
Linus Torvalds 已提交
536

537
		zfcp_fsf_link_down_info_eval(req,
S
Swen Schillig 已提交
538
			&qtcb->header.fsf_status_qual.link_down_info);
L
Linus Torvalds 已提交
539
		break;
S
Swen Schillig 已提交
540
	default:
541
		zfcp_erp_adapter_shutdown(adapter, 0, "fsecdh3");
S
Swen Schillig 已提交
542 543
		return;
	}
L
Linus Torvalds 已提交
544

S
Swen Schillig 已提交
545 546 547 548 549 550 551
	if (adapter->adapter_features & FSF_FEATURE_HBAAPI_MANAGEMENT) {
		adapter->hardware_version = bottom->hardware_version;
		memcpy(fc_host_serial_number(shost), bottom->serial_number,
		       min(FC_SERIAL_NUMBER_SIZE, 17));
		EBCASC(fc_host_serial_number(shost),
		       min(FC_SERIAL_NUMBER_SIZE, 17));
	}
L
Linus Torvalds 已提交
552

S
Swen Schillig 已提交
553 554
	if (FSF_QTCB_CURRENT_VERSION < bottom->low_qtcb_version) {
		dev_err(&adapter->ccw_device->dev,
555 556
			"The FCP adapter only supports newer "
			"control block versions\n");
557
		zfcp_erp_adapter_shutdown(adapter, 0, "fsecdh4");
S
Swen Schillig 已提交
558 559 560 561
		return;
	}
	if (FSF_QTCB_CURRENT_VERSION > bottom->high_qtcb_version) {
		dev_err(&adapter->ccw_device->dev,
562 563
			"The FCP adapter only supports older "
			"control block versions\n");
564
		zfcp_erp_adapter_shutdown(adapter, 0, "fsecdh5");
S
Swen Schillig 已提交
565 566
	}
}
L
Linus Torvalds 已提交
567

S
Swen Schillig 已提交
568 569 570 571 572
static void zfcp_fsf_exchange_port_evaluate(struct zfcp_fsf_req *req)
{
	struct zfcp_adapter *adapter = req->adapter;
	struct fsf_qtcb_bottom_port *bottom = &req->qtcb->bottom.port;
	struct Scsi_Host *shost = adapter->scsi_host;
L
Linus Torvalds 已提交
573

S
Swen Schillig 已提交
574 575
	if (req->data)
		memcpy(req->data, bottom, sizeof(*bottom));
576

577
	if (adapter->connection_features & FSF_FEATURE_NPIV_MODE) {
S
Swen Schillig 已提交
578
		fc_host_permanent_port_name(shost) = bottom->wwpn;
579 580
		fc_host_port_type(shost) = FC_PORTTYPE_NPIV;
	} else
S
Swen Schillig 已提交
581 582 583
		fc_host_permanent_port_name(shost) = fc_host_port_name(shost);
	fc_host_maxframe_size(shost) = bottom->maximum_frame_size;
	fc_host_supported_speeds(shost) = bottom->supported_speed;
584 585 586 587
	memcpy(fc_host_supported_fc4s(shost), bottom->supported_fc4_types,
	       FC_FC4_LIST_SIZE);
	memcpy(fc_host_active_fc4s(shost), bottom->active_fc4_types,
	       FC_FC4_LIST_SIZE);
S
Swen Schillig 已提交
588
}
L
Linus Torvalds 已提交
589

S
Swen Schillig 已提交
590 591 592 593 594 595 596 597 598 599 600 601 602
static void zfcp_fsf_exchange_port_data_handler(struct zfcp_fsf_req *req)
{
	struct fsf_qtcb *qtcb = req->qtcb;

	if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
		return;

	switch (qtcb->header.fsf_status) {
	case FSF_GOOD:
		zfcp_fsf_exchange_port_evaluate(req);
		break;
	case FSF_EXCHANGE_CONFIG_DATA_INCOMPLETE:
		zfcp_fsf_exchange_port_evaluate(req);
603
		zfcp_fsf_link_down_info_eval(req,
S
Swen Schillig 已提交
604
			&qtcb->header.fsf_status_qual.link_down_info);
605
		break;
L
Linus Torvalds 已提交
606
	}
S
Swen Schillig 已提交
607
}
608

609
static struct zfcp_fsf_req *zfcp_fsf_alloc(mempool_t *pool)
S
Swen Schillig 已提交
610 611
{
	struct zfcp_fsf_req *req;
612 613 614 615 616 617 618

	if (likely(pool))
		req = mempool_alloc(pool, GFP_ATOMIC);
	else
		req = kmalloc(sizeof(*req), GFP_ATOMIC);

	if (unlikely(!req))
S
Swen Schillig 已提交
619
		return NULL;
620

S
Swen Schillig 已提交
621
	memset(req, 0, sizeof(*req));
622
	req->pool = pool;
S
Swen Schillig 已提交
623 624 625
	return req;
}

626
static struct fsf_qtcb *zfcp_qtcb_alloc(mempool_t *pool)
S
Swen Schillig 已提交
627
{
628
	struct fsf_qtcb *qtcb;
S
Swen Schillig 已提交
629 630 631 632

	if (likely(pool))
		qtcb = mempool_alloc(pool, GFP_ATOMIC);
	else
633
		qtcb = kmem_cache_alloc(zfcp_fsf_qtcb_cache, GFP_ATOMIC);
634

S
Swen Schillig 已提交
635 636 637 638
	if (unlikely(!qtcb))
		return NULL;

	memset(qtcb, 0, sizeof(*qtcb));
639
	return qtcb;
S
Swen Schillig 已提交
640 641
}

642
static struct zfcp_fsf_req *zfcp_fsf_req_create(struct zfcp_qdio *qdio,
643 644
						u32 fsf_cmd, u32 sbtype,
						mempool_t *pool)
L
Linus Torvalds 已提交
645
{
646
	struct zfcp_adapter *adapter = qdio->adapter;
647
	struct zfcp_fsf_req *req = zfcp_fsf_alloc(pool);
L
Linus Torvalds 已提交
648

S
Swen Schillig 已提交
649
	if (unlikely(!req))
650
		return ERR_PTR(-ENOMEM);
L
Linus Torvalds 已提交
651

S
Swen Schillig 已提交
652 653
	if (adapter->req_no == 0)
		adapter->req_no++;
L
Linus Torvalds 已提交
654

S
Swen Schillig 已提交
655 656
	INIT_LIST_HEAD(&req->list);
	init_timer(&req->timer);
657
	init_completion(&req->completion);
L
Linus Torvalds 已提交
658

S
Swen Schillig 已提交
659 660
	req->adapter = adapter;
	req->fsf_command = fsf_cmd;
661
	req->req_id = adapter->req_no;
S
Swen Schillig 已提交
662

663 664 665 666 667 668 669 670 671 672 673
	if (likely(fsf_cmd != FSF_QTCB_UNSOLICITED_STATUS)) {
		if (likely(pool))
			req->qtcb = zfcp_qtcb_alloc(adapter->pool.qtcb_pool);
		else
			req->qtcb = zfcp_qtcb_alloc(NULL);

		if (unlikely(!req->qtcb)) {
			zfcp_fsf_req_free(req);
			return ERR_PTR(-ENOMEM);
		}

674
		req->seq_no = adapter->fsf_req_seq_no;
675
		req->qtcb->prefix.req_seq_no = adapter->fsf_req_seq_no;
S
Swen Schillig 已提交
676 677 678 679 680 681 682 683
		req->qtcb->prefix.req_id = req->req_id;
		req->qtcb->prefix.ulp_info = 26;
		req->qtcb->prefix.qtcb_type = fsf_qtcb_type[req->fsf_command];
		req->qtcb->prefix.qtcb_version = FSF_QTCB_CURRENT_VERSION;
		req->qtcb->header.req_handle = req->req_id;
		req->qtcb->header.fsf_command = req->fsf_command;
	}

684 685 686
	zfcp_qdio_req_init(adapter->qdio, &req->qdio_req, req->req_id, sbtype,
			   req->qtcb, sizeof(struct fsf_qtcb));

S
Swen Schillig 已提交
687
	return req;
L
Linus Torvalds 已提交
688 689
}

S
Swen Schillig 已提交
690 691 692
static int zfcp_fsf_req_send(struct zfcp_fsf_req *req)
{
	struct zfcp_adapter *adapter = req->adapter;
693
	struct zfcp_qdio *qdio = adapter->qdio;
694
	int with_qtcb = (req->qtcb != NULL);
695
	int req_id = req->req_id;
S
Swen Schillig 已提交
696

697
	zfcp_reqlist_add(adapter->req_list, req);
S
Swen Schillig 已提交
698

699
	req->qdio_req.qdio_outb_usage = atomic_read(&qdio->req_q_free);
S
Swen Schillig 已提交
700
	req->issued = get_clock();
701
	if (zfcp_qdio_send(qdio, &req->qdio_req)) {
S
Swen Schillig 已提交
702
		del_timer(&req->timer);
703
		/* lookup request again, list might have changed */
704
		zfcp_reqlist_find_rm(adapter->req_list, req_id);
705
		zfcp_erp_adapter_reopen(adapter, 0, "fsrs__1");
S
Swen Schillig 已提交
706 707 708 709
		return -EIO;
	}

	/* Don't increase for unsolicited status */
710
	if (with_qtcb)
S
Swen Schillig 已提交
711
		adapter->fsf_req_seq_no++;
712
	adapter->req_no++;
S
Swen Schillig 已提交
713 714 715 716 717 718 719 720 721

	return 0;
}

/**
 * zfcp_fsf_status_read - send status read request
 * @adapter: pointer to struct zfcp_adapter
 * @req_flags: request flags
 * Returns: 0 on success, ERROR otherwise
L
Linus Torvalds 已提交
722
 */
723
int zfcp_fsf_status_read(struct zfcp_qdio *qdio)
L
Linus Torvalds 已提交
724
{
725
	struct zfcp_adapter *adapter = qdio->adapter;
S
Swen Schillig 已提交
726 727
	struct zfcp_fsf_req *req;
	struct fsf_status_read_buffer *sr_buf;
728
	struct page *page;
S
Swen Schillig 已提交
729
	int retval = -EIO;
L
Linus Torvalds 已提交
730

731
	spin_lock_irq(&qdio->req_q_lock);
732
	if (zfcp_qdio_sbal_get(qdio))
S
Swen Schillig 已提交
733 734
		goto out;

735
	req = zfcp_fsf_req_create(qdio, FSF_QTCB_UNSOLICITED_STATUS, 0,
736
				  adapter->pool.status_read_req);
737
	if (IS_ERR(req)) {
S
Swen Schillig 已提交
738 739
		retval = PTR_ERR(req);
		goto out;
L
Linus Torvalds 已提交
740 741
	}

742 743
	page = mempool_alloc(adapter->pool.sr_data, GFP_ATOMIC);
	if (!page) {
S
Swen Schillig 已提交
744 745 746
		retval = -ENOMEM;
		goto failed_buf;
	}
747
	sr_buf = page_address(page);
S
Swen Schillig 已提交
748 749
	memset(sr_buf, 0, sizeof(*sr_buf));
	req->data = sr_buf;
750 751 752

	zfcp_qdio_fill_next(qdio, &req->qdio_req, sr_buf, sizeof(*sr_buf));
	zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
753

S
Swen Schillig 已提交
754 755 756
	retval = zfcp_fsf_req_send(req);
	if (retval)
		goto failed_req_send;
L
Linus Torvalds 已提交
757

S
Swen Schillig 已提交
758 759 760
	goto out;

failed_req_send:
761
	req->data = NULL;
762
	mempool_free(virt_to_page(sr_buf), adapter->pool.sr_data);
S
Swen Schillig 已提交
763
failed_buf:
764
	zfcp_dbf_hba_fsf_uss("fssr__1", req);
S
Swen Schillig 已提交
765 766
	zfcp_fsf_req_free(req);
out:
767
	spin_unlock_irq(&qdio->req_q_lock);
S
Swen Schillig 已提交
768 769 770 771 772
	return retval;
}

static void zfcp_fsf_abort_fcp_command_handler(struct zfcp_fsf_req *req)
{
773 774
	struct scsi_device *sdev = req->data;
	struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
S
Swen Schillig 已提交
775 776 777 778 779 780
	union fsf_status_qual *fsq = &req->qtcb->header.fsf_status_qual;

	if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
		return;

	switch (req->qtcb->header.fsf_status) {
L
Linus Torvalds 已提交
781
	case FSF_PORT_HANDLE_NOT_VALID:
S
Swen Schillig 已提交
782
		if (fsq->word[0] == fsq->word[1]) {
783
			zfcp_erp_adapter_reopen(zfcp_sdev->port->adapter, 0,
784
						"fsafch1");
S
Swen Schillig 已提交
785
			req->status |= ZFCP_STATUS_FSFREQ_ERROR;
L
Linus Torvalds 已提交
786 787 788
		}
		break;
	case FSF_LUN_HANDLE_NOT_VALID:
S
Swen Schillig 已提交
789
		if (fsq->word[0] == fsq->word[1]) {
790
			zfcp_erp_port_reopen(zfcp_sdev->port, 0, "fsafch2");
S
Swen Schillig 已提交
791
			req->status |= ZFCP_STATUS_FSFREQ_ERROR;
L
Linus Torvalds 已提交
792 793 794
		}
		break;
	case FSF_FCP_COMMAND_DOES_NOT_EXIST:
S
Swen Schillig 已提交
795
		req->status |= ZFCP_STATUS_FSFREQ_ABORTNOTNEEDED;
L
Linus Torvalds 已提交
796 797
		break;
	case FSF_PORT_BOXED:
798 799 800
		zfcp_erp_set_port_status(zfcp_sdev->port,
					 ZFCP_STATUS_COMMON_ACCESS_BOXED);
		zfcp_erp_port_reopen(zfcp_sdev->port,
801
				     ZFCP_STATUS_COMMON_ERP_FAILED, "fsafch3");
802
		req->status |= ZFCP_STATUS_FSFREQ_ERROR;
L
Linus Torvalds 已提交
803 804
		break;
	case FSF_LUN_BOXED:
805 806
		zfcp_erp_set_lun_status(sdev, ZFCP_STATUS_COMMON_ACCESS_BOXED);
		zfcp_erp_lun_reopen(sdev, ZFCP_STATUS_COMMON_ERP_FAILED,
807
				    "fsafch4");
808
		req->status |= ZFCP_STATUS_FSFREQ_ERROR;
L
Linus Torvalds 已提交
809 810
                break;
	case FSF_ADAPTER_STATUS_AVAILABLE:
S
Swen Schillig 已提交
811
		switch (fsq->word[0]) {
L
Linus Torvalds 已提交
812
		case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
813
			zfcp_fc_test_link(zfcp_sdev->port);
814
			/* fall through */
L
Linus Torvalds 已提交
815
		case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
S
Swen Schillig 已提交
816
			req->status |= ZFCP_STATUS_FSFREQ_ERROR;
L
Linus Torvalds 已提交
817 818 819 820
			break;
		}
		break;
	case FSF_GOOD:
S
Swen Schillig 已提交
821
		req->status |= ZFCP_STATUS_FSFREQ_ABORTSUCCEEDED;
L
Linus Torvalds 已提交
822 823 824 825 826
		break;
	}
}

/**
827 828
 * zfcp_fsf_abort_fcp_cmnd - abort running SCSI command
 * @scmnd: The SCSI command to abort
S
Swen Schillig 已提交
829
 * Returns: pointer to struct zfcp_fsf_req
L
Linus Torvalds 已提交
830 831
 */

832
struct zfcp_fsf_req *zfcp_fsf_abort_fcp_cmnd(struct scsi_cmnd *scmnd)
L
Linus Torvalds 已提交
833
{
S
Swen Schillig 已提交
834
	struct zfcp_fsf_req *req = NULL;
835 836 837 838
	struct scsi_device *sdev = scmnd->device;
	struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
	struct zfcp_qdio *qdio = zfcp_sdev->port->adapter->qdio;
	unsigned long old_req_id = (unsigned long) scmnd->host_scribble;
839

840
	spin_lock_irq(&qdio->req_q_lock);
841
	if (zfcp_qdio_sbal_get(qdio))
S
Swen Schillig 已提交
842
		goto out;
843
	req = zfcp_fsf_req_create(qdio, FSF_QTCB_ABORT_FCP_CMND,
844
				  SBAL_FLAGS0_TYPE_READ,
845
				  qdio->adapter->pool.scsi_abort);
846 847
	if (IS_ERR(req)) {
		req = NULL;
S
Swen Schillig 已提交
848
		goto out;
849
	}
850

851
	if (unlikely(!(atomic_read(&zfcp_sdev->status) &
S
Swen Schillig 已提交
852 853
		       ZFCP_STATUS_COMMON_UNBLOCKED)))
		goto out_error_free;
L
Linus Torvalds 已提交
854

855
	zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
L
Linus Torvalds 已提交
856

857
	req->data = sdev;
S
Swen Schillig 已提交
858
	req->handler = zfcp_fsf_abort_fcp_command_handler;
859 860
	req->qtcb->header.lun_handle = zfcp_sdev->lun_handle;
	req->qtcb->header.port_handle = zfcp_sdev->port->handle;
S
Swen Schillig 已提交
861 862 863 864 865 866 867 868 869 870
	req->qtcb->bottom.support.req_handle = (u64) old_req_id;

	zfcp_fsf_start_timer(req, ZFCP_SCSI_ER_TIMEOUT);
	if (!zfcp_fsf_req_send(req))
		goto out;

out_error_free:
	zfcp_fsf_req_free(req);
	req = NULL;
out:
871
	spin_unlock_irq(&qdio->req_q_lock);
S
Swen Schillig 已提交
872
	return req;
L
Linus Torvalds 已提交
873 874
}

S
Swen Schillig 已提交
875
static void zfcp_fsf_send_ct_handler(struct zfcp_fsf_req *req)
L
Linus Torvalds 已提交
876
{
S
Swen Schillig 已提交
877
	struct zfcp_adapter *adapter = req->adapter;
878
	struct zfcp_fsf_ct_els *ct = req->data;
S
Swen Schillig 已提交
879
	struct fsf_qtcb_header *header = &req->qtcb->header;
L
Linus Torvalds 已提交
880

881
	ct->status = -EINVAL;
L
Linus Torvalds 已提交
882

S
Swen Schillig 已提交
883
	if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
L
Linus Torvalds 已提交
884 885 886 887
		goto skip_fsfstatus;

	switch (header->fsf_status) {
        case FSF_GOOD:
888
		zfcp_dbf_san_res("fsscth1", req);
889
		ct->status = 0;
L
Linus Torvalds 已提交
890 891
		break;
        case FSF_SERVICE_CLASS_NOT_SUPPORTED:
S
Swen Schillig 已提交
892
		zfcp_fsf_class_not_supp(req);
L
Linus Torvalds 已提交
893 894 895 896 897
		break;
        case FSF_ADAPTER_STATUS_AVAILABLE:
                switch (header->fsf_status_qual.word[0]){
                case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
                case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
S
Swen Schillig 已提交
898
			req->status |= ZFCP_STATUS_FSFREQ_ERROR;
L
Linus Torvalds 已提交
899 900 901 902 903 904
			break;
                }
                break;
	case FSF_ACCESS_DENIED:
		break;
        case FSF_PORT_BOXED:
905
		req->status |= ZFCP_STATUS_FSFREQ_ERROR;
L
Linus Torvalds 已提交
906
		break;
S
Swen Schillig 已提交
907
	case FSF_PORT_HANDLE_NOT_VALID:
908
		zfcp_erp_adapter_reopen(adapter, 0, "fsscth1");
909
		/* fall through */
S
Swen Schillig 已提交
910
	case FSF_GENERIC_COMMAND_REJECTED:
L
Linus Torvalds 已提交
911 912 913 914
	case FSF_PAYLOAD_SIZE_MISMATCH:
	case FSF_REQUEST_SIZE_TOO_LARGE:
	case FSF_RESPONSE_SIZE_TOO_LARGE:
	case FSF_SBAL_MISMATCH:
S
Swen Schillig 已提交
915
		req->status |= ZFCP_STATUS_FSFREQ_ERROR;
L
Linus Torvalds 已提交
916 917 918 919
		break;
	}

skip_fsfstatus:
920 921
	if (ct->handler)
		ct->handler(ct->handler_data);
S
Swen Schillig 已提交
922
}
L
Linus Torvalds 已提交
923

924 925
static void zfcp_fsf_setup_ct_els_unchained(struct zfcp_qdio *qdio,
					    struct zfcp_qdio_req *q_req,
926 927 928
					    struct scatterlist *sg_req,
					    struct scatterlist *sg_resp)
{
929 930 931
	zfcp_qdio_fill_next(qdio, q_req, sg_virt(sg_req), sg_req->length);
	zfcp_qdio_fill_next(qdio, q_req, sg_virt(sg_resp), sg_resp->length);
	zfcp_qdio_set_sbale_last(qdio, q_req);
932 933
}

934 935
static int zfcp_fsf_setup_ct_els_sbals(struct zfcp_fsf_req *req,
				       struct scatterlist *sg_req,
936
				       struct scatterlist *sg_resp)
S
Swen Schillig 已提交
937
{
938 939
	struct zfcp_adapter *adapter = req->adapter;
	u32 feat = adapter->adapter_features;
S
Swen Schillig 已提交
940 941
	int bytes;

942
	if (!(feat & FSF_FEATURE_ELS_CT_CHAINED_SBALS)) {
943 944
		if (!zfcp_qdio_sg_one_sbale(sg_req) ||
		    !zfcp_qdio_sg_one_sbale(sg_resp))
945 946
			return -EOPNOTSUPP;

947 948
		zfcp_fsf_setup_ct_els_unchained(adapter->qdio, &req->qdio_req,
						sg_req, sg_resp);
949 950 951 952
		return 0;
	}

	/* use single, unchained SBAL if it can hold the request */
953
	if (zfcp_qdio_sg_one_sbale(sg_req) && zfcp_qdio_sg_one_sbale(sg_resp)) {
954 955
		zfcp_fsf_setup_ct_els_unchained(adapter->qdio, &req->qdio_req,
						sg_req, sg_resp);
956 957 958
		return 0;
	}

959
	bytes = zfcp_qdio_sbals_from_sg(adapter->qdio, &req->qdio_req, sg_req);
S
Swen Schillig 已提交
960
	if (bytes <= 0)
961
		return -EIO;
962
	zfcp_qdio_set_sbale_last(adapter->qdio, &req->qdio_req);
S
Swen Schillig 已提交
963
	req->qtcb->bottom.support.req_buf_length = bytes;
964
	zfcp_qdio_skip_to_last_sbale(&req->qdio_req);
S
Swen Schillig 已提交
965

966
	bytes = zfcp_qdio_sbals_from_sg(adapter->qdio, &req->qdio_req,
967
					sg_resp);
968
	req->qtcb->bottom.support.resp_buf_length = bytes;
S
Swen Schillig 已提交
969
	if (bytes <= 0)
970
		return -EIO;
971
	zfcp_qdio_set_sbale_last(adapter->qdio, &req->qdio_req);
972

973 974 975 976 977 978
	return 0;
}

static int zfcp_fsf_setup_ct_els(struct zfcp_fsf_req *req,
				 struct scatterlist *sg_req,
				 struct scatterlist *sg_resp,
979
				 unsigned int timeout)
980 981 982
{
	int ret;

983
	ret = zfcp_fsf_setup_ct_els_sbals(req, sg_req, sg_resp);
984 985 986
	if (ret)
		return ret;

987
	/* common settings for ct/gs and els requests */
988 989
	if (timeout > 255)
		timeout = 255; /* max value accepted by hardware */
990
	req->qtcb->bottom.support.service_class = FSF_CLASS_3;
991 992
	req->qtcb->bottom.support.timeout = timeout;
	zfcp_fsf_start_timer(req, (timeout + 10) * HZ);
S
Swen Schillig 已提交
993 994

	return 0;
L
Linus Torvalds 已提交
995 996 997
}

/**
S
Swen Schillig 已提交
998 999 1000
 * zfcp_fsf_send_ct - initiate a Generic Service request (FC-GS)
 * @ct: pointer to struct zfcp_send_ct with data for request
 * @pool: if non-null this mempool is used to allocate struct zfcp_fsf_req
L
Linus Torvalds 已提交
1001
 */
1002
int zfcp_fsf_send_ct(struct zfcp_fc_wka_port *wka_port,
1003 1004
		     struct zfcp_fsf_ct_els *ct, mempool_t *pool,
		     unsigned int timeout)
L
Linus Torvalds 已提交
1005
{
1006
	struct zfcp_qdio *qdio = wka_port->adapter->qdio;
S
Swen Schillig 已提交
1007 1008
	struct zfcp_fsf_req *req;
	int ret = -EIO;
L
Linus Torvalds 已提交
1009

1010
	spin_lock_irq(&qdio->req_q_lock);
1011
	if (zfcp_qdio_sbal_get(qdio))
S
Swen Schillig 已提交
1012
		goto out;
L
Linus Torvalds 已提交
1013

1014 1015
	req = zfcp_fsf_req_create(qdio, FSF_QTCB_SEND_GENERIC,
				  SBAL_FLAGS0_TYPE_WRITE_READ, pool);
1016

1017
	if (IS_ERR(req)) {
S
Swen Schillig 已提交
1018 1019
		ret = PTR_ERR(req);
		goto out;
1020 1021
	}

1022
	req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
1023
	ret = zfcp_fsf_setup_ct_els(req, ct->req, ct->resp, timeout);
C
Christof Schmitt 已提交
1024
	if (ret)
L
Linus Torvalds 已提交
1025 1026
		goto failed_send;

S
Swen Schillig 已提交
1027
	req->handler = zfcp_fsf_send_ct_handler;
1028
	req->qtcb->header.port_handle = wka_port->handle;
S
Swen Schillig 已提交
1029 1030
	req->data = ct;

1031
	zfcp_dbf_san_req("fssct_1", req, wka_port->d_id);
L
Linus Torvalds 已提交
1032

S
Swen Schillig 已提交
1033 1034 1035
	ret = zfcp_fsf_req_send(req);
	if (ret)
		goto failed_send;
L
Linus Torvalds 已提交
1036

S
Swen Schillig 已提交
1037
	goto out;
L
Linus Torvalds 已提交
1038

S
Swen Schillig 已提交
1039 1040 1041
failed_send:
	zfcp_fsf_req_free(req);
out:
1042
	spin_unlock_irq(&qdio->req_q_lock);
S
Swen Schillig 已提交
1043
	return ret;
L
Linus Torvalds 已提交
1044 1045
}

S
Swen Schillig 已提交
1046
static void zfcp_fsf_send_els_handler(struct zfcp_fsf_req *req)
L
Linus Torvalds 已提交
1047
{
1048
	struct zfcp_fsf_ct_els *send_els = req->data;
S
Swen Schillig 已提交
1049 1050
	struct zfcp_port *port = send_els->port;
	struct fsf_qtcb_header *header = &req->qtcb->header;
L
Linus Torvalds 已提交
1051

S
Swen Schillig 已提交
1052
	send_els->status = -EINVAL;
L
Linus Torvalds 已提交
1053

S
Swen Schillig 已提交
1054
	if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
L
Linus Torvalds 已提交
1055 1056 1057 1058
		goto skip_fsfstatus;

	switch (header->fsf_status) {
	case FSF_GOOD:
1059
		zfcp_dbf_san_res("fsselh1", req);
S
Swen Schillig 已提交
1060
		send_els->status = 0;
L
Linus Torvalds 已提交
1061 1062
		break;
	case FSF_SERVICE_CLASS_NOT_SUPPORTED:
S
Swen Schillig 已提交
1063
		zfcp_fsf_class_not_supp(req);
L
Linus Torvalds 已提交
1064 1065 1066 1067 1068 1069
		break;
	case FSF_ADAPTER_STATUS_AVAILABLE:
		switch (header->fsf_status_qual.word[0]){
		case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
		case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
		case FSF_SQ_RETRY_IF_POSSIBLE:
S
Swen Schillig 已提交
1070
			req->status |= ZFCP_STATUS_FSFREQ_ERROR;
L
Linus Torvalds 已提交
1071 1072 1073 1074 1075 1076 1077 1078 1079
			break;
		}
		break;
	case FSF_ELS_COMMAND_REJECTED:
	case FSF_PAYLOAD_SIZE_MISMATCH:
	case FSF_REQUEST_SIZE_TOO_LARGE:
	case FSF_RESPONSE_SIZE_TOO_LARGE:
		break;
	case FSF_ACCESS_DENIED:
1080 1081 1082 1083
		if (port) {
			zfcp_cfdc_port_denied(port, &header->fsf_status_qual);
			req->status |= ZFCP_STATUS_FSFREQ_ERROR;
		}
L
Linus Torvalds 已提交
1084
		break;
S
Swen Schillig 已提交
1085 1086 1087
	case FSF_SBAL_MISMATCH:
		/* should never occure, avoided in zfcp_fsf_send_els */
		/* fall through */
L
Linus Torvalds 已提交
1088
	default:
S
Swen Schillig 已提交
1089
		req->status |= ZFCP_STATUS_FSFREQ_ERROR;
L
Linus Torvalds 已提交
1090 1091 1092
		break;
	}
skip_fsfstatus:
H
Heiko Carstens 已提交
1093
	if (send_els->handler)
L
Linus Torvalds 已提交
1094
		send_els->handler(send_els->handler_data);
S
Swen Schillig 已提交
1095
}
L
Linus Torvalds 已提交
1096

S
Swen Schillig 已提交
1097 1098 1099 1100
/**
 * zfcp_fsf_send_els - initiate an ELS command (FC-FS)
 * @els: pointer to struct zfcp_send_els with data for the command
 */
1101
int zfcp_fsf_send_els(struct zfcp_adapter *adapter, u32 d_id,
1102
		      struct zfcp_fsf_ct_els *els, unsigned int timeout)
S
Swen Schillig 已提交
1103 1104
{
	struct zfcp_fsf_req *req;
1105
	struct zfcp_qdio *qdio = adapter->qdio;
S
Swen Schillig 已提交
1106 1107
	int ret = -EIO;

1108
	spin_lock_irq(&qdio->req_q_lock);
1109
	if (zfcp_qdio_sbal_get(qdio))
S
Swen Schillig 已提交
1110
		goto out;
1111

1112 1113
	req = zfcp_fsf_req_create(qdio, FSF_QTCB_SEND_ELS,
				  SBAL_FLAGS0_TYPE_WRITE_READ, NULL);
1114

1115
	if (IS_ERR(req)) {
S
Swen Schillig 已提交
1116 1117 1118 1119
		ret = PTR_ERR(req);
		goto out;
	}

1120
	req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
1121 1122 1123 1124

	zfcp_qdio_sbal_limit(qdio, &req->qdio_req, 2);

	ret = zfcp_fsf_setup_ct_els(req, els->req, els->resp, timeout);
1125

S
Swen Schillig 已提交
1126 1127 1128
	if (ret)
		goto failed_send;

1129
	hton24(req->qtcb->bottom.support.d_id, d_id);
S
Swen Schillig 已提交
1130 1131 1132
	req->handler = zfcp_fsf_send_els_handler;
	req->data = els;

1133
	zfcp_dbf_san_req("fssels1", req, d_id);
S
Swen Schillig 已提交
1134 1135 1136 1137 1138 1139 1140 1141 1142 1143

	ret = zfcp_fsf_req_send(req);
	if (ret)
		goto failed_send;

	goto out;

failed_send:
	zfcp_fsf_req_free(req);
out:
1144
	spin_unlock_irq(&qdio->req_q_lock);
S
Swen Schillig 已提交
1145
	return ret;
L
Linus Torvalds 已提交
1146 1147
}

S
Swen Schillig 已提交
1148
int zfcp_fsf_exchange_config_data(struct zfcp_erp_action *erp_action)
L
Linus Torvalds 已提交
1149
{
S
Swen Schillig 已提交
1150
	struct zfcp_fsf_req *req;
1151
	struct zfcp_qdio *qdio = erp_action->adapter->qdio;
S
Swen Schillig 已提交
1152 1153
	int retval = -EIO;

1154
	spin_lock_irq(&qdio->req_q_lock);
1155
	if (zfcp_qdio_sbal_get(qdio))
S
Swen Schillig 已提交
1156
		goto out;
1157

1158
	req = zfcp_fsf_req_create(qdio, FSF_QTCB_EXCHANGE_CONFIG_DATA,
1159
				  SBAL_FLAGS0_TYPE_READ,
1160
				  qdio->adapter->pool.erp_req);
1161

1162
	if (IS_ERR(req)) {
S
Swen Schillig 已提交
1163 1164
		retval = PTR_ERR(req);
		goto out;
L
Linus Torvalds 已提交
1165 1166
	}

1167
	req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
1168
	zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
L
Linus Torvalds 已提交
1169

S
Swen Schillig 已提交
1170
	req->qtcb->bottom.config.feature_selection =
1171 1172
			FSF_FEATURE_CFDC |
			FSF_FEATURE_LUN_SHARING |
1173
			FSF_FEATURE_NOTIFICATION_LOST |
1174
			FSF_FEATURE_UPDATE_ALERT;
S
Swen Schillig 已提交
1175 1176
	req->erp_action = erp_action;
	req->handler = zfcp_fsf_exchange_config_data_handler;
1177
	erp_action->fsf_req_id = req->req_id;
L
Linus Torvalds 已提交
1178

1179
	zfcp_fsf_start_erp_timer(req);
S
Swen Schillig 已提交
1180
	retval = zfcp_fsf_req_send(req);
L
Linus Torvalds 已提交
1181
	if (retval) {
S
Swen Schillig 已提交
1182
		zfcp_fsf_req_free(req);
1183
		erp_action->fsf_req_id = 0;
L
Linus Torvalds 已提交
1184
	}
S
Swen Schillig 已提交
1185
out:
1186
	spin_unlock_irq(&qdio->req_q_lock);
1187 1188
	return retval;
}
L
Linus Torvalds 已提交
1189

1190
int zfcp_fsf_exchange_config_data_sync(struct zfcp_qdio *qdio,
S
Swen Schillig 已提交
1191
				       struct fsf_qtcb_bottom_config *data)
1192
{
S
Swen Schillig 已提交
1193 1194 1195
	struct zfcp_fsf_req *req = NULL;
	int retval = -EIO;

1196
	spin_lock_irq(&qdio->req_q_lock);
1197
	if (zfcp_qdio_sbal_get(qdio))
1198
		goto out_unlock;
S
Swen Schillig 已提交
1199

1200 1201
	req = zfcp_fsf_req_create(qdio, FSF_QTCB_EXCHANGE_CONFIG_DATA,
				  SBAL_FLAGS0_TYPE_READ, NULL);
1202

1203
	if (IS_ERR(req)) {
S
Swen Schillig 已提交
1204
		retval = PTR_ERR(req);
1205
		goto out_unlock;
1206 1207
	}

1208
	zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
S
Swen Schillig 已提交
1209
	req->handler = zfcp_fsf_exchange_config_data_handler;
1210

S
Swen Schillig 已提交
1211
	req->qtcb->bottom.config.feature_selection =
1212 1213 1214 1215 1216 1217
			FSF_FEATURE_CFDC |
			FSF_FEATURE_LUN_SHARING |
			FSF_FEATURE_NOTIFICATION_LOST |
			FSF_FEATURE_UPDATE_ALERT;

	if (data)
S
Swen Schillig 已提交
1218
		req->data = data;
1219

S
Swen Schillig 已提交
1220 1221
	zfcp_fsf_start_timer(req, ZFCP_FSF_REQUEST_TIMEOUT);
	retval = zfcp_fsf_req_send(req);
1222
	spin_unlock_irq(&qdio->req_q_lock);
C
Christof Schmitt 已提交
1223
	if (!retval)
1224
		wait_for_completion(&req->completion);
1225

S
Swen Schillig 已提交
1226
	zfcp_fsf_req_free(req);
1227
	return retval;
1228

1229
out_unlock:
1230
	spin_unlock_irq(&qdio->req_q_lock);
L
Linus Torvalds 已提交
1231 1232 1233 1234 1235
	return retval;
}

/**
 * zfcp_fsf_exchange_port_data - request information about local port
1236
 * @erp_action: ERP action for the adapter for which port data is requested
S
Swen Schillig 已提交
1237
 * Returns: 0 on success, error otherwise
L
Linus Torvalds 已提交
1238
 */
S
Swen Schillig 已提交
1239
int zfcp_fsf_exchange_port_data(struct zfcp_erp_action *erp_action)
L
Linus Torvalds 已提交
1240
{
1241
	struct zfcp_qdio *qdio = erp_action->adapter->qdio;
S
Swen Schillig 已提交
1242 1243
	struct zfcp_fsf_req *req;
	int retval = -EIO;
L
Linus Torvalds 已提交
1244

1245
	if (!(qdio->adapter->adapter_features & FSF_FEATURE_HBAAPI_MANAGEMENT))
1246
		return -EOPNOTSUPP;
L
Linus Torvalds 已提交
1247

1248
	spin_lock_irq(&qdio->req_q_lock);
1249
	if (zfcp_qdio_sbal_get(qdio))
S
Swen Schillig 已提交
1250
		goto out;
1251

1252
	req = zfcp_fsf_req_create(qdio, FSF_QTCB_EXCHANGE_PORT_DATA,
1253
				  SBAL_FLAGS0_TYPE_READ,
1254
				  qdio->adapter->pool.erp_req);
1255

1256
	if (IS_ERR(req)) {
S
Swen Schillig 已提交
1257 1258
		retval = PTR_ERR(req);
		goto out;
1259 1260
	}

1261
	req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
1262
	zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
L
Linus Torvalds 已提交
1263

S
Swen Schillig 已提交
1264 1265
	req->handler = zfcp_fsf_exchange_port_data_handler;
	req->erp_action = erp_action;
1266
	erp_action->fsf_req_id = req->req_id;
1267

1268
	zfcp_fsf_start_erp_timer(req);
S
Swen Schillig 已提交
1269
	retval = zfcp_fsf_req_send(req);
L
Linus Torvalds 已提交
1270
	if (retval) {
S
Swen Schillig 已提交
1271
		zfcp_fsf_req_free(req);
1272
		erp_action->fsf_req_id = 0;
1273
	}
S
Swen Schillig 已提交
1274
out:
1275
	spin_unlock_irq(&qdio->req_q_lock);
1276 1277 1278 1279 1280
	return retval;
}

/**
 * zfcp_fsf_exchange_port_data_sync - request information about local port
1281
 * @qdio: pointer to struct zfcp_qdio
S
Swen Schillig 已提交
1282 1283
 * @data: pointer to struct fsf_qtcb_bottom_port
 * Returns: 0 on success, error otherwise
1284
 */
1285
int zfcp_fsf_exchange_port_data_sync(struct zfcp_qdio *qdio,
S
Swen Schillig 已提交
1286
				     struct fsf_qtcb_bottom_port *data)
1287
{
S
Swen Schillig 已提交
1288 1289
	struct zfcp_fsf_req *req = NULL;
	int retval = -EIO;
1290

1291
	if (!(qdio->adapter->adapter_features & FSF_FEATURE_HBAAPI_MANAGEMENT))
1292 1293
		return -EOPNOTSUPP;

1294
	spin_lock_irq(&qdio->req_q_lock);
1295
	if (zfcp_qdio_sbal_get(qdio))
1296
		goto out_unlock;
S
Swen Schillig 已提交
1297

1298 1299
	req = zfcp_fsf_req_create(qdio, FSF_QTCB_EXCHANGE_PORT_DATA,
				  SBAL_FLAGS0_TYPE_READ, NULL);
1300

1301
	if (IS_ERR(req)) {
S
Swen Schillig 已提交
1302
		retval = PTR_ERR(req);
1303
		goto out_unlock;
L
Linus Torvalds 已提交
1304 1305
	}

1306
	if (data)
S
Swen Schillig 已提交
1307
		req->data = data;
1308

1309
	zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
1310

S
Swen Schillig 已提交
1311 1312 1313
	req->handler = zfcp_fsf_exchange_port_data_handler;
	zfcp_fsf_start_timer(req, ZFCP_FSF_REQUEST_TIMEOUT);
	retval = zfcp_fsf_req_send(req);
1314
	spin_unlock_irq(&qdio->req_q_lock);
1315

C
Christof Schmitt 已提交
1316
	if (!retval)
1317 1318
		wait_for_completion(&req->completion);

S
Swen Schillig 已提交
1319
	zfcp_fsf_req_free(req);
L
Linus Torvalds 已提交
1320 1321

	return retval;
1322 1323

out_unlock:
1324
	spin_unlock_irq(&qdio->req_q_lock);
1325
	return retval;
L
Linus Torvalds 已提交
1326 1327
}

S
Swen Schillig 已提交
1328
static void zfcp_fsf_open_port_handler(struct zfcp_fsf_req *req)
L
Linus Torvalds 已提交
1329
{
S
Swen Schillig 已提交
1330 1331
	struct zfcp_port *port = req->data;
	struct fsf_qtcb_header *header = &req->qtcb->header;
1332
	struct fc_els_flogi *plogi;
L
Linus Torvalds 已提交
1333

S
Swen Schillig 已提交
1334
	if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
1335
		goto out;
L
Linus Torvalds 已提交
1336 1337 1338 1339 1340

	switch (header->fsf_status) {
	case FSF_PORT_ALREADY_OPEN:
		break;
	case FSF_ACCESS_DENIED:
1341 1342
		zfcp_cfdc_port_denied(port, &header->fsf_status_qual);
		req->status |= ZFCP_STATUS_FSFREQ_ERROR;
L
Linus Torvalds 已提交
1343 1344
		break;
	case FSF_MAXIMUM_NUMBER_OF_PORTS_EXCEEDED:
S
Swen Schillig 已提交
1345
		dev_warn(&req->adapter->ccw_device->dev,
1346
			 "Not enough FCP adapter resources to open "
1347 1348
			 "remote port 0x%016Lx\n",
			 (unsigned long long)port->wwpn);
1349 1350
		zfcp_erp_set_port_status(port,
					 ZFCP_STATUS_COMMON_ERP_FAILED);
S
Swen Schillig 已提交
1351
		req->status |= ZFCP_STATUS_FSFREQ_ERROR;
L
Linus Torvalds 已提交
1352 1353 1354 1355 1356 1357
		break;
	case FSF_ADAPTER_STATUS_AVAILABLE:
		switch (header->fsf_status_qual.word[0]) {
		case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
		case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
		case FSF_SQ_NO_RETRY_POSSIBLE:
S
Swen Schillig 已提交
1358
			req->status |= ZFCP_STATUS_FSFREQ_ERROR;
L
Linus Torvalds 已提交
1359 1360 1361 1362 1363 1364 1365
			break;
		}
		break;
	case FSF_GOOD:
		port->handle = header->port_handle;
		atomic_set_mask(ZFCP_STATUS_COMMON_OPEN |
				ZFCP_STATUS_PORT_PHYS_OPEN, &port->status);
1366 1367 1368
		atomic_clear_mask(ZFCP_STATUS_COMMON_ACCESS_DENIED |
		                  ZFCP_STATUS_COMMON_ACCESS_BOXED,
		                  &port->status);
L
Linus Torvalds 已提交
1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383
		/* check whether D_ID has changed during open */
		/*
		 * FIXME: This check is not airtight, as the FCP channel does
		 * not monitor closures of target port connections caused on
		 * the remote side. Thus, they might miss out on invalidating
		 * locally cached WWPNs (and other N_Port parameters) of gone
		 * target ports. So, our heroic attempt to make things safe
		 * could be undermined by 'open port' response data tagged with
		 * obsolete WWPNs. Another reason to monitor potential
		 * connection closures ourself at least (by interpreting
		 * incoming ELS' and unsolicited status). It just crosses my
		 * mind that one should be able to cross-check by means of
		 * another GID_PN straight after a port has been opened.
		 * Alternately, an ADISC/PDISC ELS should suffice, as well.
		 */
1384
		plogi = (struct fc_els_flogi *) req->qtcb->bottom.support.els;
1385
		if (req->qtcb->bottom.support.els1_length >=
1386
		    FSF_PLOGI_MIN_LEN)
S
Swen Schillig 已提交
1387
				zfcp_fc_plogi_evaluate(port, plogi);
L
Linus Torvalds 已提交
1388 1389
		break;
	case FSF_UNKNOWN_OP_SUBTYPE:
S
Swen Schillig 已提交
1390
		req->status |= ZFCP_STATUS_FSFREQ_ERROR;
L
Linus Torvalds 已提交
1391 1392
		break;
	}
1393 1394

out:
1395
	put_device(&port->dev);
L
Linus Torvalds 已提交
1396 1397
}

S
Swen Schillig 已提交
1398 1399 1400 1401
/**
 * zfcp_fsf_open_port - create and send open port request
 * @erp_action: pointer to struct zfcp_erp_action
 * Returns: 0 on success, error otherwise
L
Linus Torvalds 已提交
1402
 */
S
Swen Schillig 已提交
1403
int zfcp_fsf_open_port(struct zfcp_erp_action *erp_action)
L
Linus Torvalds 已提交
1404
{
1405
	struct zfcp_qdio *qdio = erp_action->adapter->qdio;
1406
	struct zfcp_port *port = erp_action->port;
1407
	struct zfcp_fsf_req *req;
S
Swen Schillig 已提交
1408 1409
	int retval = -EIO;

1410
	spin_lock_irq(&qdio->req_q_lock);
1411
	if (zfcp_qdio_sbal_get(qdio))
S
Swen Schillig 已提交
1412 1413
		goto out;

1414
	req = zfcp_fsf_req_create(qdio, FSF_QTCB_OPEN_PORT_WITH_DID,
1415
				  SBAL_FLAGS0_TYPE_READ,
1416
				  qdio->adapter->pool.erp_req);
1417

1418
	if (IS_ERR(req)) {
S
Swen Schillig 已提交
1419
		retval = PTR_ERR(req);
L
Linus Torvalds 已提交
1420
		goto out;
S
Swen Schillig 已提交
1421
	}
L
Linus Torvalds 已提交
1422

1423
	req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
1424
	zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
L
Linus Torvalds 已提交
1425

S
Swen Schillig 已提交
1426
	req->handler = zfcp_fsf_open_port_handler;
1427
	hton24(req->qtcb->bottom.support.d_id, port->d_id);
1428
	req->data = port;
S
Swen Schillig 已提交
1429
	req->erp_action = erp_action;
1430
	erp_action->fsf_req_id = req->req_id;
1431
	get_device(&port->dev);
S
Swen Schillig 已提交
1432

1433
	zfcp_fsf_start_erp_timer(req);
S
Swen Schillig 已提交
1434
	retval = zfcp_fsf_req_send(req);
L
Linus Torvalds 已提交
1435
	if (retval) {
S
Swen Schillig 已提交
1436
		zfcp_fsf_req_free(req);
1437
		erp_action->fsf_req_id = 0;
1438
		put_device(&port->dev);
L
Linus Torvalds 已提交
1439
	}
S
Swen Schillig 已提交
1440
out:
1441
	spin_unlock_irq(&qdio->req_q_lock);
L
Linus Torvalds 已提交
1442 1443 1444
	return retval;
}

S
Swen Schillig 已提交
1445
static void zfcp_fsf_close_port_handler(struct zfcp_fsf_req *req)
L
Linus Torvalds 已提交
1446
{
S
Swen Schillig 已提交
1447
	struct zfcp_port *port = req->data;
L
Linus Torvalds 已提交
1448

S
Swen Schillig 已提交
1449
	if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
1450
		return;
L
Linus Torvalds 已提交
1451

S
Swen Schillig 已提交
1452
	switch (req->qtcb->header.fsf_status) {
L
Linus Torvalds 已提交
1453
	case FSF_PORT_HANDLE_NOT_VALID:
1454
		zfcp_erp_adapter_reopen(port->adapter, 0, "fscph_1");
S
Swen Schillig 已提交
1455
		req->status |= ZFCP_STATUS_FSFREQ_ERROR;
L
Linus Torvalds 已提交
1456 1457 1458 1459
		break;
	case FSF_ADAPTER_STATUS_AVAILABLE:
		break;
	case FSF_GOOD:
1460
		zfcp_erp_clear_port_status(port, ZFCP_STATUS_COMMON_OPEN);
L
Linus Torvalds 已提交
1461 1462 1463 1464
		break;
	}
}

S
Swen Schillig 已提交
1465 1466 1467 1468
/**
 * zfcp_fsf_close_port - create and send close port request
 * @erp_action: pointer to struct zfcp_erp_action
 * Returns: 0 on success, error otherwise
L
Linus Torvalds 已提交
1469
 */
S
Swen Schillig 已提交
1470
int zfcp_fsf_close_port(struct zfcp_erp_action *erp_action)
L
Linus Torvalds 已提交
1471
{
1472
	struct zfcp_qdio *qdio = erp_action->adapter->qdio;
S
Swen Schillig 已提交
1473 1474 1475
	struct zfcp_fsf_req *req;
	int retval = -EIO;

1476
	spin_lock_irq(&qdio->req_q_lock);
1477
	if (zfcp_qdio_sbal_get(qdio))
S
Swen Schillig 已提交
1478 1479
		goto out;

1480
	req = zfcp_fsf_req_create(qdio, FSF_QTCB_CLOSE_PORT,
1481
				  SBAL_FLAGS0_TYPE_READ,
1482
				  qdio->adapter->pool.erp_req);
1483

1484
	if (IS_ERR(req)) {
S
Swen Schillig 已提交
1485
		retval = PTR_ERR(req);
L
Linus Torvalds 已提交
1486
		goto out;
S
Swen Schillig 已提交
1487
	}
L
Linus Torvalds 已提交
1488

1489
	req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
1490
	zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
L
Linus Torvalds 已提交
1491

S
Swen Schillig 已提交
1492 1493 1494 1495
	req->handler = zfcp_fsf_close_port_handler;
	req->data = erp_action->port;
	req->erp_action = erp_action;
	req->qtcb->header.port_handle = erp_action->port->handle;
1496
	erp_action->fsf_req_id = req->req_id;
S
Swen Schillig 已提交
1497

1498
	zfcp_fsf_start_erp_timer(req);
S
Swen Schillig 已提交
1499
	retval = zfcp_fsf_req_send(req);
L
Linus Torvalds 已提交
1500
	if (retval) {
S
Swen Schillig 已提交
1501
		zfcp_fsf_req_free(req);
1502
		erp_action->fsf_req_id = 0;
L
Linus Torvalds 已提交
1503
	}
S
Swen Schillig 已提交
1504
out:
1505
	spin_unlock_irq(&qdio->req_q_lock);
L
Linus Torvalds 已提交
1506 1507 1508
	return retval;
}

1509 1510
static void zfcp_fsf_open_wka_port_handler(struct zfcp_fsf_req *req)
{
1511
	struct zfcp_fc_wka_port *wka_port = req->data;
1512 1513 1514
	struct fsf_qtcb_header *header = &req->qtcb->header;

	if (req->status & ZFCP_STATUS_FSFREQ_ERROR) {
1515
		wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE;
1516 1517 1518 1519 1520 1521 1522
		goto out;
	}

	switch (header->fsf_status) {
	case FSF_MAXIMUM_NUMBER_OF_PORTS_EXCEEDED:
		dev_warn(&req->adapter->ccw_device->dev,
			 "Opening WKA port 0x%x failed\n", wka_port->d_id);
1523
		/* fall through */
1524 1525
	case FSF_ADAPTER_STATUS_AVAILABLE:
		req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1526
		/* fall through */
1527
	case FSF_ACCESS_DENIED:
1528
		wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE;
1529 1530 1531
		break;
	case FSF_GOOD:
		wka_port->handle = header->port_handle;
1532 1533
		/* fall through */
	case FSF_PORT_ALREADY_OPEN:
1534
		wka_port->status = ZFCP_FC_WKA_PORT_ONLINE;
1535 1536 1537 1538 1539 1540 1541
	}
out:
	wake_up(&wka_port->completion_wq);
}

/**
 * zfcp_fsf_open_wka_port - create and send open wka-port request
1542
 * @wka_port: pointer to struct zfcp_fc_wka_port
1543 1544
 * Returns: 0 on success, error otherwise
 */
1545
int zfcp_fsf_open_wka_port(struct zfcp_fc_wka_port *wka_port)
1546
{
1547
	struct zfcp_qdio *qdio = wka_port->adapter->qdio;
1548 1549 1550
	struct zfcp_fsf_req *req;
	int retval = -EIO;

1551
	spin_lock_irq(&qdio->req_q_lock);
1552
	if (zfcp_qdio_sbal_get(qdio))
1553 1554
		goto out;

1555
	req = zfcp_fsf_req_create(qdio, FSF_QTCB_OPEN_PORT_WITH_DID,
1556
				  SBAL_FLAGS0_TYPE_READ,
1557
				  qdio->adapter->pool.erp_req);
1558

1559
	if (IS_ERR(req)) {
1560 1561 1562 1563
		retval = PTR_ERR(req);
		goto out;
	}

1564
	req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
1565
	zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
1566 1567

	req->handler = zfcp_fsf_open_wka_port_handler;
1568
	hton24(req->qtcb->bottom.support.d_id, wka_port->d_id);
1569 1570 1571 1572 1573 1574 1575
	req->data = wka_port;

	zfcp_fsf_start_timer(req, ZFCP_FSF_REQUEST_TIMEOUT);
	retval = zfcp_fsf_req_send(req);
	if (retval)
		zfcp_fsf_req_free(req);
out:
1576
	spin_unlock_irq(&qdio->req_q_lock);
1577 1578 1579 1580 1581
	return retval;
}

static void zfcp_fsf_close_wka_port_handler(struct zfcp_fsf_req *req)
{
1582
	struct zfcp_fc_wka_port *wka_port = req->data;
1583 1584 1585

	if (req->qtcb->header.fsf_status == FSF_PORT_HANDLE_NOT_VALID) {
		req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1586
		zfcp_erp_adapter_reopen(wka_port->adapter, 0, "fscwph1");
1587 1588
	}

1589
	wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE;
1590 1591 1592 1593 1594
	wake_up(&wka_port->completion_wq);
}

/**
 * zfcp_fsf_close_wka_port - create and send close wka port request
1595
 * @wka_port: WKA port to open
1596 1597
 * Returns: 0 on success, error otherwise
 */
1598
int zfcp_fsf_close_wka_port(struct zfcp_fc_wka_port *wka_port)
1599
{
1600
	struct zfcp_qdio *qdio = wka_port->adapter->qdio;
1601 1602 1603
	struct zfcp_fsf_req *req;
	int retval = -EIO;

1604
	spin_lock_irq(&qdio->req_q_lock);
1605
	if (zfcp_qdio_sbal_get(qdio))
1606 1607
		goto out;

1608
	req = zfcp_fsf_req_create(qdio, FSF_QTCB_CLOSE_PORT,
1609
				  SBAL_FLAGS0_TYPE_READ,
1610
				  qdio->adapter->pool.erp_req);
1611

1612
	if (IS_ERR(req)) {
1613 1614 1615 1616
		retval = PTR_ERR(req);
		goto out;
	}

1617
	req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
1618
	zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
1619 1620 1621 1622 1623 1624 1625 1626 1627 1628

	req->handler = zfcp_fsf_close_wka_port_handler;
	req->data = wka_port;
	req->qtcb->header.port_handle = wka_port->handle;

	zfcp_fsf_start_timer(req, ZFCP_FSF_REQUEST_TIMEOUT);
	retval = zfcp_fsf_req_send(req);
	if (retval)
		zfcp_fsf_req_free(req);
out:
1629
	spin_unlock_irq(&qdio->req_q_lock);
1630 1631 1632
	return retval;
}

S
Swen Schillig 已提交
1633
static void zfcp_fsf_close_physical_port_handler(struct zfcp_fsf_req *req)
L
Linus Torvalds 已提交
1634
{
S
Swen Schillig 已提交
1635 1636
	struct zfcp_port *port = req->data;
	struct fsf_qtcb_header *header = &req->qtcb->header;
1637
	struct scsi_device *sdev;
L
Linus Torvalds 已提交
1638

S
Swen Schillig 已提交
1639
	if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
1640
		return;
L
Linus Torvalds 已提交
1641 1642 1643

	switch (header->fsf_status) {
	case FSF_PORT_HANDLE_NOT_VALID:
1644
		zfcp_erp_adapter_reopen(port->adapter, 0, "fscpph1");
S
Swen Schillig 已提交
1645
		req->status |= ZFCP_STATUS_FSFREQ_ERROR;
L
Linus Torvalds 已提交
1646 1647
		break;
	case FSF_ACCESS_DENIED:
1648
		zfcp_cfdc_port_denied(port, &header->fsf_status_qual);
L
Linus Torvalds 已提交
1649 1650
		break;
	case FSF_PORT_BOXED:
1651 1652 1653
		/* can't use generic zfcp_erp_modify_port_status because
		 * ZFCP_STATUS_COMMON_OPEN must not be reset for the port */
		atomic_clear_mask(ZFCP_STATUS_PORT_PHYS_OPEN, &port->status);
1654 1655 1656 1657
		shost_for_each_device(sdev, port->adapter->scsi_host)
			if (sdev_to_zfcp(sdev)->port == port)
				atomic_clear_mask(ZFCP_STATUS_COMMON_OPEN,
						  &sdev_to_zfcp(sdev)->status);
1658 1659
		zfcp_erp_set_port_status(port, ZFCP_STATUS_COMMON_ACCESS_BOXED);
		zfcp_erp_port_reopen(port, ZFCP_STATUS_COMMON_ERP_FAILED,
1660
				     "fscpph2");
1661
		req->status |= ZFCP_STATUS_FSFREQ_ERROR;
L
Linus Torvalds 已提交
1662 1663 1664 1665
		break;
	case FSF_ADAPTER_STATUS_AVAILABLE:
		switch (header->fsf_status_qual.word[0]) {
		case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
S
Swen Schillig 已提交
1666
			/* fall through */
L
Linus Torvalds 已提交
1667
		case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
S
Swen Schillig 已提交
1668
			req->status |= ZFCP_STATUS_FSFREQ_ERROR;
L
Linus Torvalds 已提交
1669 1670 1671 1672 1673 1674 1675 1676
			break;
		}
		break;
	case FSF_GOOD:
		/* can't use generic zfcp_erp_modify_port_status because
		 * ZFCP_STATUS_COMMON_OPEN must not be reset for the port
		 */
		atomic_clear_mask(ZFCP_STATUS_PORT_PHYS_OPEN, &port->status);
1677 1678 1679 1680
		shost_for_each_device(sdev, port->adapter->scsi_host)
			if (sdev_to_zfcp(sdev)->port == port)
				atomic_clear_mask(ZFCP_STATUS_COMMON_OPEN,
						  &sdev_to_zfcp(sdev)->status);
L
Linus Torvalds 已提交
1681 1682 1683 1684
		break;
	}
}

S
Swen Schillig 已提交
1685 1686 1687 1688
/**
 * zfcp_fsf_close_physical_port - close physical port
 * @erp_action: pointer to struct zfcp_erp_action
 * Returns: 0 on success
L
Linus Torvalds 已提交
1689
 */
S
Swen Schillig 已提交
1690
int zfcp_fsf_close_physical_port(struct zfcp_erp_action *erp_action)
L
Linus Torvalds 已提交
1691
{
1692
	struct zfcp_qdio *qdio = erp_action->adapter->qdio;
S
Swen Schillig 已提交
1693 1694 1695
	struct zfcp_fsf_req *req;
	int retval = -EIO;

1696
	spin_lock_irq(&qdio->req_q_lock);
1697
	if (zfcp_qdio_sbal_get(qdio))
L
Linus Torvalds 已提交
1698 1699
		goto out;

1700
	req = zfcp_fsf_req_create(qdio, FSF_QTCB_CLOSE_PHYSICAL_PORT,
1701
				  SBAL_FLAGS0_TYPE_READ,
1702
				  qdio->adapter->pool.erp_req);
1703

1704
	if (IS_ERR(req)) {
S
Swen Schillig 已提交
1705 1706 1707
		retval = PTR_ERR(req);
		goto out;
	}
L
Linus Torvalds 已提交
1708

1709
	req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
1710
	zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
L
Linus Torvalds 已提交
1711

S
Swen Schillig 已提交
1712 1713 1714 1715
	req->data = erp_action->port;
	req->qtcb->header.port_handle = erp_action->port->handle;
	req->erp_action = erp_action;
	req->handler = zfcp_fsf_close_physical_port_handler;
1716
	erp_action->fsf_req_id = req->req_id;
S
Swen Schillig 已提交
1717

1718
	zfcp_fsf_start_erp_timer(req);
S
Swen Schillig 已提交
1719
	retval = zfcp_fsf_req_send(req);
L
Linus Torvalds 已提交
1720
	if (retval) {
S
Swen Schillig 已提交
1721
		zfcp_fsf_req_free(req);
1722
		erp_action->fsf_req_id = 0;
L
Linus Torvalds 已提交
1723
	}
S
Swen Schillig 已提交
1724
out:
1725
	spin_unlock_irq(&qdio->req_q_lock);
L
Linus Torvalds 已提交
1726 1727 1728
	return retval;
}

1729
static void zfcp_fsf_open_lun_handler(struct zfcp_fsf_req *req)
L
Linus Torvalds 已提交
1730
{
S
Swen Schillig 已提交
1731
	struct zfcp_adapter *adapter = req->adapter;
1732 1733
	struct scsi_device *sdev = req->data;
	struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
S
Swen Schillig 已提交
1734 1735
	struct fsf_qtcb_header *header = &req->qtcb->header;
	struct fsf_qtcb_bottom_support *bottom = &req->qtcb->bottom.support;
L
Linus Torvalds 已提交
1736

S
Swen Schillig 已提交
1737
	if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
1738
		return;
L
Linus Torvalds 已提交
1739 1740

	atomic_clear_mask(ZFCP_STATUS_COMMON_ACCESS_DENIED |
1741
			  ZFCP_STATUS_COMMON_ACCESS_BOXED |
1742 1743 1744
			  ZFCP_STATUS_LUN_SHARED |
			  ZFCP_STATUS_LUN_READONLY,
			  &zfcp_sdev->status);
L
Linus Torvalds 已提交
1745 1746 1747 1748

	switch (header->fsf_status) {

	case FSF_PORT_HANDLE_NOT_VALID:
1749
		zfcp_erp_adapter_reopen(adapter, 0, "fsouh_1");
S
Swen Schillig 已提交
1750
		/* fall through */
L
Linus Torvalds 已提交
1751 1752 1753
	case FSF_LUN_ALREADY_OPEN:
		break;
	case FSF_ACCESS_DENIED:
1754 1755
		zfcp_cfdc_lun_denied(sdev, &header->fsf_status_qual);
		req->status |= ZFCP_STATUS_FSFREQ_ERROR;
L
Linus Torvalds 已提交
1756 1757
		break;
	case FSF_PORT_BOXED:
1758 1759 1760
		zfcp_erp_set_port_status(zfcp_sdev->port,
					 ZFCP_STATUS_COMMON_ACCESS_BOXED);
		zfcp_erp_port_reopen(zfcp_sdev->port,
1761
				     ZFCP_STATUS_COMMON_ERP_FAILED, "fsouh_2");
1762
		req->status |= ZFCP_STATUS_FSFREQ_ERROR;
L
Linus Torvalds 已提交
1763 1764
		break;
	case FSF_LUN_SHARING_VIOLATION:
1765
		zfcp_cfdc_lun_shrng_vltn(sdev, &header->fsf_status_qual);
S
Swen Schillig 已提交
1766
		req->status |= ZFCP_STATUS_FSFREQ_ERROR;
L
Linus Torvalds 已提交
1767 1768
		break;
	case FSF_MAXIMUM_NUMBER_OF_LUNS_EXCEEDED:
S
Swen Schillig 已提交
1769
		dev_warn(&adapter->ccw_device->dev,
1770 1771
			 "No handle is available for LUN "
			 "0x%016Lx on port 0x%016Lx\n",
1772 1773
			 (unsigned long long)zfcp_scsi_dev_lun(sdev),
			 (unsigned long long)zfcp_sdev->port->wwpn);
1774
		zfcp_erp_set_lun_status(sdev, ZFCP_STATUS_COMMON_ERP_FAILED);
S
Swen Schillig 已提交
1775 1776 1777
		/* fall through */
	case FSF_INVALID_COMMAND_OPTION:
		req->status |= ZFCP_STATUS_FSFREQ_ERROR;
L
Linus Torvalds 已提交
1778 1779 1780 1781
		break;
	case FSF_ADAPTER_STATUS_AVAILABLE:
		switch (header->fsf_status_qual.word[0]) {
		case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
1782
			zfcp_fc_test_link(zfcp_sdev->port);
S
Swen Schillig 已提交
1783
			/* fall through */
L
Linus Torvalds 已提交
1784
		case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
S
Swen Schillig 已提交
1785
			req->status |= ZFCP_STATUS_FSFREQ_ERROR;
L
Linus Torvalds 已提交
1786 1787 1788 1789 1790
			break;
		}
		break;

	case FSF_GOOD:
1791 1792
		zfcp_sdev->lun_handle = header->lun_handle;
		atomic_set_mask(ZFCP_STATUS_COMMON_OPEN, &zfcp_sdev->status);
1793
		zfcp_cfdc_open_lun_eval(sdev, bottom);
L
Linus Torvalds 已提交
1794 1795 1796 1797
		break;
	}
}

S
Swen Schillig 已提交
1798
/**
1799
 * zfcp_fsf_open_lun - open LUN
S
Swen Schillig 已提交
1800 1801
 * @erp_action: pointer to struct zfcp_erp_action
 * Returns: 0 on success, error otherwise
L
Linus Torvalds 已提交
1802
 */
1803
int zfcp_fsf_open_lun(struct zfcp_erp_action *erp_action)
L
Linus Torvalds 已提交
1804
{
S
Swen Schillig 已提交
1805
	struct zfcp_adapter *adapter = erp_action->adapter;
1806
	struct zfcp_qdio *qdio = adapter->qdio;
S
Swen Schillig 已提交
1807 1808 1809
	struct zfcp_fsf_req *req;
	int retval = -EIO;

1810
	spin_lock_irq(&qdio->req_q_lock);
1811
	if (zfcp_qdio_sbal_get(qdio))
L
Linus Torvalds 已提交
1812 1813
		goto out;

1814
	req = zfcp_fsf_req_create(qdio, FSF_QTCB_OPEN_LUN,
1815
				  SBAL_FLAGS0_TYPE_READ,
1816
				  adapter->pool.erp_req);
1817

1818
	if (IS_ERR(req)) {
S
Swen Schillig 已提交
1819 1820 1821 1822
		retval = PTR_ERR(req);
		goto out;
	}

1823
	req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
1824
	zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
L
Linus Torvalds 已提交
1825

S
Swen Schillig 已提交
1826
	req->qtcb->header.port_handle = erp_action->port->handle;
1827 1828 1829
	req->qtcb->bottom.support.fcp_lun = zfcp_scsi_dev_lun(erp_action->sdev);
	req->handler = zfcp_fsf_open_lun_handler;
	req->data = erp_action->sdev;
S
Swen Schillig 已提交
1830
	req->erp_action = erp_action;
1831
	erp_action->fsf_req_id = req->req_id;
S
Swen Schillig 已提交
1832 1833 1834 1835

	if (!(adapter->connection_features & FSF_FEATURE_NPIV_MODE))
		req->qtcb->bottom.support.option = FSF_OPEN_LUN_SUPPRESS_BOXING;

1836
	zfcp_fsf_start_erp_timer(req);
S
Swen Schillig 已提交
1837
	retval = zfcp_fsf_req_send(req);
L
Linus Torvalds 已提交
1838
	if (retval) {
S
Swen Schillig 已提交
1839
		zfcp_fsf_req_free(req);
1840
		erp_action->fsf_req_id = 0;
L
Linus Torvalds 已提交
1841
	}
S
Swen Schillig 已提交
1842
out:
1843
	spin_unlock_irq(&qdio->req_q_lock);
L
Linus Torvalds 已提交
1844 1845 1846
	return retval;
}

1847
static void zfcp_fsf_close_lun_handler(struct zfcp_fsf_req *req)
L
Linus Torvalds 已提交
1848
{
1849 1850
	struct scsi_device *sdev = req->data;
	struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
L
Linus Torvalds 已提交
1851

S
Swen Schillig 已提交
1852
	if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
1853
		return;
L
Linus Torvalds 已提交
1854

S
Swen Schillig 已提交
1855
	switch (req->qtcb->header.fsf_status) {
L
Linus Torvalds 已提交
1856
	case FSF_PORT_HANDLE_NOT_VALID:
1857
		zfcp_erp_adapter_reopen(zfcp_sdev->port->adapter, 0, "fscuh_1");
S
Swen Schillig 已提交
1858
		req->status |= ZFCP_STATUS_FSFREQ_ERROR;
L
Linus Torvalds 已提交
1859 1860
		break;
	case FSF_LUN_HANDLE_NOT_VALID:
1861
		zfcp_erp_port_reopen(zfcp_sdev->port, 0, "fscuh_2");
S
Swen Schillig 已提交
1862
		req->status |= ZFCP_STATUS_FSFREQ_ERROR;
L
Linus Torvalds 已提交
1863 1864
		break;
	case FSF_PORT_BOXED:
1865 1866 1867
		zfcp_erp_set_port_status(zfcp_sdev->port,
					 ZFCP_STATUS_COMMON_ACCESS_BOXED);
		zfcp_erp_port_reopen(zfcp_sdev->port,
1868
				     ZFCP_STATUS_COMMON_ERP_FAILED, "fscuh_3");
1869
		req->status |= ZFCP_STATUS_FSFREQ_ERROR;
L
Linus Torvalds 已提交
1870 1871
		break;
	case FSF_ADAPTER_STATUS_AVAILABLE:
S
Swen Schillig 已提交
1872
		switch (req->qtcb->header.fsf_status_qual.word[0]) {
L
Linus Torvalds 已提交
1873
		case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
1874
			zfcp_fc_test_link(zfcp_sdev->port);
S
Swen Schillig 已提交
1875
			/* fall through */
L
Linus Torvalds 已提交
1876
		case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
S
Swen Schillig 已提交
1877
			req->status |= ZFCP_STATUS_FSFREQ_ERROR;
L
Linus Torvalds 已提交
1878 1879 1880 1881
			break;
		}
		break;
	case FSF_GOOD:
1882
		atomic_clear_mask(ZFCP_STATUS_COMMON_OPEN, &zfcp_sdev->status);
L
Linus Torvalds 已提交
1883 1884 1885 1886 1887
		break;
	}
}

/**
1888 1889
 * zfcp_fsf_close_LUN - close LUN
 * @erp_action: pointer to erp_action triggering the "close LUN"
S
Swen Schillig 已提交
1890
 * Returns: 0 on success, error otherwise
L
Linus Torvalds 已提交
1891
 */
1892
int zfcp_fsf_close_lun(struct zfcp_erp_action *erp_action)
L
Linus Torvalds 已提交
1893
{
1894
	struct zfcp_qdio *qdio = erp_action->adapter->qdio;
1895
	struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(erp_action->sdev);
S
Swen Schillig 已提交
1896 1897
	struct zfcp_fsf_req *req;
	int retval = -EIO;
L
Linus Torvalds 已提交
1898

1899
	spin_lock_irq(&qdio->req_q_lock);
1900
	if (zfcp_qdio_sbal_get(qdio))
L
Linus Torvalds 已提交
1901
		goto out;
1902

1903
	req = zfcp_fsf_req_create(qdio, FSF_QTCB_CLOSE_LUN,
1904
				  SBAL_FLAGS0_TYPE_READ,
1905
				  qdio->adapter->pool.erp_req);
1906

1907
	if (IS_ERR(req)) {
S
Swen Schillig 已提交
1908 1909 1910
		retval = PTR_ERR(req);
		goto out;
	}
L
Linus Torvalds 已提交
1911

1912
	req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
1913
	zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
L
Linus Torvalds 已提交
1914

S
Swen Schillig 已提交
1915
	req->qtcb->header.port_handle = erp_action->port->handle;
1916 1917 1918
	req->qtcb->header.lun_handle = zfcp_sdev->lun_handle;
	req->handler = zfcp_fsf_close_lun_handler;
	req->data = erp_action->sdev;
S
Swen Schillig 已提交
1919
	req->erp_action = erp_action;
1920
	erp_action->fsf_req_id = req->req_id;
1921

1922
	zfcp_fsf_start_erp_timer(req);
S
Swen Schillig 已提交
1923 1924 1925
	retval = zfcp_fsf_req_send(req);
	if (retval) {
		zfcp_fsf_req_free(req);
1926
		erp_action->fsf_req_id = 0;
S
Swen Schillig 已提交
1927 1928
	}
out:
1929
	spin_unlock_irq(&qdio->req_q_lock);
S
Swen Schillig 已提交
1930
	return retval;
L
Linus Torvalds 已提交
1931 1932
}

1933 1934 1935
static void zfcp_fsf_update_lat(struct fsf_latency_record *lat_rec, u32 lat)
{
	lat_rec->sum += lat;
S
Swen Schillig 已提交
1936 1937
	lat_rec->min = min(lat_rec->min, lat);
	lat_rec->max = max(lat_rec->max, lat);
1938 1939
}

1940
static void zfcp_fsf_req_trace(struct zfcp_fsf_req *req, struct scsi_cmnd *scsi)
1941
{
1942 1943
	struct fsf_qual_latency_info *lat_in;
	struct latency_cont *lat = NULL;
1944
	struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(scsi->device);
1945 1946
	struct zfcp_blk_drv_data blktrc;
	int ticks = req->adapter->timer_ticks;
1947

1948
	lat_in = &req->qtcb->prefix.prot_status_qual.latency_info;
1949

1950 1951 1952 1953
	blktrc.flags = 0;
	blktrc.magic = ZFCP_BLK_DRV_DATA_MAGIC;
	if (req->status & ZFCP_STATUS_FSFREQ_ERROR)
		blktrc.flags |= ZFCP_BLK_REQ_ERROR;
1954
	blktrc.inb_usage = 0;
1955
	blktrc.outb_usage = req->qdio_req.qdio_outb_usage;
1956

1957 1958
	if (req->adapter->adapter_features & FSF_FEATURE_MEASUREMENT_DATA &&
	    !(req->status & ZFCP_STATUS_FSFREQ_ERROR)) {
1959 1960 1961 1962 1963
		blktrc.flags |= ZFCP_BLK_LAT_VALID;
		blktrc.channel_lat = lat_in->channel_lat * ticks;
		blktrc.fabric_lat = lat_in->fabric_lat * ticks;

		switch (req->qtcb->bottom.io.data_direction) {
1964 1965
		case FSF_DATADIR_DIF_READ_STRIP:
		case FSF_DATADIR_DIF_READ_CONVERT:
1966
		case FSF_DATADIR_READ:
1967
			lat = &zfcp_sdev->latencies.read;
1968
			break;
1969 1970
		case FSF_DATADIR_DIF_WRITE_INSERT:
		case FSF_DATADIR_DIF_WRITE_CONVERT:
1971
		case FSF_DATADIR_WRITE:
1972
			lat = &zfcp_sdev->latencies.write;
1973 1974
			break;
		case FSF_DATADIR_CMND:
1975
			lat = &zfcp_sdev->latencies.cmd;
1976 1977
			break;
		}
L
Linus Torvalds 已提交
1978

1979
		if (lat) {
1980
			spin_lock(&zfcp_sdev->latencies.lock);
1981 1982 1983
			zfcp_fsf_update_lat(&lat->channel, lat_in->channel_lat);
			zfcp_fsf_update_lat(&lat->fabric, lat_in->fabric_lat);
			lat->counter++;
1984
			spin_unlock(&zfcp_sdev->latencies.lock);
1985
		}
S
Stefan Raspl 已提交
1986 1987
	}

1988 1989
	blk_add_driver_data(scsi->request->q, scsi->request, &blktrc,
			    sizeof(blktrc));
S
Stefan Raspl 已提交
1990 1991
}

1992
static void zfcp_fsf_fcp_handler_common(struct zfcp_fsf_req *req)
S
Swen Schillig 已提交
1993
{
1994 1995 1996
	struct scsi_cmnd *scmnd = req->data;
	struct scsi_device *sdev = scmnd->device;
	struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
S
Swen Schillig 已提交
1997 1998 1999
	struct fsf_qtcb_header *header = &req->qtcb->header;

	if (unlikely(req->status & ZFCP_STATUS_FSFREQ_ERROR))
2000
		return;
L
Linus Torvalds 已提交
2001

S
Swen Schillig 已提交
2002 2003 2004
	switch (header->fsf_status) {
	case FSF_HANDLE_MISMATCH:
	case FSF_PORT_HANDLE_NOT_VALID:
2005
		zfcp_erp_adapter_reopen(zfcp_sdev->port->adapter, 0, "fssfch1");
S
Swen Schillig 已提交
2006 2007 2008 2009
		req->status |= ZFCP_STATUS_FSFREQ_ERROR;
		break;
	case FSF_FCPLUN_NOT_VALID:
	case FSF_LUN_HANDLE_NOT_VALID:
2010
		zfcp_erp_port_reopen(zfcp_sdev->port, 0, "fssfch2");
S
Swen Schillig 已提交
2011
		req->status |= ZFCP_STATUS_FSFREQ_ERROR;
L
Linus Torvalds 已提交
2012
		break;
S
Swen Schillig 已提交
2013 2014
	case FSF_SERVICE_CLASS_NOT_SUPPORTED:
		zfcp_fsf_class_not_supp(req);
L
Linus Torvalds 已提交
2015
		break;
S
Swen Schillig 已提交
2016
	case FSF_ACCESS_DENIED:
2017 2018
		zfcp_cfdc_lun_denied(sdev, &header->fsf_status_qual);
		req->status |= ZFCP_STATUS_FSFREQ_ERROR;
S
Swen Schillig 已提交
2019 2020 2021
		break;
	case FSF_DIRECTION_INDICATOR_NOT_VALID:
		dev_err(&req->adapter->ccw_device->dev,
2022
			"Incorrect direction %d, LUN 0x%016Lx on port "
2023
			"0x%016Lx closed\n",
S
Swen Schillig 已提交
2024
			req->qtcb->bottom.io.data_direction,
2025 2026 2027
			(unsigned long long)zfcp_scsi_dev_lun(sdev),
			(unsigned long long)zfcp_sdev->port->wwpn);
		zfcp_erp_adapter_shutdown(zfcp_sdev->port->adapter, 0,
2028
					  "fssfch3");
S
Swen Schillig 已提交
2029 2030 2031 2032
		req->status |= ZFCP_STATUS_FSFREQ_ERROR;
		break;
	case FSF_CMND_LENGTH_NOT_VALID:
		dev_err(&req->adapter->ccw_device->dev,
2033
			"Incorrect CDB length %d, LUN 0x%016Lx on "
2034
			"port 0x%016Lx closed\n",
S
Swen Schillig 已提交
2035
			req->qtcb->bottom.io.fcp_cmnd_length,
2036 2037 2038
			(unsigned long long)zfcp_scsi_dev_lun(sdev),
			(unsigned long long)zfcp_sdev->port->wwpn);
		zfcp_erp_adapter_shutdown(zfcp_sdev->port->adapter, 0,
2039
					  "fssfch4");
S
Swen Schillig 已提交
2040 2041 2042
		req->status |= ZFCP_STATUS_FSFREQ_ERROR;
		break;
	case FSF_PORT_BOXED:
2043 2044 2045
		zfcp_erp_set_port_status(zfcp_sdev->port,
					 ZFCP_STATUS_COMMON_ACCESS_BOXED);
		zfcp_erp_port_reopen(zfcp_sdev->port,
2046
				     ZFCP_STATUS_COMMON_ERP_FAILED, "fssfch5");
2047
		req->status |= ZFCP_STATUS_FSFREQ_ERROR;
S
Swen Schillig 已提交
2048 2049
		break;
	case FSF_LUN_BOXED:
2050 2051
		zfcp_erp_set_lun_status(sdev, ZFCP_STATUS_COMMON_ACCESS_BOXED);
		zfcp_erp_lun_reopen(sdev, ZFCP_STATUS_COMMON_ERP_FAILED,
2052
				    "fssfch6");
2053
		req->status |= ZFCP_STATUS_FSFREQ_ERROR;
S
Swen Schillig 已提交
2054 2055 2056 2057
		break;
	case FSF_ADAPTER_STATUS_AVAILABLE:
		if (header->fsf_status_qual.word[0] ==
		    FSF_SQ_INVOKE_LINK_TEST_PROCEDURE)
2058
			zfcp_fc_test_link(zfcp_sdev->port);
S
Swen Schillig 已提交
2059
		req->status |= ZFCP_STATUS_FSFREQ_ERROR;
L
Linus Torvalds 已提交
2060 2061
		break;
	}
2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075
}

static void zfcp_fsf_fcp_cmnd_handler(struct zfcp_fsf_req *req)
{
	struct scsi_cmnd *scpnt;
	struct fcp_resp_with_ext *fcp_rsp;
	unsigned long flags;

	read_lock_irqsave(&req->adapter->abort_lock, flags);

	scpnt = req->data;
	if (unlikely(!scpnt)) {
		read_unlock_irqrestore(&req->adapter->abort_lock, flags);
		return;
S
Swen Schillig 已提交
2076
	}
2077

2078 2079
	zfcp_fsf_fcp_handler_common(req);

2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104
	if (unlikely(req->status & ZFCP_STATUS_FSFREQ_ERROR)) {
		set_host_byte(scpnt, DID_TRANSPORT_DISRUPTED);
		goto skip_fsfstatus;
	}

	switch (req->qtcb->header.fsf_status) {
	case FSF_INCONSISTENT_PROT_DATA:
	case FSF_INVALID_PROT_PARM:
		set_host_byte(scpnt, DID_ERROR);
		goto skip_fsfstatus;
	case FSF_BLOCK_GUARD_CHECK_FAILURE:
		zfcp_scsi_dif_sense_error(scpnt, 0x1);
		goto skip_fsfstatus;
	case FSF_APP_TAG_CHECK_FAILURE:
		zfcp_scsi_dif_sense_error(scpnt, 0x2);
		goto skip_fsfstatus;
	case FSF_REF_TAG_CHECK_FAILURE:
		zfcp_scsi_dif_sense_error(scpnt, 0x3);
		goto skip_fsfstatus;
	}
	fcp_rsp = (struct fcp_resp_with_ext *) &req->qtcb->bottom.io.fcp_rsp;
	zfcp_fc_eval_fcp_rsp(fcp_rsp, scpnt);

skip_fsfstatus:
	zfcp_fsf_req_trace(req, scpnt);
2105
	zfcp_dbf_scsi_result(scpnt, req);
2106 2107 2108 2109 2110 2111 2112 2113 2114 2115

	scpnt->host_scribble = NULL;
	(scpnt->scsi_done) (scpnt);
	/*
	 * We must hold this lock until scsi_done has been called.
	 * Otherwise we may call scsi_done after abort regarding this
	 * command has completed.
	 * Note: scsi_done must not block!
	 */
	read_unlock_irqrestore(&req->adapter->abort_lock, flags);
L
Linus Torvalds 已提交
2116 2117
}

2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155
static int zfcp_fsf_set_data_dir(struct scsi_cmnd *scsi_cmnd, u32 *data_dir)
{
	switch (scsi_get_prot_op(scsi_cmnd)) {
	case SCSI_PROT_NORMAL:
		switch (scsi_cmnd->sc_data_direction) {
		case DMA_NONE:
			*data_dir = FSF_DATADIR_CMND;
			break;
		case DMA_FROM_DEVICE:
			*data_dir = FSF_DATADIR_READ;
			break;
		case DMA_TO_DEVICE:
			*data_dir = FSF_DATADIR_WRITE;
			break;
		case DMA_BIDIRECTIONAL:
			return -EINVAL;
		}
		break;

	case SCSI_PROT_READ_STRIP:
		*data_dir = FSF_DATADIR_DIF_READ_STRIP;
		break;
	case SCSI_PROT_WRITE_INSERT:
		*data_dir = FSF_DATADIR_DIF_WRITE_INSERT;
		break;
	case SCSI_PROT_READ_PASS:
		*data_dir = FSF_DATADIR_DIF_READ_CONVERT;
		break;
	case SCSI_PROT_WRITE_PASS:
		*data_dir = FSF_DATADIR_DIF_WRITE_CONVERT;
		break;
	default:
		return -EINVAL;
	}

	return 0;
}

S
Swen Schillig 已提交
2156
/**
2157
 * zfcp_fsf_fcp_cmnd - initiate an FCP command (for a SCSI command)
S
Swen Schillig 已提交
2158
 * @scsi_cmnd: scsi command to be sent
L
Linus Torvalds 已提交
2159
 */
2160
int zfcp_fsf_fcp_cmnd(struct scsi_cmnd *scsi_cmnd)
L
Linus Torvalds 已提交
2161
{
S
Swen Schillig 已提交
2162
	struct zfcp_fsf_req *req;
2163
	struct fcp_cmnd *fcp_cmnd;
2164
	unsigned int sbtype = SBAL_FLAGS0_TYPE_READ;
2165
	int real_bytes, retval = -EIO, dix_bytes = 0;
2166 2167 2168
	struct scsi_device *sdev = scsi_cmnd->device;
	struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
	struct zfcp_adapter *adapter = zfcp_sdev->port->adapter;
2169
	struct zfcp_qdio *qdio = adapter->qdio;
2170
	struct fsf_qtcb_bottom_io *io;
2171
	unsigned long flags;
L
Linus Torvalds 已提交
2172

2173
	if (unlikely(!(atomic_read(&zfcp_sdev->status) &
S
Swen Schillig 已提交
2174 2175
		       ZFCP_STATUS_COMMON_UNBLOCKED)))
		return -EBUSY;
L
Linus Torvalds 已提交
2176

2177
	spin_lock_irqsave(&qdio->req_q_lock, flags);
2178
	if (atomic_read(&qdio->req_q_free) <= 0) {
2179
		atomic_inc(&qdio->req_q_full);
S
Swen Schillig 已提交
2180
		goto out;
2181
	}
2182

2183 2184 2185
	if (scsi_cmnd->sc_data_direction == DMA_TO_DEVICE)
		sbtype = SBAL_FLAGS0_TYPE_WRITE;

2186
	req = zfcp_fsf_req_create(qdio, FSF_QTCB_FCP_CMND,
2187
				  sbtype, adapter->pool.scsi_req);
2188

2189
	if (IS_ERR(req)) {
S
Swen Schillig 已提交
2190 2191 2192 2193
		retval = PTR_ERR(req);
		goto out;
	}

2194 2195 2196
	scsi_cmnd->host_scribble = (unsigned char *) req->req_id;

	io = &req->qtcb->bottom.io;
2197
	req->status |= ZFCP_STATUS_FSFREQ_CLEANUP;
S
Swen Schillig 已提交
2198
	req->data = scsi_cmnd;
2199
	req->handler = zfcp_fsf_fcp_cmnd_handler;
2200 2201
	req->qtcb->header.lun_handle = zfcp_sdev->lun_handle;
	req->qtcb->header.port_handle = zfcp_sdev->port->handle;
2202 2203
	io->service_class = FSF_CLASS_3;
	io->fcp_cmnd_length = FCP_CMND_LEN;
S
Swen Schillig 已提交
2204

2205 2206 2207
	if (scsi_get_prot_op(scsi_cmnd) != SCSI_PROT_NORMAL) {
		io->data_block_length = scsi_cmnd->device->sector_size;
		io->ref_tag_value = scsi_get_lba(scsi_cmnd) & 0xFFFFFFFF;
L
Linus Torvalds 已提交
2208 2209
	}

2210 2211
	zfcp_fsf_set_data_dir(scsi_cmnd, &io->data_direction);

2212
	fcp_cmnd = (struct fcp_cmnd *) &req->qtcb->bottom.io.fcp_cmnd;
2213
	zfcp_fc_scsi_to_fcp(fcp_cmnd, scsi_cmnd, 0);
L
Linus Torvalds 已提交
2214

2215 2216 2217 2218 2219 2220 2221 2222
	if (scsi_prot_sg_count(scsi_cmnd)) {
		zfcp_qdio_set_data_div(qdio, &req->qdio_req,
				       scsi_prot_sg_count(scsi_cmnd));
		dix_bytes = zfcp_qdio_sbals_from_sg(qdio, &req->qdio_req,
						scsi_prot_sglist(scsi_cmnd));
		io->prot_data_length = dix_bytes;
	}

2223
	real_bytes = zfcp_qdio_sbals_from_sg(qdio, &req->qdio_req,
2224
					     scsi_sglist(scsi_cmnd));
2225 2226

	if (unlikely(real_bytes < 0) || unlikely(dix_bytes < 0))
S
Swen Schillig 已提交
2227
		goto failed_scsi_cmnd;
L
Linus Torvalds 已提交
2228

2229 2230
	zfcp_qdio_set_sbale_last(adapter->qdio, &req->qdio_req);

S
Swen Schillig 已提交
2231 2232 2233
	retval = zfcp_fsf_req_send(req);
	if (unlikely(retval))
		goto failed_scsi_cmnd;
L
Linus Torvalds 已提交
2234

S
Swen Schillig 已提交
2235
	goto out;
L
Linus Torvalds 已提交
2236

S
Swen Schillig 已提交
2237 2238 2239 2240
failed_scsi_cmnd:
	zfcp_fsf_req_free(req);
	scsi_cmnd->host_scribble = NULL;
out:
2241
	spin_unlock_irqrestore(&qdio->req_q_lock, flags);
S
Swen Schillig 已提交
2242
	return retval;
L
Linus Torvalds 已提交
2243 2244
}

2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259
static void zfcp_fsf_fcp_task_mgmt_handler(struct zfcp_fsf_req *req)
{
	struct fcp_resp_with_ext *fcp_rsp;
	struct fcp_resp_rsp_info *rsp_info;

	zfcp_fsf_fcp_handler_common(req);

	fcp_rsp = (struct fcp_resp_with_ext *) &req->qtcb->bottom.io.fcp_rsp;
	rsp_info = (struct fcp_resp_rsp_info *) &fcp_rsp[1];

	if ((rsp_info->rsp_code != FCP_TMF_CMPL) ||
	     (req->status & ZFCP_STATUS_FSFREQ_ERROR))
		req->status |= ZFCP_STATUS_FSFREQ_TMFUNCFAILED;
}

L
Linus Torvalds 已提交
2260
/**
2261 2262
 * zfcp_fsf_fcp_task_mgmt - send SCSI task management command
 * @scmnd: SCSI command to send the task management command for
S
Swen Schillig 已提交
2263 2264
 * @tm_flags: unsigned byte for task management flags
 * Returns: on success pointer to struct fsf_req, NULL otherwise
L
Linus Torvalds 已提交
2265
 */
2266 2267
struct zfcp_fsf_req *zfcp_fsf_fcp_task_mgmt(struct scsi_cmnd *scmnd,
					    u8 tm_flags)
L
Linus Torvalds 已提交
2268
{
S
Swen Schillig 已提交
2269
	struct zfcp_fsf_req *req = NULL;
2270
	struct fcp_cmnd *fcp_cmnd;
2271 2272
	struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(scmnd->device);
	struct zfcp_qdio *qdio = zfcp_sdev->port->adapter->qdio;
L
Linus Torvalds 已提交
2273

2274
	if (unlikely(!(atomic_read(&zfcp_sdev->status) &
S
Swen Schillig 已提交
2275 2276
		       ZFCP_STATUS_COMMON_UNBLOCKED)))
		return NULL;
L
Linus Torvalds 已提交
2277

2278
	spin_lock_irq(&qdio->req_q_lock);
2279
	if (zfcp_qdio_sbal_get(qdio))
S
Swen Schillig 已提交
2280
		goto out;
2281

2282
	req = zfcp_fsf_req_create(qdio, FSF_QTCB_FCP_CMND,
2283
				  SBAL_FLAGS0_TYPE_WRITE,
2284
				  qdio->adapter->pool.scsi_req);
2285

2286 2287
	if (IS_ERR(req)) {
		req = NULL;
S
Swen Schillig 已提交
2288
		goto out;
2289
	}
L
Linus Torvalds 已提交
2290

2291
	req->data = scmnd;
2292
	req->handler = zfcp_fsf_fcp_task_mgmt_handler;
2293 2294
	req->qtcb->header.lun_handle = zfcp_sdev->lun_handle;
	req->qtcb->header.port_handle = zfcp_sdev->port->handle;
S
Swen Schillig 已提交
2295 2296
	req->qtcb->bottom.io.data_direction = FSF_DATADIR_CMND;
	req->qtcb->bottom.io.service_class = FSF_CLASS_3;
2297
	req->qtcb->bottom.io.fcp_cmnd_length = FCP_CMND_LEN;
S
Swen Schillig 已提交
2298

2299
	zfcp_qdio_set_sbale_last(qdio, &req->qdio_req);
L
Linus Torvalds 已提交
2300

2301
	fcp_cmnd = (struct fcp_cmnd *) &req->qtcb->bottom.io.fcp_cmnd;
2302
	zfcp_fc_scsi_to_fcp(fcp_cmnd, scmnd, tm_flags);
L
Linus Torvalds 已提交
2303

S
Swen Schillig 已提交
2304 2305 2306
	zfcp_fsf_start_timer(req, ZFCP_SCSI_ER_TIMEOUT);
	if (!zfcp_fsf_req_send(req))
		goto out;
L
Linus Torvalds 已提交
2307

S
Swen Schillig 已提交
2308 2309 2310
	zfcp_fsf_req_free(req);
	req = NULL;
out:
2311
	spin_unlock_irq(&qdio->req_q_lock);
S
Swen Schillig 已提交
2312 2313
	return req;
}
L
Linus Torvalds 已提交
2314

S
Swen Schillig 已提交
2315 2316
static void zfcp_fsf_control_file_handler(struct zfcp_fsf_req *req)
{
L
Linus Torvalds 已提交
2317 2318
}

S
Swen Schillig 已提交
2319 2320 2321 2322 2323
/**
 * zfcp_fsf_control_file - control file upload/download
 * @adapter: pointer to struct zfcp_adapter
 * @fsf_cfdc: pointer to struct zfcp_fsf_cfdc
 * Returns: on success pointer to struct zfcp_fsf_req, NULL otherwise
L
Linus Torvalds 已提交
2324
 */
S
Swen Schillig 已提交
2325 2326
struct zfcp_fsf_req *zfcp_fsf_control_file(struct zfcp_adapter *adapter,
					   struct zfcp_fsf_cfdc *fsf_cfdc)
L
Linus Torvalds 已提交
2327
{
2328
	struct zfcp_qdio *qdio = adapter->qdio;
S
Swen Schillig 已提交
2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345
	struct zfcp_fsf_req *req = NULL;
	struct fsf_qtcb_bottom_support *bottom;
	int direction, retval = -EIO, bytes;

	if (!(adapter->adapter_features & FSF_FEATURE_CFDC))
		return ERR_PTR(-EOPNOTSUPP);

	switch (fsf_cfdc->command) {
	case FSF_QTCB_DOWNLOAD_CONTROL_FILE:
		direction = SBAL_FLAGS0_TYPE_WRITE;
		break;
	case FSF_QTCB_UPLOAD_CONTROL_FILE:
		direction = SBAL_FLAGS0_TYPE_READ;
		break;
	default:
		return ERR_PTR(-EINVAL);
	}
L
Linus Torvalds 已提交
2346

2347
	spin_lock_irq(&qdio->req_q_lock);
2348
	if (zfcp_qdio_sbal_get(qdio))
S
Swen Schillig 已提交
2349
		goto out;
L
Linus Torvalds 已提交
2350

2351
	req = zfcp_fsf_req_create(qdio, fsf_cfdc->command, direction, NULL);
2352
	if (IS_ERR(req)) {
S
Swen Schillig 已提交
2353 2354 2355
		retval = -EPERM;
		goto out;
	}
L
Linus Torvalds 已提交
2356

S
Swen Schillig 已提交
2357
	req->handler = zfcp_fsf_control_file_handler;
L
Linus Torvalds 已提交
2358

S
Swen Schillig 已提交
2359 2360 2361
	bottom = &req->qtcb->bottom.support;
	bottom->operation_subtype = FSF_CFDC_OPERATION_SUBTYPE;
	bottom->option = fsf_cfdc->option;
2362

2363 2364
	bytes = zfcp_qdio_sbals_from_sg(qdio, &req->qdio_req, fsf_cfdc->sg);

S
Swen Schillig 已提交
2365 2366 2367 2368
	if (bytes != ZFCP_CFDC_MAX_SIZE) {
		zfcp_fsf_req_free(req);
		goto out;
	}
2369
	zfcp_qdio_set_sbale_last(adapter->qdio, &req->qdio_req);
L
Linus Torvalds 已提交
2370

S
Swen Schillig 已提交
2371 2372 2373
	zfcp_fsf_start_timer(req, ZFCP_FSF_REQUEST_TIMEOUT);
	retval = zfcp_fsf_req_send(req);
out:
2374
	spin_unlock_irq(&qdio->req_q_lock);
2375

S
Swen Schillig 已提交
2376
	if (!retval) {
2377
		wait_for_completion(&req->completion);
S
Swen Schillig 已提交
2378
		return req;
L
Linus Torvalds 已提交
2379
	}
S
Swen Schillig 已提交
2380
	return ERR_PTR(retval);
L
Linus Torvalds 已提交
2381
}
2382 2383 2384 2385 2386 2387

/**
 * zfcp_fsf_reqid_check - validate req_id contained in SBAL returned by QDIO
 * @adapter: pointer to struct zfcp_adapter
 * @sbal_idx: response queue index of SBAL to be processed
 */
2388
void zfcp_fsf_reqid_check(struct zfcp_qdio *qdio, int sbal_idx)
2389
{
2390
	struct zfcp_adapter *adapter = qdio->adapter;
2391
	struct qdio_buffer *sbal = qdio->res_q[sbal_idx];
2392 2393
	struct qdio_buffer_element *sbale;
	struct zfcp_fsf_req *fsf_req;
2394
	unsigned long req_id;
2395 2396 2397 2398 2399 2400
	int idx;

	for (idx = 0; idx < QDIO_MAX_ELEMENTS_PER_BUFFER; idx++) {

		sbale = &sbal->element[idx];
		req_id = (unsigned long) sbale->addr;
2401
		fsf_req = zfcp_reqlist_find_rm(adapter->req_list, req_id);
2402

2403
		if (!fsf_req) {
2404 2405 2406 2407
			/*
			 * Unknown request means that we have potentially memory
			 * corruption and must stop the machine immediately.
			 */
2408
			zfcp_qdio_siosl(adapter);
2409 2410
			panic("error: unknown req_id (%lx) on adapter %s.\n",
			      req_id, dev_name(&adapter->ccw_device->dev));
2411
		}
2412

2413
		fsf_req->qdio_req.sbal_response = sbal_idx;
2414 2415 2416 2417 2418 2419
		zfcp_fsf_req_complete(fsf_req);

		if (likely(sbale->flags & SBAL_FLAGS_LAST_ENTRY))
			break;
	}
}
2420 2421 2422 2423 2424 2425 2426 2427 2428

struct zfcp_fsf_req *zfcp_fsf_get_req(struct zfcp_qdio *qdio,
				      struct qdio_buffer *sbal)
{
	struct qdio_buffer_element *sbale = &sbal->element[0];
	u64 req_id = (unsigned long) sbale->addr;

	return zfcp_reqlist_find(qdio->adapter->req_list, req_id);
}