zfcp_qdio.c 13.8 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
S
Swen Schillig 已提交
2
 * zfcp device driver
L
Linus Torvalds 已提交
3
 *
S
Swen Schillig 已提交
4
 * Setup and helper functions to access QDIO.
L
Linus Torvalds 已提交
5
 *
S
Swen Schillig 已提交
6
 * Copyright IBM Corporation 2002, 2008
L
Linus Torvalds 已提交
7 8
 */

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

L
Linus Torvalds 已提交
12 13
#include "zfcp_ext.h"

S
Swen Schillig 已提交
14 15
/* FIXME(tune): free space should be one max. SBAL chain plus what? */
#define ZFCP_QDIO_PCI_INTERVAL	(QDIO_MAX_BUFFERS_PER_Q \
S
Swen Schillig 已提交
16
				- (FSF_MAX_SBALS_PER_REQ + 4))
17
#define QBUFF_PER_PAGE		(PAGE_SIZE / sizeof(struct qdio_buffer))
L
Linus Torvalds 已提交
18

S
Swen Schillig 已提交
19
static int zfcp_qdio_buffers_enqueue(struct qdio_buffer **sbal)
L
Linus Torvalds 已提交
20
{
S
Swen Schillig 已提交
21
	int pos;
L
Linus Torvalds 已提交
22

S
Swen Schillig 已提交
23
	for (pos = 0; pos < QDIO_MAX_BUFFERS_PER_Q; pos += QBUFF_PER_PAGE) {
S
Swen Schillig 已提交
24 25
		sbal[pos] = (struct qdio_buffer *) get_zeroed_page(GFP_KERNEL);
		if (!sbal[pos])
S
Swen Schillig 已提交
26 27 28 29
			return -ENOMEM;
	}
	for (pos = 0; pos < QDIO_MAX_BUFFERS_PER_Q; pos++)
		if (pos % QBUFF_PER_PAGE)
S
Swen Schillig 已提交
30
			sbal[pos] = sbal[pos - 1] + 1;
S
Swen Schillig 已提交
31
	return 0;
L
Linus Torvalds 已提交
32 33
}

34
static struct qdio_buffer_element *
S
Swen Schillig 已提交
35
zfcp_qdio_sbale(struct zfcp_qdio_queue *q, int sbal_idx, int sbale_idx)
L
Linus Torvalds 已提交
36
{
S
Swen Schillig 已提交
37
	return &q->sbal[sbal_idx]->element[sbale_idx];
L
Linus Torvalds 已提交
38 39
}

S
Swen Schillig 已提交
40 41 42 43 44
/**
 * zfcp_qdio_free - free memory used by request- and resposne queue
 * @adapter: pointer to the zfcp_adapter structure
 */
void zfcp_qdio_free(struct zfcp_adapter *adapter)
L
Linus Torvalds 已提交
45
{
S
Swen Schillig 已提交
46 47
	struct qdio_buffer **sbal_req, **sbal_resp;
	int p;
L
Linus Torvalds 已提交
48

S
Swen Schillig 已提交
49 50
	if (adapter->ccw_device)
		qdio_free(adapter->ccw_device);
L
Linus Torvalds 已提交
51

S
Swen Schillig 已提交
52 53
	sbal_req = adapter->req_q.sbal;
	sbal_resp = adapter->resp_q.sbal;
L
Linus Torvalds 已提交
54

S
Swen Schillig 已提交
55 56 57 58
	for (p = 0; p < QDIO_MAX_BUFFERS_PER_Q; p += QBUFF_PER_PAGE) {
		free_page((unsigned long) sbal_req[p]);
		free_page((unsigned long) sbal_resp[p]);
	}
L
Linus Torvalds 已提交
59 60
}

S
Swen Schillig 已提交
61
static void zfcp_qdio_handler_error(struct zfcp_adapter *adapter, u8 id)
L
Linus Torvalds 已提交
62
{
63
	dev_warn(&adapter->ccw_device->dev, "A QDIO problem occurred\n");
L
Linus Torvalds 已提交
64

S
Swen Schillig 已提交
65 66 67
	zfcp_erp_adapter_reopen(adapter,
				ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED |
				ZFCP_STATUS_COMMON_ERP_FAILED, id, NULL);
L
Linus Torvalds 已提交
68 69
}

