blob: 49ea5add4abc88542ce84f57f3922e32788b917e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Andreas Herrmann4a9d2d82006-05-22 18:14:08 +02002 * This file is part of the zfcp device driver for
3 * FCP adapters for IBM System z9 and zSeries.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Andreas Herrmann4a9d2d82006-05-22 18:14:08 +02005 * (C) Copyright IBM Corp. 2002, 2006
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2, or (at your option)
10 * any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "zfcp_ext.h"
23
24static inline void zfcp_qdio_sbal_limit(struct zfcp_fsf_req *, int);
25static inline volatile struct qdio_buffer_element *zfcp_qdio_sbale_get
26 (struct zfcp_qdio_queue *, int, int);
27static inline volatile struct qdio_buffer_element *zfcp_qdio_sbale_resp
28 (struct zfcp_fsf_req *, int, int);
29static inline volatile struct qdio_buffer_element *zfcp_qdio_sbal_chain
30 (struct zfcp_fsf_req *, unsigned long);
31static inline volatile struct qdio_buffer_element *zfcp_qdio_sbale_next
32 (struct zfcp_fsf_req *, unsigned long);
33static inline int zfcp_qdio_sbals_zero(struct zfcp_qdio_queue *, int, int);
34static inline int zfcp_qdio_sbals_wipe(struct zfcp_fsf_req *);
35static inline void zfcp_qdio_sbale_fill
36 (struct zfcp_fsf_req *, unsigned long, void *, int);
37static inline int zfcp_qdio_sbals_from_segment
38 (struct zfcp_fsf_req *, unsigned long, void *, unsigned long);
39static inline int zfcp_qdio_sbals_from_buffer
40 (struct zfcp_fsf_req *, unsigned long, void *, unsigned long, int);
41
42static qdio_handler_t zfcp_qdio_request_handler;
43static qdio_handler_t zfcp_qdio_response_handler;
44static int zfcp_qdio_handler_error_check(struct zfcp_adapter *,
Maxim Shchetynin8a36e452005-09-13 21:50:38 +020045 unsigned int, unsigned int, unsigned int, int, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47#define ZFCP_LOG_AREA ZFCP_LOG_AREA_QDIO
48
49/*
50 * Allocates BUFFER memory to each of the pointers of the qdio_buffer_t
51 * array in the adapter struct.
52 * Cur_buf is the pointer array and count can be any number of required
53 * buffers, the page-fitting arithmetic is done entirely within this funciton.
54 *
55 * returns: number of buffers allocated
56 * locks: must only be called with zfcp_data.config_sema taken
57 */
58static int
59zfcp_qdio_buffers_enqueue(struct qdio_buffer **cur_buf, int count)
60{
61 int buf_pos;
62 int qdio_buffers_per_page;
63 int page_pos = 0;
64 struct qdio_buffer *first_in_page = NULL;
65
66 qdio_buffers_per_page = PAGE_SIZE / sizeof (struct qdio_buffer);
67 ZFCP_LOG_TRACE("buffers_per_page=%d\n", qdio_buffers_per_page);
68
69 for (buf_pos = 0; buf_pos < count; buf_pos++) {
70 if (page_pos == 0) {
71 cur_buf[buf_pos] = (struct qdio_buffer *)
72 get_zeroed_page(GFP_KERNEL);
73 if (cur_buf[buf_pos] == NULL) {
74 ZFCP_LOG_INFO("error: allocation of "
75 "QDIO buffer failed \n");
76 goto out;
77 }
78 first_in_page = cur_buf[buf_pos];
79 } else {
80 cur_buf[buf_pos] = first_in_page + page_pos;
81
82 }
83 /* was initialised to zero */
84 page_pos++;
85 page_pos %= qdio_buffers_per_page;
86 }
87 out:
88 return buf_pos;
89}
90
91/*
92 * Frees BUFFER memory for each of the pointers of the struct qdio_buffer array
93 * in the adapter struct cur_buf is the pointer array and count can be any
94 * number of buffers in the array that should be freed starting from buffer 0
95 *
96 * locks: must only be called with zfcp_data.config_sema taken
97 */
98static void
99zfcp_qdio_buffers_dequeue(struct qdio_buffer **cur_buf, int count)
100{
101 int buf_pos;
102 int qdio_buffers_per_page;
103
104 qdio_buffers_per_page = PAGE_SIZE / sizeof (struct qdio_buffer);
105 ZFCP_LOG_TRACE("buffers_per_page=%d\n", qdio_buffers_per_page);
106
107 for (buf_pos = 0; buf_pos < count; buf_pos += qdio_buffers_per_page)
108 free_page((unsigned long) cur_buf[buf_pos]);
109 return;
110}
111
112/* locks: must only be called with zfcp_data.config_sema taken */
113int
114zfcp_qdio_allocate_queues(struct zfcp_adapter *adapter)
115{
116 int buffer_count;
117 int retval = 0;
118
119 buffer_count =
120 zfcp_qdio_buffers_enqueue(&(adapter->request_queue.buffer[0]),
121 QDIO_MAX_BUFFERS_PER_Q);
122 if (buffer_count < QDIO_MAX_BUFFERS_PER_Q) {
123 ZFCP_LOG_DEBUG("only %d QDIO buffers allocated for request "
124 "queue\n", buffer_count);
125 zfcp_qdio_buffers_dequeue(&(adapter->request_queue.buffer[0]),
126 buffer_count);
127 retval = -ENOMEM;
128 goto out;
129 }
130
131 buffer_count =
132 zfcp_qdio_buffers_enqueue(&(adapter->response_queue.buffer[0]),
133 QDIO_MAX_BUFFERS_PER_Q);
134 if (buffer_count < QDIO_MAX_BUFFERS_PER_Q) {
135 ZFCP_LOG_DEBUG("only %d QDIO buffers allocated for response "
136 "queue", buffer_count);
137 zfcp_qdio_buffers_dequeue(&(adapter->response_queue.buffer[0]),
138 buffer_count);
139 ZFCP_LOG_TRACE("freeing request_queue buffers\n");
140 zfcp_qdio_buffers_dequeue(&(adapter->request_queue.buffer[0]),
141 QDIO_MAX_BUFFERS_PER_Q);
142 retval = -ENOMEM;
143 goto out;
144 }
145 out:
146 return retval;
147}
148
149/* locks: must only be called with zfcp_data.config_sema taken */
150void
151zfcp_qdio_free_queues(struct zfcp_adapter *adapter)
152{
153 ZFCP_LOG_TRACE("freeing request_queue buffers\n");
154 zfcp_qdio_buffers_dequeue(&(adapter->request_queue.buffer[0]),
155 QDIO_MAX_BUFFERS_PER_Q);
156
157 ZFCP_LOG_TRACE("freeing response_queue buffers\n");
158 zfcp_qdio_buffers_dequeue(&(adapter->response_queue.buffer[0]),
159 QDIO_MAX_BUFFERS_PER_Q);
160}
161
162int
163zfcp_qdio_allocate(struct zfcp_adapter *adapter)
164{
165 struct qdio_initialize *init_data;
166
167 init_data = &adapter->qdio_init_data;
168
169 init_data->cdev = adapter->ccw_device;
170 init_data->q_format = QDIO_SCSI_QFMT;
Andreas Herrmann06506d02006-05-22 18:18:19 +0200171 memcpy(init_data->adapter_name, zfcp_get_busid_by_adapter(adapter), 8);
172 ASCEBC(init_data->adapter_name, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 init_data->qib_param_field_format = 0;
174 init_data->qib_param_field = NULL;
175 init_data->input_slib_elements = NULL;
176 init_data->output_slib_elements = NULL;
177 init_data->min_input_threshold = ZFCP_MIN_INPUT_THRESHOLD;
178 init_data->max_input_threshold = ZFCP_MAX_INPUT_THRESHOLD;
179 init_data->min_output_threshold = ZFCP_MIN_OUTPUT_THRESHOLD;
180 init_data->max_output_threshold = ZFCP_MAX_OUTPUT_THRESHOLD;
181 init_data->no_input_qs = 1;
182 init_data->no_output_qs = 1;
183 init_data->input_handler = zfcp_qdio_response_handler;
184 init_data->output_handler = zfcp_qdio_request_handler;
185 init_data->int_parm = (unsigned long) adapter;
186 init_data->flags = QDIO_INBOUND_0COPY_SBALS |
187 QDIO_OUTBOUND_0COPY_SBALS | QDIO_USE_OUTBOUND_PCIS;
188 init_data->input_sbal_addr_array =
189 (void **) (adapter->response_queue.buffer);
190 init_data->output_sbal_addr_array =
191 (void **) (adapter->request_queue.buffer);
192
193 return qdio_allocate(init_data);
194}
195
196/*
197 * function: zfcp_qdio_handler_error_check
198 *
199 * purpose: called by the response handler to determine error condition
200 *
201 * returns: error flag
202 *
203 */
204static inline int
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200205zfcp_qdio_handler_error_check(struct zfcp_adapter *adapter, unsigned int status,
206 unsigned int qdio_error, unsigned int siga_error,
207 int first_element, int elements_processed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208{
209 int retval = 0;
210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 if (unlikely(status & QDIO_STATUS_LOOK_FOR_ERROR)) {
212 retval = -EIO;
213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 ZFCP_LOG_INFO("QDIO problem occurred (status=0x%x, "
215 "qdio_error=0x%x, siga_error=0x%x)\n",
216 status, qdio_error, siga_error);
217
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200218 zfcp_hba_dbf_event_qdio(adapter, status, qdio_error, siga_error,
219 first_element, elements_processed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 /*
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200221 * Restarting IO on the failed adapter from scratch.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 * Since we have been using this adapter, it is save to assume
223 * that it is not failed but recoverable. The card seems to
224 * report link-up events by self-initiated queue shutdown.
225 * That is why we need to clear the the link-down flag
226 * which is set again in case we have missed by a mile.
227 */
228 zfcp_erp_adapter_reopen(
229 adapter,
230 ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED |
231 ZFCP_STATUS_COMMON_ERP_FAILED);
232 }
233 return retval;
234}
235
236/*
237 * function: zfcp_qdio_request_handler
238 *
239 * purpose: is called by QDIO layer for completed SBALs in request queue
240 *
241 * returns: (void)
242 */
243static void
244zfcp_qdio_request_handler(struct ccw_device *ccw_device,
245 unsigned int status,
246 unsigned int qdio_error,
247 unsigned int siga_error,
248 unsigned int queue_number,
249 int first_element,
250 int elements_processed,
251 unsigned long int_parm)
252{
253 struct zfcp_adapter *adapter;
254 struct zfcp_qdio_queue *queue;
255
256 adapter = (struct zfcp_adapter *) int_parm;
257 queue = &adapter->request_queue;
258
259 ZFCP_LOG_DEBUG("adapter %s, first=%d, elements_processed=%d\n",
260 zfcp_get_busid_by_adapter(adapter),
261 first_element, elements_processed);
262
263 if (unlikely(zfcp_qdio_handler_error_check(adapter, status, qdio_error,
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200264 siga_error, first_element,
265 elements_processed)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 goto out;
267 /*
268 * we stored address of struct zfcp_adapter data structure
269 * associated with irq in int_parm
270 */
271
272 /* cleanup all SBALs being program-owned now */
273 zfcp_qdio_zero_sbals(queue->buffer, first_element, elements_processed);
274
275 /* increase free space in outbound queue */
276 atomic_add(elements_processed, &queue->free_count);
277 ZFCP_LOG_DEBUG("free_count=%d\n", atomic_read(&queue->free_count));
278 wake_up(&adapter->request_wq);
279 ZFCP_LOG_DEBUG("elements_processed=%d, free count=%d\n",
280 elements_processed, atomic_read(&queue->free_count));
281 out:
282 return;
283}
284
285/*
286 * function: zfcp_qdio_response_handler
287 *
288 * purpose: is called by QDIO layer for completed SBALs in response queue
289 *
290 * returns: (void)
291 */
292static void
293zfcp_qdio_response_handler(struct ccw_device *ccw_device,
294 unsigned int status,
295 unsigned int qdio_error,
296 unsigned int siga_error,
297 unsigned int queue_number,
298 int first_element,
299 int elements_processed,
300 unsigned long int_parm)
301{
302 struct zfcp_adapter *adapter;
303 struct zfcp_qdio_queue *queue;
304 int buffer_index;
305 int i;
306 struct qdio_buffer *buffer;
307 int retval = 0;
308 u8 count;
309 u8 start;
310 volatile struct qdio_buffer_element *buffere = NULL;
311 int buffere_index;
312
313 adapter = (struct zfcp_adapter *) int_parm;
314 queue = &adapter->response_queue;
315
316 if (unlikely(zfcp_qdio_handler_error_check(adapter, status, qdio_error,
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200317 siga_error, first_element,
318 elements_processed)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 goto out;
320
321 /*
322 * we stored address of struct zfcp_adapter data structure
323 * associated with irq in int_parm
324 */
325
326 buffere = &(queue->buffer[first_element]->element[0]);
327 ZFCP_LOG_DEBUG("first BUFFERE flags=0x%x\n", buffere->flags);
328 /*
329 * go through all SBALs from input queue currently
330 * returned by QDIO layer
331 */
332
333 for (i = 0; i < elements_processed; i++) {
334
335 buffer_index = first_element + i;
336 buffer_index %= QDIO_MAX_BUFFERS_PER_Q;
337 buffer = queue->buffer[buffer_index];
338
339 /* go through all SBALEs of SBAL */
340 for (buffere_index = 0;
341 buffere_index < QDIO_MAX_ELEMENTS_PER_BUFFER;
342 buffere_index++) {
343
344 /* look for QDIO request identifiers in SB */
345 buffere = &buffer->element[buffere_index];
346 retval = zfcp_qdio_reqid_check(adapter,
347 (void *) buffere->addr);
348
349 if (retval) {
350 ZFCP_LOG_NORMAL("bug: unexpected inbound "
351 "packet on adapter %s "
352 "(reqid=0x%lx, "
353 "first_element=%d, "
354 "elements_processed=%d)\n",
355 zfcp_get_busid_by_adapter(adapter),
356 (unsigned long) buffere->addr,
357 first_element,
358 elements_processed);
359 ZFCP_LOG_NORMAL("hex dump of inbound buffer "
360 "at address %p "
361 "(buffer_index=%d, "
362 "buffere_index=%d)\n", buffer,
363 buffer_index, buffere_index);
364 ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_NORMAL,
365 (char *) buffer, SBAL_SIZE);
366 }
367 /*
368 * A single used SBALE per inbound SBALE has been
369 * implemented by QDIO so far. Hope they will
370 * do some optimisation. Will need to change to
371 * unlikely() then.
372 */
373 if (likely(buffere->flags & SBAL_FLAGS_LAST_ENTRY))
374 break;
375 };
376
377 if (unlikely(!(buffere->flags & SBAL_FLAGS_LAST_ENTRY))) {
378 ZFCP_LOG_NORMAL("bug: End of inbound data "
379 "not marked!\n");
380 }
381 }
382
383 /*
384 * put range of SBALs back to response queue
385 * (including SBALs which have already been free before)
386 */
387 count = atomic_read(&queue->free_count) + elements_processed;
388 start = queue->free_index;
389
390 ZFCP_LOG_TRACE("calling do_QDIO on adapter %s (flags=0x%x, "
391 "queue_no=%i, index_in_queue=%i, count=%i, "
392 "buffers=0x%lx\n",
393 zfcp_get_busid_by_adapter(adapter),
394 QDIO_FLAG_SYNC_INPUT | QDIO_FLAG_UNDER_INTERRUPT,
395 0, start, count, (unsigned long) &queue->buffer[start]);
396
397 retval = do_QDIO(ccw_device,
398 QDIO_FLAG_SYNC_INPUT | QDIO_FLAG_UNDER_INTERRUPT,
399 0, start, count, NULL);
400
401 if (unlikely(retval)) {
402 atomic_set(&queue->free_count, count);
403 ZFCP_LOG_DEBUG("clearing of inbound data regions failed, "
404 "queues may be down "
405 "(count=%d, start=%d, retval=%d)\n",
406 count, start, retval);
407 } else {
408 queue->free_index += count;
409 queue->free_index %= QDIO_MAX_BUFFERS_PER_Q;
410 atomic_set(&queue->free_count, 0);
411 ZFCP_LOG_TRACE("%i buffers enqueued to response "
412 "queue at position %i\n", count, start);
413 }
414 out:
415 return;
416}
417
418/*
419 * function: zfcp_qdio_reqid_check
420 *
421 * purpose: checks for valid reqids or unsolicited status
422 *
423 * returns: 0 - valid request id or unsolicited status
424 * !0 - otherwise
425 */
426int
427zfcp_qdio_reqid_check(struct zfcp_adapter *adapter, void *sbale_addr)
428{
429 struct zfcp_fsf_req *fsf_req;
Heiko Carstens38c54ee2006-07-03 17:32:21 -0700430 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
432 /* invalid (per convention used in this driver) */
433 if (unlikely(!sbale_addr)) {
434 ZFCP_LOG_NORMAL("bug: invalid reqid\n");
Andreas Herrmann1db2c9c2005-06-13 13:20:35 +0200435 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 }
437
438 /* valid request id and thus (hopefully :) valid fsf_req address */
439 fsf_req = (struct zfcp_fsf_req *) sbale_addr;
440
Andreas Herrmann1db2c9c2005-06-13 13:20:35 +0200441 /* serialize with zfcp_fsf_req_dismiss_all */
Heiko Carstens38c54ee2006-07-03 17:32:21 -0700442 spin_lock_irqsave(&adapter->fsf_req_list_lock, flags);
Andreas Herrmann1db2c9c2005-06-13 13:20:35 +0200443 if (list_empty(&adapter->fsf_req_list_head)) {
Heiko Carstens38c54ee2006-07-03 17:32:21 -0700444 spin_unlock_irqrestore(&adapter->fsf_req_list_lock, flags);
Andreas Herrmann1db2c9c2005-06-13 13:20:35 +0200445 return 0;
446 }
447 list_del(&fsf_req->list);
448 atomic_dec(&adapter->fsf_reqs_active);
Heiko Carstens38c54ee2006-07-03 17:32:21 -0700449 spin_unlock_irqrestore(&adapter->fsf_req_list_lock, flags);
450
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 if (unlikely(adapter != fsf_req->adapter)) {
452 ZFCP_LOG_NORMAL("bug: invalid reqid (fsf_req=%p, "
453 "fsf_req->adapter=%p, adapter=%p)\n",
454 fsf_req, fsf_req->adapter, adapter);
Andreas Herrmann1db2c9c2005-06-13 13:20:35 +0200455 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 }
457
458 /* finish the FSF request */
459 zfcp_fsf_req_complete(fsf_req);
Andreas Herrmann1db2c9c2005-06-13 13:20:35 +0200460
461 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462}
463
464/**
465 * zfcp_qdio_sbale_get - return pointer to SBALE of qdio_queue
466 * @queue: queue from which SBALE should be returned
467 * @sbal: specifies number of SBAL in queue
468 * @sbale: specifes number of SBALE in SBAL
469 */
470static inline volatile struct qdio_buffer_element *
471zfcp_qdio_sbale_get(struct zfcp_qdio_queue *queue, int sbal, int sbale)
472{
473 return &queue->buffer[sbal]->element[sbale];
474}
475
476/**
477 * zfcp_qdio_sbale_req - return pointer to SBALE of request_queue for
478 * a struct zfcp_fsf_req
479 */
480inline volatile struct qdio_buffer_element *
481zfcp_qdio_sbale_req(struct zfcp_fsf_req *fsf_req, int sbal, int sbale)
482{
483 return zfcp_qdio_sbale_get(&fsf_req->adapter->request_queue,
484 sbal, sbale);
485}
486
487/**
488 * zfcp_qdio_sbale_resp - return pointer to SBALE of response_queue for
489 * a struct zfcp_fsf_req
490 */
491static inline volatile struct qdio_buffer_element *
492zfcp_qdio_sbale_resp(struct zfcp_fsf_req *fsf_req, int sbal, int sbale)
493{
494 return zfcp_qdio_sbale_get(&fsf_req->adapter->response_queue,
495 sbal, sbale);
496}
497
498/**
499 * zfcp_qdio_sbale_curr - return current SBALE on request_queue for
500 * a struct zfcp_fsf_req
501 */
502inline volatile struct qdio_buffer_element *
503zfcp_qdio_sbale_curr(struct zfcp_fsf_req *fsf_req)
504{
505 return zfcp_qdio_sbale_req(fsf_req, fsf_req->sbal_curr,
506 fsf_req->sbale_curr);
507}
508
509/**
510 * zfcp_qdio_sbal_limit - determine maximum number of SBALs that can be used
511 * on the request_queue for a struct zfcp_fsf_req
512 * @fsf_req: the number of the last SBAL that can be used is stored herein
513 * @max_sbals: used to pass an upper limit for the number of SBALs
514 *
515 * Note: We can assume at least one free SBAL in the request_queue when called.
516 */
517static inline void
518zfcp_qdio_sbal_limit(struct zfcp_fsf_req *fsf_req, int max_sbals)
519{
520 int count = atomic_read(&fsf_req->adapter->request_queue.free_count);
521 count = min(count, max_sbals);
522 fsf_req->sbal_last = fsf_req->sbal_first;
523 fsf_req->sbal_last += (count - 1);
524 fsf_req->sbal_last %= QDIO_MAX_BUFFERS_PER_Q;
525}
526
527/**
528 * zfcp_qdio_sbal_chain - chain SBALs if more than one SBAL is needed for a
529 * request
530 * @fsf_req: zfcp_fsf_req to be processed
531 * @sbtype: SBAL flags which have to be set in first SBALE of new SBAL
532 *
533 * This function changes sbal_curr, sbale_curr, sbal_number of fsf_req.
534 */
535static inline volatile struct qdio_buffer_element *
536zfcp_qdio_sbal_chain(struct zfcp_fsf_req *fsf_req, unsigned long sbtype)
537{
538 volatile struct qdio_buffer_element *sbale;
539
540 /* set last entry flag in current SBALE of current SBAL */
541 sbale = zfcp_qdio_sbale_curr(fsf_req);
542 sbale->flags |= SBAL_FLAGS_LAST_ENTRY;
543
544 /* don't exceed last allowed SBAL */
545 if (fsf_req->sbal_curr == fsf_req->sbal_last)
546 return NULL;
547
548 /* set chaining flag in first SBALE of current SBAL */
549 sbale = zfcp_qdio_sbale_req(fsf_req, fsf_req->sbal_curr, 0);
550 sbale->flags |= SBAL_FLAGS0_MORE_SBALS;
551
552 /* calculate index of next SBAL */
553 fsf_req->sbal_curr++;
554 fsf_req->sbal_curr %= QDIO_MAX_BUFFERS_PER_Q;
555
556 /* keep this requests number of SBALs up-to-date */
557 fsf_req->sbal_number++;
558
559 /* start at first SBALE of new SBAL */
560 fsf_req->sbale_curr = 0;
561
562 /* set storage-block type for new SBAL */
563 sbale = zfcp_qdio_sbale_curr(fsf_req);
564 sbale->flags |= sbtype;
565
566 return sbale;
567}
568
569/**
570 * zfcp_qdio_sbale_next - switch to next SBALE, chain SBALs if needed
571 */
572static inline volatile struct qdio_buffer_element *
573zfcp_qdio_sbale_next(struct zfcp_fsf_req *fsf_req, unsigned long sbtype)
574{
575 if (fsf_req->sbale_curr == ZFCP_LAST_SBALE_PER_SBAL)
576 return zfcp_qdio_sbal_chain(fsf_req, sbtype);
577
578 fsf_req->sbale_curr++;
579
580 return zfcp_qdio_sbale_curr(fsf_req);
581}
582
583/**
584 * zfcp_qdio_sbals_zero - initialize SBALs between first and last in queue
585 * with zero from
586 */
587static inline int
588zfcp_qdio_sbals_zero(struct zfcp_qdio_queue *queue, int first, int last)
589{
590 struct qdio_buffer **buf = queue->buffer;
591 int curr = first;
592 int count = 0;
593
594 for(;;) {
595 curr %= QDIO_MAX_BUFFERS_PER_Q;
596 count++;
597 memset(buf[curr], 0, sizeof(struct qdio_buffer));
598 if (curr == last)
599 break;
600 curr++;
601 }
602 return count;
603}
604
605
606/**
607 * zfcp_qdio_sbals_wipe - reset all changes in SBALs for an fsf_req
608 */
609static inline int
610zfcp_qdio_sbals_wipe(struct zfcp_fsf_req *fsf_req)
611{
612 return zfcp_qdio_sbals_zero(&fsf_req->adapter->request_queue,
613 fsf_req->sbal_first, fsf_req->sbal_curr);
614}
615
616
617/**
618 * zfcp_qdio_sbale_fill - set address and lenght in current SBALE
619 * on request_queue
620 */
621static inline void
622zfcp_qdio_sbale_fill(struct zfcp_fsf_req *fsf_req, unsigned long sbtype,
623 void *addr, int length)
624{
625 volatile struct qdio_buffer_element *sbale;
626
627 sbale = zfcp_qdio_sbale_curr(fsf_req);
628 sbale->addr = addr;
629 sbale->length = length;
630}
631
632/**
633 * zfcp_qdio_sbals_from_segment - map memory segment to SBALE(s)
634 * @fsf_req: request to be processed
635 * @sbtype: SBALE flags
636 * @start_addr: address of memory segment
637 * @total_length: length of memory segment
638 *
639 * Alignment and length of the segment determine how many SBALEs are needed
640 * for the memory segment.
641 */
642static inline int
643zfcp_qdio_sbals_from_segment(struct zfcp_fsf_req *fsf_req, unsigned long sbtype,
644 void *start_addr, unsigned long total_length)
645{
646 unsigned long remaining, length;
647 void *addr;
648
649 /* split segment up heeding page boundaries */
650 for (addr = start_addr, remaining = total_length; remaining > 0;
651 addr += length, remaining -= length) {
652 /* get next free SBALE for new piece */
653 if (NULL == zfcp_qdio_sbale_next(fsf_req, sbtype)) {
654 /* no SBALE left, clean up and leave */
655 zfcp_qdio_sbals_wipe(fsf_req);
656 return -EINVAL;
657 }
658 /* calculate length of new piece */
659 length = min(remaining,
660 (PAGE_SIZE - ((unsigned long) addr &
661 (PAGE_SIZE - 1))));
662 /* fill current SBALE with calculated piece */
663 zfcp_qdio_sbale_fill(fsf_req, sbtype, addr, length);
664 }
665 return total_length;
666}
667
668
669/**
670 * zfcp_qdio_sbals_from_sg - fill SBALs from scatter-gather list
671 * @fsf_req: request to be processed
672 * @sbtype: SBALE flags
673 * @sg: scatter-gather list
674 * @sg_count: number of elements in scatter-gather list
675 * @max_sbals: upper bound for number of SBALs to be used
676 */
677inline int
678zfcp_qdio_sbals_from_sg(struct zfcp_fsf_req *fsf_req, unsigned long sbtype,
679 struct scatterlist *sg, int sg_count, int max_sbals)
680{
681 int sg_index;
682 struct scatterlist *sg_segment;
683 int retval;
684 volatile struct qdio_buffer_element *sbale;
685 int bytes = 0;
686
687 /* figure out last allowed SBAL */
688 zfcp_qdio_sbal_limit(fsf_req, max_sbals);
689
690 /* set storage-block type for current SBAL */
691 sbale = zfcp_qdio_sbale_req(fsf_req, fsf_req->sbal_curr, 0);
692 sbale->flags |= sbtype;
693
694 /* process all segements of scatter-gather list */
695 for (sg_index = 0, sg_segment = sg, bytes = 0;
696 sg_index < sg_count;
697 sg_index++, sg_segment++) {
698 retval = zfcp_qdio_sbals_from_segment(
699 fsf_req,
700 sbtype,
701 zfcp_sg_to_address(sg_segment),
702 sg_segment->length);
703 if (retval < 0) {
704 bytes = retval;
705 goto out;
706 } else
707 bytes += retval;
708 }
709 /* assume that no other SBALEs are to follow in the same SBAL */
710 sbale = zfcp_qdio_sbale_curr(fsf_req);
711 sbale->flags |= SBAL_FLAGS_LAST_ENTRY;
712out:
713 return bytes;
714}
715
716
717/**
718 * zfcp_qdio_sbals_from_buffer - fill SBALs from buffer
719 * @fsf_req: request to be processed
720 * @sbtype: SBALE flags
721 * @buffer: data buffer
722 * @length: length of buffer
723 * @max_sbals: upper bound for number of SBALs to be used
724 */
725static inline int
726zfcp_qdio_sbals_from_buffer(struct zfcp_fsf_req *fsf_req, unsigned long sbtype,
727 void *buffer, unsigned long length, int max_sbals)
728{
729 struct scatterlist sg_segment;
730
731 zfcp_address_to_sg(buffer, &sg_segment);
732 sg_segment.length = length;
733
734 return zfcp_qdio_sbals_from_sg(fsf_req, sbtype, &sg_segment, 1,
735 max_sbals);
736}
737
738
739/**
740 * zfcp_qdio_sbals_from_scsicmnd - fill SBALs from scsi command
741 * @fsf_req: request to be processed
742 * @sbtype: SBALE flags
743 * @scsi_cmnd: either scatter-gather list or buffer contained herein is used
744 * to fill SBALs
745 */
746inline int
747zfcp_qdio_sbals_from_scsicmnd(struct zfcp_fsf_req *fsf_req,
748 unsigned long sbtype, struct scsi_cmnd *scsi_cmnd)
749{
750 if (scsi_cmnd->use_sg) {
751 return zfcp_qdio_sbals_from_sg(fsf_req, sbtype,
752 (struct scatterlist *)
753 scsi_cmnd->request_buffer,
754 scsi_cmnd->use_sg,
755 ZFCP_MAX_SBALS_PER_REQ);
756 } else {
757 return zfcp_qdio_sbals_from_buffer(fsf_req, sbtype,
758 scsi_cmnd->request_buffer,
759 scsi_cmnd->request_bufflen,
760 ZFCP_MAX_SBALS_PER_REQ);
761 }
762}
763
764/**
765 * zfcp_qdio_determine_pci - set PCI flag in first SBALE on qdio queue if needed
766 */
767int
768zfcp_qdio_determine_pci(struct zfcp_qdio_queue *req_queue,
769 struct zfcp_fsf_req *fsf_req)
770{
771 int new_distance_from_int;
772 int pci_pos;
773 volatile struct qdio_buffer_element *sbale;
774
775 new_distance_from_int = req_queue->distance_from_int +
776 fsf_req->sbal_number;
777
778 if (unlikely(new_distance_from_int >= ZFCP_QDIO_PCI_INTERVAL)) {
779 new_distance_from_int %= ZFCP_QDIO_PCI_INTERVAL;
780 pci_pos = fsf_req->sbal_first;
781 pci_pos += fsf_req->sbal_number;
782 pci_pos -= new_distance_from_int;
783 pci_pos -= 1;
784 pci_pos %= QDIO_MAX_BUFFERS_PER_Q;
785 sbale = zfcp_qdio_sbale_req(fsf_req, pci_pos, 0);
786 sbale->flags |= SBAL_FLAGS0_PCI;
787 }
788 return new_distance_from_int;
789}
790
791/*
792 * function: zfcp_zero_sbals
793 *
794 * purpose: zeros specified range of SBALs
795 *
796 * returns:
797 */
798void
799zfcp_qdio_zero_sbals(struct qdio_buffer *buf[], int first, int clean_count)
800{
801 int cur_pos;
802 int index;
803
804 for (cur_pos = first; cur_pos < (first + clean_count); cur_pos++) {
805 index = cur_pos % QDIO_MAX_BUFFERS_PER_Q;
806 memset(buf[index], 0, sizeof (struct qdio_buffer));
807 ZFCP_LOG_TRACE("zeroing BUFFER %d at address %p\n",
808 index, buf[index]);
809 }
810}
811
812#undef ZFCP_LOG_AREA