2 * linux/drivers/s390/cio/qdio_main.c
4 * Linux for s390 qdio support, buffer handling, qdio API and module support.
6 * Copyright 2000,2008 IBM Corp.
7 * Author(s): Utz Bacher <utz.bacher@de.ibm.com>
8 * Jan Glauber <jang@linux.vnet.ibm.com>
9 * 2.6 cio integration by Cornelia Huck <cornelia.huck@de.ibm.com>
11 #include <linux/module.h>
12 #include <linux/init.h>
13 #include <linux/kernel.h>
14 #include <linux/timer.h>
15 #include <linux/delay.h>
16 #include <asm/atomic.h>
17 #include <asm/debug.h>
24 #include "qdio_debug.h"
25 #include "qdio_perf.h"
27 MODULE_AUTHOR("Utz Bacher <utz.bacher@de.ibm.com>,"\
28 "Jan Glauber <jang@linux.vnet.ibm.com>");
29 MODULE_DESCRIPTION("QDIO base support");
30 MODULE_LICENSE("GPL");
32 static inline int do_siga_sync(struct subchannel_id schid
,
33 unsigned int out_mask
, unsigned int in_mask
)
35 register unsigned long __fc
asm ("0") = 2;
36 register struct subchannel_id __schid
asm ("1") = schid
;
37 register unsigned long out
asm ("2") = out_mask
;
38 register unsigned long in
asm ("3") = in_mask
;
46 : "d" (__fc
), "d" (__schid
), "d" (out
), "d" (in
) : "cc");
50 static inline int do_siga_input(struct subchannel_id schid
, unsigned int mask
)
52 register unsigned long __fc
asm ("0") = 1;
53 register struct subchannel_id __schid
asm ("1") = schid
;
54 register unsigned long __mask
asm ("2") = mask
;
62 : "d" (__fc
), "d" (__schid
), "d" (__mask
) : "cc", "memory");
67 * do_siga_output - perform SIGA-w/wt function
68 * @schid: subchannel id or in case of QEBSM the subchannel token
69 * @mask: which output queues to process
70 * @bb: busy bit indicator, set only if SIGA-w/wt could not access a buffer
71 * @fc: function code to perform
73 * Returns cc or QDIO_ERROR_SIGA_ACCESS_EXCEPTION.
74 * Note: For IQDC unicast queues only the highest priority queue is processed.
76 static inline int do_siga_output(unsigned long schid
, unsigned long mask
,
77 unsigned int *bb
, unsigned int fc
)
79 register unsigned long __fc
asm("0") = fc
;
80 register unsigned long __schid
asm("1") = schid
;
81 register unsigned long __mask
asm("2") = mask
;
82 int cc
= QDIO_ERROR_SIGA_ACCESS_EXCEPTION
;
90 : "+d" (cc
), "+d" (__fc
), "+d" (__schid
), "+d" (__mask
)
92 *bb
= ((unsigned int) __fc
) >> 31;
96 static inline int qdio_check_ccq(struct qdio_q
*q
, unsigned int ccq
)
98 /* all done or next buffer state different */
99 if (ccq
== 0 || ccq
== 32)
101 /* not all buffers processed */
102 if (ccq
== 96 || ccq
== 97)
104 /* notify devices immediately */
105 DBF_ERROR("%4x ccq:%3d", SCH_NO(q
), ccq
);
110 * qdio_do_eqbs - extract buffer states for QEBSM
111 * @q: queue to manipulate
112 * @state: state of the extracted buffers
113 * @start: buffer number to start at
114 * @count: count of buffers to examine
115 * @auto_ack: automatically acknowledge buffers
117 * Returns the number of successfully extracted equal buffer states.
118 * Stops processing if a state is different from the last buffers state.
120 static int qdio_do_eqbs(struct qdio_q
*q
, unsigned char *state
,
121 int start
, int count
, int auto_ack
)
123 unsigned int ccq
= 0;
124 int tmp_count
= count
, tmp_start
= start
;
128 BUG_ON(!q
->irq_ptr
->sch_token
);
129 qdio_perf_stat_inc(&perf_stats
.debug_eqbs_all
);
132 nr
+= q
->irq_ptr
->nr_input_qs
;
134 ccq
= do_eqbs(q
->irq_ptr
->sch_token
, state
, nr
, &tmp_start
, &tmp_count
,
136 rc
= qdio_check_ccq(q
, ccq
);
138 /* At least one buffer was processed, return and extract the remaining
141 if ((ccq
== 96) && (count
!= tmp_count
)) {
142 qdio_perf_stat_inc(&perf_stats
.debug_eqbs_incomplete
);
143 return (count
- tmp_count
);
147 DBF_DEV_EVENT(DBF_WARN
, q
->irq_ptr
, "EQBS again:%2d", ccq
);
152 DBF_ERROR("%4x EQBS ERROR", SCH_NO(q
));
153 DBF_ERROR("%3d%3d%2d", count
, tmp_count
, nr
);
154 q
->handler(q
->irq_ptr
->cdev
,
155 QDIO_ERROR_ACTIVATE_CHECK_CONDITION
,
156 0, -1, -1, q
->irq_ptr
->int_parm
);
159 return count
- tmp_count
;
163 * qdio_do_sqbs - set buffer states for QEBSM
164 * @q: queue to manipulate
165 * @state: new state of the buffers
166 * @start: first buffer number to change
167 * @count: how many buffers to change
169 * Returns the number of successfully changed buffers.
170 * Does retrying until the specified count of buffer states is set or an
173 static int qdio_do_sqbs(struct qdio_q
*q
, unsigned char state
, int start
,
176 unsigned int ccq
= 0;
177 int tmp_count
= count
, tmp_start
= start
;
184 BUG_ON(!q
->irq_ptr
->sch_token
);
185 qdio_perf_stat_inc(&perf_stats
.debug_sqbs_all
);
188 nr
+= q
->irq_ptr
->nr_input_qs
;
190 ccq
= do_sqbs(q
->irq_ptr
->sch_token
, state
, nr
, &tmp_start
, &tmp_count
);
191 rc
= qdio_check_ccq(q
, ccq
);
193 DBF_DEV_EVENT(DBF_INFO
, q
->irq_ptr
, "SQBS again:%2d", ccq
);
194 qdio_perf_stat_inc(&perf_stats
.debug_sqbs_incomplete
);
198 DBF_ERROR("%4x SQBS ERROR", SCH_NO(q
));
199 DBF_ERROR("%3d%3d%2d", count
, tmp_count
, nr
);
200 q
->handler(q
->irq_ptr
->cdev
,
201 QDIO_ERROR_ACTIVATE_CHECK_CONDITION
,
202 0, -1, -1, q
->irq_ptr
->int_parm
);
206 return count
- tmp_count
;
209 /* returns number of examined buffers and their common state in *state */
210 static inline int get_buf_states(struct qdio_q
*q
, unsigned int bufnr
,
211 unsigned char *state
, unsigned int count
,
214 unsigned char __state
= 0;
217 BUG_ON(bufnr
> QDIO_MAX_BUFFERS_MASK
);
218 BUG_ON(count
> QDIO_MAX_BUFFERS_PER_Q
);
221 return qdio_do_eqbs(q
, state
, bufnr
, count
, auto_ack
);
223 for (i
= 0; i
< count
; i
++) {
225 __state
= q
->slsb
.val
[bufnr
];
226 else if (q
->slsb
.val
[bufnr
] != __state
)
228 bufnr
= next_buf(bufnr
);
234 inline int get_buf_state(struct qdio_q
*q
, unsigned int bufnr
,
235 unsigned char *state
, int auto_ack
)
237 return get_buf_states(q
, bufnr
, state
, 1, auto_ack
);
240 /* wrap-around safe setting of slsb states, returns number of changed buffers */
241 static inline int set_buf_states(struct qdio_q
*q
, int bufnr
,
242 unsigned char state
, int count
)
246 BUG_ON(bufnr
> QDIO_MAX_BUFFERS_MASK
);
247 BUG_ON(count
> QDIO_MAX_BUFFERS_PER_Q
);
250 return qdio_do_sqbs(q
, state
, bufnr
, count
);
252 for (i
= 0; i
< count
; i
++) {
253 xchg(&q
->slsb
.val
[bufnr
], state
);
254 bufnr
= next_buf(bufnr
);
259 static inline int set_buf_state(struct qdio_q
*q
, int bufnr
,
262 return set_buf_states(q
, bufnr
, state
, 1);
265 /* set slsb states to initial state */
266 void qdio_init_buf_states(struct qdio_irq
*irq_ptr
)
271 for_each_input_queue(irq_ptr
, q
, i
)
272 set_buf_states(q
, 0, SLSB_P_INPUT_NOT_INIT
,
273 QDIO_MAX_BUFFERS_PER_Q
);
274 for_each_output_queue(irq_ptr
, q
, i
)
275 set_buf_states(q
, 0, SLSB_P_OUTPUT_NOT_INIT
,
276 QDIO_MAX_BUFFERS_PER_Q
);
279 static int qdio_siga_sync(struct qdio_q
*q
, unsigned int output
,
284 if (!need_siga_sync(q
))
287 DBF_DEV_EVENT(DBF_INFO
, q
->irq_ptr
, "siga-s:%1d", q
->nr
);
288 qdio_perf_stat_inc(&perf_stats
.siga_sync
);
290 cc
= do_siga_sync(q
->irq_ptr
->schid
, output
, input
);
292 DBF_ERROR("%4x SIGA-S:%2d", SCH_NO(q
), cc
);
296 inline int qdio_siga_sync_q(struct qdio_q
*q
)
299 return qdio_siga_sync(q
, 0, q
->mask
);
301 return qdio_siga_sync(q
, q
->mask
, 0);
304 static inline int qdio_siga_sync_out(struct qdio_q
*q
)
306 return qdio_siga_sync(q
, ~0U, 0);
309 static inline int qdio_siga_sync_all(struct qdio_q
*q
)
311 return qdio_siga_sync(q
, ~0U, ~0U);
314 static int qdio_siga_output(struct qdio_q
*q
, unsigned int *busy_bit
)
321 if (q
->u
.out
.use_enh_siga
)
325 schid
= q
->irq_ptr
->sch_token
;
329 schid
= *((u32
*)&q
->irq_ptr
->schid
);
332 cc
= do_siga_output(schid
, q
->mask
, busy_bit
, fc
);
334 /* hipersocket busy condition */
336 WARN_ON(queue_type(q
) != QDIO_IQDIO_QFMT
|| cc
!= 2);
339 start_time
= get_usecs();
342 if ((get_usecs() - start_time
) < QDIO_BUSY_BIT_PATIENCE
)
348 static inline int qdio_siga_input(struct qdio_q
*q
)
352 DBF_DEV_EVENT(DBF_INFO
, q
->irq_ptr
, "siga-r:%1d", q
->nr
);
353 qdio_perf_stat_inc(&perf_stats
.siga_in
);
355 cc
= do_siga_input(q
->irq_ptr
->schid
, q
->mask
);
357 DBF_ERROR("%4x SIGA-R:%2d", SCH_NO(q
), cc
);
361 /* called from thinint inbound handler */
362 void qdio_sync_after_thinint(struct qdio_q
*q
)
364 if (pci_out_supported(q
)) {
365 if (need_siga_sync_thinint(q
))
366 qdio_siga_sync_all(q
);
367 else if (need_siga_sync_out_thinint(q
))
368 qdio_siga_sync_out(q
);
373 inline void qdio_stop_polling(struct qdio_q
*q
)
375 if (!q
->u
.in
.polling
)
379 qdio_perf_stat_inc(&perf_stats
.debug_stop_polling
);
381 /* show the card that we are not polling anymore */
383 set_buf_states(q
, q
->u
.in
.ack_start
, SLSB_P_INPUT_NOT_INIT
,
385 q
->u
.in
.ack_count
= 0;
387 set_buf_state(q
, q
->u
.in
.ack_start
, SLSB_P_INPUT_NOT_INIT
);
390 static void announce_buffer_error(struct qdio_q
*q
, int count
)
392 q
->qdio_error
|= QDIO_ERROR_SLSB_STATE
;
394 /* special handling for no target buffer empty */
395 if ((!q
->is_input_q
&&
396 (q
->sbal
[q
->first_to_check
]->element
[15].flags
& 0xff) == 0x10)) {
397 qdio_perf_stat_inc(&perf_stats
.outbound_target_full
);
398 DBF_DEV_EVENT(DBF_INFO
, q
->irq_ptr
, "OUTFULL FTC:%3d",
403 DBF_ERROR("%4x BUF ERROR", SCH_NO(q
));
404 DBF_ERROR((q
->is_input_q
) ? "IN:%2d" : "OUT:%2d", q
->nr
);
405 DBF_ERROR("FTC:%3d C:%3d", q
->first_to_check
, count
);
406 DBF_ERROR("F14:%2x F15:%2x",
407 q
->sbal
[q
->first_to_check
]->element
[14].flags
& 0xff,
408 q
->sbal
[q
->first_to_check
]->element
[15].flags
& 0xff);
411 static inline void inbound_primed(struct qdio_q
*q
, int count
)
415 DBF_DEV_EVENT(DBF_INFO
, q
->irq_ptr
, "in prim: %3d", count
);
417 /* for QEBSM the ACK was already set by EQBS */
419 if (!q
->u
.in
.polling
) {
421 q
->u
.in
.ack_count
= count
;
422 q
->u
.in
.ack_start
= q
->first_to_check
;
426 /* delete the previous ACK's */
427 set_buf_states(q
, q
->u
.in
.ack_start
, SLSB_P_INPUT_NOT_INIT
,
429 q
->u
.in
.ack_count
= count
;
430 q
->u
.in
.ack_start
= q
->first_to_check
;
435 * ACK the newest buffer. The ACK will be removed in qdio_stop_polling
436 * or by the next inbound run.
438 new = add_buf(q
->first_to_check
, count
- 1);
439 if (q
->u
.in
.polling
) {
440 /* reset the previous ACK but first set the new one */
441 set_buf_state(q
, new, SLSB_P_INPUT_ACK
);
442 set_buf_state(q
, q
->u
.in
.ack_start
, SLSB_P_INPUT_NOT_INIT
);
445 set_buf_state(q
, new, SLSB_P_INPUT_ACK
);
448 q
->u
.in
.ack_start
= new;
454 * Need to change all PRIMED buffers to NOT_INIT, otherwise
455 * we're loosing initiative in the thinint code.
457 set_buf_states(q
, q
->first_to_check
, SLSB_P_INPUT_NOT_INIT
,
461 static int get_inbound_buffer_frontier(struct qdio_q
*q
)
467 * Don't check 128 buffers, as otherwise qdio_inbound_q_moved
470 count
= min(atomic_read(&q
->nr_buf_used
), QDIO_MAX_BUFFERS_MASK
);
471 stop
= add_buf(q
->first_to_check
, count
);
474 * No siga sync here, as a PCI or we after a thin interrupt
475 * will sync the queues.
478 /* need to set count to 1 for non-qebsm */
483 if (q
->first_to_check
== stop
)
486 count
= get_buf_states(q
, q
->first_to_check
, &state
, count
, 1);
491 case SLSB_P_INPUT_PRIMED
:
492 inbound_primed(q
, count
);
494 * No siga-sync needed for non-qebsm here, as the inbound queue
495 * will be synced on the next siga-r, resp.
496 * tiqdio_is_inbound_q_done will do the siga-sync.
498 q
->first_to_check
= add_buf(q
->first_to_check
, count
);
499 atomic_sub(count
, &q
->nr_buf_used
);
501 case SLSB_P_INPUT_ERROR
:
502 announce_buffer_error(q
, count
);
503 /* process the buffer, the upper layer will take care of it */
504 q
->first_to_check
= add_buf(q
->first_to_check
, count
);
505 atomic_sub(count
, &q
->nr_buf_used
);
507 case SLSB_CU_INPUT_EMPTY
:
508 case SLSB_P_INPUT_NOT_INIT
:
509 case SLSB_P_INPUT_ACK
:
510 DBF_DEV_EVENT(DBF_INFO
, q
->irq_ptr
, "in nop");
516 return q
->first_to_check
;
519 int qdio_inbound_q_moved(struct qdio_q
*q
)
523 bufnr
= get_inbound_buffer_frontier(q
);
525 if ((bufnr
!= q
->last_move
) || q
->qdio_error
) {
526 q
->last_move
= bufnr
;
527 if (!need_siga_sync(q
) && !pci_out_supported(q
))
528 q
->u
.in
.timestamp
= get_usecs();
530 DBF_DEV_EVENT(DBF_INFO
, q
->irq_ptr
, "in moved");
536 static int qdio_inbound_q_done(struct qdio_q
*q
)
538 unsigned char state
= 0;
540 if (!atomic_read(&q
->nr_buf_used
))
544 * We need that one for synchronization with the adapter, as it
545 * does a kind of PCI avoidance.
549 get_buf_state(q
, q
->first_to_check
, &state
, 0);
550 if (state
== SLSB_P_INPUT_PRIMED
)
551 /* we got something to do */
554 /* on VM, we don't poll, so the q is always done here */
555 if (need_siga_sync(q
) || pci_out_supported(q
))
559 * At this point we know, that inbound first_to_check
560 * has (probably) not moved (see qdio_inbound_processing).
562 if (get_usecs() > q
->u
.in
.timestamp
+ QDIO_INPUT_THRESHOLD
) {
563 DBF_DEV_EVENT(DBF_INFO
, q
->irq_ptr
, "in done:%3d",
567 DBF_DEV_EVENT(DBF_INFO
, q
->irq_ptr
, "in notd:%3d",
573 void qdio_kick_handler(struct qdio_q
*q
)
575 int start
= q
->first_to_kick
;
576 int end
= q
->first_to_check
;
579 if (unlikely(q
->irq_ptr
->state
!= QDIO_IRQ_STATE_ACTIVE
))
582 count
= sub_buf(end
, start
);
585 qdio_perf_stat_inc(&perf_stats
.inbound_handler
);
586 DBF_DEV_EVENT(DBF_INFO
, q
->irq_ptr
, "kih s:%3d c:%3d", start
, count
);
588 DBF_DEV_EVENT(DBF_INFO
, q
->irq_ptr
, "koh: nr:%1d", q
->nr
);
589 DBF_DEV_EVENT(DBF_INFO
, q
->irq_ptr
, "s:%3d c:%3d", start
, count
);
592 q
->handler(q
->irq_ptr
->cdev
, q
->qdio_error
, q
->nr
, start
, count
,
593 q
->irq_ptr
->int_parm
);
595 /* for the next time */
596 q
->first_to_kick
= end
;
600 static void __qdio_inbound_processing(struct qdio_q
*q
)
602 qdio_perf_stat_inc(&perf_stats
.tasklet_inbound
);
604 if (!qdio_inbound_q_moved(q
))
607 qdio_kick_handler(q
);
609 if (!qdio_inbound_q_done(q
))
610 /* means poll time is not yet over */
613 qdio_stop_polling(q
);
615 * We need to check again to not lose initiative after
616 * resetting the ACK state.
618 if (!qdio_inbound_q_done(q
))
622 /* inbound tasklet */
623 void qdio_inbound_processing(unsigned long data
)
625 struct qdio_q
*q
= (struct qdio_q
*)data
;
626 __qdio_inbound_processing(q
);
629 static int get_outbound_buffer_frontier(struct qdio_q
*q
)
634 if (((queue_type(q
) != QDIO_IQDIO_QFMT
) && !pci_out_supported(q
)) ||
635 (queue_type(q
) == QDIO_IQDIO_QFMT
&& multicast_outbound(q
)))
639 * Don't check 128 buffers, as otherwise qdio_inbound_q_moved
642 count
= min(atomic_read(&q
->nr_buf_used
), QDIO_MAX_BUFFERS_MASK
);
643 stop
= add_buf(q
->first_to_check
, count
);
645 /* need to set count to 1 for non-qebsm */
650 if (q
->first_to_check
== stop
)
651 return q
->first_to_check
;
653 count
= get_buf_states(q
, q
->first_to_check
, &state
, count
, 0);
655 return q
->first_to_check
;
658 case SLSB_P_OUTPUT_EMPTY
:
659 /* the adapter got it */
660 DBF_DEV_EVENT(DBF_INFO
, q
->irq_ptr
, "out empty:%1d %3d", q
->nr
, count
);
662 atomic_sub(count
, &q
->nr_buf_used
);
663 q
->first_to_check
= add_buf(q
->first_to_check
, count
);
665 * We fetch all buffer states at once. get_buf_states may
666 * return count < stop. For QEBSM we do not loop.
671 case SLSB_P_OUTPUT_ERROR
:
672 announce_buffer_error(q
, count
);
673 /* process the buffer, the upper layer will take care of it */
674 q
->first_to_check
= add_buf(q
->first_to_check
, count
);
675 atomic_sub(count
, &q
->nr_buf_used
);
677 case SLSB_CU_OUTPUT_PRIMED
:
678 /* the adapter has not fetched the output yet */
679 DBF_DEV_EVENT(DBF_INFO
, q
->irq_ptr
, "out primed:%1d", q
->nr
);
681 case SLSB_P_OUTPUT_NOT_INIT
:
682 case SLSB_P_OUTPUT_HALTED
:
687 return q
->first_to_check
;
690 /* all buffers processed? */
691 static inline int qdio_outbound_q_done(struct qdio_q
*q
)
693 return atomic_read(&q
->nr_buf_used
) == 0;
696 static inline int qdio_outbound_q_moved(struct qdio_q
*q
)
700 bufnr
= get_outbound_buffer_frontier(q
);
702 if ((bufnr
!= q
->last_move
) || q
->qdio_error
) {
703 q
->last_move
= bufnr
;
704 DBF_DEV_EVENT(DBF_INFO
, q
->irq_ptr
, "out moved:%1d", q
->nr
);
710 static int qdio_kick_outbound_q(struct qdio_q
*q
)
712 unsigned int busy_bit
;
715 if (!need_siga_out(q
))
718 DBF_DEV_EVENT(DBF_INFO
, q
->irq_ptr
, "siga-w:%1d", q
->nr
);
719 qdio_perf_stat_inc(&perf_stats
.siga_out
);
721 cc
= qdio_siga_output(q
, &busy_bit
);
727 DBF_ERROR("%4x cc2 REP:%1d", SCH_NO(q
), q
->nr
);
728 cc
|= QDIO_ERROR_SIGA_BUSY
;
730 DBF_DEV_EVENT(DBF_INFO
, q
->irq_ptr
, "siga-w cc2:%1d", q
->nr
);
734 DBF_ERROR("%4x SIGA-W:%1d", SCH_NO(q
), cc
);
740 static void __qdio_outbound_processing(struct qdio_q
*q
)
742 qdio_perf_stat_inc(&perf_stats
.tasklet_outbound
);
743 BUG_ON(atomic_read(&q
->nr_buf_used
) < 0);
745 if (qdio_outbound_q_moved(q
))
746 qdio_kick_handler(q
);
748 if (queue_type(q
) == QDIO_ZFCP_QFMT
)
749 if (!pci_out_supported(q
) && !qdio_outbound_q_done(q
))
752 /* bail out for HiperSockets unicast queues */
753 if (queue_type(q
) == QDIO_IQDIO_QFMT
&& !multicast_outbound(q
))
756 if ((queue_type(q
) == QDIO_IQDIO_QFMT
) &&
757 (atomic_read(&q
->nr_buf_used
)) > QDIO_IQDIO_POLL_LVL
)
760 if (q
->u
.out
.pci_out_enabled
)
764 * Now we know that queue type is either qeth without pci enabled
765 * or HiperSockets multicast. Make sure buffer switch from PRIMED to
766 * EMPTY is noticed and outbound_handler is called after some time.
768 if (qdio_outbound_q_done(q
))
769 del_timer(&q
->u
.out
.timer
);
771 if (!timer_pending(&q
->u
.out
.timer
)) {
772 mod_timer(&q
->u
.out
.timer
, jiffies
+ 10 * HZ
);
773 qdio_perf_stat_inc(&perf_stats
.debug_tl_out_timer
);
779 if (unlikely(q
->irq_ptr
->state
== QDIO_IRQ_STATE_STOPPED
))
781 tasklet_schedule(&q
->tasklet
);
784 /* outbound tasklet */
785 void qdio_outbound_processing(unsigned long data
)
787 struct qdio_q
*q
= (struct qdio_q
*)data
;
788 __qdio_outbound_processing(q
);
791 void qdio_outbound_timer(unsigned long data
)
793 struct qdio_q
*q
= (struct qdio_q
*)data
;
795 if (unlikely(q
->irq_ptr
->state
== QDIO_IRQ_STATE_STOPPED
))
797 tasklet_schedule(&q
->tasklet
);
800 /* called from thinint inbound tasklet */
801 void qdio_check_outbound_after_thinint(struct qdio_q
*q
)
806 if (!pci_out_supported(q
))
809 for_each_output_queue(q
->irq_ptr
, out
, i
)
810 if (!qdio_outbound_q_done(out
))
811 tasklet_schedule(&out
->tasklet
);
814 static inline void qdio_set_state(struct qdio_irq
*irq_ptr
,
815 enum qdio_irq_states state
)
817 DBF_DEV_EVENT(DBF_INFO
, irq_ptr
, "newstate: %1d", state
);
819 irq_ptr
->state
= state
;
823 static void qdio_irq_check_sense(struct qdio_irq
*irq_ptr
, struct irb
*irb
)
825 if (irb
->esw
.esw0
.erw
.cons
) {
826 DBF_ERROR("%4x sense:", irq_ptr
->schid
.sch_no
);
827 DBF_ERROR_HEX(irb
, 64);
828 DBF_ERROR_HEX(irb
->ecw
, 64);
832 /* PCI interrupt handler */
833 static void qdio_int_handler_pci(struct qdio_irq
*irq_ptr
)
838 if (unlikely(irq_ptr
->state
== QDIO_IRQ_STATE_STOPPED
))
841 qdio_perf_stat_inc(&perf_stats
.pci_int
);
843 for_each_input_queue(irq_ptr
, q
, i
)
844 tasklet_schedule(&q
->tasklet
);
846 if (!(irq_ptr
->qib
.ac
& QIB_AC_OUTBOUND_PCI_SUPPORTED
))
849 for_each_output_queue(irq_ptr
, q
, i
) {
850 if (qdio_outbound_q_done(q
))
853 if (!siga_syncs_out_pci(q
))
856 tasklet_schedule(&q
->tasklet
);
860 static void qdio_handle_activate_check(struct ccw_device
*cdev
,
861 unsigned long intparm
, int cstat
, int dstat
)
863 struct qdio_irq
*irq_ptr
= cdev
->private->qdio_data
;
866 DBF_ERROR("%4x ACT CHECK", irq_ptr
->schid
.sch_no
);
867 DBF_ERROR("intp :%lx", intparm
);
868 DBF_ERROR("ds: %2x cs:%2x", dstat
, cstat
);
870 if (irq_ptr
->nr_input_qs
) {
871 q
= irq_ptr
->input_qs
[0];
872 } else if (irq_ptr
->nr_output_qs
) {
873 q
= irq_ptr
->output_qs
[0];
878 q
->handler(q
->irq_ptr
->cdev
, QDIO_ERROR_ACTIVATE_CHECK_CONDITION
,
879 0, -1, -1, irq_ptr
->int_parm
);
881 qdio_set_state(irq_ptr
, QDIO_IRQ_STATE_STOPPED
);
884 static int qdio_establish_check_errors(struct ccw_device
*cdev
, int cstat
,
887 struct qdio_irq
*irq_ptr
= cdev
->private->qdio_data
;
889 if (cstat
|| (dstat
& ~(DEV_STAT_CHN_END
| DEV_STAT_DEV_END
))) {
890 DBF_ERROR("EQ:ck con");
894 if (!(dstat
& DEV_STAT_DEV_END
)) {
895 DBF_ERROR("EQ:no dev");
899 if (dstat
& ~(DEV_STAT_CHN_END
| DEV_STAT_DEV_END
)) {
900 DBF_ERROR("EQ: bad io");
905 DBF_ERROR("%4x EQ:error", irq_ptr
->schid
.sch_no
);
906 DBF_ERROR("ds: %2x cs:%2x", dstat
, cstat
);
908 qdio_set_state(irq_ptr
, QDIO_IRQ_STATE_ERR
);
912 static void qdio_establish_handle_irq(struct ccw_device
*cdev
, int cstat
,
915 struct qdio_irq
*irq_ptr
= cdev
->private->qdio_data
;
917 DBF_DEV_EVENT(DBF_INFO
, irq_ptr
, "qest irq");
918 if (!qdio_establish_check_errors(cdev
, cstat
, dstat
))
919 qdio_set_state(irq_ptr
, QDIO_IRQ_STATE_ESTABLISHED
);
922 /* qdio interrupt handler */
923 void qdio_int_handler(struct ccw_device
*cdev
, unsigned long intparm
,
926 struct qdio_irq
*irq_ptr
= cdev
->private->qdio_data
;
929 qdio_perf_stat_inc(&perf_stats
.qdio_int
);
931 if (!intparm
|| !irq_ptr
) {
932 DBF_ERROR("qint:%4x", cdev
->private->schid
.sch_no
);
937 switch (PTR_ERR(irb
)) {
939 DBF_ERROR("%4x IO error", irq_ptr
->schid
.sch_no
);
940 qdio_set_state(irq_ptr
, QDIO_IRQ_STATE_ERR
);
941 wake_up(&cdev
->private->wait_q
);
948 qdio_irq_check_sense(irq_ptr
, irb
);
950 cstat
= irb
->scsw
.cmd
.cstat
;
951 dstat
= irb
->scsw
.cmd
.dstat
;
953 switch (irq_ptr
->state
) {
954 case QDIO_IRQ_STATE_INACTIVE
:
955 qdio_establish_handle_irq(cdev
, cstat
, dstat
);
958 case QDIO_IRQ_STATE_CLEANUP
:
959 qdio_set_state(irq_ptr
, QDIO_IRQ_STATE_INACTIVE
);
962 case QDIO_IRQ_STATE_ESTABLISHED
:
963 case QDIO_IRQ_STATE_ACTIVE
:
964 if (cstat
& SCHN_STAT_PCI
) {
965 qdio_int_handler_pci(irq_ptr
);
968 if ((cstat
& ~SCHN_STAT_PCI
) || dstat
) {
969 qdio_handle_activate_check(cdev
, intparm
, cstat
,
976 wake_up(&cdev
->private->wait_q
);
980 * qdio_get_ssqd_desc - get qdio subchannel description
981 * @cdev: ccw device to get description for
982 * @data: where to store the ssqd
984 * Returns 0 or an error code. The results of the chsc are stored in the
985 * specified structure.
987 int qdio_get_ssqd_desc(struct ccw_device
*cdev
,
988 struct qdio_ssqd_desc
*data
)
991 if (!cdev
|| !cdev
->private)
994 DBF_EVENT("get ssqd:%4x", cdev
->private->schid
.sch_no
);
995 return qdio_setup_get_ssqd(NULL
, &cdev
->private->schid
, data
);
997 EXPORT_SYMBOL_GPL(qdio_get_ssqd_desc
);
1000 * qdio_cleanup - shutdown queues and free data structures
1001 * @cdev: associated ccw device
1002 * @how: use halt or clear to shutdown
1004 * This function calls qdio_shutdown() for @cdev with method @how.
1005 * and qdio_free(). The qdio_free() return value is ignored since
1006 * !irq_ptr is already checked.
1008 int qdio_cleanup(struct ccw_device
*cdev
, int how
)
1010 struct qdio_irq
*irq_ptr
= cdev
->private->qdio_data
;
1016 rc
= qdio_shutdown(cdev
, how
);
1021 EXPORT_SYMBOL_GPL(qdio_cleanup
);
1023 static void qdio_shutdown_queues(struct ccw_device
*cdev
)
1025 struct qdio_irq
*irq_ptr
= cdev
->private->qdio_data
;
1029 for_each_input_queue(irq_ptr
, q
, i
)
1030 tasklet_kill(&q
->tasklet
);
1032 for_each_output_queue(irq_ptr
, q
, i
) {
1033 del_timer(&q
->u
.out
.timer
);
1034 tasklet_kill(&q
->tasklet
);
1039 * qdio_shutdown - shut down a qdio subchannel
1040 * @cdev: associated ccw device
1041 * @how: use halt or clear to shutdown
1043 int qdio_shutdown(struct ccw_device
*cdev
, int how
)
1045 struct qdio_irq
*irq_ptr
= cdev
->private->qdio_data
;
1047 unsigned long flags
;
1052 BUG_ON(irqs_disabled());
1053 DBF_EVENT("qshutdown:%4x", cdev
->private->schid
.sch_no
);
1055 mutex_lock(&irq_ptr
->setup_mutex
);
1057 * Subchannel was already shot down. We cannot prevent being called
1058 * twice since cio may trigger a shutdown asynchronously.
1060 if (irq_ptr
->state
== QDIO_IRQ_STATE_INACTIVE
) {
1061 mutex_unlock(&irq_ptr
->setup_mutex
);
1066 * Indicate that the device is going down. Scheduling the queue
1067 * tasklets is forbidden from here on.
1069 qdio_set_state(irq_ptr
, QDIO_IRQ_STATE_STOPPED
);
1071 tiqdio_remove_input_queues(irq_ptr
);
1072 qdio_shutdown_queues(cdev
);
1073 qdio_shutdown_debug_entries(irq_ptr
, cdev
);
1075 /* cleanup subchannel */
1076 spin_lock_irqsave(get_ccwdev_lock(cdev
), flags
);
1078 if (how
& QDIO_FLAG_CLEANUP_USING_CLEAR
)
1079 rc
= ccw_device_clear(cdev
, QDIO_DOING_CLEANUP
);
1081 /* default behaviour is halt */
1082 rc
= ccw_device_halt(cdev
, QDIO_DOING_CLEANUP
);
1084 DBF_ERROR("%4x SHUTD ERR", irq_ptr
->schid
.sch_no
);
1085 DBF_ERROR("rc:%4d", rc
);
1089 qdio_set_state(irq_ptr
, QDIO_IRQ_STATE_CLEANUP
);
1090 spin_unlock_irqrestore(get_ccwdev_lock(cdev
), flags
);
1091 wait_event_interruptible_timeout(cdev
->private->wait_q
,
1092 irq_ptr
->state
== QDIO_IRQ_STATE_INACTIVE
||
1093 irq_ptr
->state
== QDIO_IRQ_STATE_ERR
,
1095 spin_lock_irqsave(get_ccwdev_lock(cdev
), flags
);
1098 qdio_shutdown_thinint(irq_ptr
);
1100 /* restore interrupt handler */
1101 if ((void *)cdev
->handler
== (void *)qdio_int_handler
)
1102 cdev
->handler
= irq_ptr
->orig_handler
;
1103 spin_unlock_irqrestore(get_ccwdev_lock(cdev
), flags
);
1105 qdio_set_state(irq_ptr
, QDIO_IRQ_STATE_INACTIVE
);
1106 mutex_unlock(&irq_ptr
->setup_mutex
);
1111 EXPORT_SYMBOL_GPL(qdio_shutdown
);
1114 * qdio_free - free data structures for a qdio subchannel
1115 * @cdev: associated ccw device
1117 int qdio_free(struct ccw_device
*cdev
)
1119 struct qdio_irq
*irq_ptr
= cdev
->private->qdio_data
;
1124 DBF_EVENT("qfree:%4x", cdev
->private->schid
.sch_no
);
1125 mutex_lock(&irq_ptr
->setup_mutex
);
1127 if (irq_ptr
->debug_area
!= NULL
) {
1128 debug_unregister(irq_ptr
->debug_area
);
1129 irq_ptr
->debug_area
= NULL
;
1131 cdev
->private->qdio_data
= NULL
;
1132 mutex_unlock(&irq_ptr
->setup_mutex
);
1134 qdio_release_memory(irq_ptr
);
1137 EXPORT_SYMBOL_GPL(qdio_free
);
1140 * qdio_initialize - allocate and establish queues for a qdio subchannel
1141 * @init_data: initialization data
1143 * This function first allocates queues via qdio_allocate() and on success
1144 * establishes them via qdio_establish().
1146 int qdio_initialize(struct qdio_initialize
*init_data
)
1150 rc
= qdio_allocate(init_data
);
1154 rc
= qdio_establish(init_data
);
1156 qdio_free(init_data
->cdev
);
1159 EXPORT_SYMBOL_GPL(qdio_initialize
);
1162 * qdio_allocate - allocate qdio queues and associated data
1163 * @init_data: initialization data
1165 int qdio_allocate(struct qdio_initialize
*init_data
)
1167 struct qdio_irq
*irq_ptr
;
1169 DBF_EVENT("qallocate:%4x", init_data
->cdev
->private->schid
.sch_no
);
1171 if ((init_data
->no_input_qs
&& !init_data
->input_handler
) ||
1172 (init_data
->no_output_qs
&& !init_data
->output_handler
))
1175 if ((init_data
->no_input_qs
> QDIO_MAX_QUEUES_PER_IRQ
) ||
1176 (init_data
->no_output_qs
> QDIO_MAX_QUEUES_PER_IRQ
))
1179 if ((!init_data
->input_sbal_addr_array
) ||
1180 (!init_data
->output_sbal_addr_array
))
1183 /* irq_ptr must be in GFP_DMA since it contains ccw1.cda */
1184 irq_ptr
= (void *) get_zeroed_page(GFP_KERNEL
| GFP_DMA
);
1188 mutex_init(&irq_ptr
->setup_mutex
);
1189 qdio_allocate_dbf(init_data
, irq_ptr
);
1192 * Allocate a page for the chsc calls in qdio_establish.
1193 * Must be pre-allocated since a zfcp recovery will call
1194 * qdio_establish. In case of low memory and swap on a zfcp disk
1195 * we may not be able to allocate memory otherwise.
1197 irq_ptr
->chsc_page
= get_zeroed_page(GFP_KERNEL
);
1198 if (!irq_ptr
->chsc_page
)
1201 /* qdr is used in ccw1.cda which is u32 */
1202 irq_ptr
->qdr
= (struct qdr
*) get_zeroed_page(GFP_KERNEL
| GFP_DMA
);
1205 WARN_ON((unsigned long)irq_ptr
->qdr
& 0xfff);
1207 if (qdio_allocate_qs(irq_ptr
, init_data
->no_input_qs
,
1208 init_data
->no_output_qs
))
1211 init_data
->cdev
->private->qdio_data
= irq_ptr
;
1212 qdio_set_state(irq_ptr
, QDIO_IRQ_STATE_INACTIVE
);
1215 qdio_release_memory(irq_ptr
);
1219 EXPORT_SYMBOL_GPL(qdio_allocate
);
1222 * qdio_establish - establish queues on a qdio subchannel
1223 * @init_data: initialization data
1225 int qdio_establish(struct qdio_initialize
*init_data
)
1227 struct qdio_irq
*irq_ptr
;
1228 struct ccw_device
*cdev
= init_data
->cdev
;
1229 unsigned long saveflags
;
1232 DBF_EVENT("qestablish:%4x", cdev
->private->schid
.sch_no
);
1234 irq_ptr
= cdev
->private->qdio_data
;
1238 if (cdev
->private->state
!= DEV_STATE_ONLINE
)
1241 mutex_lock(&irq_ptr
->setup_mutex
);
1242 qdio_setup_irq(init_data
);
1244 rc
= qdio_establish_thinint(irq_ptr
);
1246 mutex_unlock(&irq_ptr
->setup_mutex
);
1247 qdio_shutdown(cdev
, QDIO_FLAG_CLEANUP_USING_CLEAR
);
1252 irq_ptr
->ccw
.cmd_code
= irq_ptr
->equeue
.cmd
;
1253 irq_ptr
->ccw
.flags
= CCW_FLAG_SLI
;
1254 irq_ptr
->ccw
.count
= irq_ptr
->equeue
.count
;
1255 irq_ptr
->ccw
.cda
= (u32
)((addr_t
)irq_ptr
->qdr
);
1257 spin_lock_irqsave(get_ccwdev_lock(cdev
), saveflags
);
1258 ccw_device_set_options_mask(cdev
, 0);
1260 rc
= ccw_device_start(cdev
, &irq_ptr
->ccw
, QDIO_DOING_ESTABLISH
, 0, 0);
1262 DBF_ERROR("%4x est IO ERR", irq_ptr
->schid
.sch_no
);
1263 DBF_ERROR("rc:%4x", rc
);
1265 spin_unlock_irqrestore(get_ccwdev_lock(cdev
), saveflags
);
1268 mutex_unlock(&irq_ptr
->setup_mutex
);
1269 qdio_shutdown(cdev
, QDIO_FLAG_CLEANUP_USING_CLEAR
);
1273 wait_event_interruptible_timeout(cdev
->private->wait_q
,
1274 irq_ptr
->state
== QDIO_IRQ_STATE_ESTABLISHED
||
1275 irq_ptr
->state
== QDIO_IRQ_STATE_ERR
, HZ
);
1277 if (irq_ptr
->state
!= QDIO_IRQ_STATE_ESTABLISHED
) {
1278 mutex_unlock(&irq_ptr
->setup_mutex
);
1279 qdio_shutdown(cdev
, QDIO_FLAG_CLEANUP_USING_CLEAR
);
1283 qdio_setup_ssqd_info(irq_ptr
);
1284 DBF_EVENT("qDmmwc:%2x", irq_ptr
->ssqd_desc
.mmwc
);
1285 DBF_EVENT("qib ac:%4x", irq_ptr
->qib
.ac
);
1287 /* qebsm is now setup if available, initialize buffer states */
1288 qdio_init_buf_states(irq_ptr
);
1290 mutex_unlock(&irq_ptr
->setup_mutex
);
1291 qdio_print_subchannel_info(irq_ptr
, cdev
);
1292 qdio_setup_debug_entries(irq_ptr
, cdev
);
1295 EXPORT_SYMBOL_GPL(qdio_establish
);
1298 * qdio_activate - activate queues on a qdio subchannel
1299 * @cdev: associated cdev
1301 int qdio_activate(struct ccw_device
*cdev
)
1303 struct qdio_irq
*irq_ptr
;
1305 unsigned long saveflags
;
1307 DBF_EVENT("qactivate:%4x", cdev
->private->schid
.sch_no
);
1309 irq_ptr
= cdev
->private->qdio_data
;
1313 if (cdev
->private->state
!= DEV_STATE_ONLINE
)
1316 mutex_lock(&irq_ptr
->setup_mutex
);
1317 if (irq_ptr
->state
== QDIO_IRQ_STATE_INACTIVE
) {
1322 irq_ptr
->ccw
.cmd_code
= irq_ptr
->aqueue
.cmd
;
1323 irq_ptr
->ccw
.flags
= CCW_FLAG_SLI
;
1324 irq_ptr
->ccw
.count
= irq_ptr
->aqueue
.count
;
1325 irq_ptr
->ccw
.cda
= 0;
1327 spin_lock_irqsave(get_ccwdev_lock(cdev
), saveflags
);
1328 ccw_device_set_options(cdev
, CCWDEV_REPORT_ALL
);
1330 rc
= ccw_device_start(cdev
, &irq_ptr
->ccw
, QDIO_DOING_ACTIVATE
,
1331 0, DOIO_DENY_PREFETCH
);
1333 DBF_ERROR("%4x act IO ERR", irq_ptr
->schid
.sch_no
);
1334 DBF_ERROR("rc:%4x", rc
);
1336 spin_unlock_irqrestore(get_ccwdev_lock(cdev
), saveflags
);
1341 if (is_thinint_irq(irq_ptr
))
1342 tiqdio_add_input_queues(irq_ptr
);
1344 /* wait for subchannel to become active */
1347 switch (irq_ptr
->state
) {
1348 case QDIO_IRQ_STATE_STOPPED
:
1349 case QDIO_IRQ_STATE_ERR
:
1353 qdio_set_state(irq_ptr
, QDIO_IRQ_STATE_ACTIVE
);
1357 mutex_unlock(&irq_ptr
->setup_mutex
);
1360 EXPORT_SYMBOL_GPL(qdio_activate
);
1362 static inline int buf_in_between(int bufnr
, int start
, int count
)
1364 int end
= add_buf(start
, count
);
1367 if (bufnr
>= start
&& bufnr
< end
)
1373 /* wrap-around case */
1374 if ((bufnr
>= start
&& bufnr
<= QDIO_MAX_BUFFERS_PER_Q
) ||
1382 * handle_inbound - reset processed input buffers
1383 * @q: queue containing the buffers
1385 * @bufnr: first buffer to process
1386 * @count: how many buffers are emptied
1388 static int handle_inbound(struct qdio_q
*q
, unsigned int callflags
,
1389 int bufnr
, int count
)
1393 if (!q
->u
.in
.polling
)
1396 /* protect against stop polling setting an ACK for an emptied slsb */
1397 if (count
== QDIO_MAX_BUFFERS_PER_Q
) {
1398 /* overwriting everything, just delete polling status */
1399 q
->u
.in
.polling
= 0;
1400 q
->u
.in
.ack_count
= 0;
1402 } else if (buf_in_between(q
->u
.in
.ack_start
, bufnr
, count
)) {
1404 /* partial overwrite, just update ack_start */
1405 diff
= add_buf(bufnr
, count
);
1406 diff
= sub_buf(diff
, q
->u
.in
.ack_start
);
1407 q
->u
.in
.ack_count
-= diff
;
1408 if (q
->u
.in
.ack_count
<= 0) {
1409 q
->u
.in
.polling
= 0;
1410 q
->u
.in
.ack_count
= 0;
1413 q
->u
.in
.ack_start
= add_buf(q
->u
.in
.ack_start
, diff
);
1416 /* the only ACK will be deleted, so stop polling */
1417 q
->u
.in
.polling
= 0;
1421 count
= set_buf_states(q
, bufnr
, SLSB_CU_INPUT_EMPTY
, count
);
1423 used
= atomic_add_return(count
, &q
->nr_buf_used
) - count
;
1424 BUG_ON(used
+ count
> QDIO_MAX_BUFFERS_PER_Q
);
1426 /* no need to signal as long as the adapter had free buffers */
1430 if (need_siga_in(q
))
1431 return qdio_siga_input(q
);
1436 * handle_outbound - process filled outbound buffers
1437 * @q: queue containing the buffers
1439 * @bufnr: first buffer to process
1440 * @count: how many buffers are filled
1442 static int handle_outbound(struct qdio_q
*q
, unsigned int callflags
,
1443 int bufnr
, int count
)
1445 unsigned char state
;
1448 qdio_perf_stat_inc(&perf_stats
.outbound_handler
);
1450 count
= set_buf_states(q
, bufnr
, SLSB_CU_OUTPUT_PRIMED
, count
);
1451 used
= atomic_add_return(count
, &q
->nr_buf_used
);
1452 BUG_ON(used
> QDIO_MAX_BUFFERS_PER_Q
);
1454 if (callflags
& QDIO_FLAG_PCI_OUT
)
1455 q
->u
.out
.pci_out_enabled
= 1;
1457 q
->u
.out
.pci_out_enabled
= 0;
1459 if (queue_type(q
) == QDIO_IQDIO_QFMT
) {
1460 if (multicast_outbound(q
))
1461 rc
= qdio_kick_outbound_q(q
);
1463 if ((q
->irq_ptr
->ssqd_desc
.mmwc
> 1) &&
1465 (count
<= q
->irq_ptr
->ssqd_desc
.mmwc
)) {
1466 /* exploit enhanced SIGA */
1467 q
->u
.out
.use_enh_siga
= 1;
1468 rc
= qdio_kick_outbound_q(q
);
1471 * One siga-w per buffer required for unicast
1474 q
->u
.out
.use_enh_siga
= 0;
1476 rc
= qdio_kick_outbound_q(q
);
1484 if (need_siga_sync(q
)) {
1485 qdio_siga_sync_q(q
);
1489 /* try to fast requeue buffers */
1490 get_buf_state(q
, prev_buf(bufnr
), &state
, 0);
1491 if (state
!= SLSB_CU_OUTPUT_PRIMED
)
1492 rc
= qdio_kick_outbound_q(q
);
1494 DBF_DEV_EVENT(DBF_INFO
, q
->irq_ptr
, "fast-req");
1495 qdio_perf_stat_inc(&perf_stats
.fast_requeue
);
1498 tasklet_schedule(&q
->tasklet
);
1503 * do_QDIO - process input or output buffers
1504 * @cdev: associated ccw_device for the qdio subchannel
1505 * @callflags: input or output and special flags from the program
1506 * @q_nr: queue number
1507 * @bufnr: buffer number
1508 * @count: how many buffers to process
1510 int do_QDIO(struct ccw_device
*cdev
, unsigned int callflags
,
1511 int q_nr
, int bufnr
, int count
)
1513 struct qdio_irq
*irq_ptr
;
1515 if ((bufnr
> QDIO_MAX_BUFFERS_PER_Q
) ||
1516 (count
> QDIO_MAX_BUFFERS_PER_Q
) ||
1517 (q_nr
> QDIO_MAX_QUEUES_PER_IRQ
))
1523 irq_ptr
= cdev
->private->qdio_data
;
1527 if (callflags
& QDIO_FLAG_SYNC_INPUT
)
1528 DBF_DEV_EVENT(DBF_INFO
, irq_ptr
, "doQDIO input");
1530 DBF_DEV_EVENT(DBF_INFO
, irq_ptr
, "doQDIO output");
1531 DBF_DEV_EVENT(DBF_INFO
, irq_ptr
, "q:%1d flag:%4x", q_nr
, callflags
);
1532 DBF_DEV_EVENT(DBF_INFO
, irq_ptr
, "buf:%2d cnt:%3d", bufnr
, count
);
1534 if (irq_ptr
->state
!= QDIO_IRQ_STATE_ACTIVE
)
1537 if (callflags
& QDIO_FLAG_SYNC_INPUT
)
1538 return handle_inbound(irq_ptr
->input_qs
[q_nr
],
1539 callflags
, bufnr
, count
);
1540 else if (callflags
& QDIO_FLAG_SYNC_OUTPUT
)
1541 return handle_outbound(irq_ptr
->output_qs
[q_nr
],
1542 callflags
, bufnr
, count
);
1545 EXPORT_SYMBOL_GPL(do_QDIO
);
1547 static int __init
init_QDIO(void)
1551 rc
= qdio_setup_init();
1554 rc
= tiqdio_allocate_memory();
1557 rc
= qdio_debug_init();
1560 rc
= qdio_setup_perf_stats();
1563 rc
= tiqdio_register_thinints();
1569 qdio_remove_perf_stats();
1573 tiqdio_free_memory();
1579 static void __exit
exit_QDIO(void)
1581 tiqdio_unregister_thinints();
1582 tiqdio_free_memory();
1583 qdio_remove_perf_stats();
1588 module_init(init_QDIO
);
1589 module_exit(exit_QDIO
);