70 71 72 73 74 75 76 77 78 79
static void zfcp_qdio_zero_sbals(struct qdio_buffer *sbal[], int first, int cnt)
{
	int i, sbal_idx;

	for (i = first; i < first + cnt; i++) {
		sbal_idx = i % QDIO_MAX_BUFFERS_PER_Q;
		memset(sbal[sbal_idx], 0, sizeof(struct qdio_buffer));
	}
}

J
Jan Glauber 已提交
80 81
static void zfcp_qdio_int_req(struct ccw_device *cdev, unsigned int qdio_err,
			      int queue_no, int first, int count,
S
Swen Schillig 已提交
82
			      unsigned long parm)
L
Linus Torvalds 已提交
83
{
S
Swen Schillig 已提交
84 85
	struct zfcp_adapter *adapter = (struct zfcp_adapter *) parm;
	struct zfcp_qdio_queue *queue = &adapter->req_q;
L
Linus Torvalds 已提交
86

J
Jan Glauber 已提交
87 88
	if (unlikely(qdio_err)) {
		zfcp_hba_dbf_event_qdio(adapter, qdio_err, first, count);
S
Swen Schillig 已提交
89 90 91
		zfcp_qdio_handler_error(adapter, 140);
		return;
	}
L
Linus Torvalds 已提交
92 93

	/* cleanup all SBALs being program-owned now */
S
Swen Schillig 已提交
94
	zfcp_qdio_zero_sbals(queue->sbal, first, count);
L
Linus Torvalds 已提交
95

S
Swen Schillig 已提交
96
	atomic_add(count, &queue->count);
L
Linus Torvalds 已提交
97 98 99
	wake_up(&adapter->request_wq);
}

100
static void zfcp_qdio_reqid_check(struct zfcp_adapter *adapter,
S
Swen Schillig 已提交
101
				  unsigned long req_id, int sbal_idx)
102 103 104 105 106
{
	struct zfcp_fsf_req *fsf_req;
	unsigned long flags;

	spin_lock_irqsave(&adapter->req_list_lock, flags);
107
	fsf_req = zfcp_reqlist_find(adapter, req_id);
108

109 110 111 112 113
	if (!fsf_req)
		/*
		 * Unknown request means that we have potentially memory
		 * corruption and must stop the machine immediatly.
		 */
S
Swen Schillig 已提交
114
		panic("error: unknown request id (%lx) on adapter %s.\n",
C
Christof Schmitt 已提交
115
		      req_id, dev_name(&adapter->ccw_device->dev));
116

117
	zfcp_reqlist_remove(adapter, fsf_req);
118 119
	spin_unlock_irqrestore(&adapter->req_list_lock, flags);

S
Swen Schillig 已提交
120
	fsf_req->sbal_response = sbal_idx;
S
Stefan Raspl 已提交
121
	fsf_req->qdio_inb_usage = atomic_read(&adapter->resp_q.count);
122 123 124
	zfcp_fsf_req_complete(fsf_req);
}

S
Swen Schillig 已提交
125
static void zfcp_qdio_resp_put_back(struct zfcp_adapter *adapter, int processed)
L
Linus Torvalds 已提交
126
{
S
Swen Schillig 已提交
127 128 129 130
	struct zfcp_qdio_queue *queue = &adapter->resp_q;
	struct ccw_device *cdev = adapter->ccw_device;
	u8 count, start = queue->first;
	unsigned int retval;
L
Linus Torvalds 已提交
131

S
Swen Schillig 已提交
132 133
	count = atomic_read(&queue->count) + processed;

J
Jan Glauber 已提交
134
	retval = do_QDIO(cdev, QDIO_FLAG_SYNC_INPUT, 0, start, count);
S
Swen Schillig 已提交
135 136 137 138 139 140 141 142 143 144 145

	if (unlikely(retval)) {
		atomic_set(&queue->count, count);
		/* FIXME: Recover this with an adapter reopen? */
	} else {
		queue->first += count;
		queue->first %= QDIO_MAX_BUFFERS_PER_Q;
		atomic_set(&queue->count, 0);
	}
}

