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 <linux/gfp.h>
17 #include <linux/kernel_stat.h>
18 #include <asm/atomic.h>
19 #include <asm/debug.h>
26 #include "qdio_debug.h"
28 MODULE_AUTHOR("Utz Bacher <utz.bacher@de.ibm.com>,"\
29 "Jan Glauber <jang@linux.vnet.ibm.com>");
30 MODULE_DESCRIPTION("QDIO base support");
31 MODULE_LICENSE("GPL");
33 static inline int do_siga_sync(unsigned long schid,
34 unsigned int out_mask, unsigned int in_mask,
37 register unsigned long __fc asm ("0") = fc;
38 register unsigned long __schid asm ("1") = schid;
39 register unsigned long out asm ("2") = out_mask;
40 register unsigned long in asm ("3") = in_mask;
48 : "d" (__fc), "d" (__schid), "d" (out), "d" (in) : "cc");
52 static inline int do_siga_input(unsigned long schid, unsigned int mask,
55 register unsigned long __fc asm ("0") = fc;
56 register unsigned long __schid asm ("1") = schid;
57 register unsigned long __mask asm ("2") = mask;
65 : "d" (__fc), "d" (__schid), "d" (__mask) : "cc", "memory");
70 * do_siga_output - perform SIGA-w/wt function
71 * @schid: subchannel id or in case of QEBSM the subchannel token
72 * @mask: which output queues to process
73 * @bb: busy bit indicator, set only if SIGA-w/wt could not access a buffer
74 * @fc: function code to perform
76 * Returns cc or QDIO_ERROR_SIGA_ACCESS_EXCEPTION.
77 * Note: For IQDC unicast queues only the highest priority queue is processed.
79 static inline int do_siga_output(unsigned long schid, unsigned long mask,
80 unsigned int *bb, unsigned int fc)
82 register unsigned long __fc asm("0") = fc;
83 register unsigned long __schid asm("1") = schid;
84 register unsigned long __mask asm("2") = mask;
85 int cc = QDIO_ERROR_SIGA_ACCESS_EXCEPTION;
93 : "+d" (cc), "+d" (__fc), "+d" (__schid), "+d" (__mask)
95 *bb = ((unsigned int) __fc) >> 31;
99 static inline int qdio_check_ccq(struct qdio_q *q, unsigned int ccq)
101 /* all done or next buffer state different */
102 if (ccq == 0 || ccq == 32)
104 /* not all buffers processed */
105 if (ccq == 96 || ccq == 97)
107 /* notify devices immediately */
108 DBF_ERROR("%4x ccq:%3d", SCH_NO(q), ccq);
113 * qdio_do_eqbs - extract buffer states for QEBSM
114 * @q: queue to manipulate
115 * @state: state of the extracted buffers
116 * @start: buffer number to start at
117 * @count: count of buffers to examine
118 * @auto_ack: automatically acknowledge buffers
120 * Returns the number of successfully extracted equal buffer states.
121 * Stops processing if a state is different from the last buffers state.
123 static int qdio_do_eqbs(struct qdio_q *q, unsigned char *state,
124 int start, int count, int auto_ack)
126 unsigned int ccq = 0;
127 int tmp_count = count, tmp_start = start;
131 BUG_ON(!q->irq_ptr->sch_token);
135 nr += q->irq_ptr->nr_input_qs;
137 ccq = do_eqbs(q->irq_ptr->sch_token, state, nr, &tmp_start, &tmp_count,
139 rc = qdio_check_ccq(q, ccq);
141 /* At least one buffer was processed, return and extract the remaining
144 if ((ccq == 96) && (count != tmp_count)) {
145 qperf_inc(q, eqbs_partial);
146 return (count - tmp_count);
150 DBF_DEV_EVENT(DBF_WARN, q->irq_ptr, "EQBS again:%2d", ccq);
155 DBF_ERROR("%4x EQBS ERROR", SCH_NO(q));
156 DBF_ERROR("%3d%3d%2d", count, tmp_count, nr);
157 q->handler(q->irq_ptr->cdev,
158 QDIO_ERROR_ACTIVATE_CHECK_CONDITION,
159 0, -1, -1, q->irq_ptr->int_parm);
162 return count - tmp_count;
166 * qdio_do_sqbs - set buffer states for QEBSM
167 * @q: queue to manipulate
168 * @state: new state of the buffers
169 * @start: first buffer number to change
170 * @count: how many buffers to change
172 * Returns the number of successfully changed buffers.
173 * Does retrying until the specified count of buffer states is set or an
176 static int qdio_do_sqbs(struct qdio_q *q, unsigned char state, int start,
179 unsigned int ccq = 0;
180 int tmp_count = count, tmp_start = start;
187 BUG_ON(!q->irq_ptr->sch_token);
191 nr += q->irq_ptr->nr_input_qs;
193 ccq = do_sqbs(q->irq_ptr->sch_token, state, nr, &tmp_start, &tmp_count);
194 rc = qdio_check_ccq(q, ccq);
196 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "SQBS again:%2d", ccq);
197 qperf_inc(q, sqbs_partial);
201 DBF_ERROR("%4x SQBS ERROR", SCH_NO(q));
202 DBF_ERROR("%3d%3d%2d", count, tmp_count, nr);
203 q->handler(q->irq_ptr->cdev,
204 QDIO_ERROR_ACTIVATE_CHECK_CONDITION,
205 0, -1, -1, q->irq_ptr->int_parm);
209 return count - tmp_count;
212 /* returns number of examined buffers and their common state in *state */
213 static inline int get_buf_states(struct qdio_q *q, unsigned int bufnr,
214 unsigned char *state, unsigned int count,
217 unsigned char __state = 0;
220 BUG_ON(bufnr > QDIO_MAX_BUFFERS_MASK);
221 BUG_ON(count > QDIO_MAX_BUFFERS_PER_Q);
224 return qdio_do_eqbs(q, state, bufnr, count, auto_ack);
226 for (i = 0; i < count; i++) {
228 __state = q->slsb.val[bufnr];
229 else if (q->slsb.val[bufnr] != __state)
231 bufnr = next_buf(bufnr);
237 static inline int get_buf_state(struct qdio_q *q, unsigned int bufnr,
238 unsigned char *state, int auto_ack)
240 return get_buf_states(q, bufnr, state, 1, auto_ack);
243 /* wrap-around safe setting of slsb states, returns number of changed buffers */
244 static inline int set_buf_states(struct qdio_q *q, int bufnr,
245 unsigned char state, int count)
249 BUG_ON(bufnr > QDIO_MAX_BUFFERS_MASK);
250 BUG_ON(count > QDIO_MAX_BUFFERS_PER_Q);
253 return qdio_do_sqbs(q, state, bufnr, count);
255 for (i = 0; i < count; i++) {
256 xchg(&q->slsb.val[bufnr], state);
257 bufnr = next_buf(bufnr);
262 static inline int set_buf_state(struct qdio_q *q, int bufnr,
265 return set_buf_states(q, bufnr, state, 1);
268 /* set slsb states to initial state */
269 void qdio_init_buf_states(struct qdio_irq *irq_ptr)
274 for_each_input_queue(irq_ptr, q, i)
275 set_buf_states(q, 0, SLSB_P_INPUT_NOT_INIT,
276 QDIO_MAX_BUFFERS_PER_Q);
277 for_each_output_queue(irq_ptr, q, i)
278 set_buf_states(q, 0, SLSB_P_OUTPUT_NOT_INIT,
279 QDIO_MAX_BUFFERS_PER_Q);
282 static inline int qdio_siga_sync(struct qdio_q *q, unsigned int output,
285 unsigned long schid = *((u32 *) &q->irq_ptr->schid);
286 unsigned int fc = QDIO_SIGA_SYNC;
289 if (!need_siga_sync(q))
292 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "siga-s:%1d", q->nr);
293 qperf_inc(q, siga_sync);
296 schid = q->irq_ptr->sch_token;
297 fc |= QDIO_SIGA_QEBSM_FLAG;
300 cc = do_siga_sync(schid, output, input, fc);
302 DBF_ERROR("%4x SIGA-S:%2d", SCH_NO(q), cc);
306 static inline int qdio_siga_sync_q(struct qdio_q *q)
309 return qdio_siga_sync(q, 0, q->mask);
311 return qdio_siga_sync(q, q->mask, 0);
314 static inline int qdio_siga_sync_out(struct qdio_q *q)
316 return qdio_siga_sync(q, ~0U, 0);
319 static inline int qdio_siga_sync_all(struct qdio_q *q)
321 return qdio_siga_sync(q, ~0U, ~0U);
324 static int qdio_siga_output(struct qdio_q *q, unsigned int *busy_bit)
326 unsigned long schid = *((u32 *) &q->irq_ptr->schid);
327 unsigned int fc = QDIO_SIGA_WRITE;
331 if (q->u.out.use_enh_siga)
335 schid = q->irq_ptr->sch_token;
336 fc |= QDIO_SIGA_QEBSM_FLAG;
339 cc = do_siga_output(schid, q->mask, busy_bit, fc);
341 /* hipersocket busy condition */
343 WARN_ON(queue_type(q) != QDIO_IQDIO_QFMT || cc != 2);
346 start_time = get_clock();
349 if ((get_clock() - start_time) < QDIO_BUSY_BIT_PATIENCE)
355 static inline int qdio_siga_input(struct qdio_q *q)
357 unsigned long schid = *((u32 *) &q->irq_ptr->schid);
358 unsigned int fc = QDIO_SIGA_READ;
361 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "siga-r:%1d", q->nr);
362 qperf_inc(q, siga_read);
365 schid = q->irq_ptr->sch_token;
366 fc |= QDIO_SIGA_QEBSM_FLAG;
369 cc = do_siga_input(schid, q->mask, fc);
371 DBF_ERROR("%4x SIGA-R:%2d", SCH_NO(q), cc);
375 static inline void qdio_sync_after_thinint(struct qdio_q *q)
377 if (pci_out_supported(q)) {
378 if (need_siga_sync_thinint(q))
379 qdio_siga_sync_all(q);
380 else if (need_siga_sync_out_thinint(q))
381 qdio_siga_sync_out(q);
386 int debug_get_buf_state(struct qdio_q *q, unsigned int bufnr,
387 unsigned char *state)
390 return get_buf_states(q, bufnr, state, 1, 0);
393 static inline void qdio_stop_polling(struct qdio_q *q)
395 if (!q->u.in.polling)
399 qperf_inc(q, stop_polling);
401 /* show the card that we are not polling anymore */
403 set_buf_states(q, q->u.in.ack_start, SLSB_P_INPUT_NOT_INIT,
405 q->u.in.ack_count = 0;
407 set_buf_state(q, q->u.in.ack_start, SLSB_P_INPUT_NOT_INIT);
410 static inline void account_sbals(struct qdio_q *q, int count)
414 q->q_stats.nr_sbal_total += count;
415 if (count == QDIO_MAX_BUFFERS_MASK) {
416 q->q_stats.nr_sbals[7]++;
421 q->q_stats.nr_sbals[pos]++;
424 static void announce_buffer_error(struct qdio_q *q, int count)
426 q->qdio_error |= QDIO_ERROR_SLSB_STATE;
428 /* special handling for no target buffer empty */
429 if ((!q->is_input_q &&
430 (q->sbal[q->first_to_check]->element[15].flags & 0xff) == 0x10)) {
431 qperf_inc(q, target_full);
432 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "OUTFULL FTC:%02x",
437 DBF_ERROR("%4x BUF ERROR", SCH_NO(q));
438 DBF_ERROR((q->is_input_q) ? "IN:%2d" : "OUT:%2d", q->nr);
439 DBF_ERROR("FTC:%3d C:%3d", q->first_to_check, count);
440 DBF_ERROR("F14:%2x F15:%2x",
441 q->sbal[q->first_to_check]->element[14].flags & 0xff,
442 q->sbal[q->first_to_check]->element[15].flags & 0xff);
445 static inline void inbound_primed(struct qdio_q *q, int count)
449 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "in prim: %02x", count);
451 /* for QEBSM the ACK was already set by EQBS */
453 if (!q->u.in.polling) {
455 q->u.in.ack_count = count;
456 q->u.in.ack_start = q->first_to_check;
460 /* delete the previous ACK's */
461 set_buf_states(q, q->u.in.ack_start, SLSB_P_INPUT_NOT_INIT,
463 q->u.in.ack_count = count;
464 q->u.in.ack_start = q->first_to_check;
469 * ACK the newest buffer. The ACK will be removed in qdio_stop_polling
470 * or by the next inbound run.
472 new = add_buf(q->first_to_check, count - 1);
473 if (q->u.in.polling) {
474 /* reset the previous ACK but first set the new one */
475 set_buf_state(q, new, SLSB_P_INPUT_ACK);
476 set_buf_state(q, q->u.in.ack_start, SLSB_P_INPUT_NOT_INIT);
479 set_buf_state(q, new, SLSB_P_INPUT_ACK);
482 q->u.in.ack_start = new;
486 /* need to change ALL buffers to get more interrupts */
487 set_buf_states(q, q->first_to_check, SLSB_P_INPUT_NOT_INIT, count);
490 static int get_inbound_buffer_frontier(struct qdio_q *q)
496 * Don't check 128 buffers, as otherwise qdio_inbound_q_moved
499 count = min(atomic_read(&q->nr_buf_used), QDIO_MAX_BUFFERS_MASK);
500 stop = add_buf(q->first_to_check, count);
502 if (q->first_to_check == stop)
506 * No siga sync here, as a PCI or we after a thin interrupt
507 * already sync'ed the queues.
509 count = get_buf_states(q, q->first_to_check, &state, count, 1);
514 case SLSB_P_INPUT_PRIMED:
515 inbound_primed(q, count);
516 q->first_to_check = add_buf(q->first_to_check, count);
517 if (atomic_sub(count, &q->nr_buf_used) == 0)
518 qperf_inc(q, inbound_queue_full);
519 if (q->irq_ptr->perf_stat_enabled)
520 account_sbals(q, count);
522 case SLSB_P_INPUT_ERROR:
523 announce_buffer_error(q, count);
524 /* process the buffer, the upper layer will take care of it */
525 q->first_to_check = add_buf(q->first_to_check, count);
526 atomic_sub(count, &q->nr_buf_used);
527 if (q->irq_ptr->perf_stat_enabled)
528 account_sbals_error(q, count);
530 case SLSB_CU_INPUT_EMPTY:
531 case SLSB_P_INPUT_NOT_INIT:
532 case SLSB_P_INPUT_ACK:
533 if (q->irq_ptr->perf_stat_enabled)
534 q->q_stats.nr_sbal_nop++;
535 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "in nop");
541 return q->first_to_check;
544 static int qdio_inbound_q_moved(struct qdio_q *q)
548 bufnr = get_inbound_buffer_frontier(q);
550 if ((bufnr != q->last_move) || q->qdio_error) {
551 q->last_move = bufnr;
552 if (!is_thinint_irq(q->irq_ptr) && MACHINE_IS_LPAR)
553 q->u.in.timestamp = get_clock();
559 static inline int qdio_inbound_q_done(struct qdio_q *q)
561 unsigned char state = 0;
563 if (!atomic_read(&q->nr_buf_used))
567 get_buf_state(q, q->first_to_check, &state, 0);
569 if (state == SLSB_P_INPUT_PRIMED || state == SLSB_P_INPUT_ERROR)
570 /* more work coming */
573 if (is_thinint_irq(q->irq_ptr))
576 /* don't poll under z/VM */
581 * At this point we know, that inbound first_to_check
582 * has (probably) not moved (see qdio_inbound_processing).
584 if (get_clock() > q->u.in.timestamp + QDIO_INPUT_THRESHOLD) {
585 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "in done:%02x",
592 static void qdio_kick_handler(struct qdio_q *q)
594 int start = q->first_to_kick;
595 int end = q->first_to_check;
598 if (unlikely(q->irq_ptr->state != QDIO_IRQ_STATE_ACTIVE))
601 count = sub_buf(end, start);
604 qperf_inc(q, inbound_handler);
605 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "kih s:%02x c:%02x", start, count);
607 qperf_inc(q, outbound_handler);
608 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "koh: s:%02x c:%02x",
612 q->handler(q->irq_ptr->cdev, q->qdio_error, q->nr, start, count,
613 q->irq_ptr->int_parm);
615 /* for the next time */
616 q->first_to_kick = end;
620 static void __qdio_inbound_processing(struct qdio_q *q)
622 qperf_inc(q, tasklet_inbound);
624 if (!qdio_inbound_q_moved(q))
627 qdio_kick_handler(q);
629 if (!qdio_inbound_q_done(q)) {
630 /* means poll time is not yet over */
631 qperf_inc(q, tasklet_inbound_resched);
632 if (likely(q->irq_ptr->state != QDIO_IRQ_STATE_STOPPED)) {
633 tasklet_schedule(&q->tasklet);
638 qdio_stop_polling(q);
640 * We need to check again to not lose initiative after
641 * resetting the ACK state.
643 if (!qdio_inbound_q_done(q)) {
644 qperf_inc(q, tasklet_inbound_resched2);
645 if (likely(q->irq_ptr->state != QDIO_IRQ_STATE_STOPPED))
646 tasklet_schedule(&q->tasklet);
650 void qdio_inbound_processing(unsigned long data)
652 struct qdio_q *q = (struct qdio_q *)data;
653 __qdio_inbound_processing(q);
656 static int get_outbound_buffer_frontier(struct qdio_q *q)
661 if (((queue_type(q) != QDIO_IQDIO_QFMT) && !pci_out_supported(q)) ||
662 (queue_type(q) == QDIO_IQDIO_QFMT && multicast_outbound(q)))
666 * Don't check 128 buffers, as otherwise qdio_inbound_q_moved
669 count = min(atomic_read(&q->nr_buf_used), QDIO_MAX_BUFFERS_MASK);
670 stop = add_buf(q->first_to_check, count);
672 if (q->first_to_check == stop)
673 return q->first_to_check;
675 count = get_buf_states(q, q->first_to_check, &state, count, 0);
677 return q->first_to_check;
680 case SLSB_P_OUTPUT_EMPTY:
681 /* the adapter got it */
682 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "out empty:%1d %02x", q->nr, count);
684 atomic_sub(count, &q->nr_buf_used);
685 q->first_to_check = add_buf(q->first_to_check, count);
686 if (q->irq_ptr->perf_stat_enabled)
687 account_sbals(q, count);
689 case SLSB_P_OUTPUT_ERROR:
690 announce_buffer_error(q, count);
691 /* process the buffer, the upper layer will take care of it */
692 q->first_to_check = add_buf(q->first_to_check, count);
693 atomic_sub(count, &q->nr_buf_used);
694 if (q->irq_ptr->perf_stat_enabled)
695 account_sbals_error(q, count);
697 case SLSB_CU_OUTPUT_PRIMED:
698 /* the adapter has not fetched the output yet */
699 if (q->irq_ptr->perf_stat_enabled)
700 q->q_stats.nr_sbal_nop++;
701 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "out primed:%1d", q->nr);
703 case SLSB_P_OUTPUT_NOT_INIT:
704 case SLSB_P_OUTPUT_HALTED:
709 return q->first_to_check;
712 /* all buffers processed? */
713 static inline int qdio_outbound_q_done(struct qdio_q *q)
715 return atomic_read(&q->nr_buf_used) == 0;
718 static inline int qdio_outbound_q_moved(struct qdio_q *q)
722 bufnr = get_outbound_buffer_frontier(q);
724 if ((bufnr != q->last_move) || q->qdio_error) {
725 q->last_move = bufnr;
726 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "out moved:%1d", q->nr);
732 static int qdio_kick_outbound_q(struct qdio_q *q)
734 unsigned int busy_bit;
737 if (!need_siga_out(q))
740 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "siga-w:%1d", q->nr);
741 qperf_inc(q, siga_write);
743 cc = qdio_siga_output(q, &busy_bit);
749 DBF_ERROR("%4x cc2 REP:%1d", SCH_NO(q), q->nr);
750 cc |= QDIO_ERROR_SIGA_BUSY;
752 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "siga-w cc2:%1d", q->nr);
756 DBF_ERROR("%4x SIGA-W:%1d", SCH_NO(q), cc);
762 static void __qdio_outbound_processing(struct qdio_q *q)
764 qperf_inc(q, tasklet_outbound);
765 BUG_ON(atomic_read(&q->nr_buf_used) < 0);
767 if (qdio_outbound_q_moved(q))
768 qdio_kick_handler(q);
770 if (queue_type(q) == QDIO_ZFCP_QFMT)
771 if (!pci_out_supported(q) && !qdio_outbound_q_done(q))
774 /* bail out for HiperSockets unicast queues */
775 if (queue_type(q) == QDIO_IQDIO_QFMT && !multicast_outbound(q))
778 if ((queue_type(q) == QDIO_IQDIO_QFMT) &&
779 (atomic_read(&q->nr_buf_used)) > QDIO_IQDIO_POLL_LVL)
782 if (q->u.out.pci_out_enabled)
786 * Now we know that queue type is either qeth without pci enabled
787 * or HiperSockets multicast. Make sure buffer switch from PRIMED to
788 * EMPTY is noticed and outbound_handler is called after some time.
790 if (qdio_outbound_q_done(q))
791 del_timer(&q->u.out.timer);
793 if (!timer_pending(&q->u.out.timer))
794 mod_timer(&q->u.out.timer, jiffies + 10 * HZ);
798 if (unlikely(q->irq_ptr->state == QDIO_IRQ_STATE_STOPPED))
800 tasklet_schedule(&q->tasklet);
803 /* outbound tasklet */
804 void qdio_outbound_processing(unsigned long data)
806 struct qdio_q *q = (struct qdio_q *)data;
807 __qdio_outbound_processing(q);
810 void qdio_outbound_timer(unsigned long data)
812 struct qdio_q *q = (struct qdio_q *)data;
814 if (unlikely(q->irq_ptr->state == QDIO_IRQ_STATE_STOPPED))
816 tasklet_schedule(&q->tasklet);
819 static inline void qdio_check_outbound_after_thinint(struct qdio_q *q)
824 if (!pci_out_supported(q))
827 for_each_output_queue(q->irq_ptr, out, i)
828 if (!qdio_outbound_q_done(out))
829 tasklet_schedule(&out->tasklet);
832 static void __tiqdio_inbound_processing(struct qdio_q *q)
834 qperf_inc(q, tasklet_inbound);
835 qdio_sync_after_thinint(q);
838 * The interrupt could be caused by a PCI request. Check the
839 * PCI capable outbound queues.
841 qdio_check_outbound_after_thinint(q);
843 if (!qdio_inbound_q_moved(q))
846 qdio_kick_handler(q);
848 if (!qdio_inbound_q_done(q)) {
849 qperf_inc(q, tasklet_inbound_resched);
850 if (likely(q->irq_ptr->state != QDIO_IRQ_STATE_STOPPED)) {
851 tasklet_schedule(&q->tasklet);
856 qdio_stop_polling(q);
858 * We need to check again to not lose initiative after
859 * resetting the ACK state.
861 if (!qdio_inbound_q_done(q)) {
862 qperf_inc(q, tasklet_inbound_resched2);
863 if (likely(q->irq_ptr->state != QDIO_IRQ_STATE_STOPPED))
864 tasklet_schedule(&q->tasklet);
868 void tiqdio_inbound_processing(unsigned long data)
870 struct qdio_q *q = (struct qdio_q *)data;
871 __tiqdio_inbound_processing(q);
874 static inline void qdio_set_state(struct qdio_irq *irq_ptr,
875 enum qdio_irq_states state)
877 DBF_DEV_EVENT(DBF_INFO, irq_ptr, "newstate: %1d", state);
879 irq_ptr->state = state;
883 static void qdio_irq_check_sense(struct qdio_irq *irq_ptr, struct irb *irb)
885 if (irb->esw.esw0.erw.cons) {
886 DBF_ERROR("%4x sense:", irq_ptr->schid.sch_no);
887 DBF_ERROR_HEX(irb, 64);
888 DBF_ERROR_HEX(irb->ecw, 64);
892 /* PCI interrupt handler */
893 static void qdio_int_handler_pci(struct qdio_irq *irq_ptr)
898 if (unlikely(irq_ptr->state == QDIO_IRQ_STATE_STOPPED))
901 for_each_input_queue(irq_ptr, q, i) {
902 if (q->u.in.queue_start_poll) {
903 /* skip if polling is enabled or already in work */
904 if (test_and_set_bit(QDIO_QUEUE_IRQS_DISABLED,
905 &q->u.in.queue_irq_state)) {
906 qperf_inc(q, int_discarded);
909 q->u.in.queue_start_poll(q->irq_ptr->cdev, q->nr,
910 q->irq_ptr->int_parm);
912 tasklet_schedule(&q->tasklet);
915 if (!(irq_ptr->qib.ac & QIB_AC_OUTBOUND_PCI_SUPPORTED))
918 for_each_output_queue(irq_ptr, q, i) {
919 if (qdio_outbound_q_done(q))
922 if (!siga_syncs_out_pci(q))
925 tasklet_schedule(&q->tasklet);
929 static void qdio_handle_activate_check(struct ccw_device *cdev,
930 unsigned long intparm, int cstat, int dstat)
932 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
935 DBF_ERROR("%4x ACT CHECK", irq_ptr->schid.sch_no);
936 DBF_ERROR("intp :%lx", intparm);
937 DBF_ERROR("ds: %2x cs:%2x", dstat, cstat);
939 if (irq_ptr->nr_input_qs) {
940 q = irq_ptr->input_qs[0];
941 } else if (irq_ptr->nr_output_qs) {
942 q = irq_ptr->output_qs[0];
947 q->handler(q->irq_ptr->cdev, QDIO_ERROR_ACTIVATE_CHECK_CONDITION,
948 0, -1, -1, irq_ptr->int_parm);
950 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_STOPPED);
953 static void qdio_establish_handle_irq(struct ccw_device *cdev, int cstat,
956 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
958 DBF_DEV_EVENT(DBF_INFO, irq_ptr, "qest irq");
962 if (dstat & ~(DEV_STAT_DEV_END | DEV_STAT_CHN_END))
964 if (!(dstat & DEV_STAT_DEV_END))
966 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_ESTABLISHED);
970 DBF_ERROR("%4x EQ:error", irq_ptr->schid.sch_no);
971 DBF_ERROR("ds: %2x cs:%2x", dstat, cstat);
972 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_ERR);
975 /* qdio interrupt handler */
976 void qdio_int_handler(struct ccw_device *cdev, unsigned long intparm,
979 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
982 if (!intparm || !irq_ptr) {
983 DBF_ERROR("qint:%4x", cdev->private->schid.sch_no);
987 kstat_cpu(smp_processor_id()).irqs[IOINT_QDI]++;
988 if (irq_ptr->perf_stat_enabled)
989 irq_ptr->perf_stat.qdio_int++;
992 switch (PTR_ERR(irb)) {
994 DBF_ERROR("%4x IO error", irq_ptr->schid.sch_no);
995 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_ERR);
996 wake_up(&cdev->private->wait_q);
1003 qdio_irq_check_sense(irq_ptr, irb);
1004 cstat = irb->scsw.cmd.cstat;
1005 dstat = irb->scsw.cmd.dstat;
1007 switch (irq_ptr->state) {
1008 case QDIO_IRQ_STATE_INACTIVE:
1009 qdio_establish_handle_irq(cdev, cstat, dstat);
1011 case QDIO_IRQ_STATE_CLEANUP:
1012 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_INACTIVE);
1014 case QDIO_IRQ_STATE_ESTABLISHED:
1015 case QDIO_IRQ_STATE_ACTIVE:
1016 if (cstat & SCHN_STAT_PCI) {
1017 qdio_int_handler_pci(irq_ptr);
1021 qdio_handle_activate_check(cdev, intparm, cstat,
1024 case QDIO_IRQ_STATE_STOPPED:
1029 wake_up(&cdev->private->wait_q);
1033 * qdio_get_ssqd_desc - get qdio subchannel description
1034 * @cdev: ccw device to get description for
1035 * @data: where to store the ssqd
1037 * Returns 0 or an error code. The results of the chsc are stored in the
1038 * specified structure.
1040 int qdio_get_ssqd_desc(struct ccw_device *cdev,
1041 struct qdio_ssqd_desc *data)
1044 if (!cdev || !cdev->private)
1047 DBF_EVENT("get ssqd:%4x", cdev->private->schid.sch_no);
1048 return qdio_setup_get_ssqd(NULL, &cdev->private->schid, data);
1050 EXPORT_SYMBOL_GPL(qdio_get_ssqd_desc);
1052 static void qdio_shutdown_queues(struct ccw_device *cdev)
1054 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
1058 for_each_input_queue(irq_ptr, q, i)
1059 tasklet_kill(&q->tasklet);
1061 for_each_output_queue(irq_ptr, q, i) {
1062 del_timer(&q->u.out.timer);
1063 tasklet_kill(&q->tasklet);
1068 * qdio_shutdown - shut down a qdio subchannel
1069 * @cdev: associated ccw device
1070 * @how: use halt or clear to shutdown
1072 int qdio_shutdown(struct ccw_device *cdev, int how)
1074 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
1076 unsigned long flags;
1081 BUG_ON(irqs_disabled());
1082 DBF_EVENT("qshutdown:%4x", cdev->private->schid.sch_no);
1084 mutex_lock(&irq_ptr->setup_mutex);
1086 * Subchannel was already shot down. We cannot prevent being called
1087 * twice since cio may trigger a shutdown asynchronously.
1089 if (irq_ptr->state == QDIO_IRQ_STATE_INACTIVE) {
1090 mutex_unlock(&irq_ptr->setup_mutex);
1095 * Indicate that the device is going down. Scheduling the queue
1096 * tasklets is forbidden from here on.
1098 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_STOPPED);
1100 tiqdio_remove_input_queues(irq_ptr);
1101 qdio_shutdown_queues(cdev);
1102 qdio_shutdown_debug_entries(irq_ptr, cdev);
1104 /* cleanup subchannel */
1105 spin_lock_irqsave(get_ccwdev_lock(cdev), flags);
1107 if (how & QDIO_FLAG_CLEANUP_USING_CLEAR)
1108 rc = ccw_device_clear(cdev, QDIO_DOING_CLEANUP);
1110 /* default behaviour is halt */
1111 rc = ccw_device_halt(cdev, QDIO_DOING_CLEANUP);
1113 DBF_ERROR("%4x SHUTD ERR", irq_ptr->schid.sch_no);
1114 DBF_ERROR("rc:%4d", rc);
1118 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_CLEANUP);
1119 spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);
1120 wait_event_interruptible_timeout(cdev->private->wait_q,
1121 irq_ptr->state == QDIO_IRQ_STATE_INACTIVE ||
1122 irq_ptr->state == QDIO_IRQ_STATE_ERR,
1124 spin_lock_irqsave(get_ccwdev_lock(cdev), flags);
1127 qdio_shutdown_thinint(irq_ptr);
1129 /* restore interrupt handler */
1130 if ((void *)cdev->handler == (void *)qdio_int_handler)
1131 cdev->handler = irq_ptr->orig_handler;
1132 spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);
1134 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_INACTIVE);
1135 mutex_unlock(&irq_ptr->setup_mutex);
1140 EXPORT_SYMBOL_GPL(qdio_shutdown);
1143 * qdio_free - free data structures for a qdio subchannel
1144 * @cdev: associated ccw device
1146 int qdio_free(struct ccw_device *cdev)
1148 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
1153 DBF_EVENT("qfree:%4x", cdev->private->schid.sch_no);
1154 mutex_lock(&irq_ptr->setup_mutex);
1156 if (irq_ptr->debug_area != NULL) {
1157 debug_unregister(irq_ptr->debug_area);
1158 irq_ptr->debug_area = NULL;
1160 cdev->private->qdio_data = NULL;
1161 mutex_unlock(&irq_ptr->setup_mutex);
1163 qdio_release_memory(irq_ptr);
1166 EXPORT_SYMBOL_GPL(qdio_free);
1169 * qdio_allocate - allocate qdio queues and associated data
1170 * @init_data: initialization data
1172 int qdio_allocate(struct qdio_initialize *init_data)
1174 struct qdio_irq *irq_ptr;
1176 DBF_EVENT("qallocate:%4x", init_data->cdev->private->schid.sch_no);
1178 if ((init_data->no_input_qs && !init_data->input_handler) ||
1179 (init_data->no_output_qs && !init_data->output_handler))
1182 if ((init_data->no_input_qs > QDIO_MAX_QUEUES_PER_IRQ) ||
1183 (init_data->no_output_qs > QDIO_MAX_QUEUES_PER_IRQ))
1186 if ((!init_data->input_sbal_addr_array) ||
1187 (!init_data->output_sbal_addr_array))
1190 /* irq_ptr must be in GFP_DMA since it contains ccw1.cda */
1191 irq_ptr = (void *) get_zeroed_page(GFP_KERNEL | GFP_DMA);
1195 mutex_init(&irq_ptr->setup_mutex);
1196 qdio_allocate_dbf(init_data, irq_ptr);
1199 * Allocate a page for the chsc calls in qdio_establish.
1200 * Must be pre-allocated since a zfcp recovery will call
1201 * qdio_establish. In case of low memory and swap on a zfcp disk
1202 * we may not be able to allocate memory otherwise.
1204 irq_ptr->chsc_page = get_zeroed_page(GFP_KERNEL);
1205 if (!irq_ptr->chsc_page)
1208 /* qdr is used in ccw1.cda which is u32 */
1209 irq_ptr->qdr = (struct qdr *) get_zeroed_page(GFP_KERNEL | GFP_DMA);
1212 WARN_ON((unsigned long)irq_ptr->qdr & 0xfff);
1214 if (qdio_allocate_qs(irq_ptr, init_data->no_input_qs,
1215 init_data->no_output_qs))
1218 init_data->cdev->private->qdio_data = irq_ptr;
1219 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_INACTIVE);
1222 qdio_release_memory(irq_ptr);
1226 EXPORT_SYMBOL_GPL(qdio_allocate);
1229 * qdio_establish - establish queues on a qdio subchannel
1230 * @init_data: initialization data
1232 int qdio_establish(struct qdio_initialize *init_data)
1234 struct qdio_irq *irq_ptr;
1235 struct ccw_device *cdev = init_data->cdev;
1236 unsigned long saveflags;
1239 DBF_EVENT("qestablish:%4x", cdev->private->schid.sch_no);
1241 irq_ptr = cdev->private->qdio_data;
1245 if (cdev->private->state != DEV_STATE_ONLINE)
1248 mutex_lock(&irq_ptr->setup_mutex);
1249 qdio_setup_irq(init_data);
1251 rc = qdio_establish_thinint(irq_ptr);
1253 mutex_unlock(&irq_ptr->setup_mutex);
1254 qdio_shutdown(cdev, QDIO_FLAG_CLEANUP_USING_CLEAR);
1259 irq_ptr->ccw.cmd_code = irq_ptr->equeue.cmd;
1260 irq_ptr->ccw.flags = CCW_FLAG_SLI;
1261 irq_ptr->ccw.count = irq_ptr->equeue.count;
1262 irq_ptr->ccw.cda = (u32)((addr_t)irq_ptr->qdr);
1264 spin_lock_irqsave(get_ccwdev_lock(cdev), saveflags);
1265 ccw_device_set_options_mask(cdev, 0);
1267 rc = ccw_device_start(cdev, &irq_ptr->ccw, QDIO_DOING_ESTABLISH, 0, 0);
1269 DBF_ERROR("%4x est IO ERR", irq_ptr->schid.sch_no);
1270 DBF_ERROR("rc:%4x", rc);
1272 spin_unlock_irqrestore(get_ccwdev_lock(cdev), saveflags);
1275 mutex_unlock(&irq_ptr->setup_mutex);
1276 qdio_shutdown(cdev, QDIO_FLAG_CLEANUP_USING_CLEAR);
1280 wait_event_interruptible_timeout(cdev->private->wait_q,
1281 irq_ptr->state == QDIO_IRQ_STATE_ESTABLISHED ||
1282 irq_ptr->state == QDIO_IRQ_STATE_ERR, HZ);
1284 if (irq_ptr->state != QDIO_IRQ_STATE_ESTABLISHED) {
1285 mutex_unlock(&irq_ptr->setup_mutex);
1286 qdio_shutdown(cdev, QDIO_FLAG_CLEANUP_USING_CLEAR);
1290 qdio_setup_ssqd_info(irq_ptr);
1291 DBF_EVENT("qDmmwc:%2x", irq_ptr->ssqd_desc.mmwc);
1292 DBF_EVENT("qib ac:%4x", irq_ptr->qib.ac);
1294 /* qebsm is now setup if available, initialize buffer states */
1295 qdio_init_buf_states(irq_ptr);
1297 mutex_unlock(&irq_ptr->setup_mutex);
1298 qdio_print_subchannel_info(irq_ptr, cdev);
1299 qdio_setup_debug_entries(irq_ptr, cdev);
1302 EXPORT_SYMBOL_GPL(qdio_establish);
1305 * qdio_activate - activate queues on a qdio subchannel
1306 * @cdev: associated cdev
1308 int qdio_activate(struct ccw_device *cdev)
1310 struct qdio_irq *irq_ptr;
1312 unsigned long saveflags;
1314 DBF_EVENT("qactivate:%4x", cdev->private->schid.sch_no);
1316 irq_ptr = cdev->private->qdio_data;
1320 if (cdev->private->state != DEV_STATE_ONLINE)
1323 mutex_lock(&irq_ptr->setup_mutex);
1324 if (irq_ptr->state == QDIO_IRQ_STATE_INACTIVE) {
1329 irq_ptr->ccw.cmd_code = irq_ptr->aqueue.cmd;
1330 irq_ptr->ccw.flags = CCW_FLAG_SLI;
1331 irq_ptr->ccw.count = irq_ptr->aqueue.count;
1332 irq_ptr->ccw.cda = 0;
1334 spin_lock_irqsave(get_ccwdev_lock(cdev), saveflags);
1335 ccw_device_set_options(cdev, CCWDEV_REPORT_ALL);
1337 rc = ccw_device_start(cdev, &irq_ptr->ccw, QDIO_DOING_ACTIVATE,
1338 0, DOIO_DENY_PREFETCH);
1340 DBF_ERROR("%4x act IO ERR", irq_ptr->schid.sch_no);
1341 DBF_ERROR("rc:%4x", rc);
1343 spin_unlock_irqrestore(get_ccwdev_lock(cdev), saveflags);
1348 if (is_thinint_irq(irq_ptr))
1349 tiqdio_add_input_queues(irq_ptr);
1351 /* wait for subchannel to become active */
1354 switch (irq_ptr->state) {
1355 case QDIO_IRQ_STATE_STOPPED:
1356 case QDIO_IRQ_STATE_ERR:
1360 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_ACTIVE);
1364 mutex_unlock(&irq_ptr->setup_mutex);
1367 EXPORT_SYMBOL_GPL(qdio_activate);
1369 static inline int buf_in_between(int bufnr, int start, int count)
1371 int end = add_buf(start, count);
1374 if (bufnr >= start && bufnr < end)
1380 /* wrap-around case */
1381 if ((bufnr >= start && bufnr <= QDIO_MAX_BUFFERS_PER_Q) ||
1389 * handle_inbound - reset processed input buffers
1390 * @q: queue containing the buffers
1392 * @bufnr: first buffer to process
1393 * @count: how many buffers are emptied
1395 static int handle_inbound(struct qdio_q *q, unsigned int callflags,
1396 int bufnr, int count)
1400 qperf_inc(q, inbound_call);
1402 if (!q->u.in.polling)
1405 /* protect against stop polling setting an ACK for an emptied slsb */
1406 if (count == QDIO_MAX_BUFFERS_PER_Q) {
1407 /* overwriting everything, just delete polling status */
1408 q->u.in.polling = 0;
1409 q->u.in.ack_count = 0;
1411 } else if (buf_in_between(q->u.in.ack_start, bufnr, count)) {
1413 /* partial overwrite, just update ack_start */
1414 diff = add_buf(bufnr, count);
1415 diff = sub_buf(diff, q->u.in.ack_start);
1416 q->u.in.ack_count -= diff;
1417 if (q->u.in.ack_count <= 0) {
1418 q->u.in.polling = 0;
1419 q->u.in.ack_count = 0;
1422 q->u.in.ack_start = add_buf(q->u.in.ack_start, diff);
1425 /* the only ACK will be deleted, so stop polling */
1426 q->u.in.polling = 0;
1430 count = set_buf_states(q, bufnr, SLSB_CU_INPUT_EMPTY, count);
1432 used = atomic_add_return(count, &q->nr_buf_used) - count;
1433 BUG_ON(used + count > QDIO_MAX_BUFFERS_PER_Q);
1435 /* no need to signal as long as the adapter had free buffers */
1439 if (need_siga_in(q))
1440 return qdio_siga_input(q);
1445 * handle_outbound - process filled outbound buffers
1446 * @q: queue containing the buffers
1448 * @bufnr: first buffer to process
1449 * @count: how many buffers are filled
1451 static int handle_outbound(struct qdio_q *q, unsigned int callflags,
1452 int bufnr, int count)
1454 unsigned char state;
1457 qperf_inc(q, outbound_call);
1459 count = set_buf_states(q, bufnr, SLSB_CU_OUTPUT_PRIMED, count);
1460 used = atomic_add_return(count, &q->nr_buf_used);
1461 BUG_ON(used > QDIO_MAX_BUFFERS_PER_Q);
1463 if (used == QDIO_MAX_BUFFERS_PER_Q)
1464 qperf_inc(q, outbound_queue_full);
1466 if (callflags & QDIO_FLAG_PCI_OUT) {
1467 q->u.out.pci_out_enabled = 1;
1468 qperf_inc(q, pci_request_int);
1471 q->u.out.pci_out_enabled = 0;
1473 if (queue_type(q) == QDIO_IQDIO_QFMT) {
1474 if (multicast_outbound(q))
1475 rc = qdio_kick_outbound_q(q);
1477 if ((q->irq_ptr->ssqd_desc.mmwc > 1) &&
1479 (count <= q->irq_ptr->ssqd_desc.mmwc)) {
1480 /* exploit enhanced SIGA */
1481 q->u.out.use_enh_siga = 1;
1482 rc = qdio_kick_outbound_q(q);
1485 * One siga-w per buffer required for unicast
1488 q->u.out.use_enh_siga = 0;
1490 rc = qdio_kick_outbound_q(q);
1498 if (need_siga_sync(q)) {
1499 qdio_siga_sync_q(q);
1503 /* try to fast requeue buffers */
1504 get_buf_state(q, prev_buf(bufnr), &state, 0);
1505 if (state != SLSB_CU_OUTPUT_PRIMED)
1506 rc = qdio_kick_outbound_q(q);
1508 qperf_inc(q, fast_requeue);
1511 /* in case of SIGA errors we must process the error immediately */
1512 if (used >= q->u.out.scan_threshold || rc)
1513 tasklet_schedule(&q->tasklet);
1515 /* free the SBALs in case of no further traffic */
1516 if (!timer_pending(&q->u.out.timer))
1517 mod_timer(&q->u.out.timer, jiffies + HZ);
1522 * do_QDIO - process input or output buffers
1523 * @cdev: associated ccw_device for the qdio subchannel
1524 * @callflags: input or output and special flags from the program
1525 * @q_nr: queue number
1526 * @bufnr: buffer number
1527 * @count: how many buffers to process
1529 int do_QDIO(struct ccw_device *cdev, unsigned int callflags,
1530 int q_nr, unsigned int bufnr, unsigned int count)
1532 struct qdio_irq *irq_ptr;
1534 if (bufnr >= QDIO_MAX_BUFFERS_PER_Q || count > QDIO_MAX_BUFFERS_PER_Q)
1537 irq_ptr = cdev->private->qdio_data;
1541 DBF_DEV_EVENT(DBF_INFO, irq_ptr,
1542 "do%02x b:%02x c:%02x", callflags, bufnr, count);
1544 if (irq_ptr->state != QDIO_IRQ_STATE_ACTIVE)
1547 if (callflags & QDIO_FLAG_SYNC_INPUT)
1548 return handle_inbound(irq_ptr->input_qs[q_nr],
1549 callflags, bufnr, count);
1550 else if (callflags & QDIO_FLAG_SYNC_OUTPUT)
1551 return handle_outbound(irq_ptr->output_qs[q_nr],
1552 callflags, bufnr, count);
1555 EXPORT_SYMBOL_GPL(do_QDIO);
1558 * qdio_start_irq - process input buffers
1559 * @cdev: associated ccw_device for the qdio subchannel
1560 * @nr: input queue number
1564 * 1 - irqs not started since new data is available
1566 int qdio_start_irq(struct ccw_device *cdev, int nr)
1569 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
1573 q = irq_ptr->input_qs[nr];
1575 WARN_ON(queue_irqs_enabled(q));
1577 if (!shared_ind(q->irq_ptr->dsci))
1578 xchg(q->irq_ptr->dsci, 0);
1580 qdio_stop_polling(q);
1581 clear_bit(QDIO_QUEUE_IRQS_DISABLED, &q->u.in.queue_irq_state);
1584 * We need to check again to not lose initiative after
1585 * resetting the ACK state.
1587 if (!shared_ind(q->irq_ptr->dsci) && *q->irq_ptr->dsci)
1589 if (!qdio_inbound_q_done(q))
1594 if (test_and_set_bit(QDIO_QUEUE_IRQS_DISABLED,
1595 &q->u.in.queue_irq_state))
1601 EXPORT_SYMBOL(qdio_start_irq);
1604 * qdio_get_next_buffers - process input buffers
1605 * @cdev: associated ccw_device for the qdio subchannel
1606 * @nr: input queue number
1607 * @bufnr: first filled buffer number
1608 * @error: buffers are in error state
1612 * = 0 - no new buffers found
1613 * > 0 - number of processed buffers
1615 int qdio_get_next_buffers(struct ccw_device *cdev, int nr, int *bufnr,
1620 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
1624 q = irq_ptr->input_qs[nr];
1625 WARN_ON(queue_irqs_enabled(q));
1627 qdio_sync_after_thinint(q);
1630 * The interrupt could be caused by a PCI request. Check the
1631 * PCI capable outbound queues.
1633 qdio_check_outbound_after_thinint(q);
1635 if (!qdio_inbound_q_moved(q))
1638 /* Note: upper-layer MUST stop processing immediately here ... */
1639 if (unlikely(q->irq_ptr->state != QDIO_IRQ_STATE_ACTIVE))
1642 start = q->first_to_kick;
1643 end = q->first_to_check;
1645 *error = q->qdio_error;
1647 /* for the next time */
1648 q->first_to_kick = end;
1650 return sub_buf(end, start);
1652 EXPORT_SYMBOL(qdio_get_next_buffers);
1655 * qdio_stop_irq - disable interrupt processing for the device
1656 * @cdev: associated ccw_device for the qdio subchannel
1657 * @nr: input queue number
1660 * 0 - interrupts were already disabled
1661 * 1 - interrupts successfully disabled
1663 int qdio_stop_irq(struct ccw_device *cdev, int nr)
1666 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
1670 q = irq_ptr->input_qs[nr];
1672 if (test_and_set_bit(QDIO_QUEUE_IRQS_DISABLED,
1673 &q->u.in.queue_irq_state))
1678 EXPORT_SYMBOL(qdio_stop_irq);
1680 static int __init init_QDIO(void)
1684 rc = qdio_setup_init();
1687 rc = tiqdio_allocate_memory();
1690 rc = qdio_debug_init();
1693 rc = tiqdio_register_thinints();
1701 tiqdio_free_memory();
1707 static void __exit exit_QDIO(void)
1709 tiqdio_unregister_thinints();
1710 tiqdio_free_memory();
1715 module_init(init_QDIO);
1716 module_exit(exit_QDIO);