1 // SPDX-License-Identifier: GPL-2.0
3 * Linux for s390 qdio support, buffer handling, qdio API and module support.
5 * Copyright IBM Corp. 2000, 2008
6 * Author(s): Utz Bacher <utz.bacher@de.ibm.com>
7 * Jan Glauber <jang@linux.vnet.ibm.com>
8 * 2.6 cio integration by Cornelia Huck <cornelia.huck@de.ibm.com>
10 #include <linux/module.h>
11 #include <linux/init.h>
12 #include <linux/kernel.h>
13 #include <linux/timer.h>
14 #include <linux/delay.h>
15 #include <linux/gfp.h>
17 #include <linux/atomic.h>
18 #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");
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
75 * @aob: asynchronous operation block
77 * Returns condition code.
78 * Note: For IQDC unicast queues only the highest priority queue is processed.
80 static inline int do_siga_output(unsigned long schid
, unsigned long mask
,
81 unsigned int *bb
, unsigned int fc
,
84 register unsigned long __fc
asm("0") = fc
;
85 register unsigned long __schid
asm("1") = schid
;
86 register unsigned long __mask
asm("2") = mask
;
87 register unsigned long __aob
asm("3") = aob
;
94 : "=d" (cc
), "+d" (__fc
), "+d" (__aob
)
95 : "d" (__schid
), "d" (__mask
)
102 * qdio_do_eqbs - extract buffer states for QEBSM
103 * @q: queue to manipulate
104 * @state: state of the extracted buffers
105 * @start: buffer number to start at
106 * @count: count of buffers to examine
107 * @auto_ack: automatically acknowledge buffers
109 * Returns the number of successfully extracted equal buffer states.
110 * Stops processing if a state is different from the last buffers state.
112 static int qdio_do_eqbs(struct qdio_q
*q
, unsigned char *state
,
113 int start
, int count
, int auto_ack
)
115 int tmp_count
= count
, tmp_start
= start
, nr
= q
->nr
;
116 unsigned int ccq
= 0;
121 nr
+= q
->irq_ptr
->nr_input_qs
;
123 ccq
= do_eqbs(q
->irq_ptr
->sch_token
, state
, nr
, &tmp_start
, &tmp_count
,
129 /* all done, or next buffer state different */
130 return count
- tmp_count
;
132 /* not all buffers processed */
133 qperf_inc(q
, eqbs_partial
);
134 DBF_DEV_EVENT(DBF_INFO
, q
->irq_ptr
, "EQBS part:%02x",
136 return count
- tmp_count
;
138 /* no buffer processed */
139 DBF_DEV_EVENT(DBF_WARN
, q
->irq_ptr
, "EQBS again:%2d", ccq
);
142 DBF_ERROR("%4x ccq:%3d", SCH_NO(q
), ccq
);
143 DBF_ERROR("%4x EQBS ERROR", SCH_NO(q
));
144 DBF_ERROR("%3d%3d%2d", count
, tmp_count
, nr
);
145 q
->handler(q
->irq_ptr
->cdev
, QDIO_ERROR_GET_BUF_STATE
, q
->nr
,
146 q
->first_to_kick
, count
, q
->irq_ptr
->int_parm
);
152 * qdio_do_sqbs - set buffer states for QEBSM
153 * @q: queue to manipulate
154 * @state: new state of the buffers
155 * @start: first buffer number to change
156 * @count: how many buffers to change
158 * Returns the number of successfully changed buffers.
159 * Does retrying until the specified count of buffer states is set or an
162 static int qdio_do_sqbs(struct qdio_q
*q
, unsigned char state
, int start
,
165 unsigned int ccq
= 0;
166 int tmp_count
= count
, tmp_start
= start
;
174 nr
+= q
->irq_ptr
->nr_input_qs
;
176 ccq
= do_sqbs(q
->irq_ptr
->sch_token
, state
, nr
, &tmp_start
, &tmp_count
);
181 /* all done, or active buffer adapter-owned */
182 WARN_ON_ONCE(tmp_count
);
183 return count
- tmp_count
;
185 /* not all buffers processed */
186 DBF_DEV_EVENT(DBF_INFO
, q
->irq_ptr
, "SQBS again:%2d", ccq
);
187 qperf_inc(q
, sqbs_partial
);
190 DBF_ERROR("%4x ccq:%3d", SCH_NO(q
), ccq
);
191 DBF_ERROR("%4x SQBS ERROR", SCH_NO(q
));
192 DBF_ERROR("%3d%3d%2d", count
, tmp_count
, nr
);
193 q
->handler(q
->irq_ptr
->cdev
, QDIO_ERROR_SET_BUF_STATE
, q
->nr
,
194 q
->first_to_kick
, count
, q
->irq_ptr
->int_parm
);
200 * Returns number of examined buffers and their common state in *state.
201 * Requested number of buffers-to-examine must be > 0.
203 static inline int get_buf_states(struct qdio_q
*q
, unsigned int bufnr
,
204 unsigned char *state
, unsigned int count
,
205 int auto_ack
, int merge_pending
)
207 unsigned char __state
= 0;
211 return qdio_do_eqbs(q
, state
, bufnr
, count
, auto_ack
);
213 /* get initial state: */
214 __state
= q
->slsb
.val
[bufnr
];
216 /* Bail out early if there is no work on the queue: */
217 if (__state
& SLSB_OWNER_CU
)
220 if (merge_pending
&& __state
== SLSB_P_OUTPUT_PENDING
)
221 __state
= SLSB_P_OUTPUT_EMPTY
;
223 for (; i
< count
; i
++) {
224 bufnr
= next_buf(bufnr
);
226 /* merge PENDING into EMPTY: */
228 q
->slsb
.val
[bufnr
] == SLSB_P_OUTPUT_PENDING
&&
229 __state
== SLSB_P_OUTPUT_EMPTY
)
232 /* stop if next state differs from initial state: */
233 if (q
->slsb
.val
[bufnr
] != __state
)
242 static inline int get_buf_state(struct qdio_q
*q
, unsigned int bufnr
,
243 unsigned char *state
, int auto_ack
)
245 return get_buf_states(q
, bufnr
, state
, 1, auto_ack
, 0);
248 /* wrap-around safe setting of slsb states, returns number of changed buffers */
249 static inline int set_buf_states(struct qdio_q
*q
, int bufnr
,
250 unsigned char state
, int count
)
255 return qdio_do_sqbs(q
, state
, bufnr
, count
);
257 for (i
= 0; i
< count
; i
++) {
258 xchg(&q
->slsb
.val
[bufnr
], state
);
259 bufnr
= next_buf(bufnr
);
264 static inline int set_buf_state(struct qdio_q
*q
, int bufnr
,
267 return set_buf_states(q
, bufnr
, state
, 1);
270 /* set slsb states to initial state */
271 static void qdio_init_buf_states(struct qdio_irq
*irq_ptr
)
276 for_each_input_queue(irq_ptr
, q
, i
)
277 set_buf_states(q
, 0, SLSB_P_INPUT_NOT_INIT
,
278 QDIO_MAX_BUFFERS_PER_Q
);
279 for_each_output_queue(irq_ptr
, q
, i
)
280 set_buf_states(q
, 0, SLSB_P_OUTPUT_NOT_INIT
,
281 QDIO_MAX_BUFFERS_PER_Q
);
284 static inline int qdio_siga_sync(struct qdio_q
*q
, unsigned int output
,
287 unsigned long schid
= *((u32
*) &q
->irq_ptr
->schid
);
288 unsigned int fc
= QDIO_SIGA_SYNC
;
291 DBF_DEV_EVENT(DBF_INFO
, q
->irq_ptr
, "siga-s:%1d", q
->nr
);
292 qperf_inc(q
, siga_sync
);
295 schid
= q
->irq_ptr
->sch_token
;
296 fc
|= QDIO_SIGA_QEBSM_FLAG
;
299 cc
= do_siga_sync(schid
, output
, input
, fc
);
301 DBF_ERROR("%4x SIGA-S:%2d", SCH_NO(q
), cc
);
302 return (cc
) ? -EIO
: 0;
305 static inline int qdio_siga_sync_q(struct qdio_q
*q
)
308 return qdio_siga_sync(q
, 0, q
->mask
);
310 return qdio_siga_sync(q
, q
->mask
, 0);
313 static int qdio_siga_output(struct qdio_q
*q
, unsigned int count
,
314 unsigned int *busy_bit
, unsigned long aob
)
316 unsigned long schid
= *((u32
*) &q
->irq_ptr
->schid
);
317 unsigned int fc
= QDIO_SIGA_WRITE
;
321 if (queue_type(q
) == QDIO_IQDIO_QFMT
&& !multicast_outbound(q
)) {
323 fc
= QDIO_SIGA_WRITEM
;
325 fc
= QDIO_SIGA_WRITEQ
;
329 schid
= q
->irq_ptr
->sch_token
;
330 fc
|= QDIO_SIGA_QEBSM_FLAG
;
333 cc
= do_siga_output(schid
, q
->mask
, busy_bit
, fc
, aob
);
335 /* hipersocket busy condition */
336 if (unlikely(*busy_bit
)) {
340 start_time
= get_tod_clock_fast();
343 if (get_tod_clock_fast() - start_time
< QDIO_BUSY_BIT_PATIENCE
)
347 DBF_DEV_EVENT(DBF_WARN
, q
->irq_ptr
,
348 "%4x cc2 BB1:%1d", SCH_NO(q
), q
->nr
);
349 DBF_DEV_EVENT(DBF_WARN
, q
->irq_ptr
, "count:%u", retries
);
354 static inline int qdio_siga_input(struct qdio_q
*q
)
356 unsigned long schid
= *((u32
*) &q
->irq_ptr
->schid
);
357 unsigned int fc
= QDIO_SIGA_READ
;
360 DBF_DEV_EVENT(DBF_INFO
, q
->irq_ptr
, "siga-r:%1d", q
->nr
);
361 qperf_inc(q
, siga_read
);
364 schid
= q
->irq_ptr
->sch_token
;
365 fc
|= QDIO_SIGA_QEBSM_FLAG
;
368 cc
= do_siga_input(schid
, q
->mask
, fc
);
370 DBF_ERROR("%4x SIGA-R:%2d", SCH_NO(q
), cc
);
371 return (cc
) ? -EIO
: 0;
374 #define qdio_siga_sync_out(q) qdio_siga_sync(q, ~0U, 0)
375 #define qdio_siga_sync_all(q) qdio_siga_sync(q, ~0U, ~0U)
377 static inline void qdio_sync_queues(struct qdio_q
*q
)
379 /* PCI capable outbound queues will also be scanned so sync them too */
380 if (pci_out_supported(q
->irq_ptr
))
381 qdio_siga_sync_all(q
);
386 int debug_get_buf_state(struct qdio_q
*q
, unsigned int bufnr
,
387 unsigned char *state
)
389 if (need_siga_sync(q
))
391 return get_buf_state(q
, bufnr
, state
, 0);
394 static inline void qdio_stop_polling(struct qdio_q
*q
)
396 if (!q
->u
.in
.polling
)
400 qperf_inc(q
, stop_polling
);
402 /* show the card that we are not polling anymore */
404 set_buf_states(q
, q
->u
.in
.ack_start
, SLSB_P_INPUT_NOT_INIT
,
406 q
->u
.in
.ack_count
= 0;
408 set_buf_state(q
, q
->u
.in
.ack_start
, SLSB_P_INPUT_NOT_INIT
);
411 static inline void account_sbals(struct qdio_q
*q
, unsigned int count
)
415 q
->q_stats
.nr_sbal_total
+= count
;
416 if (count
== QDIO_MAX_BUFFERS_MASK
) {
417 q
->q_stats
.nr_sbals
[7]++;
421 q
->q_stats
.nr_sbals
[pos
]++;
424 static void process_buffer_error(struct qdio_q
*q
, unsigned int start
,
427 q
->qdio_error
= QDIO_ERROR_SLSB_STATE
;
429 /* special handling for no target buffer empty */
430 if (queue_type(q
) == QDIO_IQDIO_QFMT
&& !q
->is_input_q
&&
431 q
->sbal
[start
]->element
[15].sflags
== 0x10) {
432 qperf_inc(q
, target_full
);
433 DBF_DEV_EVENT(DBF_INFO
, q
->irq_ptr
, "OUTFULL FTC:%02x", start
);
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", start
, count
);
440 DBF_ERROR("F14:%2x F15:%2x",
441 q
->sbal
[start
]->element
[14].sflags
,
442 q
->sbal
[start
]->element
[15].sflags
);
445 static inline void inbound_primed(struct qdio_q
*q
, unsigned int start
,
450 DBF_DEV_EVENT(DBF_INFO
, q
->irq_ptr
, "in prim:%1d %02x", q
->nr
, count
);
452 /* for QEBSM the ACK was already set by EQBS */
454 if (!q
->u
.in
.polling
) {
456 q
->u
.in
.ack_count
= count
;
457 q
->u
.in
.ack_start
= start
;
461 /* delete the previous ACK's */
462 set_buf_states(q
, q
->u
.in
.ack_start
, SLSB_P_INPUT_NOT_INIT
,
464 q
->u
.in
.ack_count
= count
;
465 q
->u
.in
.ack_start
= start
;
470 * ACK the newest buffer. The ACK will be removed in qdio_stop_polling
471 * or by the next inbound run.
473 new = add_buf(start
, count
- 1);
474 if (q
->u
.in
.polling
) {
475 /* reset the previous ACK but first set the new one */
476 set_buf_state(q
, new, SLSB_P_INPUT_ACK
);
477 set_buf_state(q
, q
->u
.in
.ack_start
, SLSB_P_INPUT_NOT_INIT
);
480 set_buf_state(q
, new, SLSB_P_INPUT_ACK
);
483 q
->u
.in
.ack_start
= new;
487 /* need to change ALL buffers to get more interrupts */
488 set_buf_states(q
, start
, SLSB_P_INPUT_NOT_INIT
, count
);
491 static int get_inbound_buffer_frontier(struct qdio_q
*q
, unsigned int start
)
493 unsigned char state
= 0;
496 q
->timestamp
= get_tod_clock_fast();
499 * Don't check 128 buffers, as otherwise qdio_inbound_q_moved
502 count
= min(atomic_read(&q
->nr_buf_used
), QDIO_MAX_BUFFERS_MASK
);
507 * No siga sync here, as a PCI or we after a thin interrupt
508 * already sync'ed the queues.
510 count
= get_buf_states(q
, start
, &state
, count
, 1, 0);
515 case SLSB_P_INPUT_PRIMED
:
516 inbound_primed(q
, start
, count
);
517 if (atomic_sub_return(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 process_buffer_error(q
, start
, count
);
525 * Interrupts may be avoided as long as the error is present
526 * so change the buffer state immediately to avoid starvation.
528 set_buf_states(q
, start
, SLSB_P_INPUT_NOT_INIT
, count
);
529 if (atomic_sub_return(count
, &q
->nr_buf_used
) == 0)
530 qperf_inc(q
, inbound_queue_full
);
531 if (q
->irq_ptr
->perf_stat_enabled
)
532 account_sbals_error(q
, count
);
534 case SLSB_CU_INPUT_EMPTY
:
535 case SLSB_P_INPUT_NOT_INIT
:
536 case SLSB_P_INPUT_ACK
:
537 if (q
->irq_ptr
->perf_stat_enabled
)
538 q
->q_stats
.nr_sbal_nop
++;
539 DBF_DEV_EVENT(DBF_INFO
, q
->irq_ptr
, "in nop:%1d %#02x",
548 static int qdio_inbound_q_moved(struct qdio_q
*q
, unsigned int start
)
552 count
= get_inbound_buffer_frontier(q
, start
);
554 if (count
&& !is_thinint_irq(q
->irq_ptr
) && MACHINE_IS_LPAR
)
555 q
->u
.in
.timestamp
= get_tod_clock();
560 static inline int qdio_inbound_q_done(struct qdio_q
*q
, unsigned int start
)
562 unsigned char state
= 0;
564 if (!atomic_read(&q
->nr_buf_used
))
567 if (need_siga_sync(q
))
569 get_buf_state(q
, start
, &state
, 0);
571 if (state
== SLSB_P_INPUT_PRIMED
|| state
== SLSB_P_INPUT_ERROR
)
572 /* more work coming */
575 if (is_thinint_irq(q
->irq_ptr
))
578 /* don't poll under z/VM */
583 * At this point we know, that inbound first_to_check
584 * has (probably) not moved (see qdio_inbound_processing).
586 if (get_tod_clock_fast() > q
->u
.in
.timestamp
+ QDIO_INPUT_THRESHOLD
) {
587 DBF_DEV_EVENT(DBF_INFO
, q
->irq_ptr
, "in done:%02x", start
);
593 static inline void qdio_handle_aobs(struct qdio_q
*q
, int start
, int count
)
595 unsigned char state
= 0;
598 for (j
= 0; j
< count
; ++j
) {
599 get_buf_state(q
, b
, &state
, 0);
600 if (state
== SLSB_P_OUTPUT_PENDING
) {
601 struct qaob
*aob
= q
->u
.out
.aobs
[b
];
605 q
->u
.out
.sbal_state
[b
].flags
|=
606 QDIO_OUTBUF_STATE_FLAG_PENDING
;
607 q
->u
.out
.aobs
[b
] = NULL
;
613 static inline unsigned long qdio_aob_for_buffer(struct qdio_output_q
*q
,
616 unsigned long phys_aob
= 0;
618 if (!q
->aobs
[bufnr
]) {
619 struct qaob
*aob
= qdio_allocate_aob();
620 q
->aobs
[bufnr
] = aob
;
622 if (q
->aobs
[bufnr
]) {
623 q
->aobs
[bufnr
]->user1
= (u64
) q
->sbal_state
[bufnr
].user
;
624 phys_aob
= virt_to_phys(q
->aobs
[bufnr
]);
625 WARN_ON_ONCE(phys_aob
& 0xFF);
628 q
->sbal_state
[bufnr
].flags
= 0;
632 static void qdio_kick_handler(struct qdio_q
*q
, unsigned int count
)
634 int start
= q
->first_to_kick
;
636 if (unlikely(q
->irq_ptr
->state
!= QDIO_IRQ_STATE_ACTIVE
))
640 qperf_inc(q
, inbound_handler
);
641 DBF_DEV_EVENT(DBF_INFO
, q
->irq_ptr
, "kih s:%02x c:%02x", start
, count
);
643 qperf_inc(q
, outbound_handler
);
644 DBF_DEV_EVENT(DBF_INFO
, q
->irq_ptr
, "koh: s:%02x c:%02x",
648 q
->handler(q
->irq_ptr
->cdev
, q
->qdio_error
, q
->nr
, start
, count
,
649 q
->irq_ptr
->int_parm
);
651 /* for the next time */
652 q
->first_to_kick
= add_buf(start
, count
);
656 static inline int qdio_tasklet_schedule(struct qdio_q
*q
)
658 if (likely(q
->irq_ptr
->state
== QDIO_IRQ_STATE_ACTIVE
)) {
659 tasklet_schedule(&q
->tasklet
);
665 static void __qdio_inbound_processing(struct qdio_q
*q
)
667 unsigned int start
= q
->first_to_check
;
670 qperf_inc(q
, tasklet_inbound
);
672 count
= qdio_inbound_q_moved(q
, start
);
676 start
= add_buf(start
, count
);
677 q
->first_to_check
= start
;
678 qdio_kick_handler(q
, count
);
680 if (!qdio_inbound_q_done(q
, start
)) {
681 /* means poll time is not yet over */
682 qperf_inc(q
, tasklet_inbound_resched
);
683 if (!qdio_tasklet_schedule(q
))
687 qdio_stop_polling(q
);
689 * We need to check again to not lose initiative after
690 * resetting the ACK state.
692 if (!qdio_inbound_q_done(q
, start
)) {
693 qperf_inc(q
, tasklet_inbound_resched2
);
694 qdio_tasklet_schedule(q
);
698 void qdio_inbound_processing(unsigned long data
)
700 struct qdio_q
*q
= (struct qdio_q
*)data
;
701 __qdio_inbound_processing(q
);
704 static int get_outbound_buffer_frontier(struct qdio_q
*q
, unsigned int start
)
706 unsigned char state
= 0;
709 q
->timestamp
= get_tod_clock_fast();
711 if (need_siga_sync(q
))
712 if (((queue_type(q
) != QDIO_IQDIO_QFMT
) &&
713 !pci_out_supported(q
->irq_ptr
)) ||
714 (queue_type(q
) == QDIO_IQDIO_QFMT
&&
715 multicast_outbound(q
)))
718 count
= atomic_read(&q
->nr_buf_used
);
722 count
= get_buf_states(q
, start
, &state
, count
, 0, q
->u
.out
.use_cq
);
727 case SLSB_P_OUTPUT_EMPTY
:
728 case SLSB_P_OUTPUT_PENDING
:
729 /* the adapter got it */
730 DBF_DEV_EVENT(DBF_INFO
, q
->irq_ptr
,
731 "out empty:%1d %02x", q
->nr
, count
);
733 atomic_sub(count
, &q
->nr_buf_used
);
734 if (q
->irq_ptr
->perf_stat_enabled
)
735 account_sbals(q
, count
);
737 case SLSB_P_OUTPUT_ERROR
:
738 process_buffer_error(q
, start
, count
);
739 atomic_sub(count
, &q
->nr_buf_used
);
740 if (q
->irq_ptr
->perf_stat_enabled
)
741 account_sbals_error(q
, count
);
743 case SLSB_CU_OUTPUT_PRIMED
:
744 /* the adapter has not fetched the output yet */
745 if (q
->irq_ptr
->perf_stat_enabled
)
746 q
->q_stats
.nr_sbal_nop
++;
747 DBF_DEV_EVENT(DBF_INFO
, q
->irq_ptr
, "out primed:%1d",
750 case SLSB_P_OUTPUT_NOT_INIT
:
751 case SLSB_P_OUTPUT_HALTED
:
759 /* all buffers processed? */
760 static inline int qdio_outbound_q_done(struct qdio_q
*q
)
762 return atomic_read(&q
->nr_buf_used
) == 0;
765 static inline int qdio_outbound_q_moved(struct qdio_q
*q
, unsigned int start
)
769 count
= get_outbound_buffer_frontier(q
, start
);
772 DBF_DEV_EVENT(DBF_INFO
, q
->irq_ptr
, "out moved:%1d", q
->nr
);
774 qdio_handle_aobs(q
, start
, count
);
780 static int qdio_kick_outbound_q(struct qdio_q
*q
, unsigned int count
,
784 unsigned int busy_bit
;
786 if (!need_siga_out(q
))
789 DBF_DEV_EVENT(DBF_INFO
, q
->irq_ptr
, "siga-w:%1d", q
->nr
);
791 qperf_inc(q
, siga_write
);
793 cc
= qdio_siga_output(q
, count
, &busy_bit
, aob
);
799 while (++retries
< QDIO_BUSY_BIT_RETRIES
) {
800 mdelay(QDIO_BUSY_BIT_RETRY_DELAY
);
803 DBF_ERROR("%4x cc2 BBC:%1d", SCH_NO(q
), q
->nr
);
806 DBF_DEV_EVENT(DBF_INFO
, q
->irq_ptr
, "siga-w cc2:%1d", q
->nr
);
812 DBF_ERROR("%4x SIGA-W:%1d", SCH_NO(q
), cc
);
817 DBF_ERROR("%4x cc2 BB2:%1d", SCH_NO(q
), q
->nr
);
818 DBF_ERROR("count:%u", retries
);
823 static void __qdio_outbound_processing(struct qdio_q
*q
)
825 unsigned int start
= q
->first_to_check
;
828 qperf_inc(q
, tasklet_outbound
);
829 WARN_ON_ONCE(atomic_read(&q
->nr_buf_used
) < 0);
831 count
= qdio_outbound_q_moved(q
, start
);
833 q
->first_to_check
= add_buf(start
, count
);
834 qdio_kick_handler(q
, count
);
837 if (queue_type(q
) == QDIO_ZFCP_QFMT
&& !pci_out_supported(q
->irq_ptr
) &&
838 !qdio_outbound_q_done(q
))
841 if (q
->u
.out
.pci_out_enabled
)
845 * Now we know that queue type is either qeth without pci enabled
846 * or HiperSockets. Make sure buffer switch from PRIMED to EMPTY
847 * is noticed and outbound_handler is called after some time.
849 if (qdio_outbound_q_done(q
))
850 del_timer_sync(&q
->u
.out
.timer
);
852 if (!timer_pending(&q
->u
.out
.timer
) &&
853 likely(q
->irq_ptr
->state
== QDIO_IRQ_STATE_ACTIVE
))
854 mod_timer(&q
->u
.out
.timer
, jiffies
+ 10 * HZ
);
858 qdio_tasklet_schedule(q
);
861 /* outbound tasklet */
862 void qdio_outbound_processing(unsigned long data
)
864 struct qdio_q
*q
= (struct qdio_q
*)data
;
865 __qdio_outbound_processing(q
);
868 void qdio_outbound_timer(struct timer_list
*t
)
870 struct qdio_q
*q
= from_timer(q
, t
, u
.out
.timer
);
872 qdio_tasklet_schedule(q
);
875 static inline void qdio_check_outbound_pci_queues(struct qdio_irq
*irq
)
880 if (!pci_out_supported(irq
) || !irq
->scan_threshold
)
883 for_each_output_queue(irq
, out
, i
)
884 if (!qdio_outbound_q_done(out
))
885 qdio_tasklet_schedule(out
);
888 static void __tiqdio_inbound_processing(struct qdio_q
*q
)
890 unsigned int start
= q
->first_to_check
;
893 qperf_inc(q
, tasklet_inbound
);
894 if (need_siga_sync(q
) && need_siga_sync_after_ai(q
))
897 /* The interrupt could be caused by a PCI request: */
898 qdio_check_outbound_pci_queues(q
->irq_ptr
);
900 count
= qdio_inbound_q_moved(q
, start
);
904 start
= add_buf(start
, count
);
905 q
->first_to_check
= start
;
906 qdio_kick_handler(q
, count
);
908 if (!qdio_inbound_q_done(q
, start
)) {
909 qperf_inc(q
, tasklet_inbound_resched
);
910 if (!qdio_tasklet_schedule(q
))
914 qdio_stop_polling(q
);
916 * We need to check again to not lose initiative after
917 * resetting the ACK state.
919 if (!qdio_inbound_q_done(q
, start
)) {
920 qperf_inc(q
, tasklet_inbound_resched2
);
921 qdio_tasklet_schedule(q
);
925 void tiqdio_inbound_processing(unsigned long data
)
927 struct qdio_q
*q
= (struct qdio_q
*)data
;
928 __tiqdio_inbound_processing(q
);
931 static inline void qdio_set_state(struct qdio_irq
*irq_ptr
,
932 enum qdio_irq_states state
)
934 DBF_DEV_EVENT(DBF_INFO
, irq_ptr
, "newstate: %1d", state
);
936 irq_ptr
->state
= state
;
940 static void qdio_irq_check_sense(struct qdio_irq
*irq_ptr
, struct irb
*irb
)
942 if (irb
->esw
.esw0
.erw
.cons
) {
943 DBF_ERROR("%4x sense:", irq_ptr
->schid
.sch_no
);
944 DBF_ERROR_HEX(irb
, 64);
945 DBF_ERROR_HEX(irb
->ecw
, 64);
949 /* PCI interrupt handler */
950 static void qdio_int_handler_pci(struct qdio_irq
*irq_ptr
)
955 if (unlikely(irq_ptr
->state
!= QDIO_IRQ_STATE_ACTIVE
))
958 for_each_input_queue(irq_ptr
, q
, i
) {
959 if (q
->u
.in
.queue_start_poll
) {
960 /* skip if polling is enabled or already in work */
961 if (test_and_set_bit(QDIO_QUEUE_IRQS_DISABLED
,
962 &q
->u
.in
.queue_irq_state
)) {
963 QDIO_PERF_STAT_INC(irq_ptr
, int_discarded
);
966 q
->u
.in
.queue_start_poll(q
->irq_ptr
->cdev
, q
->nr
,
967 q
->irq_ptr
->int_parm
);
969 tasklet_schedule(&q
->tasklet
);
973 if (!pci_out_supported(irq_ptr
) || !irq_ptr
->scan_threshold
)
976 for_each_output_queue(irq_ptr
, q
, i
) {
977 if (qdio_outbound_q_done(q
))
979 if (need_siga_sync(q
) && need_siga_sync_out_after_pci(q
))
981 qdio_tasklet_schedule(q
);
985 static void qdio_handle_activate_check(struct ccw_device
*cdev
,
986 unsigned long intparm
, int cstat
, int dstat
)
988 struct qdio_irq
*irq_ptr
= cdev
->private->qdio_data
;
992 DBF_ERROR("%4x ACT CHECK", irq_ptr
->schid
.sch_no
);
993 DBF_ERROR("intp :%lx", intparm
);
994 DBF_ERROR("ds: %2x cs:%2x", dstat
, cstat
);
996 if (irq_ptr
->nr_input_qs
) {
997 q
= irq_ptr
->input_qs
[0];
998 } else if (irq_ptr
->nr_output_qs
) {
999 q
= irq_ptr
->output_qs
[0];
1005 count
= sub_buf(q
->first_to_check
, q
->first_to_kick
);
1006 q
->handler(q
->irq_ptr
->cdev
, QDIO_ERROR_ACTIVATE
,
1007 q
->nr
, q
->first_to_kick
, count
, irq_ptr
->int_parm
);
1009 qdio_set_state(irq_ptr
, QDIO_IRQ_STATE_STOPPED
);
1011 * In case of z/VM LGR (Live Guest Migration) QDIO recovery will happen.
1012 * Therefore we call the LGR detection function here.
1017 static void qdio_establish_handle_irq(struct ccw_device
*cdev
, int cstat
,
1020 struct qdio_irq
*irq_ptr
= cdev
->private->qdio_data
;
1022 DBF_DEV_EVENT(DBF_INFO
, irq_ptr
, "qest irq");
1026 if (dstat
& ~(DEV_STAT_DEV_END
| DEV_STAT_CHN_END
))
1028 if (!(dstat
& DEV_STAT_DEV_END
))
1030 qdio_set_state(irq_ptr
, QDIO_IRQ_STATE_ESTABLISHED
);
1034 DBF_ERROR("%4x EQ:error", irq_ptr
->schid
.sch_no
);
1035 DBF_ERROR("ds: %2x cs:%2x", dstat
, cstat
);
1036 qdio_set_state(irq_ptr
, QDIO_IRQ_STATE_ERR
);
1039 /* qdio interrupt handler */
1040 void qdio_int_handler(struct ccw_device
*cdev
, unsigned long intparm
,
1043 struct qdio_irq
*irq_ptr
= cdev
->private->qdio_data
;
1044 struct subchannel_id schid
;
1047 if (!intparm
|| !irq_ptr
) {
1048 ccw_device_get_schid(cdev
, &schid
);
1049 DBF_ERROR("qint:%4x", schid
.sch_no
);
1053 if (irq_ptr
->perf_stat_enabled
)
1054 irq_ptr
->perf_stat
.qdio_int
++;
1057 DBF_ERROR("%4x IO error", irq_ptr
->schid
.sch_no
);
1058 qdio_set_state(irq_ptr
, QDIO_IRQ_STATE_ERR
);
1059 wake_up(&cdev
->private->wait_q
);
1062 qdio_irq_check_sense(irq_ptr
, irb
);
1063 cstat
= irb
->scsw
.cmd
.cstat
;
1064 dstat
= irb
->scsw
.cmd
.dstat
;
1066 switch (irq_ptr
->state
) {
1067 case QDIO_IRQ_STATE_INACTIVE
:
1068 qdio_establish_handle_irq(cdev
, cstat
, dstat
);
1070 case QDIO_IRQ_STATE_CLEANUP
:
1071 qdio_set_state(irq_ptr
, QDIO_IRQ_STATE_INACTIVE
);
1073 case QDIO_IRQ_STATE_ESTABLISHED
:
1074 case QDIO_IRQ_STATE_ACTIVE
:
1075 if (cstat
& SCHN_STAT_PCI
) {
1076 qdio_int_handler_pci(irq_ptr
);
1080 qdio_handle_activate_check(cdev
, intparm
, cstat
,
1083 case QDIO_IRQ_STATE_STOPPED
:
1088 wake_up(&cdev
->private->wait_q
);
1092 * qdio_get_ssqd_desc - get qdio subchannel description
1093 * @cdev: ccw device to get description for
1094 * @data: where to store the ssqd
1096 * Returns 0 or an error code. The results of the chsc are stored in the
1097 * specified structure.
1099 int qdio_get_ssqd_desc(struct ccw_device
*cdev
,
1100 struct qdio_ssqd_desc
*data
)
1102 struct subchannel_id schid
;
1104 if (!cdev
|| !cdev
->private)
1107 ccw_device_get_schid(cdev
, &schid
);
1108 DBF_EVENT("get ssqd:%4x", schid
.sch_no
);
1109 return qdio_setup_get_ssqd(NULL
, &schid
, data
);
1111 EXPORT_SYMBOL_GPL(qdio_get_ssqd_desc
);
1113 static void qdio_shutdown_queues(struct ccw_device
*cdev
)
1115 struct qdio_irq
*irq_ptr
= cdev
->private->qdio_data
;
1119 for_each_input_queue(irq_ptr
, q
, i
)
1120 tasklet_kill(&q
->tasklet
);
1122 for_each_output_queue(irq_ptr
, q
, i
) {
1123 del_timer_sync(&q
->u
.out
.timer
);
1124 tasklet_kill(&q
->tasklet
);
1129 * qdio_shutdown - shut down a qdio subchannel
1130 * @cdev: associated ccw device
1131 * @how: use halt or clear to shutdown
1133 int qdio_shutdown(struct ccw_device
*cdev
, int how
)
1135 struct qdio_irq
*irq_ptr
= cdev
->private->qdio_data
;
1136 struct subchannel_id schid
;
1142 WARN_ON_ONCE(irqs_disabled());
1143 ccw_device_get_schid(cdev
, &schid
);
1144 DBF_EVENT("qshutdown:%4x", schid
.sch_no
);
1146 mutex_lock(&irq_ptr
->setup_mutex
);
1148 * Subchannel was already shot down. We cannot prevent being called
1149 * twice since cio may trigger a shutdown asynchronously.
1151 if (irq_ptr
->state
== QDIO_IRQ_STATE_INACTIVE
) {
1152 mutex_unlock(&irq_ptr
->setup_mutex
);
1157 * Indicate that the device is going down. Scheduling the queue
1158 * tasklets is forbidden from here on.
1160 qdio_set_state(irq_ptr
, QDIO_IRQ_STATE_STOPPED
);
1162 tiqdio_remove_device(irq_ptr
);
1163 qdio_shutdown_queues(cdev
);
1164 qdio_shutdown_debug_entries(irq_ptr
);
1166 /* cleanup subchannel */
1167 spin_lock_irq(get_ccwdev_lock(cdev
));
1169 if (how
& QDIO_FLAG_CLEANUP_USING_CLEAR
)
1170 rc
= ccw_device_clear(cdev
, QDIO_DOING_CLEANUP
);
1172 /* default behaviour is halt */
1173 rc
= ccw_device_halt(cdev
, QDIO_DOING_CLEANUP
);
1175 DBF_ERROR("%4x SHUTD ERR", irq_ptr
->schid
.sch_no
);
1176 DBF_ERROR("rc:%4d", rc
);
1180 qdio_set_state(irq_ptr
, QDIO_IRQ_STATE_CLEANUP
);
1181 spin_unlock_irq(get_ccwdev_lock(cdev
));
1182 wait_event_interruptible_timeout(cdev
->private->wait_q
,
1183 irq_ptr
->state
== QDIO_IRQ_STATE_INACTIVE
||
1184 irq_ptr
->state
== QDIO_IRQ_STATE_ERR
,
1186 spin_lock_irq(get_ccwdev_lock(cdev
));
1189 qdio_shutdown_thinint(irq_ptr
);
1191 /* restore interrupt handler */
1192 if ((void *)cdev
->handler
== (void *)qdio_int_handler
) {
1193 cdev
->handler
= irq_ptr
->orig_handler
;
1194 cdev
->private->intparm
= 0;
1196 spin_unlock_irq(get_ccwdev_lock(cdev
));
1198 qdio_set_state(irq_ptr
, QDIO_IRQ_STATE_INACTIVE
);
1199 mutex_unlock(&irq_ptr
->setup_mutex
);
1204 EXPORT_SYMBOL_GPL(qdio_shutdown
);
1207 * qdio_free - free data structures for a qdio subchannel
1208 * @cdev: associated ccw device
1210 int qdio_free(struct ccw_device
*cdev
)
1212 struct qdio_irq
*irq_ptr
= cdev
->private->qdio_data
;
1213 struct subchannel_id schid
;
1218 ccw_device_get_schid(cdev
, &schid
);
1219 DBF_EVENT("qfree:%4x", schid
.sch_no
);
1220 DBF_DEV_EVENT(DBF_ERR
, irq_ptr
, "dbf abandoned");
1221 mutex_lock(&irq_ptr
->setup_mutex
);
1223 irq_ptr
->debug_area
= NULL
;
1224 cdev
->private->qdio_data
= NULL
;
1225 mutex_unlock(&irq_ptr
->setup_mutex
);
1227 qdio_release_memory(irq_ptr
);
1230 EXPORT_SYMBOL_GPL(qdio_free
);
1233 * qdio_allocate - allocate qdio queues and associated data
1234 * @init_data: initialization data
1236 int qdio_allocate(struct qdio_initialize
*init_data
)
1238 struct subchannel_id schid
;
1239 struct qdio_irq
*irq_ptr
;
1241 ccw_device_get_schid(init_data
->cdev
, &schid
);
1242 DBF_EVENT("qallocate:%4x", schid
.sch_no
);
1244 if ((init_data
->no_input_qs
&& !init_data
->input_handler
) ||
1245 (init_data
->no_output_qs
&& !init_data
->output_handler
))
1248 if ((init_data
->no_input_qs
> QDIO_MAX_QUEUES_PER_IRQ
) ||
1249 (init_data
->no_output_qs
> QDIO_MAX_QUEUES_PER_IRQ
))
1252 if ((!init_data
->input_sbal_addr_array
) ||
1253 (!init_data
->output_sbal_addr_array
))
1256 /* irq_ptr must be in GFP_DMA since it contains ccw1.cda */
1257 irq_ptr
= (void *) get_zeroed_page(GFP_KERNEL
| GFP_DMA
);
1261 mutex_init(&irq_ptr
->setup_mutex
);
1262 if (qdio_allocate_dbf(init_data
, irq_ptr
))
1266 * Allocate a page for the chsc calls in qdio_establish.
1267 * Must be pre-allocated since a zfcp recovery will call
1268 * qdio_establish. In case of low memory and swap on a zfcp disk
1269 * we may not be able to allocate memory otherwise.
1271 irq_ptr
->chsc_page
= get_zeroed_page(GFP_KERNEL
);
1272 if (!irq_ptr
->chsc_page
)
1275 /* qdr is used in ccw1.cda which is u32 */
1276 irq_ptr
->qdr
= (struct qdr
*) get_zeroed_page(GFP_KERNEL
| GFP_DMA
);
1280 if (qdio_allocate_qs(irq_ptr
, init_data
->no_input_qs
,
1281 init_data
->no_output_qs
))
1284 INIT_LIST_HEAD(&irq_ptr
->entry
);
1285 init_data
->cdev
->private->qdio_data
= irq_ptr
;
1286 qdio_set_state(irq_ptr
, QDIO_IRQ_STATE_INACTIVE
);
1289 qdio_release_memory(irq_ptr
);
1293 EXPORT_SYMBOL_GPL(qdio_allocate
);
1295 static void qdio_detect_hsicq(struct qdio_irq
*irq_ptr
)
1297 struct qdio_q
*q
= irq_ptr
->input_qs
[0];
1300 if (irq_ptr
->nr_input_qs
> 1 && queue_type(q
) == QDIO_IQDIO_QFMT
)
1303 for_each_output_queue(irq_ptr
, q
, i
) {
1305 if (multicast_outbound(q
))
1307 if (qdio_enable_async_operation(&q
->u
.out
) < 0) {
1312 qdio_disable_async_operation(&q
->u
.out
);
1314 DBF_EVENT("use_cq:%d", use_cq
);
1318 * qdio_establish - establish queues on a qdio subchannel
1319 * @init_data: initialization data
1321 int qdio_establish(struct qdio_initialize
*init_data
)
1323 struct ccw_device
*cdev
= init_data
->cdev
;
1324 struct subchannel_id schid
;
1325 struct qdio_irq
*irq_ptr
;
1328 ccw_device_get_schid(cdev
, &schid
);
1329 DBF_EVENT("qestablish:%4x", schid
.sch_no
);
1331 irq_ptr
= cdev
->private->qdio_data
;
1335 mutex_lock(&irq_ptr
->setup_mutex
);
1336 qdio_setup_irq(init_data
);
1338 rc
= qdio_establish_thinint(irq_ptr
);
1340 mutex_unlock(&irq_ptr
->setup_mutex
);
1341 qdio_shutdown(cdev
, QDIO_FLAG_CLEANUP_USING_CLEAR
);
1346 irq_ptr
->ccw
.cmd_code
= irq_ptr
->equeue
.cmd
;
1347 irq_ptr
->ccw
.flags
= CCW_FLAG_SLI
;
1348 irq_ptr
->ccw
.count
= irq_ptr
->equeue
.count
;
1349 irq_ptr
->ccw
.cda
= (u32
)((addr_t
)irq_ptr
->qdr
);
1351 spin_lock_irq(get_ccwdev_lock(cdev
));
1352 ccw_device_set_options_mask(cdev
, 0);
1354 rc
= ccw_device_start(cdev
, &irq_ptr
->ccw
, QDIO_DOING_ESTABLISH
, 0, 0);
1355 spin_unlock_irq(get_ccwdev_lock(cdev
));
1357 DBF_ERROR("%4x est IO ERR", irq_ptr
->schid
.sch_no
);
1358 DBF_ERROR("rc:%4x", rc
);
1359 mutex_unlock(&irq_ptr
->setup_mutex
);
1360 qdio_shutdown(cdev
, QDIO_FLAG_CLEANUP_USING_CLEAR
);
1364 wait_event_interruptible_timeout(cdev
->private->wait_q
,
1365 irq_ptr
->state
== QDIO_IRQ_STATE_ESTABLISHED
||
1366 irq_ptr
->state
== QDIO_IRQ_STATE_ERR
, HZ
);
1368 if (irq_ptr
->state
!= QDIO_IRQ_STATE_ESTABLISHED
) {
1369 mutex_unlock(&irq_ptr
->setup_mutex
);
1370 qdio_shutdown(cdev
, QDIO_FLAG_CLEANUP_USING_CLEAR
);
1374 qdio_setup_ssqd_info(irq_ptr
);
1376 qdio_detect_hsicq(irq_ptr
);
1378 /* qebsm is now setup if available, initialize buffer states */
1379 qdio_init_buf_states(irq_ptr
);
1381 mutex_unlock(&irq_ptr
->setup_mutex
);
1382 qdio_print_subchannel_info(irq_ptr
, cdev
);
1383 qdio_setup_debug_entries(irq_ptr
, cdev
);
1386 EXPORT_SYMBOL_GPL(qdio_establish
);
1389 * qdio_activate - activate queues on a qdio subchannel
1390 * @cdev: associated cdev
1392 int qdio_activate(struct ccw_device
*cdev
)
1394 struct subchannel_id schid
;
1395 struct qdio_irq
*irq_ptr
;
1398 ccw_device_get_schid(cdev
, &schid
);
1399 DBF_EVENT("qactivate:%4x", schid
.sch_no
);
1401 irq_ptr
= cdev
->private->qdio_data
;
1405 mutex_lock(&irq_ptr
->setup_mutex
);
1406 if (irq_ptr
->state
== QDIO_IRQ_STATE_INACTIVE
) {
1411 irq_ptr
->ccw
.cmd_code
= irq_ptr
->aqueue
.cmd
;
1412 irq_ptr
->ccw
.flags
= CCW_FLAG_SLI
;
1413 irq_ptr
->ccw
.count
= irq_ptr
->aqueue
.count
;
1414 irq_ptr
->ccw
.cda
= 0;
1416 spin_lock_irq(get_ccwdev_lock(cdev
));
1417 ccw_device_set_options(cdev
, CCWDEV_REPORT_ALL
);
1419 rc
= ccw_device_start(cdev
, &irq_ptr
->ccw
, QDIO_DOING_ACTIVATE
,
1420 0, DOIO_DENY_PREFETCH
);
1421 spin_unlock_irq(get_ccwdev_lock(cdev
));
1423 DBF_ERROR("%4x act IO ERR", irq_ptr
->schid
.sch_no
);
1424 DBF_ERROR("rc:%4x", rc
);
1428 if (is_thinint_irq(irq_ptr
))
1429 tiqdio_add_device(irq_ptr
);
1431 /* wait for subchannel to become active */
1434 switch (irq_ptr
->state
) {
1435 case QDIO_IRQ_STATE_STOPPED
:
1436 case QDIO_IRQ_STATE_ERR
:
1440 qdio_set_state(irq_ptr
, QDIO_IRQ_STATE_ACTIVE
);
1444 mutex_unlock(&irq_ptr
->setup_mutex
);
1447 EXPORT_SYMBOL_GPL(qdio_activate
);
1449 static inline int buf_in_between(int bufnr
, int start
, int count
)
1451 int end
= add_buf(start
, count
);
1454 if (bufnr
>= start
&& bufnr
< end
)
1460 /* wrap-around case */
1461 if ((bufnr
>= start
&& bufnr
<= QDIO_MAX_BUFFERS_PER_Q
) ||
1469 * handle_inbound - reset processed input buffers
1470 * @q: queue containing the buffers
1472 * @bufnr: first buffer to process
1473 * @count: how many buffers are emptied
1475 static int handle_inbound(struct qdio_q
*q
, unsigned int callflags
,
1476 int bufnr
, int count
)
1480 qperf_inc(q
, inbound_call
);
1482 if (!q
->u
.in
.polling
)
1485 /* protect against stop polling setting an ACK for an emptied slsb */
1486 if (count
== QDIO_MAX_BUFFERS_PER_Q
) {
1487 /* overwriting everything, just delete polling status */
1488 q
->u
.in
.polling
= 0;
1489 q
->u
.in
.ack_count
= 0;
1491 } else if (buf_in_between(q
->u
.in
.ack_start
, bufnr
, count
)) {
1493 /* partial overwrite, just update ack_start */
1494 diff
= add_buf(bufnr
, count
);
1495 diff
= sub_buf(diff
, q
->u
.in
.ack_start
);
1496 q
->u
.in
.ack_count
-= diff
;
1497 if (q
->u
.in
.ack_count
<= 0) {
1498 q
->u
.in
.polling
= 0;
1499 q
->u
.in
.ack_count
= 0;
1502 q
->u
.in
.ack_start
= add_buf(q
->u
.in
.ack_start
, diff
);
1505 /* the only ACK will be deleted, so stop polling */
1506 q
->u
.in
.polling
= 0;
1510 count
= set_buf_states(q
, bufnr
, SLSB_CU_INPUT_EMPTY
, count
);
1511 atomic_add(count
, &q
->nr_buf_used
);
1513 if (need_siga_in(q
))
1514 return qdio_siga_input(q
);
1520 * handle_outbound - process filled outbound buffers
1521 * @q: queue containing the buffers
1523 * @bufnr: first buffer to process
1524 * @count: how many buffers are filled
1526 static int handle_outbound(struct qdio_q
*q
, unsigned int callflags
,
1527 unsigned int bufnr
, unsigned int count
)
1529 const unsigned int scan_threshold
= q
->irq_ptr
->scan_threshold
;
1530 unsigned char state
= 0;
1533 qperf_inc(q
, outbound_call
);
1535 count
= set_buf_states(q
, bufnr
, SLSB_CU_OUTPUT_PRIMED
, count
);
1536 used
= atomic_add_return(count
, &q
->nr_buf_used
);
1538 if (used
== QDIO_MAX_BUFFERS_PER_Q
)
1539 qperf_inc(q
, outbound_queue_full
);
1541 if (callflags
& QDIO_FLAG_PCI_OUT
) {
1542 q
->u
.out
.pci_out_enabled
= 1;
1543 qperf_inc(q
, pci_request_int
);
1545 q
->u
.out
.pci_out_enabled
= 0;
1547 if (queue_type(q
) == QDIO_IQDIO_QFMT
) {
1548 unsigned long phys_aob
= 0;
1550 if (q
->u
.out
.use_cq
&& count
== 1)
1551 phys_aob
= qdio_aob_for_buffer(&q
->u
.out
, bufnr
);
1553 rc
= qdio_kick_outbound_q(q
, count
, phys_aob
);
1554 } else if (need_siga_sync(q
)) {
1555 rc
= qdio_siga_sync_q(q
);
1556 } else if (count
< QDIO_MAX_BUFFERS_PER_Q
&&
1557 get_buf_state(q
, prev_buf(bufnr
), &state
, 0) > 0 &&
1558 state
== SLSB_CU_OUTPUT_PRIMED
) {
1559 /* The previous buffer is not processed yet, tack on. */
1560 qperf_inc(q
, fast_requeue
);
1562 rc
= qdio_kick_outbound_q(q
, count
, 0);
1565 /* Let drivers implement their own completion scanning: */
1566 if (!scan_threshold
)
1569 /* in case of SIGA errors we must process the error immediately */
1570 if (used
>= scan_threshold
|| rc
)
1571 qdio_tasklet_schedule(q
);
1573 /* free the SBALs in case of no further traffic */
1574 if (!timer_pending(&q
->u
.out
.timer
) &&
1575 likely(q
->irq_ptr
->state
== QDIO_IRQ_STATE_ACTIVE
))
1576 mod_timer(&q
->u
.out
.timer
, jiffies
+ HZ
);
1581 * do_QDIO - process input or output buffers
1582 * @cdev: associated ccw_device for the qdio subchannel
1583 * @callflags: input or output and special flags from the program
1584 * @q_nr: queue number
1585 * @bufnr: buffer number
1586 * @count: how many buffers to process
1588 int do_QDIO(struct ccw_device
*cdev
, unsigned int callflags
,
1589 int q_nr
, unsigned int bufnr
, unsigned int count
)
1591 struct qdio_irq
*irq_ptr
;
1593 if (bufnr
>= QDIO_MAX_BUFFERS_PER_Q
|| count
> QDIO_MAX_BUFFERS_PER_Q
)
1596 irq_ptr
= cdev
->private->qdio_data
;
1600 DBF_DEV_EVENT(DBF_INFO
, irq_ptr
,
1601 "do%02x b:%02x c:%02x", callflags
, bufnr
, count
);
1603 if (irq_ptr
->state
!= QDIO_IRQ_STATE_ACTIVE
)
1607 if (callflags
& QDIO_FLAG_SYNC_INPUT
)
1608 return handle_inbound(irq_ptr
->input_qs
[q_nr
],
1609 callflags
, bufnr
, count
);
1610 else if (callflags
& QDIO_FLAG_SYNC_OUTPUT
)
1611 return handle_outbound(irq_ptr
->output_qs
[q_nr
],
1612 callflags
, bufnr
, count
);
1615 EXPORT_SYMBOL_GPL(do_QDIO
);
1618 * qdio_start_irq - process input buffers
1619 * @cdev: associated ccw_device for the qdio subchannel
1620 * @nr: input queue number
1624 * 1 - irqs not started since new data is available
1626 int qdio_start_irq(struct ccw_device
*cdev
, int nr
)
1629 struct qdio_irq
*irq_ptr
= cdev
->private->qdio_data
;
1633 q
= irq_ptr
->input_qs
[nr
];
1635 clear_nonshared_ind(irq_ptr
);
1636 qdio_stop_polling(q
);
1637 clear_bit(QDIO_QUEUE_IRQS_DISABLED
, &q
->u
.in
.queue_irq_state
);
1640 * We need to check again to not lose initiative after
1641 * resetting the ACK state.
1643 if (test_nonshared_ind(irq_ptr
))
1645 if (!qdio_inbound_q_done(q
, q
->first_to_check
))
1650 if (test_and_set_bit(QDIO_QUEUE_IRQS_DISABLED
,
1651 &q
->u
.in
.queue_irq_state
))
1657 EXPORT_SYMBOL(qdio_start_irq
);
1659 static int __qdio_inspect_queue(struct qdio_q
*q
, unsigned int *bufnr
,
1660 unsigned int *error
)
1662 unsigned int start
= q
->first_to_check
;
1665 count
= q
->is_input_q
? qdio_inbound_q_moved(q
, start
) :
1666 qdio_outbound_q_moved(q
, start
);
1671 *error
= q
->qdio_error
;
1673 /* for the next time */
1674 q
->first_to_check
= add_buf(start
, count
);
1680 int qdio_inspect_queue(struct ccw_device
*cdev
, unsigned int nr
, bool is_input
,
1681 unsigned int *bufnr
, unsigned int *error
)
1683 struct qdio_irq
*irq_ptr
= cdev
->private->qdio_data
;
1688 q
= is_input
? irq_ptr
->input_qs
[nr
] : irq_ptr
->output_qs
[nr
];
1690 if (need_siga_sync(q
))
1691 qdio_siga_sync_q(q
);
1693 return __qdio_inspect_queue(q
, bufnr
, error
);
1695 EXPORT_SYMBOL_GPL(qdio_inspect_queue
);
1698 * qdio_get_next_buffers - process input buffers
1699 * @cdev: associated ccw_device for the qdio subchannel
1700 * @nr: input queue number
1701 * @bufnr: first filled buffer number
1702 * @error: buffers are in error state
1706 * = 0 - no new buffers found
1707 * > 0 - number of processed buffers
1709 int qdio_get_next_buffers(struct ccw_device
*cdev
, int nr
, int *bufnr
,
1713 struct qdio_irq
*irq_ptr
= cdev
->private->qdio_data
;
1717 q
= irq_ptr
->input_qs
[nr
];
1720 * Cannot rely on automatic sync after interrupt since queues may
1721 * also be examined without interrupt.
1723 if (need_siga_sync(q
))
1724 qdio_sync_queues(q
);
1726 qdio_check_outbound_pci_queues(irq_ptr
);
1728 /* Note: upper-layer MUST stop processing immediately here ... */
1729 if (unlikely(q
->irq_ptr
->state
!= QDIO_IRQ_STATE_ACTIVE
))
1732 return __qdio_inspect_queue(q
, bufnr
, error
);
1734 EXPORT_SYMBOL(qdio_get_next_buffers
);
1737 * qdio_stop_irq - disable interrupt processing for the device
1738 * @cdev: associated ccw_device for the qdio subchannel
1739 * @nr: input queue number
1742 * 0 - interrupts were already disabled
1743 * 1 - interrupts successfully disabled
1745 int qdio_stop_irq(struct ccw_device
*cdev
, int nr
)
1748 struct qdio_irq
*irq_ptr
= cdev
->private->qdio_data
;
1752 q
= irq_ptr
->input_qs
[nr
];
1754 if (test_and_set_bit(QDIO_QUEUE_IRQS_DISABLED
,
1755 &q
->u
.in
.queue_irq_state
))
1760 EXPORT_SYMBOL(qdio_stop_irq
);
1763 * qdio_pnso_brinfo() - perform network subchannel op #0 - bridge info.
1764 * @schid: Subchannel ID.
1765 * @cnc: Boolean Change-Notification Control
1766 * @response: Response code will be stored at this address
1767 * @cb: Callback function will be executed for each element
1768 * of the address list
1769 * @priv: Pointer to pass to the callback function.
1771 * Performs "Store-network-bridging-information list" operation and calls
1772 * the callback function for every entry in the list. If "change-
1773 * notification-control" is set, further changes in the address list
1774 * will be reported via the IPA command.
1776 int qdio_pnso_brinfo(struct subchannel_id schid
,
1777 int cnc
, u16
*response
,
1778 void (*cb
)(void *priv
, enum qdio_brinfo_entry_type type
,
1782 struct chsc_pnso_area
*rr
;
1784 u32 prev_instance
= 0;
1785 int isfirstblock
= 1;
1788 rr
= (struct chsc_pnso_area
*)get_zeroed_page(GFP_KERNEL
);
1792 /* on the first iteration, naihdr.resume_token will be zero */
1793 rc
= chsc_pnso_brinfo(schid
, rr
, rr
->naihdr
.resume_token
, cnc
);
1794 if (rc
!= 0 && rc
!= -EBUSY
)
1796 if (rr
->response
.code
!= 1) {
1805 size
= rr
->naihdr
.naids
;
1806 elems
= (rr
->response
.length
-
1807 sizeof(struct chsc_header
) -
1808 sizeof(struct chsc_brinfo_naihdr
)) /
1811 if (!isfirstblock
&& (rr
->naihdr
.instance
!= prev_instance
)) {
1812 /* Inform the caller that they need to scrap */
1813 /* the data that was already reported via cb */
1818 prev_instance
= rr
->naihdr
.instance
;
1819 for (i
= 0; i
< elems
; i
++)
1821 case sizeof(struct qdio_brinfo_entry_l3_ipv6
):
1822 (*cb
)(priv
, l3_ipv6_addr
,
1823 &rr
->entries
.l3_ipv6
[i
]);
1825 case sizeof(struct qdio_brinfo_entry_l3_ipv4
):
1826 (*cb
)(priv
, l3_ipv4_addr
,
1827 &rr
->entries
.l3_ipv4
[i
]);
1829 case sizeof(struct qdio_brinfo_entry_l2
):
1830 (*cb
)(priv
, l2_addr_lnid
,
1831 &rr
->entries
.l2
[i
]);
1838 } while (rr
->response
.code
== 0x0107 || /* channel busy */
1839 (rr
->response
.code
== 1 && /* list stored */
1840 /* resume token is non-zero => list incomplete */
1841 (rr
->naihdr
.resume_token
.t1
|| rr
->naihdr
.resume_token
.t2
)));
1842 (*response
) = rr
->response
.code
;
1845 free_page((unsigned long)rr
);
1848 EXPORT_SYMBOL_GPL(qdio_pnso_brinfo
);
1850 static int __init
init_QDIO(void)
1854 rc
= qdio_debug_init();
1857 rc
= qdio_setup_init();
1860 rc
= tiqdio_allocate_memory();
1863 rc
= tiqdio_register_thinints();
1869 tiqdio_free_memory();
1877 static void __exit
exit_QDIO(void)
1879 tiqdio_unregister_thinints();
1880 tiqdio_free_memory();
1885 module_init(init_QDIO
);
1886 module_exit(exit_QDIO
);