J
Jan Glauber 已提交
146 147
static void zfcp_qdio_int_resp(struct ccw_device *cdev, unsigned int qdio_err,
			       int queue_no, int first, int count,
S
Swen Schillig 已提交
148 149 150 151
			       unsigned long parm)
{
	struct zfcp_adapter *adapter = (struct zfcp_adapter *) parm;
	struct zfcp_qdio_queue *queue = &adapter->resp_q;
152
	struct qdio_buffer_element *sbale;
S
Swen Schillig 已提交
153 154
	int sbal_idx, sbale_idx, sbal_no;

J
Jan Glauber 已提交
155 156
	if (unlikely(qdio_err)) {
		zfcp_hba_dbf_event_qdio(adapter, qdio_err, first, count);
S
Swen Schillig 已提交
157 158 159
		zfcp_qdio_handler_error(adapter, 147);
		return;
	}
L
Linus Torvalds 已提交
160 161 162 163 164

	/*
	 * go through all SBALs from input queue currently
	 * returned by QDIO layer
	 */
S
Swen Schillig 已提交
165 166
	for (sbal_no = 0; sbal_no < count; sbal_no++) {
		sbal_idx = (first + sbal_no) % QDIO_MAX_BUFFERS_PER_Q;
L
Linus Torvalds 已提交
167 168

		/* go through all SBALEs of SBAL */
S
Swen Schillig 已提交
169 170 171
		for (sbale_idx = 0; sbale_idx < QDIO_MAX_ELEMENTS_PER_BUFFER;
		     sbale_idx++) {
			sbale = zfcp_qdio_sbale(queue, sbal_idx, sbale_idx);
172
			zfcp_qdio_reqid_check(adapter,
S
Swen Schillig 已提交
173 174 175
					      (unsigned long) sbale->addr,
					      sbal_idx);
			if (likely(sbale->flags & SBAL_FLAGS_LAST_ENTRY))
L
Linus Torvalds 已提交
176 177 178
				break;
		};

S
Swen Schillig 已提交
179 180
		if (unlikely(!(sbale->flags & SBAL_FLAGS_LAST_ENTRY)))
			dev_warn(&adapter->ccw_device->dev,
181 182
				 "A QDIO protocol error occurred, "
				 "operations continue\n");
L
Linus Torvalds 已提交
183 184 185 186 187 188
	}

	/*
	 * put range of SBALs back to response queue
	 * (including SBALs which have already been free before)
	 */
S
Swen Schillig 已提交
189
	zfcp_qdio_resp_put_back(adapter, count);
L
Linus Torvalds 已提交
190 191 192
}

/**
S
Swen Schillig 已提交
193 194 195
 * zfcp_qdio_sbale_req - return ptr to SBALE of req_q for a struct zfcp_fsf_req
 * @fsf_req: pointer to struct fsf_req
 * Returns: pointer to qdio_buffer_element (SBALE) structure
L
Linus Torvalds 已提交
196
 */
197
struct qdio_buffer_element *zfcp_qdio_sbale_req(struct zfcp_fsf_req *req)
L
Linus Torvalds 已提交
198
{
S
Swen Schillig 已提交
199
	return zfcp_qdio_sbale(&req->adapter->req_q, req->sbal_last, 0);
L
Linus Torvalds 已提交
200 201 202
}

/**
S
Swen Schillig 已提交
203 204 205
 * zfcp_qdio_sbale_curr - return curr SBALE on req_q for a struct zfcp_fsf_req
 * @fsf_req: pointer to struct fsf_req
 * Returns: pointer to qdio_buffer_element (SBALE) structure
L
Linus Torvalds 已提交
206
 */
