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 static 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 inline 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 static 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 static inline void qdio_sync_after_thinint(struct qdio_q
*q
)
363 if (pci_out_supported(q
)) {
364 if (need_siga_sync_thinint(q
))
365 qdio_siga_sync_all(q
);
366 else if (need_siga_sync_out_thinint(q
))
367 qdio_siga_sync_out(q
);
372 int debug_get_buf_state(struct qdio_q
*q
, unsigned int bufnr
,
373 unsigned char *state
)
376 return get_buf_states(q
, bufnr
, state
, 1, 0);
379 static inline void qdio_stop_polling(struct qdio_q
*q
)
381 if (!q
->u
.in
.polling
)
385 qdio_perf_stat_inc(&perf_stats
.debug_stop_polling
);
387 /* show the card that we are not polling anymore */
389 set_buf_states(q
, q
->u
.in
.ack_start
, SLSB_P_INPUT_NOT_INIT
,
391 q
->u
.in
.ack_count
= 0;
393 set_buf_state(q
, q
->u
.in
.ack_start
, SLSB_P_INPUT_NOT_INIT
);
396 static void announce_buffer_error(struct qdio_q
*q
, int count
)
398 q
->qdio_error
|= QDIO_ERROR_SLSB_STATE
;
400 /* special handling for no target buffer empty */
401 if ((!q
->is_input_q
&&
402 (q
->sbal
[q
->first_to_check
]->element
[15].flags
& 0xff) == 0x10)) {
403 qdio_perf_stat_inc(&perf_stats
.outbound_target_full
);
404 DBF_DEV_EVENT(DBF_INFO
, q
->irq_ptr
, "OUTFULL FTC:%3d",
409 DBF_ERROR("%4x BUF ERROR", SCH_NO(q
));
410 DBF_ERROR((q
->is_input_q
) ? "IN:%2d" : "OUT:%2d", q
->nr
);
411 DBF_ERROR("FTC:%3d C:%3d", q
->first_to_check
, count
);
412 DBF_ERROR("F14:%2x F15:%2x",
413 q
->sbal
[q
->first_to_check
]->element
[14].flags
& 0xff,
414 q
->sbal
[q
->first_to_check
]->element
[15].flags
& 0xff);
417 static inline void inbound_primed(struct qdio_q
*q
, int count
)
421 DBF_DEV_EVENT(DBF_INFO
, q
->irq_ptr
, "in prim: %3d", count
);
423 /* for QEBSM the ACK was already set by EQBS */
425 if (!q
->u
.in
.polling
) {
427 q
->u
.in
.ack_count
= count
;
428 q
->u
.in
.ack_start
= q
->first_to_check
;
432 /* delete the previous ACK's */
433 set_buf_states(q
, q
->u
.in
.ack_start
, SLSB_P_INPUT_NOT_INIT
,
435 q
->u
.in
.ack_count
= count
;
436 q
->u
.in
.ack_start
= q
->first_to_check
;
441 * ACK the newest buffer. The ACK will be removed in qdio_stop_polling
442 * or by the next inbound run.
444 new = add_buf(q
->first_to_check
, count
- 1);
445 if (q
->u
.in
.polling
) {
446 /* reset the previous ACK but first set the new one */
447 set_buf_state(q
, new, SLSB_P_INPUT_ACK
);
448 set_buf_state(q
, q
->u
.in
.ack_start
, SLSB_P_INPUT_NOT_INIT
);
451 set_buf_state(q
, new, SLSB_P_INPUT_ACK
);
454 q
->u
.in
.ack_start
= new;
460 static int get_inbound_buffer_frontier(struct qdio_q
*q
)
466 * Don't check 128 buffers, as otherwise qdio_inbound_q_moved
469 count
= min(atomic_read(&q
->nr_buf_used
), QDIO_MAX_BUFFERS_MASK
);
470 stop
= add_buf(q
->first_to_check
, count
);
472 if (q
->first_to_check
== stop
)
476 * No siga sync here, as a PCI or we after a thin interrupt
477 * already sync'ed the queues.
479 count
= get_buf_states(q
, q
->first_to_check
, &state
, count
, 1);
484 case SLSB_P_INPUT_PRIMED
:
485 inbound_primed(q
, count
);
486 q
->first_to_check
= add_buf(q
->first_to_check
, count
);
487 atomic_sub(count
, &q
->nr_buf_used
);
489 case SLSB_P_INPUT_ERROR
:
490 announce_buffer_error(q
, count
);
491 /* process the buffer, the upper layer will take care of it */
492 q
->first_to_check
= add_buf(q
->first_to_check
, count
);
493 atomic_sub(count
, &q
->nr_buf_used
);
495 case SLSB_CU_INPUT_EMPTY
:
496 case SLSB_P_INPUT_NOT_INIT
:
497 case SLSB_P_INPUT_ACK
:
498 DBF_DEV_EVENT(DBF_INFO
, q
->irq_ptr
, "in nop");
504 return q
->first_to_check
;
507 static int qdio_inbound_q_moved(struct qdio_q
*q
)
511 bufnr
= get_inbound_buffer_frontier(q
);
513 if ((bufnr
!= q
->last_move
) || q
->qdio_error
) {
514 q
->last_move
= bufnr
;
515 if (!is_thinint_irq(q
->irq_ptr
) && !MACHINE_IS_VM
)
516 q
->u
.in
.timestamp
= get_usecs();
522 static inline int qdio_inbound_q_done(struct qdio_q
*q
)
524 unsigned char state
= 0;
526 if (!atomic_read(&q
->nr_buf_used
))
530 get_buf_state(q
, q
->first_to_check
, &state
, 0);
532 if (state
== SLSB_P_INPUT_PRIMED
)
533 /* more work coming */
536 if (is_thinint_irq(q
->irq_ptr
))
539 /* don't poll under z/VM */
544 * At this point we know, that inbound first_to_check
545 * has (probably) not moved (see qdio_inbound_processing).
547 if (get_usecs() > q
->u
.in
.timestamp
+ QDIO_INPUT_THRESHOLD
) {
548 DBF_DEV_EVENT(DBF_INFO
, q
->irq_ptr
, "in done:%3d",
555 static void qdio_kick_handler(struct qdio_q
*q
)
557 int start
= q
->first_to_kick
;
558 int end
= q
->first_to_check
;
561 if (unlikely(q
->irq_ptr
->state
!= QDIO_IRQ_STATE_ACTIVE
))
564 count
= sub_buf(end
, start
);
567 qdio_perf_stat_inc(&perf_stats
.inbound_handler
);
568 DBF_DEV_EVENT(DBF_INFO
, q
->irq_ptr
, "kih s:%3d c:%3d", start
, count
);
570 DBF_DEV_EVENT(DBF_INFO
, q
->irq_ptr
, "koh: nr:%1d", q
->nr
);
571 DBF_DEV_EVENT(DBF_INFO
, q
->irq_ptr
, "s:%3d c:%3d", start
, count
);
574 q
->handler(q
->irq_ptr
->cdev
, q
->qdio_error
, q
->nr
, start
, count
,
575 q
->irq_ptr
->int_parm
);
577 /* for the next time */
578 q
->first_to_kick
= end
;
582 static void __qdio_inbound_processing(struct qdio_q
*q
)
584 qdio_perf_stat_inc(&perf_stats
.tasklet_inbound
);
586 if (!qdio_inbound_q_moved(q
))
589 qdio_kick_handler(q
);
591 if (!qdio_inbound_q_done(q
))
592 /* means poll time is not yet over */
595 qdio_stop_polling(q
);
597 * We need to check again to not lose initiative after
598 * resetting the ACK state.
600 if (!qdio_inbound_q_done(q
))
604 void qdio_inbound_processing(unsigned long data
)
606 struct qdio_q
*q
= (struct qdio_q
*)data
;
607 __qdio_inbound_processing(q
);
610 static int get_outbound_buffer_frontier(struct qdio_q
*q
)
615 if (((queue_type(q
) != QDIO_IQDIO_QFMT
) && !pci_out_supported(q
)) ||
616 (queue_type(q
) == QDIO_IQDIO_QFMT
&& multicast_outbound(q
)))
620 * Don't check 128 buffers, as otherwise qdio_inbound_q_moved
623 count
= min(atomic_read(&q
->nr_buf_used
), QDIO_MAX_BUFFERS_MASK
);
624 stop
= add_buf(q
->first_to_check
, count
);
626 if (q
->first_to_check
== stop
)
627 return q
->first_to_check
;
629 count
= get_buf_states(q
, q
->first_to_check
, &state
, count
, 0);
631 return q
->first_to_check
;
634 case SLSB_P_OUTPUT_EMPTY
:
635 /* the adapter got it */
636 DBF_DEV_EVENT(DBF_INFO
, q
->irq_ptr
, "out empty:%1d %3d", q
->nr
, count
);
638 atomic_sub(count
, &q
->nr_buf_used
);
639 q
->first_to_check
= add_buf(q
->first_to_check
, count
);
641 case SLSB_P_OUTPUT_ERROR
:
642 announce_buffer_error(q
, count
);
643 /* process the buffer, the upper layer will take care of it */
644 q
->first_to_check
= add_buf(q
->first_to_check
, count
);
645 atomic_sub(count
, &q
->nr_buf_used
);
647 case SLSB_CU_OUTPUT_PRIMED
:
648 /* the adapter has not fetched the output yet */
649 DBF_DEV_EVENT(DBF_INFO
, q
->irq_ptr
, "out primed:%1d", q
->nr
);
651 case SLSB_P_OUTPUT_NOT_INIT
:
652 case SLSB_P_OUTPUT_HALTED
:
657 return q
->first_to_check
;
660 /* all buffers processed? */
661 static inline int qdio_outbound_q_done(struct qdio_q
*q
)
663 return atomic_read(&q
->nr_buf_used
) == 0;
666 static inline int qdio_outbound_q_moved(struct qdio_q
*q
)
670 bufnr
= get_outbound_buffer_frontier(q
);
672 if ((bufnr
!= q
->last_move
) || q
->qdio_error
) {
673 q
->last_move
= bufnr
;
674 DBF_DEV_EVENT(DBF_INFO
, q
->irq_ptr
, "out moved:%1d", q
->nr
);
680 static int qdio_kick_outbound_q(struct qdio_q
*q
)
682 unsigned int busy_bit
;
685 if (!need_siga_out(q
))
688 DBF_DEV_EVENT(DBF_INFO
, q
->irq_ptr
, "siga-w:%1d", q
->nr
);
689 qdio_perf_stat_inc(&perf_stats
.siga_out
);
691 cc
= qdio_siga_output(q
, &busy_bit
);
697 DBF_ERROR("%4x cc2 REP:%1d", SCH_NO(q
), q
->nr
);
698 cc
|= QDIO_ERROR_SIGA_BUSY
;
700 DBF_DEV_EVENT(DBF_INFO
, q
->irq_ptr
, "siga-w cc2:%1d", q
->nr
);
704 DBF_ERROR("%4x SIGA-W:%1d", SCH_NO(q
), cc
);
710 static void __qdio_outbound_processing(struct qdio_q
*q
)
712 qdio_perf_stat_inc(&perf_stats
.tasklet_outbound
);
713 BUG_ON(atomic_read(&q
->nr_buf_used
) < 0);
715 if (qdio_outbound_q_moved(q
))
716 qdio_kick_handler(q
);
718 if (queue_type(q
) == QDIO_ZFCP_QFMT
)
719 if (!pci_out_supported(q
) && !qdio_outbound_q_done(q
))
722 /* bail out for HiperSockets unicast queues */
723 if (queue_type(q
) == QDIO_IQDIO_QFMT
&& !multicast_outbound(q
))
726 if ((queue_type(q
) == QDIO_IQDIO_QFMT
) &&
727 (atomic_read(&q
->nr_buf_used
)) > QDIO_IQDIO_POLL_LVL
)
730 if (q
->u
.out
.pci_out_enabled
)
734 * Now we know that queue type is either qeth without pci enabled
735 * or HiperSockets multicast. Make sure buffer switch from PRIMED to
736 * EMPTY is noticed and outbound_handler is called after some time.
738 if (qdio_outbound_q_done(q
))
739 del_timer(&q
->u
.out
.timer
);
741 if (!timer_pending(&q
->u
.out
.timer
)) {
742 mod_timer(&q
->u
.out
.timer
, jiffies
+ 10 * HZ
);
743 qdio_perf_stat_inc(&perf_stats
.debug_tl_out_timer
);
749 if (unlikely(q
->irq_ptr
->state
== QDIO_IRQ_STATE_STOPPED
))
751 tasklet_schedule(&q
->tasklet
);
754 /* outbound tasklet */
755 void qdio_outbound_processing(unsigned long data
)
757 struct qdio_q
*q
= (struct qdio_q
*)data
;
758 __qdio_outbound_processing(q
);
761 void qdio_outbound_timer(unsigned long data
)
763 struct qdio_q
*q
= (struct qdio_q
*)data
;
765 if (unlikely(q
->irq_ptr
->state
== QDIO_IRQ_STATE_STOPPED
))
767 tasklet_schedule(&q
->tasklet
);
770 static inline void qdio_check_outbound_after_thinint(struct qdio_q
*q
)
775 if (!pci_out_supported(q
))
778 for_each_output_queue(q
->irq_ptr
, out
, i
)
779 if (!qdio_outbound_q_done(out
))
780 tasklet_schedule(&out
->tasklet
);
783 static void __tiqdio_inbound_processing(struct qdio_q
*q
)
785 qdio_perf_stat_inc(&perf_stats
.thinint_inbound
);
786 qdio_sync_after_thinint(q
);
789 * The interrupt could be caused by a PCI request. Check the
790 * PCI capable outbound queues.
792 qdio_check_outbound_after_thinint(q
);
794 if (!qdio_inbound_q_moved(q
))
797 qdio_kick_handler(q
);
799 if (!qdio_inbound_q_done(q
)) {
800 qdio_perf_stat_inc(&perf_stats
.thinint_inbound_loop
);
801 if (likely(q
->irq_ptr
->state
!= QDIO_IRQ_STATE_STOPPED
)) {
802 tasklet_schedule(&q
->tasklet
);
807 qdio_stop_polling(q
);
809 * We need to check again to not lose initiative after
810 * resetting the ACK state.
812 if (!qdio_inbound_q_done(q
)) {
813 qdio_perf_stat_inc(&perf_stats
.thinint_inbound_loop2
);
814 if (likely(q
->irq_ptr
->state
!= QDIO_IRQ_STATE_STOPPED
))
815 tasklet_schedule(&q
->tasklet
);
819 void tiqdio_inbound_processing(unsigned long data
)
821 struct qdio_q
*q
= (struct qdio_q
*)data
;
822 __tiqdio_inbound_processing(q
);
825 static inline void qdio_set_state(struct qdio_irq
*irq_ptr
,
826 enum qdio_irq_states state
)
828 DBF_DEV_EVENT(DBF_INFO
, irq_ptr
, "newstate: %1d", state
);
830 irq_ptr
->state
= state
;
834 static void qdio_irq_check_sense(struct qdio_irq
*irq_ptr
, struct irb
*irb
)
836 if (irb
->esw
.esw0
.erw
.cons
) {
837 DBF_ERROR("%4x sense:", irq_ptr
->schid
.sch_no
);
838 DBF_ERROR_HEX(irb
, 64);
839 DBF_ERROR_HEX(irb
->ecw
, 64);
843 /* PCI interrupt handler */
844 static void qdio_int_handler_pci(struct qdio_irq
*irq_ptr
)
849 if (unlikely(irq_ptr
->state
== QDIO_IRQ_STATE_STOPPED
))
852 qdio_perf_stat_inc(&perf_stats
.pci_int
);
854 for_each_input_queue(irq_ptr
, q
, i
)
855 tasklet_schedule(&q
->tasklet
);
857 if (!(irq_ptr
->qib
.ac
& QIB_AC_OUTBOUND_PCI_SUPPORTED
))
860 for_each_output_queue(irq_ptr
, q
, i
) {
861 if (qdio_outbound_q_done(q
))
864 if (!siga_syncs_out_pci(q
))
867 tasklet_schedule(&q
->tasklet
);
871 static void qdio_handle_activate_check(struct ccw_device
*cdev
,
872 unsigned long intparm
, int cstat
, int dstat
)
874 struct qdio_irq
*irq_ptr
= cdev
->private->qdio_data
;
877 DBF_ERROR("%4x ACT CHECK", irq_ptr
->schid
.sch_no
);
878 DBF_ERROR("intp :%lx", intparm
);
879 DBF_ERROR("ds: %2x cs:%2x", dstat
, cstat
);
881 if (irq_ptr
->nr_input_qs
) {
882 q
= irq_ptr
->input_qs
[0];
883 } else if (irq_ptr
->nr_output_qs
) {
884 q
= irq_ptr
->output_qs
[0];
889 q
->handler(q
->irq_ptr
->cdev
, QDIO_ERROR_ACTIVATE_CHECK_CONDITION
,
890 0, -1, -1, irq_ptr
->int_parm
);
892 qdio_set_state(irq_ptr
, QDIO_IRQ_STATE_STOPPED
);
895 static void qdio_establish_handle_irq(struct ccw_device
*cdev
, int cstat
,
898 struct qdio_irq
*irq_ptr
= cdev
->private->qdio_data
;
900 DBF_DEV_EVENT(DBF_INFO
, irq_ptr
, "qest irq");
904 if (dstat
& ~(DEV_STAT_DEV_END
| DEV_STAT_CHN_END
))
906 if (!(dstat
& DEV_STAT_DEV_END
))
908 qdio_set_state(irq_ptr
, QDIO_IRQ_STATE_ESTABLISHED
);
912 DBF_ERROR("%4x EQ:error", irq_ptr
->schid
.sch_no
);
913 DBF_ERROR("ds: %2x cs:%2x", dstat
, cstat
);
914 qdio_set_state(irq_ptr
, QDIO_IRQ_STATE_ERR
);
917 /* qdio interrupt handler */
918 void qdio_int_handler(struct ccw_device
*cdev
, unsigned long intparm
,
921 struct qdio_irq
*irq_ptr
= cdev
->private->qdio_data
;
924 qdio_perf_stat_inc(&perf_stats
.qdio_int
);
926 if (!intparm
|| !irq_ptr
) {
927 DBF_ERROR("qint:%4x", cdev
->private->schid
.sch_no
);
932 switch (PTR_ERR(irb
)) {
934 DBF_ERROR("%4x IO error", irq_ptr
->schid
.sch_no
);
935 qdio_set_state(irq_ptr
, QDIO_IRQ_STATE_ERR
);
936 wake_up(&cdev
->private->wait_q
);
943 qdio_irq_check_sense(irq_ptr
, irb
);
944 cstat
= irb
->scsw
.cmd
.cstat
;
945 dstat
= irb
->scsw
.cmd
.dstat
;
947 switch (irq_ptr
->state
) {
948 case QDIO_IRQ_STATE_INACTIVE
:
949 qdio_establish_handle_irq(cdev
, cstat
, dstat
);
951 case QDIO_IRQ_STATE_CLEANUP
:
952 qdio_set_state(irq_ptr
, QDIO_IRQ_STATE_INACTIVE
);
954 case QDIO_IRQ_STATE_ESTABLISHED
:
955 case QDIO_IRQ_STATE_ACTIVE
:
956 if (cstat
& SCHN_STAT_PCI
) {
957 qdio_int_handler_pci(irq_ptr
);
961 qdio_handle_activate_check(cdev
, intparm
, cstat
,
967 wake_up(&cdev
->private->wait_q
);
971 * qdio_get_ssqd_desc - get qdio subchannel description
972 * @cdev: ccw device to get description for
973 * @data: where to store the ssqd
975 * Returns 0 or an error code. The results of the chsc are stored in the
976 * specified structure.
978 int qdio_get_ssqd_desc(struct ccw_device
*cdev
,
979 struct qdio_ssqd_desc
*data
)
982 if (!cdev
|| !cdev
->private)
985 DBF_EVENT("get ssqd:%4x", cdev
->private->schid
.sch_no
);
986 return qdio_setup_get_ssqd(NULL
, &cdev
->private->schid
, data
);
988 EXPORT_SYMBOL_GPL(qdio_get_ssqd_desc
);
991 * qdio_cleanup - shutdown queues and free data structures
992 * @cdev: associated ccw device
993 * @how: use halt or clear to shutdown
995 * This function calls qdio_shutdown() for @cdev with method @how.
996 * and qdio_free(). The qdio_free() return value is ignored since
997 * !irq_ptr is already checked.
999 int qdio_cleanup(struct ccw_device
*cdev
, int how
)
1001 struct qdio_irq
*irq_ptr
= cdev
->private->qdio_data
;
1007 rc
= qdio_shutdown(cdev
, how
);
1012 EXPORT_SYMBOL_GPL(qdio_cleanup
);
1014 static void qdio_shutdown_queues(struct ccw_device
*cdev
)
1016 struct qdio_irq
*irq_ptr
= cdev
->private->qdio_data
;
1020 for_each_input_queue(irq_ptr
, q
, i
)
1021 tasklet_kill(&q
->tasklet
);
1023 for_each_output_queue(irq_ptr
, q
, i
) {
1024 del_timer(&q
->u
.out
.timer
);
1025 tasklet_kill(&q
->tasklet
);
1030 * qdio_shutdown - shut down a qdio subchannel
1031 * @cdev: associated ccw device
1032 * @how: use halt or clear to shutdown
1034 int qdio_shutdown(struct ccw_device
*cdev
, int how
)
1036 struct qdio_irq
*irq_ptr
= cdev
->private->qdio_data
;
1038 unsigned long flags
;
1043 BUG_ON(irqs_disabled());
1044 DBF_EVENT("qshutdown:%4x", cdev
->private->schid
.sch_no
);
1046 mutex_lock(&irq_ptr
->setup_mutex
);
1048 * Subchannel was already shot down. We cannot prevent being called
1049 * twice since cio may trigger a shutdown asynchronously.
1051 if (irq_ptr
->state
== QDIO_IRQ_STATE_INACTIVE
) {
1052 mutex_unlock(&irq_ptr
->setup_mutex
);
1057 * Indicate that the device is going down. Scheduling the queue
1058 * tasklets is forbidden from here on.
1060 qdio_set_state(irq_ptr
, QDIO_IRQ_STATE_STOPPED
);
1062 tiqdio_remove_input_queues(irq_ptr
);
1063 qdio_shutdown_queues(cdev
);
1064 qdio_shutdown_debug_entries(irq_ptr
, cdev
);
1066 /* cleanup subchannel */
1067 spin_lock_irqsave(get_ccwdev_lock(cdev
), flags
);
1069 if (how
& QDIO_FLAG_CLEANUP_USING_CLEAR
)
1070 rc
= ccw_device_clear(cdev
, QDIO_DOING_CLEANUP
);
1072 /* default behaviour is halt */
1073 rc
= ccw_device_halt(cdev
, QDIO_DOING_CLEANUP
);
1075 DBF_ERROR("%4x SHUTD ERR", irq_ptr
->schid
.sch_no
);
1076 DBF_ERROR("rc:%4d", rc
);
1080 qdio_set_state(irq_ptr
, QDIO_IRQ_STATE_CLEANUP
);
1081 spin_unlock_irqrestore(get_ccwdev_lock(cdev
), flags
);
1082 wait_event_interruptible_timeout(cdev
->private->wait_q
,
1083 irq_ptr
->state
== QDIO_IRQ_STATE_INACTIVE
||
1084 irq_ptr
->state
== QDIO_IRQ_STATE_ERR
,
1086 spin_lock_irqsave(get_ccwdev_lock(cdev
), flags
);
1089 qdio_shutdown_thinint(irq_ptr
);
1091 /* restore interrupt handler */
1092 if ((void *)cdev
->handler
== (void *)qdio_int_handler
)
1093 cdev
->handler
= irq_ptr
->orig_handler
;
1094 spin_unlock_irqrestore(get_ccwdev_lock(cdev
), flags
);
1096 qdio_set_state(irq_ptr
, QDIO_IRQ_STATE_INACTIVE
);
1097 mutex_unlock(&irq_ptr
->setup_mutex
);
1102 EXPORT_SYMBOL_GPL(qdio_shutdown
);
1105 * qdio_free - free data structures for a qdio subchannel
1106 * @cdev: associated ccw device
1108 int qdio_free(struct ccw_device
*cdev
)
1110 struct qdio_irq
*irq_ptr
= cdev
->private->qdio_data
;
1115 DBF_EVENT("qfree:%4x", cdev
->private->schid
.sch_no
);
1116 mutex_lock(&irq_ptr
->setup_mutex
);
1118 if (irq_ptr
->debug_area
!= NULL
) {
1119 debug_unregister(irq_ptr
->debug_area
);
1120 irq_ptr
->debug_area
= NULL
;
1122 cdev
->private->qdio_data
= NULL
;
1123 mutex_unlock(&irq_ptr
->setup_mutex
);
1125 qdio_release_memory(irq_ptr
);
1128 EXPORT_SYMBOL_GPL(qdio_free
);
1131 * qdio_initialize - allocate and establish queues for a qdio subchannel
1132 * @init_data: initialization data
1134 * This function first allocates queues via qdio_allocate() and on success
1135 * establishes them via qdio_establish().
1137 int qdio_initialize(struct qdio_initialize
*init_data
)
1141 rc
= qdio_allocate(init_data
);
1145 rc
= qdio_establish(init_data
);
1147 qdio_free(init_data
->cdev
);
1150 EXPORT_SYMBOL_GPL(qdio_initialize
);
1153 * qdio_allocate - allocate qdio queues and associated data
1154 * @init_data: initialization data
1156 int qdio_allocate(struct qdio_initialize
*init_data
)
1158 struct qdio_irq
*irq_ptr
;
1160 DBF_EVENT("qallocate:%4x", init_data
->cdev
->private->schid
.sch_no
);
1162 if ((init_data
->no_input_qs
&& !init_data
->input_handler
) ||
1163 (init_data
->no_output_qs
&& !init_data
->output_handler
))
1166 if ((init_data
->no_input_qs
> QDIO_MAX_QUEUES_PER_IRQ
) ||
1167 (init_data
->no_output_qs
> QDIO_MAX_QUEUES_PER_IRQ
))
1170 if ((!init_data
->input_sbal_addr_array
) ||
1171 (!init_data
->output_sbal_addr_array
))
1174 /* irq_ptr must be in GFP_DMA since it contains ccw1.cda */
1175 irq_ptr
= (void *) get_zeroed_page(GFP_KERNEL
| GFP_DMA
);
1179 mutex_init(&irq_ptr
->setup_mutex
);
1180 qdio_allocate_dbf(init_data
, irq_ptr
);
1183 * Allocate a page for the chsc calls in qdio_establish.
1184 * Must be pre-allocated since a zfcp recovery will call
1185 * qdio_establish. In case of low memory and swap on a zfcp disk
1186 * we may not be able to allocate memory otherwise.
1188 irq_ptr
->chsc_page
= get_zeroed_page(GFP_KERNEL
);
1189 if (!irq_ptr
->chsc_page
)
1192 /* qdr is used in ccw1.cda which is u32 */
1193 irq_ptr
->qdr
= (struct qdr
*) get_zeroed_page(GFP_KERNEL
| GFP_DMA
);
1196 WARN_ON((unsigned long)irq_ptr
->qdr
& 0xfff);
1198 if (qdio_allocate_qs(irq_ptr
, init_data
->no_input_qs
,
1199 init_data
->no_output_qs
))
1202 init_data
->cdev
->private->qdio_data
= irq_ptr
;
1203 qdio_set_state(irq_ptr
, QDIO_IRQ_STATE_INACTIVE
);
1206 qdio_release_memory(irq_ptr
);
1210 EXPORT_SYMBOL_GPL(qdio_allocate
);
1213 * qdio_establish - establish queues on a qdio subchannel
1214 * @init_data: initialization data
1216 int qdio_establish(struct qdio_initialize
*init_data
)
1218 struct qdio_irq
*irq_ptr
;
1219 struct ccw_device
*cdev
= init_data
->cdev
;
1220 unsigned long saveflags
;
1223 DBF_EVENT("qestablish:%4x", cdev
->private->schid
.sch_no
);
1225 irq_ptr
= cdev
->private->qdio_data
;
1229 if (cdev
->private->state
!= DEV_STATE_ONLINE
)
1232 mutex_lock(&irq_ptr
->setup_mutex
);
1233 qdio_setup_irq(init_data
);
1235 rc
= qdio_establish_thinint(irq_ptr
);
1237 mutex_unlock(&irq_ptr
->setup_mutex
);
1238 qdio_shutdown(cdev
, QDIO_FLAG_CLEANUP_USING_CLEAR
);
1243 irq_ptr
->ccw
.cmd_code
= irq_ptr
->equeue
.cmd
;
1244 irq_ptr
->ccw
.flags
= CCW_FLAG_SLI
;
1245 irq_ptr
->ccw
.count
= irq_ptr
->equeue
.count
;
1246 irq_ptr
->ccw
.cda
= (u32
)((addr_t
)irq_ptr
->qdr
);
1248 spin_lock_irqsave(get_ccwdev_lock(cdev
), saveflags
);
1249 ccw_device_set_options_mask(cdev
, 0);
1251 rc
= ccw_device_start(cdev
, &irq_ptr
->ccw
, QDIO_DOING_ESTABLISH
, 0, 0);
1253 DBF_ERROR("%4x est IO ERR", irq_ptr
->schid
.sch_no
);
1254 DBF_ERROR("rc:%4x", rc
);
1256 spin_unlock_irqrestore(get_ccwdev_lock(cdev
), saveflags
);
1259 mutex_unlock(&irq_ptr
->setup_mutex
);
1260 qdio_shutdown(cdev
, QDIO_FLAG_CLEANUP_USING_CLEAR
);
1264 wait_event_interruptible_timeout(cdev
->private->wait_q
,
1265 irq_ptr
->state
== QDIO_IRQ_STATE_ESTABLISHED
||
1266 irq_ptr
->state
== QDIO_IRQ_STATE_ERR
, HZ
);
1268 if (irq_ptr
->state
!= QDIO_IRQ_STATE_ESTABLISHED
) {
1269 mutex_unlock(&irq_ptr
->setup_mutex
);
1270 qdio_shutdown(cdev
, QDIO_FLAG_CLEANUP_USING_CLEAR
);
1274 qdio_setup_ssqd_info(irq_ptr
);
1275 DBF_EVENT("qDmmwc:%2x", irq_ptr
->ssqd_desc
.mmwc
);
1276 DBF_EVENT("qib ac:%4x", irq_ptr
->qib
.ac
);
1278 /* qebsm is now setup if available, initialize buffer states */
1279 qdio_init_buf_states(irq_ptr
);
1281 mutex_unlock(&irq_ptr
->setup_mutex
);
1282 qdio_print_subchannel_info(irq_ptr
, cdev
);
1283 qdio_setup_debug_entries(irq_ptr
, cdev
);
1286 EXPORT_SYMBOL_GPL(qdio_establish
);
1289 * qdio_activate - activate queues on a qdio subchannel
1290 * @cdev: associated cdev
1292 int qdio_activate(struct ccw_device
*cdev
)
1294 struct qdio_irq
*irq_ptr
;
1296 unsigned long saveflags
;
1298 DBF_EVENT("qactivate:%4x", cdev
->private->schid
.sch_no
);
1300 irq_ptr
= cdev
->private->qdio_data
;
1304 if (cdev
->private->state
!= DEV_STATE_ONLINE
)
1307 mutex_lock(&irq_ptr
->setup_mutex
);
1308 if (irq_ptr
->state
== QDIO_IRQ_STATE_INACTIVE
) {
1313 irq_ptr
->ccw
.cmd_code
= irq_ptr
->aqueue
.cmd
;
1314 irq_ptr
->ccw
.flags
= CCW_FLAG_SLI
;
1315 irq_ptr
->ccw
.count
= irq_ptr
->aqueue
.count
;
1316 irq_ptr
->ccw
.cda
= 0;
1318 spin_lock_irqsave(get_ccwdev_lock(cdev
), saveflags
);
1319 ccw_device_set_options(cdev
, CCWDEV_REPORT_ALL
);
1321 rc
= ccw_device_start(cdev
, &irq_ptr
->ccw
, QDIO_DOING_ACTIVATE
,
1322 0, DOIO_DENY_PREFETCH
);
1324 DBF_ERROR("%4x act IO ERR", irq_ptr
->schid
.sch_no
);
1325 DBF_ERROR("rc:%4x", rc
);
1327 spin_unlock_irqrestore(get_ccwdev_lock(cdev
), saveflags
);
1332 if (is_thinint_irq(irq_ptr
))
1333 tiqdio_add_input_queues(irq_ptr
);
1335 /* wait for subchannel to become active */
1338 switch (irq_ptr
->state
) {
1339 case QDIO_IRQ_STATE_STOPPED
:
1340 case QDIO_IRQ_STATE_ERR
:
1344 qdio_set_state(irq_ptr
, QDIO_IRQ_STATE_ACTIVE
);
1348 mutex_unlock(&irq_ptr
->setup_mutex
);
1351 EXPORT_SYMBOL_GPL(qdio_activate
);
1353 static inline int buf_in_between(int bufnr
, int start
, int count
)
1355 int end
= add_buf(start
, count
);
1358 if (bufnr
>= start
&& bufnr
< end
)
1364 /* wrap-around case */
1365 if ((bufnr
>= start
&& bufnr
<= QDIO_MAX_BUFFERS_PER_Q
) ||
1373 * handle_inbound - reset processed input buffers
1374 * @q: queue containing the buffers
1376 * @bufnr: first buffer to process
1377 * @count: how many buffers are emptied
1379 static int handle_inbound(struct qdio_q
*q
, unsigned int callflags
,
1380 int bufnr
, int count
)
1384 if (!q
->u
.in
.polling
)
1387 /* protect against stop polling setting an ACK for an emptied slsb */
1388 if (count
== QDIO_MAX_BUFFERS_PER_Q
) {
1389 /* overwriting everything, just delete polling status */
1390 q
->u
.in
.polling
= 0;
1391 q
->u
.in
.ack_count
= 0;
1393 } else if (buf_in_between(q
->u
.in
.ack_start
, bufnr
, count
)) {
1395 /* partial overwrite, just update ack_start */
1396 diff
= add_buf(bufnr
, count
);
1397 diff
= sub_buf(diff
, q
->u
.in
.ack_start
);
1398 q
->u
.in
.ack_count
-= diff
;
1399 if (q
->u
.in
.ack_count
<= 0) {
1400 q
->u
.in
.polling
= 0;
1401 q
->u
.in
.ack_count
= 0;
1404 q
->u
.in
.ack_start
= add_buf(q
->u
.in
.ack_start
, diff
);
1407 /* the only ACK will be deleted, so stop polling */
1408 q
->u
.in
.polling
= 0;
1412 count
= set_buf_states(q
, bufnr
, SLSB_CU_INPUT_EMPTY
, count
);
1414 used
= atomic_add_return(count
, &q
->nr_buf_used
) - count
;
1415 BUG_ON(used
+ count
> QDIO_MAX_BUFFERS_PER_Q
);
1417 /* no need to signal as long as the adapter had free buffers */
1421 if (need_siga_in(q
))
1422 return qdio_siga_input(q
);
1427 * handle_outbound - process filled outbound buffers
1428 * @q: queue containing the buffers
1430 * @bufnr: first buffer to process
1431 * @count: how many buffers are filled
1433 static int handle_outbound(struct qdio_q
*q
, unsigned int callflags
,
1434 int bufnr
, int count
)
1436 unsigned char state
;
1439 qdio_perf_stat_inc(&perf_stats
.outbound_handler
);
1441 count
= set_buf_states(q
, bufnr
, SLSB_CU_OUTPUT_PRIMED
, count
);
1442 used
= atomic_add_return(count
, &q
->nr_buf_used
);
1443 BUG_ON(used
> QDIO_MAX_BUFFERS_PER_Q
);
1445 if (callflags
& QDIO_FLAG_PCI_OUT
)
1446 q
->u
.out
.pci_out_enabled
= 1;
1448 q
->u
.out
.pci_out_enabled
= 0;
1450 if (queue_type(q
) == QDIO_IQDIO_QFMT
) {
1451 if (multicast_outbound(q
))
1452 rc
= qdio_kick_outbound_q(q
);
1454 if ((q
->irq_ptr
->ssqd_desc
.mmwc
> 1) &&
1456 (count
<= q
->irq_ptr
->ssqd_desc
.mmwc
)) {
1457 /* exploit enhanced SIGA */
1458 q
->u
.out
.use_enh_siga
= 1;
1459 rc
= qdio_kick_outbound_q(q
);
1462 * One siga-w per buffer required for unicast
1465 q
->u
.out
.use_enh_siga
= 0;
1467 rc
= qdio_kick_outbound_q(q
);
1475 if (need_siga_sync(q
)) {
1476 qdio_siga_sync_q(q
);
1480 /* try to fast requeue buffers */
1481 get_buf_state(q
, prev_buf(bufnr
), &state
, 0);
1482 if (state
!= SLSB_CU_OUTPUT_PRIMED
)
1483 rc
= qdio_kick_outbound_q(q
);
1485 DBF_DEV_EVENT(DBF_INFO
, q
->irq_ptr
, "fast-req");
1486 qdio_perf_stat_inc(&perf_stats
.fast_requeue
);
1489 tasklet_schedule(&q
->tasklet
);
1494 * do_QDIO - process input or output buffers
1495 * @cdev: associated ccw_device for the qdio subchannel
1496 * @callflags: input or output and special flags from the program
1497 * @q_nr: queue number
1498 * @bufnr: buffer number
1499 * @count: how many buffers to process
1501 int do_QDIO(struct ccw_device
*cdev
, unsigned int callflags
,
1502 int q_nr
, unsigned int bufnr
, unsigned int count
)
1504 struct qdio_irq
*irq_ptr
;
1506 if (bufnr
>= QDIO_MAX_BUFFERS_PER_Q
|| count
> QDIO_MAX_BUFFERS_PER_Q
)
1509 irq_ptr
= cdev
->private->qdio_data
;
1513 if (callflags
& QDIO_FLAG_SYNC_INPUT
)
1514 DBF_DEV_EVENT(DBF_INFO
, irq_ptr
, "doQDIO input");
1516 DBF_DEV_EVENT(DBF_INFO
, irq_ptr
, "doQDIO output");
1517 DBF_DEV_EVENT(DBF_INFO
, irq_ptr
, "q:%1d flag:%4x", q_nr
, callflags
);
1518 DBF_DEV_EVENT(DBF_INFO
, irq_ptr
, "buf:%2d cnt:%3d", bufnr
, count
);
1520 if (irq_ptr
->state
!= QDIO_IRQ_STATE_ACTIVE
)
1523 if (callflags
& QDIO_FLAG_SYNC_INPUT
)
1524 return handle_inbound(irq_ptr
->input_qs
[q_nr
],
1525 callflags
, bufnr
, count
);
1526 else if (callflags
& QDIO_FLAG_SYNC_OUTPUT
)
1527 return handle_outbound(irq_ptr
->output_qs
[q_nr
],
1528 callflags
, bufnr
, count
);
1531 EXPORT_SYMBOL_GPL(do_QDIO
);
1533 static int __init
init_QDIO(void)
1537 rc
= qdio_setup_init();
1540 rc
= tiqdio_allocate_memory();
1543 rc
= qdio_debug_init();
1546 rc
= qdio_setup_perf_stats();
1549 rc
= tiqdio_register_thinints();
1555 qdio_remove_perf_stats();
1559 tiqdio_free_memory();
1565 static void __exit
exit_QDIO(void)
1567 tiqdio_unregister_thinints();
1568 tiqdio_free_memory();
1569 qdio_remove_perf_stats();
1574 module_init(init_QDIO
);
1575 module_exit(exit_QDIO
);