[SCSI] zfcp: Remove obsolete erp_dbf trace
[safe/jmp/linux-2.6] / drivers / s390 / scsi / zfcp_qdio.c
1 /*
2  * This file is part of the zfcp device driver for
3  * FCP adapters for IBM System z9 and zSeries.
4  *
5  * (C) Copyright IBM Corp. 2002, 2006
6  *
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
22 #include "zfcp_ext.h"
23
24 static void zfcp_qdio_sbal_limit(struct zfcp_fsf_req *, int);
25 static inline volatile struct qdio_buffer_element *zfcp_qdio_sbale_get
26         (struct zfcp_qdio_queue *, int, int);
27 static inline volatile struct qdio_buffer_element *zfcp_qdio_sbale_resp
28         (struct zfcp_fsf_req *, int, int);
29 static volatile struct qdio_buffer_element *zfcp_qdio_sbal_chain
30         (struct zfcp_fsf_req *, unsigned long);
31 static volatile struct qdio_buffer_element *zfcp_qdio_sbale_next
32         (struct zfcp_fsf_req *, unsigned long);
33 static int zfcp_qdio_sbals_zero(struct zfcp_qdio_queue *, int, int);
34 static inline int zfcp_qdio_sbals_wipe(struct zfcp_fsf_req *);
35 static void zfcp_qdio_sbale_fill
36         (struct zfcp_fsf_req *, unsigned long, void *, int);
37 static int zfcp_qdio_sbals_from_segment
38         (struct zfcp_fsf_req *, unsigned long, void *, unsigned long);
39
40 static qdio_handler_t zfcp_qdio_request_handler;
41 static qdio_handler_t zfcp_qdio_response_handler;
42 static int zfcp_qdio_handler_error_check(struct zfcp_adapter *,
43         unsigned int, unsigned int, unsigned int, int, int);
44
45 #define ZFCP_LOG_AREA                   ZFCP_LOG_AREA_QDIO
46
47 /*
48  * Frees BUFFER memory for each of the pointers of the struct qdio_buffer array
49  * in the adapter struct sbuf is the pointer array.
50  *
51  * locks:       must only be called with zfcp_data.config_sema taken
52  */
53 static void
54 zfcp_qdio_buffers_dequeue(struct qdio_buffer **sbuf)
55 {
56         int pos;
57
58         for (pos = 0; pos < QDIO_MAX_BUFFERS_PER_Q; pos += QBUFF_PER_PAGE)
59                 free_page((unsigned long) sbuf[pos]);
60 }
61
62 /*
63  * Allocates BUFFER memory to each of the pointers of the qdio_buffer_t
64  * array in the adapter struct.
65  * Cur_buf is the pointer array
66  *
67  * returns:     zero on success else -ENOMEM
68  * locks:       must only be called with zfcp_data.config_sema taken
69  */
70 static int
71 zfcp_qdio_buffers_enqueue(struct qdio_buffer **sbuf)
72 {
73         int pos;
74
75         for (pos = 0; pos < QDIO_MAX_BUFFERS_PER_Q; pos += QBUFF_PER_PAGE) {
76                 sbuf[pos] = (struct qdio_buffer *) get_zeroed_page(GFP_KERNEL);
77                 if (!sbuf[pos]) {
78                         zfcp_qdio_buffers_dequeue(sbuf);
79                         return -ENOMEM;
80                 }
81         }
82         for (pos = 0; pos < QDIO_MAX_BUFFERS_PER_Q; pos++)
83                 if (pos % QBUFF_PER_PAGE)
84                         sbuf[pos] = sbuf[pos - 1] + 1;
85         return 0;
86 }
87
88 /* locks:       must only be called with zfcp_data.config_sema taken */
89 int
90 zfcp_qdio_allocate_queues(struct zfcp_adapter *adapter)
91 {
92         int ret;
93
94         ret = zfcp_qdio_buffers_enqueue(adapter->request_queue.buffer);
95         if (ret)
96                 return ret;
97         return zfcp_qdio_buffers_enqueue(adapter->response_queue.buffer);
98 }
99
100 /* locks:       must only be called with zfcp_data.config_sema taken */
101 void
102 zfcp_qdio_free_queues(struct zfcp_adapter *adapter)
103 {
104         ZFCP_LOG_TRACE("freeing request_queue buffers\n");
105         zfcp_qdio_buffers_dequeue(adapter->request_queue.buffer);
106
107         ZFCP_LOG_TRACE("freeing response_queue buffers\n");
108         zfcp_qdio_buffers_dequeue(adapter->response_queue.buffer);
109 }
110
111 int
112 zfcp_qdio_allocate(struct zfcp_adapter *adapter)
113 {
114         struct qdio_initialize *init_data;
115
116         init_data = &adapter->qdio_init_data;
117
118         init_data->cdev = adapter->ccw_device;
119         init_data->q_format = QDIO_SCSI_QFMT;
120         memcpy(init_data->adapter_name, zfcp_get_busid_by_adapter(adapter), 8);
121         ASCEBC(init_data->adapter_name, 8);
122         init_data->qib_param_field_format = 0;
123         init_data->qib_param_field = NULL;
124         init_data->input_slib_elements = NULL;
125         init_data->output_slib_elements = NULL;
126         init_data->min_input_threshold = ZFCP_MIN_INPUT_THRESHOLD;
127         init_data->max_input_threshold = ZFCP_MAX_INPUT_THRESHOLD;
128         init_data->min_output_threshold = ZFCP_MIN_OUTPUT_THRESHOLD;
129         init_data->max_output_threshold = ZFCP_MAX_OUTPUT_THRESHOLD;
130         init_data->no_input_qs = 1;
131         init_data->no_output_qs = 1;
132         init_data->input_handler = zfcp_qdio_response_handler;
133         init_data->output_handler = zfcp_qdio_request_handler;
134         init_data->int_parm = (unsigned long) adapter;
135         init_data->flags = QDIO_INBOUND_0COPY_SBALS |
136             QDIO_OUTBOUND_0COPY_SBALS | QDIO_USE_OUTBOUND_PCIS;
137         init_data->input_sbal_addr_array =
138             (void **) (adapter->response_queue.buffer);
139         init_data->output_sbal_addr_array =
140             (void **) (adapter->request_queue.buffer);
141
142         return qdio_allocate(init_data);
143 }
144
145 /*
146  * function:    zfcp_qdio_handler_error_check
147  *
148  * purpose:     called by the response handler to determine error condition
149  *
150  * returns:     error flag
151  *
152  */
153 static int
154 zfcp_qdio_handler_error_check(struct zfcp_adapter *adapter, unsigned int status,
155                               unsigned int qdio_error, unsigned int siga_error,
156                               int first_element, int elements_processed)
157 {
158         int retval = 0;
159
160         if (unlikely(status & QDIO_STATUS_LOOK_FOR_ERROR)) {
161                 retval = -EIO;
162
163                 ZFCP_LOG_INFO("QDIO problem occurred (status=0x%x, "
164                               "qdio_error=0x%x, siga_error=0x%x)\n",
165                               status, qdio_error, siga_error);
166
167                 zfcp_hba_dbf_event_qdio(adapter, status, qdio_error, siga_error,
168                                 first_element, elements_processed);
169                /*
170                 * Restarting IO on the failed adapter from scratch.
171                 * Since we have been using this adapter, it is save to assume
172                 * that it is not failed but recoverable. The card seems to
173                 * report link-up events by self-initiated queue shutdown.
174                 * That is why we need to clear the link-down flag
175                 * which is set again in case we have missed by a mile.
176                 */
177                 zfcp_erp_adapter_reopen(adapter,
178                                         ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED |
179                                         ZFCP_STATUS_COMMON_ERP_FAILED, 140, 0);
180         }
181         return retval;
182 }
183
184 /*
185  * function:    zfcp_qdio_request_handler
186  *
187  * purpose:     is called by QDIO layer for completed SBALs in request queue
188  *
189  * returns:     (void)
190  */
191 static void
192 zfcp_qdio_request_handler(struct ccw_device *ccw_device,
193                           unsigned int status,
194                           unsigned int qdio_error,
195                           unsigned int siga_error,
196                           unsigned int queue_number,
197                           int first_element,
198                           int elements_processed,
199                           unsigned long int_parm)
200 {
201         struct zfcp_adapter *adapter;
202         struct zfcp_qdio_queue *queue;
203
204         adapter = (struct zfcp_adapter *) int_parm;
205         queue = &adapter->request_queue;
206
207         ZFCP_LOG_DEBUG("adapter %s, first=%d, elements_processed=%d\n",
208                        zfcp_get_busid_by_adapter(adapter),
209                        first_element, elements_processed);
210
211         if (unlikely(zfcp_qdio_handler_error_check(adapter, status, qdio_error,
212                                                    siga_error, first_element,
213                                                    elements_processed)))
214                 goto out;
215         /*
216          * we stored address of struct zfcp_adapter  data structure
217          * associated with irq in int_parm
218          */
219
220         /* cleanup all SBALs being program-owned now */
221         zfcp_qdio_zero_sbals(queue->buffer, first_element, elements_processed);
222
223         /* increase free space in outbound queue */
224         atomic_add(elements_processed, &queue->free_count);
225         ZFCP_LOG_DEBUG("free_count=%d\n", atomic_read(&queue->free_count));
226         wake_up(&adapter->request_wq);
227         ZFCP_LOG_DEBUG("elements_processed=%d, free count=%d\n",
228                        elements_processed, atomic_read(&queue->free_count));
229  out:
230         return;
231 }
232
233 /**
234  * zfcp_qdio_reqid_check - checks for valid reqids.
235  */
236 static void zfcp_qdio_reqid_check(struct zfcp_adapter *adapter,
237                                   unsigned long req_id)
238 {
239         struct zfcp_fsf_req *fsf_req;
240         unsigned long flags;
241
242         spin_lock_irqsave(&adapter->req_list_lock, flags);
243         fsf_req = zfcp_reqlist_find(adapter, req_id);
244
245         if (!fsf_req)
246                 /*
247                  * Unknown request means that we have potentially memory
248                  * corruption and must stop the machine immediatly.
249                  */
250                 panic("error: unknown request id (%ld) on adapter %s.\n",
251                       req_id, zfcp_get_busid_by_adapter(adapter));
252
253         zfcp_reqlist_remove(adapter, fsf_req);
254         atomic_dec(&adapter->reqs_active);
255         spin_unlock_irqrestore(&adapter->req_list_lock, flags);
256
257         /* finish the FSF request */
258         zfcp_fsf_req_complete(fsf_req);
259 }
260
261 /*
262  * function:    zfcp_qdio_response_handler
263  *
264  * purpose:     is called by QDIO layer for completed SBALs in response queue
265  *
266  * returns:     (void)
267  */
268 static void
269 zfcp_qdio_response_handler(struct ccw_device *ccw_device,
270                            unsigned int status,
271                            unsigned int qdio_error,
272                            unsigned int siga_error,
273                            unsigned int queue_number,
274                            int first_element,
275                            int elements_processed,
276                            unsigned long int_parm)
277 {
278         struct zfcp_adapter *adapter;
279         struct zfcp_qdio_queue *queue;
280         int buffer_index;
281         int i;
282         struct qdio_buffer *buffer;
283         int retval = 0;
284         u8 count;
285         u8 start;
286         volatile struct qdio_buffer_element *buffere = NULL;
287         int buffere_index;
288
289         adapter = (struct zfcp_adapter *) int_parm;
290         queue = &adapter->response_queue;
291
292         if (unlikely(zfcp_qdio_handler_error_check(adapter, status, qdio_error,
293                                                    siga_error, first_element,
294                                                    elements_processed)))
295                 goto out;
296
297         /*
298          * we stored address of struct zfcp_adapter  data structure
299          * associated with irq in int_parm
300          */
301
302         buffere = &(queue->buffer[first_element]->element[0]);
303         ZFCP_LOG_DEBUG("first BUFFERE flags=0x%x\n", buffere->flags);
304         /*
305          * go through all SBALs from input queue currently
306          * returned by QDIO layer
307          */
308
309         for (i = 0; i < elements_processed; i++) {
310
311                 buffer_index = first_element + i;
312                 buffer_index %= QDIO_MAX_BUFFERS_PER_Q;
313                 buffer = queue->buffer[buffer_index];
314
315                 /* go through all SBALEs of SBAL */
316                 for (buffere_index = 0;
317                      buffere_index < QDIO_MAX_ELEMENTS_PER_BUFFER;
318                      buffere_index++) {
319
320                         /* look for QDIO request identifiers in SB */
321                         buffere = &buffer->element[buffere_index];
322                         zfcp_qdio_reqid_check(adapter,
323                                               (unsigned long) buffere->addr);
324
325                         /*
326                          * A single used SBALE per inbound SBALE has been
327                          * implemented by QDIO so far. Hope they will
328                          * do some optimisation. Will need to change to
329                          * unlikely() then.
330                          */
331                         if (likely(buffere->flags & SBAL_FLAGS_LAST_ENTRY))
332                                 break;
333                 };
334
335                 if (unlikely(!(buffere->flags & SBAL_FLAGS_LAST_ENTRY))) {
336                         ZFCP_LOG_NORMAL("bug: End of inbound data "
337                                         "not marked!\n");
338                 }
339         }
340
341         /*
342          * put range of SBALs back to response queue
343          * (including SBALs which have already been free before)
344          */
345         count = atomic_read(&queue->free_count) + elements_processed;
346         start = queue->free_index;
347
348         ZFCP_LOG_TRACE("calling do_QDIO on adapter %s (flags=0x%x, "
349                        "queue_no=%i, index_in_queue=%i, count=%i, "
350                        "buffers=0x%lx\n",
351                        zfcp_get_busid_by_adapter(adapter),
352                        QDIO_FLAG_SYNC_INPUT | QDIO_FLAG_UNDER_INTERRUPT,
353                        0, start, count, (unsigned long) &queue->buffer[start]);
354
355         retval = do_QDIO(ccw_device,
356                          QDIO_FLAG_SYNC_INPUT | QDIO_FLAG_UNDER_INTERRUPT,
357                          0, start, count, NULL);
358
359         if (unlikely(retval)) {
360                 atomic_set(&queue->free_count, count);
361                 ZFCP_LOG_DEBUG("clearing of inbound data regions failed, "
362                                "queues may be down "
363                                "(count=%d, start=%d, retval=%d)\n",
364                                count, start, retval);
365         } else {
366                 queue->free_index += count;
367                 queue->free_index %= QDIO_MAX_BUFFERS_PER_Q;
368                 atomic_set(&queue->free_count, 0);
369                 ZFCP_LOG_TRACE("%i buffers enqueued to response "
370                                "queue at position %i\n", count, start);
371         }
372  out:
373         return;
374 }
375
376 /**
377  * zfcp_qdio_sbale_get - return pointer to SBALE of qdio_queue
378  * @queue: queue from which SBALE should be returned
379  * @sbal: specifies number of SBAL in queue
380  * @sbale: specifes number of SBALE in SBAL
381  */
382 static inline volatile struct qdio_buffer_element *
383 zfcp_qdio_sbale_get(struct zfcp_qdio_queue *queue, int sbal, int sbale)
384 {
385         return &queue->buffer[sbal]->element[sbale];
386 }
387
388 /**
389  * zfcp_qdio_sbale_req - return pointer to SBALE of request_queue for
390  *      a struct zfcp_fsf_req
391  */
392 volatile struct qdio_buffer_element *
393 zfcp_qdio_sbale_req(struct zfcp_fsf_req *fsf_req, int sbal, int sbale)
394 {
395         return zfcp_qdio_sbale_get(&fsf_req->adapter->request_queue,
396                                    sbal, sbale);
397 }
398
399 /**
400  * zfcp_qdio_sbale_resp - return pointer to SBALE of response_queue for
401  *      a struct zfcp_fsf_req
402  */
403 static inline volatile struct qdio_buffer_element *
404 zfcp_qdio_sbale_resp(struct zfcp_fsf_req *fsf_req, int sbal, int sbale)
405 {
406         return zfcp_qdio_sbale_get(&fsf_req->adapter->response_queue,
407                                    sbal, sbale);
408 }
409
410 /**
411  * zfcp_qdio_sbale_curr - return current SBALE on request_queue for
412  *      a struct zfcp_fsf_req
413  */
414 volatile struct qdio_buffer_element *
415 zfcp_qdio_sbale_curr(struct zfcp_fsf_req *fsf_req)
416 {
417         return zfcp_qdio_sbale_req(fsf_req, fsf_req->sbal_curr,
418                                    fsf_req->sbale_curr);
419 }
420
421 /**
422  * zfcp_qdio_sbal_limit - determine maximum number of SBALs that can be used
423  *      on the request_queue for a struct zfcp_fsf_req
424  * @fsf_req: the number of the last SBAL that can be used is stored herein
425  * @max_sbals: used to pass an upper limit for the number of SBALs
426  *
427  * Note: We can assume at least one free SBAL in the request_queue when called.
428  */
429 static void
430 zfcp_qdio_sbal_limit(struct zfcp_fsf_req *fsf_req, int max_sbals)
431 {
432         int count = atomic_read(&fsf_req->adapter->request_queue.free_count);
433         count = min(count, max_sbals);
434         fsf_req->sbal_last  = fsf_req->sbal_first;
435         fsf_req->sbal_last += (count - 1);
436         fsf_req->sbal_last %= QDIO_MAX_BUFFERS_PER_Q;
437 }
438
439 /**
440  * zfcp_qdio_sbal_chain - chain SBALs if more than one SBAL is needed for a
441  *      request
442  * @fsf_req: zfcp_fsf_req to be processed
443  * @sbtype: SBAL flags which have to be set in first SBALE of new SBAL
444  *
445  * This function changes sbal_curr, sbale_curr, sbal_number of fsf_req.
446  */
447 static volatile struct qdio_buffer_element *
448 zfcp_qdio_sbal_chain(struct zfcp_fsf_req *fsf_req, unsigned long sbtype)
449 {
450         volatile struct qdio_buffer_element *sbale;
451
452         /* set last entry flag in current SBALE of current SBAL */
453         sbale = zfcp_qdio_sbale_curr(fsf_req);
454         sbale->flags |= SBAL_FLAGS_LAST_ENTRY;
455
456         /* don't exceed last allowed SBAL */
457         if (fsf_req->sbal_curr == fsf_req->sbal_last)
458                 return NULL;
459
460         /* set chaining flag in first SBALE of current SBAL */
461         sbale = zfcp_qdio_sbale_req(fsf_req, fsf_req->sbal_curr, 0);
462         sbale->flags |= SBAL_FLAGS0_MORE_SBALS;
463
464         /* calculate index of next SBAL */
465         fsf_req->sbal_curr++;
466         fsf_req->sbal_curr %= QDIO_MAX_BUFFERS_PER_Q;
467
468         /* keep this requests number of SBALs up-to-date */
469         fsf_req->sbal_number++;
470
471         /* start at first SBALE of new SBAL */
472         fsf_req->sbale_curr = 0;
473
474         /* set storage-block type for new SBAL */
475         sbale = zfcp_qdio_sbale_curr(fsf_req);
476         sbale->flags |= sbtype;
477
478         return sbale;
479 }
480
481 /**
482  * zfcp_qdio_sbale_next - switch to next SBALE, chain SBALs if needed
483  */
484 static volatile struct qdio_buffer_element *
485 zfcp_qdio_sbale_next(struct zfcp_fsf_req *fsf_req, unsigned long sbtype)
486 {
487         if (fsf_req->sbale_curr == ZFCP_LAST_SBALE_PER_SBAL)
488                 return zfcp_qdio_sbal_chain(fsf_req, sbtype);
489
490         fsf_req->sbale_curr++;
491
492         return zfcp_qdio_sbale_curr(fsf_req);
493 }
494
495 /**
496  * zfcp_qdio_sbals_zero - initialize SBALs between first and last in queue
497  *      with zero from
498  */
499 static int
500 zfcp_qdio_sbals_zero(struct zfcp_qdio_queue *queue, int first, int last)
501 {
502         struct qdio_buffer **buf = queue->buffer;
503         int curr = first;
504         int count = 0;
505
506         for(;;) {
507                 curr %= QDIO_MAX_BUFFERS_PER_Q;
508                 count++;
509                 memset(buf[curr], 0, sizeof(struct qdio_buffer));
510                 if (curr == last)
511                         break;
512                 curr++;
513         }
514         return count;
515 }
516
517
518 /**
519  * zfcp_qdio_sbals_wipe - reset all changes in SBALs for an fsf_req
520  */
521 static inline int
522 zfcp_qdio_sbals_wipe(struct zfcp_fsf_req *fsf_req)
523 {
524         return zfcp_qdio_sbals_zero(&fsf_req->adapter->request_queue,
525                                     fsf_req->sbal_first, fsf_req->sbal_curr);
526 }
527
528
529 /**
530  * zfcp_qdio_sbale_fill - set address and length in current SBALE
531  *      on request_queue
532  */
533 static void
534 zfcp_qdio_sbale_fill(struct zfcp_fsf_req *fsf_req, unsigned long sbtype,
535                      void *addr, int length)
536 {
537         volatile struct qdio_buffer_element *sbale;
538
539         sbale = zfcp_qdio_sbale_curr(fsf_req);
540         sbale->addr = addr;
541         sbale->length = length;
542 }
543
544 /**
545  * zfcp_qdio_sbals_from_segment - map memory segment to SBALE(s)
546  * @fsf_req: request to be processed
547  * @sbtype: SBALE flags
548  * @start_addr: address of memory segment
549  * @total_length: length of memory segment
550  *
551  * Alignment and length of the segment determine how many SBALEs are needed
552  * for the memory segment.
553  */
554 static int
555 zfcp_qdio_sbals_from_segment(struct zfcp_fsf_req *fsf_req, unsigned long sbtype,
556                              void *start_addr, unsigned long total_length)
557 {
558         unsigned long remaining, length;
559         void *addr;
560
561         /* split segment up heeding page boundaries */
562         for (addr = start_addr, remaining = total_length; remaining > 0;
563              addr += length, remaining -= length) {
564                 /* get next free SBALE for new piece */
565                 if (NULL == zfcp_qdio_sbale_next(fsf_req, sbtype)) {
566                         /* no SBALE left, clean up and leave */
567                         zfcp_qdio_sbals_wipe(fsf_req);
568                         return -EINVAL;
569                 }
570                 /* calculate length of new piece */
571                 length = min(remaining,
572                              (PAGE_SIZE - ((unsigned long) addr &
573                                            (PAGE_SIZE - 1))));
574                 /* fill current SBALE with calculated piece */
575                 zfcp_qdio_sbale_fill(fsf_req, sbtype, addr, length);
576         }
577         return total_length;
578 }
579
580
581 /**
582  * zfcp_qdio_sbals_from_sg - fill SBALs from scatter-gather list
583  * @fsf_req: request to be processed
584  * @sbtype: SBALE flags
585  * @sg: scatter-gather list
586  * @sg_count: number of elements in scatter-gather list
587  * @max_sbals: upper bound for number of SBALs to be used
588  */
589 int
590 zfcp_qdio_sbals_from_sg(struct zfcp_fsf_req *fsf_req, unsigned long sbtype,
591                         struct scatterlist *sgl, int sg_count, int max_sbals)
592 {
593         int sg_index;
594         struct scatterlist *sg_segment;
595         int retval;
596         volatile struct qdio_buffer_element *sbale;
597         int bytes = 0;
598
599         /* figure out last allowed SBAL */
600         zfcp_qdio_sbal_limit(fsf_req, max_sbals);
601
602         /* set storage-block type for current SBAL */
603         sbale = zfcp_qdio_sbale_req(fsf_req, fsf_req->sbal_curr, 0);
604         sbale->flags |= sbtype;
605
606         /* process all segements of scatter-gather list */
607         for_each_sg(sgl, sg_segment, sg_count, sg_index) {
608                 retval = zfcp_qdio_sbals_from_segment(
609                                 fsf_req,
610                                 sbtype,
611                                 zfcp_sg_to_address(sg_segment),
612                                 sg_segment->length);
613                 if (retval < 0) {
614                         bytes = retval;
615                         goto out;
616                 } else
617                         bytes += retval;
618         }
619         /* assume that no other SBALEs are to follow in the same SBAL */
620         sbale = zfcp_qdio_sbale_curr(fsf_req);
621         sbale->flags |= SBAL_FLAGS_LAST_ENTRY;
622 out:
623         return bytes;
624 }
625
626
627 /**
628  * zfcp_qdio_sbals_from_scsicmnd - fill SBALs from scsi command
629  * @fsf_req: request to be processed
630  * @sbtype: SBALE flags
631  * @scsi_cmnd: either scatter-gather list or buffer contained herein is used
632  *      to fill SBALs
633  */
634 int
635 zfcp_qdio_sbals_from_scsicmnd(struct zfcp_fsf_req *fsf_req,
636                               unsigned long sbtype, struct scsi_cmnd *scsi_cmnd)
637 {
638         return zfcp_qdio_sbals_from_sg(fsf_req, sbtype, scsi_sglist(scsi_cmnd),
639                                        scsi_sg_count(scsi_cmnd),
640                                        ZFCP_MAX_SBALS_PER_REQ);
641 }
642
643 /**
644  * zfcp_qdio_determine_pci - set PCI flag in first SBALE on qdio queue if needed
645  */
646 int
647 zfcp_qdio_determine_pci(struct zfcp_qdio_queue *req_queue,
648                         struct zfcp_fsf_req *fsf_req)
649 {
650         int new_distance_from_int;
651         int pci_pos;
652         volatile struct qdio_buffer_element *sbale;
653
654         new_distance_from_int = req_queue->distance_from_int +
655                 fsf_req->sbal_number;
656
657         if (unlikely(new_distance_from_int >= ZFCP_QDIO_PCI_INTERVAL)) {
658                 new_distance_from_int %= ZFCP_QDIO_PCI_INTERVAL;
659                 pci_pos  = fsf_req->sbal_first;
660                 pci_pos += fsf_req->sbal_number;
661                 pci_pos -= new_distance_from_int;
662                 pci_pos -= 1;
663                 pci_pos %= QDIO_MAX_BUFFERS_PER_Q;
664                 sbale = zfcp_qdio_sbale_req(fsf_req, pci_pos, 0);
665                 sbale->flags |= SBAL_FLAGS0_PCI;
666         }
667         return new_distance_from_int;
668 }
669
670 /*
671  * function:    zfcp_zero_sbals
672  *
673  * purpose:     zeros specified range of SBALs
674  *
675  * returns:
676  */
677 void
678 zfcp_qdio_zero_sbals(struct qdio_buffer *buf[], int first, int clean_count)
679 {
680         int cur_pos;
681         int index;
682
683         for (cur_pos = first; cur_pos < (first + clean_count); cur_pos++) {
684                 index = cur_pos % QDIO_MAX_BUFFERS_PER_Q;
685                 memset(buf[index], 0, sizeof (struct qdio_buffer));
686                 ZFCP_LOG_TRACE("zeroing BUFFER %d at address %p\n",
687                                index, buf[index]);
688         }
689 }
690
691 #undef ZFCP_LOG_AREA