207
struct qdio_buffer_element *zfcp_qdio_sbale_curr(struct zfcp_fsf_req *req)
L
Linus Torvalds 已提交
208
{
S
Swen Schillig 已提交
209 210
	return zfcp_qdio_sbale(&req->adapter->req_q, req->sbal_last,
			       req->sbale_curr);
L
Linus Torvalds 已提交
211 212
}

S
Swen Schillig 已提交
213
static void zfcp_qdio_sbal_limit(struct zfcp_fsf_req *fsf_req, int max_sbals)
L
Linus Torvalds 已提交
214
{
S
Swen Schillig 已提交
215
	int count = atomic_read(&fsf_req->adapter->req_q.count);
L
Linus Torvalds 已提交
216
	count = min(count, max_sbals);
S
Swen Schillig 已提交
217 218
	fsf_req->sbal_limit = (fsf_req->sbal_first + count - 1)
					% QDIO_MAX_BUFFERS_PER_Q;
L
Linus Torvalds 已提交
219 220
}

221
static struct qdio_buffer_element *
L
Linus Torvalds 已提交
222 223
zfcp_qdio_sbal_chain(struct zfcp_fsf_req *fsf_req, unsigned long sbtype)
{
224
	struct qdio_buffer_element *sbale;
L
Linus Torvalds 已提交
225 226 227 228 229 230

	/* set last entry flag in current SBALE of current SBAL */
	sbale = zfcp_qdio_sbale_curr(fsf_req);
	sbale->flags |= SBAL_FLAGS_LAST_ENTRY;

	/* don't exceed last allowed SBAL */
231
	if (fsf_req->sbal_last == fsf_req->sbal_limit)
L
Linus Torvalds 已提交
232 233 234
		return NULL;

	/* set chaining flag in first SBALE of current SBAL */
S
Swen Schillig 已提交
235
	sbale = zfcp_qdio_sbale_req(fsf_req);
L
Linus Torvalds 已提交
236 237 238
	sbale->flags |= SBAL_FLAGS0_MORE_SBALS;

	/* calculate index of next SBAL */
239 240
	fsf_req->sbal_last++;
	fsf_req->sbal_last %= QDIO_MAX_BUFFERS_PER_Q;
L
Linus Torvalds 已提交
241 242 243 244 245 246 247 248 249 250 251 252 253 254

	/* keep this requests number of SBALs up-to-date */
	fsf_req->sbal_number++;

	/* start at first SBALE of new SBAL */
	fsf_req->sbale_curr = 0;

	/* set storage-block type for new SBAL */
	sbale = zfcp_qdio_sbale_curr(fsf_req);
	sbale->flags |= sbtype;

	return sbale;
}

255
static struct qdio_buffer_element *
L
Linus Torvalds 已提交
256 257 258 259 260 261 262 263
zfcp_qdio_sbale_next(struct zfcp_fsf_req *fsf_req, unsigned long sbtype)
{
	if (fsf_req->sbale_curr == ZFCP_LAST_SBALE_PER_SBAL)
		return zfcp_qdio_sbal_chain(fsf_req, sbtype);
	fsf_req->sbale_curr++;
	return zfcp_qdio_sbale_curr(fsf_req);
}

S
Swen Schillig 已提交
264
static void zfcp_qdio_undo_sbals(struct zfcp_fsf_req *fsf_req)
L
Linus Torvalds 已提交
265
{
S
Swen Schillig 已提交
266 267 268 269 270 271
	struct qdio_buffer **sbal = fsf_req->adapter->req_q.sbal;
	int first = fsf_req->sbal_first;
	int last = fsf_req->sbal_last;
	int count = (last - first + QDIO_MAX_BUFFERS_PER_Q) %
		QDIO_MAX_BUFFERS_PER_Q + 1;
	zfcp_qdio_zero_sbals(sbal, first, count);
L
Linus Torvalds 已提交
272 273
}

S
Swen Schillig 已提交
274 275 276
static int zfcp_qdio_fill_sbals(struct zfcp_fsf_req *fsf_req,
				unsigned int sbtype, void *start_addr,
				unsigned int total_length)
L
Linus Torvalds 已提交
277
{
278
	struct qdio_buffer_element *sbale;
L
Linus Torvalds 已提交
279 280 281
	unsigned long remaining, length;
	void *addr;

S
Swen Schillig 已提交
282
	/* split segment up */
L
Linus Torvalds 已提交
283 284
	for (addr = start_addr, remaining = total_length; remaining > 0;
	     addr += length, remaining -= length) {
S
Swen Schillig 已提交
285 286
		sbale = zfcp_qdio_sbale_next(fsf_req, sbtype);
		if (!sbale) {
287
			atomic_inc(&fsf_req->adapter->qdio_outb_full);
S
Swen Schillig 已提交
288
			zfcp_qdio_undo_sbals(fsf_req);
L
Linus Torvalds 已提交
289 290
			return -EINVAL;
		}
S
Swen Schillig 已提交
291 292

		/* new piece must not exceed next page boundary */
L
Linus Torvalds 已提交
293
		length = min(remaining,
S
Swen Schillig 已提交
294
			     (PAGE_SIZE - ((unsigned long)addr &
L
Linus Torvalds 已提交
295
					   (PAGE_SIZE - 1))));
S
Swen Schillig 已提交
296 297
		sbale->addr = addr;
		sbale->length = length;
L
Linus Torvalds 已提交
298
	}
S
Swen Schillig 已提交
299
	return 0;
L
Linus Torvalds 已提交
300 301 302 303 304 305 306 307
}

/**
 * zfcp_qdio_sbals_from_sg - fill SBALs from scatter-gather list
 * @fsf_req: request to be processed
 * @sbtype: SBALE flags
 * @sg: scatter-gather list
 * @max_sbals: upper bound for number of SBALs to be used
S
Swen Schillig 已提交
308
 * Returns: number of bytes, or error (negativ)
L
Linus Torvalds 已提交
309
 */
S
Swen Schillig 已提交
310 311
int zfcp_qdio_sbals_from_sg(struct zfcp_fsf_req *fsf_req, unsigned long sbtype,
			    struct scatterlist *sg, int max_sbals)
L
Linus Torvalds 已提交
312
{
313
	struct qdio_buffer_element *sbale;
S
Swen Schillig 已提交
314
	int retval, bytes = 0;
L
Linus Torvalds 已提交
315 316 317 318

	/* figure out last allowed SBAL */
	zfcp_qdio_sbal_limit(fsf_req, max_sbals);

S
Swen Schillig 已提交
319 320
	/* set storage-block type for this request */
	sbale = zfcp_qdio_sbale_req(fsf_req);
L
Linus Torvalds 已提交
321 322
	sbale->flags |= sbtype;

S
Swen Schillig 已提交
323 324 325 326 327 328
	for (; sg; sg = sg_next(sg)) {
		retval = zfcp_qdio_fill_sbals(fsf_req, sbtype, sg_virt(sg),
					      sg->length);
		if (retval < 0)
			return retval;
		bytes += sg->length;
L
Linus Torvalds 已提交
329
	}
S
Swen Schillig 已提交
330

L
Linus Torvalds 已提交
331 332 333
	/* assume that no other SBALEs are to follow in the same SBAL */
	sbale = zfcp_qdio_sbale_curr(fsf_req);
	sbale->flags |= SBAL_FLAGS_LAST_ENTRY;
S
Swen Schillig 已提交
334

L
Linus Torvalds 已提交
335 336 337 338
	return bytes;
}

/**
S
Swen Schillig 已提交
339 340 341
 * zfcp_qdio_send - set PCI flag in first SBALE and send req to QDIO
 * @fsf_req: pointer to struct zfcp_fsf_req
 * Returns: 0 on success, error otherwise
L
Linus Torvalds 已提交
342
 */
S
Swen Schillig 已提交
343
int zfcp_qdio_send(struct zfcp_fsf_req *fsf_req)
L
Linus Torvalds 已提交
344
{
S
Swen Schillig 已提交
345 346 347 348 349
	struct zfcp_adapter *adapter = fsf_req->adapter;
	struct zfcp_qdio_queue *req_q = &adapter->req_q;
	int first = fsf_req->sbal_first;
	int count = fsf_req->sbal_number;
	int retval, pci, pci_batch;
350
	struct qdio_buffer_element *sbale;
S
Swen Schillig 已提交
351 352

	/* acknowledgements for transferred buffers */
353
	pci_batch = adapter->req_q_pci_batch + count;
S
Swen Schillig 已提交
354 355 356 357 358 359 360 361 362
	if (unlikely(pci_batch >= ZFCP_QDIO_PCI_INTERVAL)) {
		pci_batch %= ZFCP_QDIO_PCI_INTERVAL;
		pci = first + count - (pci_batch + 1);
		pci %= QDIO_MAX_BUFFERS_PER_Q;
		sbale = zfcp_qdio_sbale(req_q, pci, 0);
		sbale->flags |= SBAL_FLAGS0_PCI;
	}

	retval = do_QDIO(adapter->ccw_device, QDIO_FLAG_SYNC_OUTPUT, 0, first,
J
Jan Glauber 已提交
363
			 count);
S
Swen Schillig 已提交
364 365 366 367 368 369 370 371 372
	if (unlikely(retval)) {
		zfcp_qdio_zero_sbals(req_q->sbal, first, count);
		return retval;
	}

	/* account for transferred buffers */
	atomic_sub(count, &req_q->count);
	req_q->first += count;
	req_q->first %= QDIO_MAX_BUFFERS_PER_Q;
373
	adapter->req_q_pci_batch = pci_batch;
S
Swen Schillig 已提交
374
	return 0;
L
Linus Torvalds 已提交
375 376
}

S
Swen Schillig 已提交
377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394
/**
 * zfcp_qdio_allocate - allocate queue memory and initialize QDIO data
 * @adapter: pointer to struct zfcp_adapter
 * Returns: -ENOMEM on memory allocation error or return value from
 *          qdio_allocate
 */
int zfcp_qdio_allocate(struct zfcp_adapter *adapter)
{
	struct qdio_initialize *init_data;

	if (zfcp_qdio_buffers_enqueue(adapter->req_q.sbal) ||
		   zfcp_qdio_buffers_enqueue(adapter->resp_q.sbal))
		return -ENOMEM;

	init_data = &adapter->qdio_init_data;

	init_data->cdev = adapter->ccw_device;
	init_data->q_format = QDIO_ZFCP_QFMT;
C
Christof Schmitt 已提交
395
	memcpy(init_data->adapter_name, dev_name(&adapter->ccw_device->dev), 8);
S
Swen Schillig 已提交
396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417
	ASCEBC(init_data->adapter_name, 8);
	init_data->qib_param_field_format = 0;
	init_data->qib_param_field = NULL;
	init_data->input_slib_elements = NULL;
	init_data->output_slib_elements = NULL;
	init_data->no_input_qs = 1;
	init_data->no_output_qs = 1;
	init_data->input_handler = zfcp_qdio_int_resp;
	init_data->output_handler = zfcp_qdio_int_req;
	init_data->int_parm = (unsigned long) adapter;
	init_data->flags = QDIO_INBOUND_0COPY_SBALS |
			QDIO_OUTBOUND_0COPY_SBALS | QDIO_USE_OUTBOUND_PCIS;
	init_data->input_sbal_addr_array =
			(void **) (adapter->resp_q.sbal);
	init_data->output_sbal_addr_array =
			(void **) (adapter->req_q.sbal);

	return qdio_allocate(init_data);
}

/**
 * zfcp_close_qdio - close qdio queues for an adapter
L
Linus Torvalds 已提交
418
 */
S
Swen Schillig 已提交
419
void zfcp_qdio_close(struct zfcp_adapter *adapter)
L
Linus Torvalds 已提交
420
{
S
Swen Schillig 已提交
421 422 423
	struct zfcp_qdio_queue *req_q;
	int first, count;

424
	if (!(atomic_read(&adapter->status) & ZFCP_STATUS_ADAPTER_QDIOUP))
S
Swen Schillig 已提交
425 426 427 428
		return;

	/* clear QDIOUP flag, thus do_QDIO is not called during qdio_shutdown */
	req_q = &adapter->req_q;
429
	spin_lock_bh(&adapter->req_q_lock);
S
Swen Schillig 已提交
430
	atomic_clear_mask(ZFCP_STATUS_ADAPTER_QDIOUP, &adapter->status);
431
	spin_unlock_bh(&adapter->req_q_lock);
S
Swen Schillig 已提交
432

J
Jan Glauber 已提交
433
	qdio_shutdown(adapter->ccw_device, QDIO_FLAG_CLEANUP_USING_CLEAR);
S
Swen Schillig 已提交
434 435 436 437 438 439 440

	/* cleanup used outbound sbals */
	count = atomic_read(&req_q->count);
	if (count < QDIO_MAX_BUFFERS_PER_Q) {
		first = (req_q->first + count) % QDIO_MAX_BUFFERS_PER_Q;
		count = QDIO_MAX_BUFFERS_PER_Q - count;
		zfcp_qdio_zero_sbals(req_q->sbal, first, count);
L
Linus Torvalds 已提交
441
	}
S
Swen Schillig 已提交
442 443
	req_q->first = 0;
	atomic_set(&req_q->count, 0);
444
	adapter->req_q_pci_batch = 0;
S
Swen Schillig 已提交
445 446
	adapter->resp_q.first = 0;
	atomic_set(&adapter->resp_q.count, 0);
L
Linus Torvalds 已提交
447 448
}

S
Swen Schillig 已提交
449 450 451 452 453 454 455
/**
 * zfcp_qdio_open - prepare and initialize response queue
 * @adapter: pointer to struct zfcp_adapter
 * Returns: 0 on success, otherwise -EIO
 */
int zfcp_qdio_open(struct zfcp_adapter *adapter)
{
456
	struct qdio_buffer_element *sbale;
S
Swen Schillig 已提交
457 458
	int cc;

459
	if (atomic_read(&adapter->status) & ZFCP_STATUS_ADAPTER_QDIOUP)
S
Swen Schillig 已提交
460 461
		return -EIO;

462 463
	if (qdio_establish(&adapter->qdio_init_data))
		goto failed_establish;
S
Swen Schillig 已提交
464

465
	if (qdio_activate(adapter->ccw_device))
S
Swen Schillig 已提交
466 467 468 469 470 471 472 473 474 475
		goto failed_qdio;

	for (cc = 0; cc < QDIO_MAX_BUFFERS_PER_Q; cc++) {
		sbale = &(adapter->resp_q.sbal[cc]->element[0]);
		sbale->length = 0;
		sbale->flags = SBAL_FLAGS_LAST_ENTRY;
		sbale->addr = NULL;
	}

	if (do_QDIO(adapter->ccw_device, QDIO_FLAG_SYNC_INPUT, 0, 0,
476
		     QDIO_MAX_BUFFERS_PER_Q))
S
Swen Schillig 已提交
477 478 479 480 481
		goto failed_qdio;

	/* set index of first avalable SBALS / number of available SBALS */
	adapter->req_q.first = 0;
	atomic_set(&adapter->req_q.count, QDIO_MAX_BUFFERS_PER_Q);
482
	adapter->req_q_pci_batch = 0;
S
Swen Schillig 已提交
483 484 485 486

	return 0;

failed_qdio:
J
Jan Glauber 已提交
487
	qdio_shutdown(adapter->ccw_device, QDIO_FLAG_CLEANUP_USING_CLEAR);
488 489 490
failed_establish:
	dev_err(&adapter->ccw_device->dev,
		"Setting up the QDIO connection to the FCP adapter failed\n");
S
Swen Schillig 已提交
491 492
	return -EIO;
}