blob: 377d881385cf942ecb4b8dd7a1fdee045f0cc3c8 [file] [log] [blame]
Jan Glauber779e6e12008-07-17 17:16:48 +02001/*
2 * linux/drivers/s390/cio/qdio_main.c
3 *
4 * Linux for s390 qdio support, buffer handling, qdio API and module support.
5 *
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>
10 */
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>
18#include <asm/qdio.h>
19
20#include "cio.h"
21#include "css.h"
22#include "device.h"
23#include "qdio.h"
24#include "qdio_debug.h"
25#include "qdio_perf.h"
26
27MODULE_AUTHOR("Utz Bacher <utz.bacher@de.ibm.com>,"\
28 "Jan Glauber <jang@linux.vnet.ibm.com>");
29MODULE_DESCRIPTION("QDIO base support");
30MODULE_LICENSE("GPL");
31
32static inline int do_siga_sync(struct subchannel_id schid,
33 unsigned int out_mask, unsigned int in_mask)
34{
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;
39 int cc;
40
41 asm volatile(
42 " siga 0\n"
43 " ipm %0\n"
44 " srl %0,28\n"
45 : "=d" (cc)
46 : "d" (__fc), "d" (__schid), "d" (out), "d" (in) : "cc");
47 return cc;
48}
49
50static inline int do_siga_input(struct subchannel_id schid, unsigned int mask)
51{
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;
55 int cc;
56
57 asm volatile(
58 " siga 0\n"
59 " ipm %0\n"
60 " srl %0,28\n"
61 : "=d" (cc)
62 : "d" (__fc), "d" (__schid), "d" (__mask) : "cc", "memory");
63 return cc;
64}
65
66/**
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
72 *
73 * Returns cc or QDIO_ERROR_SIGA_ACCESS_EXCEPTION.
74 * Note: For IQDC unicast queues only the highest priority queue is processed.
75 */
76static inline int do_siga_output(unsigned long schid, unsigned long mask,
Jan Glauber7a0b4cb2008-12-25 13:38:48 +010077 unsigned int *bb, unsigned int fc)
Jan Glauber779e6e12008-07-17 17:16:48 +020078{
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;
83
84 asm volatile(
85 " siga 0\n"
86 "0: ipm %0\n"
87 " srl %0,28\n"
88 "1:\n"
89 EX_TABLE(0b, 1b)
90 : "+d" (cc), "+d" (__fc), "+d" (__schid), "+d" (__mask)
91 : : "cc", "memory");
92 *bb = ((unsigned int) __fc) >> 31;
93 return cc;
94}
95
96static inline int qdio_check_ccq(struct qdio_q *q, unsigned int ccq)
97{
Jan Glauber779e6e12008-07-17 17:16:48 +020098 /* all done or next buffer state different */
99 if (ccq == 0 || ccq == 32)
100 return 0;
101 /* not all buffers processed */
102 if (ccq == 96 || ccq == 97)
103 return 1;
104 /* notify devices immediately */
Jan Glauber22f99342008-12-25 13:38:46 +0100105 DBF_ERROR("%4x ccq:%3d", SCH_NO(q), ccq);
Jan Glauber779e6e12008-07-17 17:16:48 +0200106 return -EIO;
107}
108
109/**
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
Jan Glauber50f769d2008-12-25 13:38:47 +0100115 * @auto_ack: automatically acknowledge buffers
Jan Glauber779e6e12008-07-17 17:16:48 +0200116 *
Coly Li73ac36e2009-01-07 18:09:16 -0800117 * Returns the number of successfully extracted equal buffer states.
Jan Glauber779e6e12008-07-17 17:16:48 +0200118 * Stops processing if a state is different from the last buffers state.
119 */
120static int qdio_do_eqbs(struct qdio_q *q, unsigned char *state,
Jan Glauber50f769d2008-12-25 13:38:47 +0100121 int start, int count, int auto_ack)
Jan Glauber779e6e12008-07-17 17:16:48 +0200122{
123 unsigned int ccq = 0;
124 int tmp_count = count, tmp_start = start;
125 int nr = q->nr;
126 int rc;
Jan Glauber779e6e12008-07-17 17:16:48 +0200127
128 BUG_ON(!q->irq_ptr->sch_token);
Jan Glauber23589d02008-12-25 13:38:44 +0100129 qdio_perf_stat_inc(&perf_stats.debug_eqbs_all);
Jan Glauber779e6e12008-07-17 17:16:48 +0200130
131 if (!q->is_input_q)
132 nr += q->irq_ptr->nr_input_qs;
133again:
Jan Glauber50f769d2008-12-25 13:38:47 +0100134 ccq = do_eqbs(q->irq_ptr->sch_token, state, nr, &tmp_start, &tmp_count,
135 auto_ack);
Jan Glauber779e6e12008-07-17 17:16:48 +0200136 rc = qdio_check_ccq(q, ccq);
137
138 /* At least one buffer was processed, return and extract the remaining
139 * buffers later.
140 */
Jan Glauber23589d02008-12-25 13:38:44 +0100141 if ((ccq == 96) && (count != tmp_count)) {
142 qdio_perf_stat_inc(&perf_stats.debug_eqbs_incomplete);
Jan Glauber779e6e12008-07-17 17:16:48 +0200143 return (count - tmp_count);
Jan Glauber23589d02008-12-25 13:38:44 +0100144 }
Jan Glauber22f99342008-12-25 13:38:46 +0100145
Jan Glauber779e6e12008-07-17 17:16:48 +0200146 if (rc == 1) {
Jan Glauber22f99342008-12-25 13:38:46 +0100147 DBF_DEV_EVENT(DBF_WARN, q->irq_ptr, "EQBS again:%2d", ccq);
Jan Glauber779e6e12008-07-17 17:16:48 +0200148 goto again;
149 }
150
151 if (rc < 0) {
Jan Glauber22f99342008-12-25 13:38:46 +0100152 DBF_ERROR("%4x EQBS ERROR", SCH_NO(q));
153 DBF_ERROR("%3d%3d%2d", count, tmp_count, nr);
Jan Glauber779e6e12008-07-17 17:16:48 +0200154 q->handler(q->irq_ptr->cdev,
155 QDIO_ERROR_ACTIVATE_CHECK_CONDITION,
156 0, -1, -1, q->irq_ptr->int_parm);
157 return 0;
158 }
159 return count - tmp_count;
160}
161
162/**
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
168 *
169 * Returns the number of successfully changed buffers.
170 * Does retrying until the specified count of buffer states is set or an
171 * error occurs.
172 */
173static int qdio_do_sqbs(struct qdio_q *q, unsigned char state, int start,
174 int count)
175{
176 unsigned int ccq = 0;
177 int tmp_count = count, tmp_start = start;
178 int nr = q->nr;
179 int rc;
Jan Glauber779e6e12008-07-17 17:16:48 +0200180
Jan Glauber50f769d2008-12-25 13:38:47 +0100181 if (!count)
182 return 0;
183
Jan Glauber779e6e12008-07-17 17:16:48 +0200184 BUG_ON(!q->irq_ptr->sch_token);
Jan Glauber23589d02008-12-25 13:38:44 +0100185 qdio_perf_stat_inc(&perf_stats.debug_sqbs_all);
Jan Glauber779e6e12008-07-17 17:16:48 +0200186
187 if (!q->is_input_q)
188 nr += q->irq_ptr->nr_input_qs;
189again:
190 ccq = do_sqbs(q->irq_ptr->sch_token, state, nr, &tmp_start, &tmp_count);
191 rc = qdio_check_ccq(q, ccq);
192 if (rc == 1) {
Jan Glauber22f99342008-12-25 13:38:46 +0100193 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "SQBS again:%2d", ccq);
Jan Glauber23589d02008-12-25 13:38:44 +0100194 qdio_perf_stat_inc(&perf_stats.debug_sqbs_incomplete);
Jan Glauber779e6e12008-07-17 17:16:48 +0200195 goto again;
196 }
197 if (rc < 0) {
Jan Glauber22f99342008-12-25 13:38:46 +0100198 DBF_ERROR("%4x SQBS ERROR", SCH_NO(q));
199 DBF_ERROR("%3d%3d%2d", count, tmp_count, nr);
Jan Glauber779e6e12008-07-17 17:16:48 +0200200 q->handler(q->irq_ptr->cdev,
201 QDIO_ERROR_ACTIVATE_CHECK_CONDITION,
202 0, -1, -1, q->irq_ptr->int_parm);
203 return 0;
204 }
205 WARN_ON(tmp_count);
206 return count - tmp_count;
207}
208
209/* returns number of examined buffers and their common state in *state */
210static inline int get_buf_states(struct qdio_q *q, unsigned int bufnr,
Jan Glauber50f769d2008-12-25 13:38:47 +0100211 unsigned char *state, unsigned int count,
212 int auto_ack)
Jan Glauber779e6e12008-07-17 17:16:48 +0200213{
214 unsigned char __state = 0;
215 int i;
216
217 BUG_ON(bufnr > QDIO_MAX_BUFFERS_MASK);
218 BUG_ON(count > QDIO_MAX_BUFFERS_PER_Q);
219
220 if (is_qebsm(q))
Jan Glauber50f769d2008-12-25 13:38:47 +0100221 return qdio_do_eqbs(q, state, bufnr, count, auto_ack);
Jan Glauber779e6e12008-07-17 17:16:48 +0200222
223 for (i = 0; i < count; i++) {
224 if (!__state)
225 __state = q->slsb.val[bufnr];
226 else if (q->slsb.val[bufnr] != __state)
227 break;
228 bufnr = next_buf(bufnr);
229 }
230 *state = __state;
231 return i;
232}
233
Jan Glauber60b5df22009-06-22 12:08:10 +0200234static inline int get_buf_state(struct qdio_q *q, unsigned int bufnr,
235 unsigned char *state, int auto_ack)
Jan Glauber779e6e12008-07-17 17:16:48 +0200236{
Jan Glauber50f769d2008-12-25 13:38:47 +0100237 return get_buf_states(q, bufnr, state, 1, auto_ack);
Jan Glauber779e6e12008-07-17 17:16:48 +0200238}
239
240/* wrap-around safe setting of slsb states, returns number of changed buffers */
241static inline int set_buf_states(struct qdio_q *q, int bufnr,
242 unsigned char state, int count)
243{
244 int i;
245
246 BUG_ON(bufnr > QDIO_MAX_BUFFERS_MASK);
247 BUG_ON(count > QDIO_MAX_BUFFERS_PER_Q);
248
249 if (is_qebsm(q))
250 return qdio_do_sqbs(q, state, bufnr, count);
251
252 for (i = 0; i < count; i++) {
253 xchg(&q->slsb.val[bufnr], state);
254 bufnr = next_buf(bufnr);
255 }
256 return count;
257}
258
259static inline int set_buf_state(struct qdio_q *q, int bufnr,
260 unsigned char state)
261{
262 return set_buf_states(q, bufnr, state, 1);
263}
264
265/* set slsb states to initial state */
266void qdio_init_buf_states(struct qdio_irq *irq_ptr)
267{
268 struct qdio_q *q;
269 int i;
270
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);
277}
278
Jan Glauber60b5df22009-06-22 12:08:10 +0200279static inline int qdio_siga_sync(struct qdio_q *q, unsigned int output,
Jan Glauber779e6e12008-07-17 17:16:48 +0200280 unsigned int input)
281{
282 int cc;
283
284 if (!need_siga_sync(q))
285 return 0;
286
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100287 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "siga-s:%1d", q->nr);
Jan Glauber779e6e12008-07-17 17:16:48 +0200288 qdio_perf_stat_inc(&perf_stats.siga_sync);
289
290 cc = do_siga_sync(q->irq_ptr->schid, output, input);
Jan Glauber22f99342008-12-25 13:38:46 +0100291 if (cc)
292 DBF_ERROR("%4x SIGA-S:%2d", SCH_NO(q), cc);
Jan Glauber779e6e12008-07-17 17:16:48 +0200293 return cc;
294}
295
Jan Glauber60b5df22009-06-22 12:08:10 +0200296static inline int qdio_siga_sync_q(struct qdio_q *q)
Jan Glauber779e6e12008-07-17 17:16:48 +0200297{
298 if (q->is_input_q)
299 return qdio_siga_sync(q, 0, q->mask);
300 else
301 return qdio_siga_sync(q, q->mask, 0);
302}
303
304static inline int qdio_siga_sync_out(struct qdio_q *q)
305{
306 return qdio_siga_sync(q, ~0U, 0);
307}
308
309static inline int qdio_siga_sync_all(struct qdio_q *q)
310{
311 return qdio_siga_sync(q, ~0U, ~0U);
312}
313
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100314static int qdio_siga_output(struct qdio_q *q, unsigned int *busy_bit)
Jan Glauber779e6e12008-07-17 17:16:48 +0200315{
Jan Glauber779e6e12008-07-17 17:16:48 +0200316 unsigned long schid;
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100317 unsigned int fc = 0;
318 u64 start_time = 0;
319 int cc;
Jan Glauber779e6e12008-07-17 17:16:48 +0200320
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100321 if (q->u.out.use_enh_siga)
Klaus-Dieter Wacker7a0f4752008-10-10 21:33:18 +0200322 fc = 3;
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100323
324 if (is_qebsm(q)) {
Jan Glauber779e6e12008-07-17 17:16:48 +0200325 schid = q->irq_ptr->sch_token;
326 fc |= 0x80;
327 }
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100328 else
329 schid = *((u32 *)&q->irq_ptr->schid);
Jan Glauber779e6e12008-07-17 17:16:48 +0200330
Jan Glauber779e6e12008-07-17 17:16:48 +0200331again:
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100332 cc = do_siga_output(schid, q->mask, busy_bit, fc);
Jan Glauber58eb27c2008-08-21 19:46:34 +0200333
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100334 /* hipersocket busy condition */
335 if (*busy_bit) {
336 WARN_ON(queue_type(q) != QDIO_IQDIO_QFMT || cc != 2);
337
338 if (!start_time) {
Jan Glauber779e6e12008-07-17 17:16:48 +0200339 start_time = get_usecs();
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100340 goto again;
341 }
342 if ((get_usecs() - start_time) < QDIO_BUSY_BIT_PATIENCE)
Jan Glauber779e6e12008-07-17 17:16:48 +0200343 goto again;
344 }
Jan Glauber779e6e12008-07-17 17:16:48 +0200345 return cc;
346}
347
348static inline int qdio_siga_input(struct qdio_q *q)
349{
350 int cc;
351
Jan Glauber22f99342008-12-25 13:38:46 +0100352 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "siga-r:%1d", q->nr);
Jan Glauber779e6e12008-07-17 17:16:48 +0200353 qdio_perf_stat_inc(&perf_stats.siga_in);
354
355 cc = do_siga_input(q->irq_ptr->schid, q->mask);
356 if (cc)
Jan Glauber22f99342008-12-25 13:38:46 +0100357 DBF_ERROR("%4x SIGA-R:%2d", SCH_NO(q), cc);
Jan Glauber779e6e12008-07-17 17:16:48 +0200358 return cc;
359}
360
Jan Glauber60b5df22009-06-22 12:08:10 +0200361static inline void qdio_sync_after_thinint(struct qdio_q *q)
Jan Glauber779e6e12008-07-17 17:16:48 +0200362{
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);
368 } else
369 qdio_siga_sync_q(q);
370}
371
Jan Glauber60b5df22009-06-22 12:08:10 +0200372int debug_get_buf_state(struct qdio_q *q, unsigned int bufnr,
373 unsigned char *state)
374{
375 qdio_siga_sync_q(q);
376 return get_buf_states(q, bufnr, state, 1, 0);
377}
378
379static inline void qdio_stop_polling(struct qdio_q *q)
Jan Glauber779e6e12008-07-17 17:16:48 +0200380{
Jan Glauber50f769d2008-12-25 13:38:47 +0100381 if (!q->u.in.polling)
Jan Glauber779e6e12008-07-17 17:16:48 +0200382 return;
Jan Glauber50f769d2008-12-25 13:38:47 +0100383
Jan Glauber779e6e12008-07-17 17:16:48 +0200384 q->u.in.polling = 0;
385 qdio_perf_stat_inc(&perf_stats.debug_stop_polling);
386
387 /* show the card that we are not polling anymore */
Jan Glauber50f769d2008-12-25 13:38:47 +0100388 if (is_qebsm(q)) {
Jan Glaubere85dea02009-03-26 15:24:29 +0100389 set_buf_states(q, q->u.in.ack_start, SLSB_P_INPUT_NOT_INIT,
Jan Glauber50f769d2008-12-25 13:38:47 +0100390 q->u.in.ack_count);
391 q->u.in.ack_count = 0;
392 } else
Jan Glaubere85dea02009-03-26 15:24:29 +0100393 set_buf_state(q, q->u.in.ack_start, SLSB_P_INPUT_NOT_INIT);
Jan Glauber779e6e12008-07-17 17:16:48 +0200394}
395
Jan Glauber50f769d2008-12-25 13:38:47 +0100396static void announce_buffer_error(struct qdio_q *q, int count)
Jan Glauber779e6e12008-07-17 17:16:48 +0200397{
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100398 q->qdio_error |= QDIO_ERROR_SLSB_STATE;
Jan Glauber50f769d2008-12-25 13:38:47 +0100399
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",
405 q->first_to_check);
406 return;
407 }
408
Jan Glauber22f99342008-12-25 13:38:46 +0100409 DBF_ERROR("%4x BUF ERROR", SCH_NO(q));
410 DBF_ERROR((q->is_input_q) ? "IN:%2d" : "OUT:%2d", q->nr);
Jan Glauber50f769d2008-12-25 13:38:47 +0100411 DBF_ERROR("FTC:%3d C:%3d", q->first_to_check, count);
Jan Glauber22f99342008-12-25 13:38:46 +0100412 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);
Jan Glauber50f769d2008-12-25 13:38:47 +0100415}
Jan Glauber779e6e12008-07-17 17:16:48 +0200416
Jan Glauber50f769d2008-12-25 13:38:47 +0100417static inline void inbound_primed(struct qdio_q *q, int count)
418{
419 int new;
420
421 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "in prim: %3d", count);
422
423 /* for QEBSM the ACK was already set by EQBS */
424 if (is_qebsm(q)) {
425 if (!q->u.in.polling) {
426 q->u.in.polling = 1;
427 q->u.in.ack_count = count;
Jan Glaubere85dea02009-03-26 15:24:29 +0100428 q->u.in.ack_start = q->first_to_check;
Jan Glauber50f769d2008-12-25 13:38:47 +0100429 return;
430 }
431
432 /* delete the previous ACK's */
Jan Glaubere85dea02009-03-26 15:24:29 +0100433 set_buf_states(q, q->u.in.ack_start, SLSB_P_INPUT_NOT_INIT,
Jan Glauber50f769d2008-12-25 13:38:47 +0100434 q->u.in.ack_count);
435 q->u.in.ack_count = count;
Jan Glaubere85dea02009-03-26 15:24:29 +0100436 q->u.in.ack_start = q->first_to_check;
Jan Glauber50f769d2008-12-25 13:38:47 +0100437 return;
438 }
439
440 /*
441 * ACK the newest buffer. The ACK will be removed in qdio_stop_polling
442 * or by the next inbound run.
443 */
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);
Jan Glaubere85dea02009-03-26 15:24:29 +0100448 set_buf_state(q, q->u.in.ack_start, SLSB_P_INPUT_NOT_INIT);
Jan Glauber3fdf1e12009-03-26 15:24:28 +0100449 } else {
Jan Glauber50f769d2008-12-25 13:38:47 +0100450 q->u.in.polling = 1;
Jan Glauber3fdf1e12009-03-26 15:24:28 +0100451 set_buf_state(q, new, SLSB_P_INPUT_ACK);
Jan Glauber50f769d2008-12-25 13:38:47 +0100452 }
453
Jan Glaubere85dea02009-03-26 15:24:29 +0100454 q->u.in.ack_start = new;
Jan Glauber50f769d2008-12-25 13:38:47 +0100455 count--;
456 if (!count)
457 return;
458
459 /*
460 * Need to change all PRIMED buffers to NOT_INIT, otherwise
461 * we're loosing initiative in the thinint code.
462 */
Jan Glauber3fdf1e12009-03-26 15:24:28 +0100463 set_buf_states(q, q->first_to_check, SLSB_P_INPUT_NOT_INIT,
Jan Glauber50f769d2008-12-25 13:38:47 +0100464 count);
Jan Glauber779e6e12008-07-17 17:16:48 +0200465}
466
467static int get_inbound_buffer_frontier(struct qdio_q *q)
468{
469 int count, stop;
470 unsigned char state;
471
472 /*
Jan Glauber779e6e12008-07-17 17:16:48 +0200473 * Don't check 128 buffers, as otherwise qdio_inbound_q_moved
474 * would return 0.
475 */
476 count = min(atomic_read(&q->nr_buf_used), QDIO_MAX_BUFFERS_MASK);
477 stop = add_buf(q->first_to_check, count);
478
479 /*
480 * No siga sync here, as a PCI or we after a thin interrupt
481 * will sync the queues.
482 */
483
484 /* need to set count to 1 for non-qebsm */
485 if (!is_qebsm(q))
486 count = 1;
487
488check_next:
489 if (q->first_to_check == stop)
490 goto out;
491
Jan Glauber50f769d2008-12-25 13:38:47 +0100492 count = get_buf_states(q, q->first_to_check, &state, count, 1);
Jan Glauber779e6e12008-07-17 17:16:48 +0200493 if (!count)
494 goto out;
495
496 switch (state) {
497 case SLSB_P_INPUT_PRIMED:
Jan Glauber50f769d2008-12-25 13:38:47 +0100498 inbound_primed(q, count);
Jan Glauber779e6e12008-07-17 17:16:48 +0200499 /*
500 * No siga-sync needed for non-qebsm here, as the inbound queue
501 * will be synced on the next siga-r, resp.
502 * tiqdio_is_inbound_q_done will do the siga-sync.
503 */
504 q->first_to_check = add_buf(q->first_to_check, count);
505 atomic_sub(count, &q->nr_buf_used);
506 goto check_next;
507 case SLSB_P_INPUT_ERROR:
Jan Glauber50f769d2008-12-25 13:38:47 +0100508 announce_buffer_error(q, count);
Jan Glauber779e6e12008-07-17 17:16:48 +0200509 /* process the buffer, the upper layer will take care of it */
510 q->first_to_check = add_buf(q->first_to_check, count);
511 atomic_sub(count, &q->nr_buf_used);
512 break;
513 case SLSB_CU_INPUT_EMPTY:
514 case SLSB_P_INPUT_NOT_INIT:
515 case SLSB_P_INPUT_ACK:
Jan Glauber22f99342008-12-25 13:38:46 +0100516 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "in nop");
Jan Glauber779e6e12008-07-17 17:16:48 +0200517 break;
518 default:
519 BUG();
520 }
521out:
Jan Glauber779e6e12008-07-17 17:16:48 +0200522 return q->first_to_check;
523}
524
Jan Glauber60b5df22009-06-22 12:08:10 +0200525static int qdio_inbound_q_moved(struct qdio_q *q)
Jan Glauber779e6e12008-07-17 17:16:48 +0200526{
527 int bufnr;
528
529 bufnr = get_inbound_buffer_frontier(q);
530
Jan Glaubere85dea02009-03-26 15:24:29 +0100531 if ((bufnr != q->last_move) || q->qdio_error) {
532 q->last_move = bufnr;
Jan Glauber779e6e12008-07-17 17:16:48 +0200533 if (!need_siga_sync(q) && !pci_out_supported(q))
534 q->u.in.timestamp = get_usecs();
535
Jan Glauber22f99342008-12-25 13:38:46 +0100536 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "in moved");
Jan Glauber779e6e12008-07-17 17:16:48 +0200537 return 1;
538 } else
539 return 0;
540}
541
542static int qdio_inbound_q_done(struct qdio_q *q)
543{
Jan Glauber9a1ce282008-12-25 13:38:45 +0100544 unsigned char state = 0;
Jan Glauber779e6e12008-07-17 17:16:48 +0200545
546 if (!atomic_read(&q->nr_buf_used))
547 return 1;
548
549 /*
550 * We need that one for synchronization with the adapter, as it
551 * does a kind of PCI avoidance.
552 */
553 qdio_siga_sync_q(q);
554
Jan Glauber50f769d2008-12-25 13:38:47 +0100555 get_buf_state(q, q->first_to_check, &state, 0);
Jan Glauber779e6e12008-07-17 17:16:48 +0200556 if (state == SLSB_P_INPUT_PRIMED)
557 /* we got something to do */
558 return 0;
559
560 /* on VM, we don't poll, so the q is always done here */
561 if (need_siga_sync(q) || pci_out_supported(q))
562 return 1;
563
564 /*
565 * At this point we know, that inbound first_to_check
566 * has (probably) not moved (see qdio_inbound_processing).
567 */
568 if (get_usecs() > q->u.in.timestamp + QDIO_INPUT_THRESHOLD) {
Jan Glauber22f99342008-12-25 13:38:46 +0100569 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "in done:%3d",
570 q->first_to_check);
Jan Glauber779e6e12008-07-17 17:16:48 +0200571 return 1;
572 } else {
Jan Glauber22f99342008-12-25 13:38:46 +0100573 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "in notd:%3d",
574 q->first_to_check);
Jan Glauber779e6e12008-07-17 17:16:48 +0200575 return 0;
576 }
577}
578
Jan Glauber60b5df22009-06-22 12:08:10 +0200579static inline int tiqdio_inbound_q_done(struct qdio_q *q)
580{
581 unsigned char state = 0;
582
583 if (!atomic_read(&q->nr_buf_used))
584 return 1;
585
586 qdio_siga_sync_q(q);
587 get_buf_state(q, q->first_to_check, &state, 0);
588
589 if (state == SLSB_P_INPUT_PRIMED)
590 /* more work coming */
591 return 0;
592 return 1;
593}
594
595static void qdio_kick_handler(struct qdio_q *q)
Jan Glauber779e6e12008-07-17 17:16:48 +0200596{
Jan Glauber9c8a08d2009-03-26 15:24:32 +0100597 int start = q->first_to_kick;
598 int end = q->first_to_check;
599 int count;
Jan Glauber779e6e12008-07-17 17:16:48 +0200600
601 if (unlikely(q->irq_ptr->state != QDIO_IRQ_STATE_ACTIVE))
602 return;
603
Jan Glauber9c8a08d2009-03-26 15:24:32 +0100604 count = sub_buf(end, start);
605
606 if (q->is_input_q) {
607 qdio_perf_stat_inc(&perf_stats.inbound_handler);
608 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "kih s:%3d c:%3d", start, count);
609 } else {
610 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "koh: nr:%1d", q->nr);
611 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "s:%3d c:%3d", start, count);
612 }
613
614 q->handler(q->irq_ptr->cdev, q->qdio_error, q->nr, start, count,
615 q->irq_ptr->int_parm);
Jan Glauber779e6e12008-07-17 17:16:48 +0200616
617 /* for the next time */
Jan Glauber9c8a08d2009-03-26 15:24:32 +0100618 q->first_to_kick = end;
Jan Glauber779e6e12008-07-17 17:16:48 +0200619 q->qdio_error = 0;
620}
621
622static void __qdio_inbound_processing(struct qdio_q *q)
623{
624 qdio_perf_stat_inc(&perf_stats.tasklet_inbound);
625again:
626 if (!qdio_inbound_q_moved(q))
627 return;
628
Jan Glauber9c8a08d2009-03-26 15:24:32 +0100629 qdio_kick_handler(q);
Jan Glauber779e6e12008-07-17 17:16:48 +0200630
631 if (!qdio_inbound_q_done(q))
632 /* means poll time is not yet over */
633 goto again;
634
635 qdio_stop_polling(q);
636 /*
637 * We need to check again to not lose initiative after
638 * resetting the ACK state.
639 */
640 if (!qdio_inbound_q_done(q))
641 goto again;
642}
643
Jan Glauber779e6e12008-07-17 17:16:48 +0200644void qdio_inbound_processing(unsigned long data)
645{
646 struct qdio_q *q = (struct qdio_q *)data;
647 __qdio_inbound_processing(q);
648}
649
650static int get_outbound_buffer_frontier(struct qdio_q *q)
651{
652 int count, stop;
653 unsigned char state;
654
655 if (((queue_type(q) != QDIO_IQDIO_QFMT) && !pci_out_supported(q)) ||
656 (queue_type(q) == QDIO_IQDIO_QFMT && multicast_outbound(q)))
657 qdio_siga_sync_q(q);
658
659 /*
660 * Don't check 128 buffers, as otherwise qdio_inbound_q_moved
661 * would return 0.
662 */
663 count = min(atomic_read(&q->nr_buf_used), QDIO_MAX_BUFFERS_MASK);
664 stop = add_buf(q->first_to_check, count);
665
666 /* need to set count to 1 for non-qebsm */
667 if (!is_qebsm(q))
668 count = 1;
669
670check_next:
671 if (q->first_to_check == stop)
672 return q->first_to_check;
673
Jan Glauber50f769d2008-12-25 13:38:47 +0100674 count = get_buf_states(q, q->first_to_check, &state, count, 0);
Jan Glauber779e6e12008-07-17 17:16:48 +0200675 if (!count)
676 return q->first_to_check;
677
678 switch (state) {
679 case SLSB_P_OUTPUT_EMPTY:
680 /* the adapter got it */
Jan Glauber22f99342008-12-25 13:38:46 +0100681 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "out empty:%1d %3d", q->nr, count);
Jan Glauber779e6e12008-07-17 17:16:48 +0200682
683 atomic_sub(count, &q->nr_buf_used);
684 q->first_to_check = add_buf(q->first_to_check, count);
685 /*
686 * We fetch all buffer states at once. get_buf_states may
687 * return count < stop. For QEBSM we do not loop.
688 */
689 if (is_qebsm(q))
690 break;
691 goto check_next;
692 case SLSB_P_OUTPUT_ERROR:
Jan Glauber50f769d2008-12-25 13:38:47 +0100693 announce_buffer_error(q, count);
Jan Glauber779e6e12008-07-17 17:16:48 +0200694 /* process the buffer, the upper layer will take care of it */
695 q->first_to_check = add_buf(q->first_to_check, count);
696 atomic_sub(count, &q->nr_buf_used);
697 break;
698 case SLSB_CU_OUTPUT_PRIMED:
699 /* the adapter has not fetched the output yet */
Jan Glauber22f99342008-12-25 13:38:46 +0100700 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "out primed:%1d", q->nr);
Jan Glauber779e6e12008-07-17 17:16:48 +0200701 break;
702 case SLSB_P_OUTPUT_NOT_INIT:
703 case SLSB_P_OUTPUT_HALTED:
704 break;
705 default:
706 BUG();
707 }
708 return q->first_to_check;
709}
710
711/* all buffers processed? */
712static inline int qdio_outbound_q_done(struct qdio_q *q)
713{
714 return atomic_read(&q->nr_buf_used) == 0;
715}
716
717static inline int qdio_outbound_q_moved(struct qdio_q *q)
718{
719 int bufnr;
720
721 bufnr = get_outbound_buffer_frontier(q);
722
Jan Glaubere85dea02009-03-26 15:24:29 +0100723 if ((bufnr != q->last_move) || q->qdio_error) {
724 q->last_move = bufnr;
Jan Glauber22f99342008-12-25 13:38:46 +0100725 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "out moved:%1d", q->nr);
Jan Glauber779e6e12008-07-17 17:16:48 +0200726 return 1;
727 } else
728 return 0;
729}
730
Jan Glauberd303b6f2009-03-26 15:24:31 +0100731static int qdio_kick_outbound_q(struct qdio_q *q)
Jan Glauber779e6e12008-07-17 17:16:48 +0200732{
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100733 unsigned int busy_bit;
734 int cc;
Jan Glauber779e6e12008-07-17 17:16:48 +0200735
736 if (!need_siga_out(q))
Jan Glauberd303b6f2009-03-26 15:24:31 +0100737 return 0;
Jan Glauber779e6e12008-07-17 17:16:48 +0200738
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100739 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "siga-w:%1d", q->nr);
740 qdio_perf_stat_inc(&perf_stats.siga_out);
741
742 cc = qdio_siga_output(q, &busy_bit);
743 switch (cc) {
Jan Glauber779e6e12008-07-17 17:16:48 +0200744 case 0:
Jan Glauber779e6e12008-07-17 17:16:48 +0200745 break;
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100746 case 2:
747 if (busy_bit) {
748 DBF_ERROR("%4x cc2 REP:%1d", SCH_NO(q), q->nr);
Jan Glauberd303b6f2009-03-26 15:24:31 +0100749 cc |= QDIO_ERROR_SIGA_BUSY;
750 } else
751 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "siga-w cc2:%1d", q->nr);
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100752 break;
753 case 1:
754 case 3:
755 DBF_ERROR("%4x SIGA-W:%1d", SCH_NO(q), cc);
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100756 break;
Jan Glauber779e6e12008-07-17 17:16:48 +0200757 }
Jan Glauberd303b6f2009-03-26 15:24:31 +0100758 return cc;
Jan Glauber779e6e12008-07-17 17:16:48 +0200759}
760
Jan Glauber779e6e12008-07-17 17:16:48 +0200761static void __qdio_outbound_processing(struct qdio_q *q)
762{
Jan Glauber779e6e12008-07-17 17:16:48 +0200763 qdio_perf_stat_inc(&perf_stats.tasklet_outbound);
Jan Glauber779e6e12008-07-17 17:16:48 +0200764 BUG_ON(atomic_read(&q->nr_buf_used) < 0);
765
766 if (qdio_outbound_q_moved(q))
Jan Glauber9c8a08d2009-03-26 15:24:32 +0100767 qdio_kick_handler(q);
Jan Glauber779e6e12008-07-17 17:16:48 +0200768
Jan Glauberc38f9602009-03-26 15:24:26 +0100769 if (queue_type(q) == QDIO_ZFCP_QFMT)
Jan Glauber779e6e12008-07-17 17:16:48 +0200770 if (!pci_out_supported(q) && !qdio_outbound_q_done(q))
Jan Glauberc38f9602009-03-26 15:24:26 +0100771 goto sched;
Jan Glauber779e6e12008-07-17 17:16:48 +0200772
773 /* bail out for HiperSockets unicast queues */
774 if (queue_type(q) == QDIO_IQDIO_QFMT && !multicast_outbound(q))
775 return;
776
Ursula Braun4bcb3a32008-10-10 21:33:04 +0200777 if ((queue_type(q) == QDIO_IQDIO_QFMT) &&
Jan Glauberc38f9602009-03-26 15:24:26 +0100778 (atomic_read(&q->nr_buf_used)) > QDIO_IQDIO_POLL_LVL)
779 goto sched;
Ursula Braun4bcb3a32008-10-10 21:33:04 +0200780
Jan Glauber779e6e12008-07-17 17:16:48 +0200781 if (q->u.out.pci_out_enabled)
782 return;
783
784 /*
785 * Now we know that queue type is either qeth without pci enabled
786 * or HiperSockets multicast. Make sure buffer switch from PRIMED to
787 * EMPTY is noticed and outbound_handler is called after some time.
788 */
789 if (qdio_outbound_q_done(q))
790 del_timer(&q->u.out.timer);
791 else {
792 if (!timer_pending(&q->u.out.timer)) {
793 mod_timer(&q->u.out.timer, jiffies + 10 * HZ);
794 qdio_perf_stat_inc(&perf_stats.debug_tl_out_timer);
795 }
796 }
Jan Glauberc38f9602009-03-26 15:24:26 +0100797 return;
798
799sched:
800 if (unlikely(q->irq_ptr->state == QDIO_IRQ_STATE_STOPPED))
801 return;
802 tasklet_schedule(&q->tasklet);
Jan Glauber779e6e12008-07-17 17:16:48 +0200803}
804
805/* outbound tasklet */
806void qdio_outbound_processing(unsigned long data)
807{
808 struct qdio_q *q = (struct qdio_q *)data;
809 __qdio_outbound_processing(q);
810}
811
812void qdio_outbound_timer(unsigned long data)
813{
814 struct qdio_q *q = (struct qdio_q *)data;
Jan Glauberc38f9602009-03-26 15:24:26 +0100815
816 if (unlikely(q->irq_ptr->state == QDIO_IRQ_STATE_STOPPED))
817 return;
Jan Glauber779e6e12008-07-17 17:16:48 +0200818 tasklet_schedule(&q->tasklet);
819}
820
Jan Glauber60b5df22009-06-22 12:08:10 +0200821static inline void qdio_check_outbound_after_thinint(struct qdio_q *q)
Jan Glauber779e6e12008-07-17 17:16:48 +0200822{
823 struct qdio_q *out;
824 int i;
825
826 if (!pci_out_supported(q))
827 return;
828
829 for_each_output_queue(q->irq_ptr, out, i)
830 if (!qdio_outbound_q_done(out))
831 tasklet_schedule(&out->tasklet);
832}
833
Jan Glauber60b5df22009-06-22 12:08:10 +0200834static void __tiqdio_inbound_processing(struct qdio_q *q)
835{
836 qdio_perf_stat_inc(&perf_stats.thinint_inbound);
837 qdio_sync_after_thinint(q);
838
839 /*
840 * The interrupt could be caused by a PCI request. Check the
841 * PCI capable outbound queues.
842 */
843 qdio_check_outbound_after_thinint(q);
844
845 if (!qdio_inbound_q_moved(q))
846 return;
847
848 qdio_kick_handler(q);
849
850 if (!tiqdio_inbound_q_done(q)) {
851 qdio_perf_stat_inc(&perf_stats.thinint_inbound_loop);
852 if (likely(q->irq_ptr->state != QDIO_IRQ_STATE_STOPPED))
853 tasklet_schedule(&q->tasklet);
854 }
855
856 qdio_stop_polling(q);
857 /*
858 * We need to check again to not lose initiative after
859 * resetting the ACK state.
860 */
861 if (!tiqdio_inbound_q_done(q)) {
862 qdio_perf_stat_inc(&perf_stats.thinint_inbound_loop2);
863 if (likely(q->irq_ptr->state != QDIO_IRQ_STATE_STOPPED))
864 tasklet_schedule(&q->tasklet);
865 }
866}
867
868void tiqdio_inbound_processing(unsigned long data)
869{
870 struct qdio_q *q = (struct qdio_q *)data;
871 __tiqdio_inbound_processing(q);
872}
873
Jan Glauber779e6e12008-07-17 17:16:48 +0200874static inline void qdio_set_state(struct qdio_irq *irq_ptr,
875 enum qdio_irq_states state)
876{
Jan Glauber22f99342008-12-25 13:38:46 +0100877 DBF_DEV_EVENT(DBF_INFO, irq_ptr, "newstate: %1d", state);
Jan Glauber779e6e12008-07-17 17:16:48 +0200878
879 irq_ptr->state = state;
880 mb();
881}
882
Jan Glauber22f99342008-12-25 13:38:46 +0100883static void qdio_irq_check_sense(struct qdio_irq *irq_ptr, struct irb *irb)
Jan Glauber779e6e12008-07-17 17:16:48 +0200884{
Jan Glauber779e6e12008-07-17 17:16:48 +0200885 if (irb->esw.esw0.erw.cons) {
Jan Glauber22f99342008-12-25 13:38:46 +0100886 DBF_ERROR("%4x sense:", irq_ptr->schid.sch_no);
887 DBF_ERROR_HEX(irb, 64);
888 DBF_ERROR_HEX(irb->ecw, 64);
Jan Glauber779e6e12008-07-17 17:16:48 +0200889 }
890}
891
892/* PCI interrupt handler */
893static void qdio_int_handler_pci(struct qdio_irq *irq_ptr)
894{
895 int i;
896 struct qdio_q *q;
897
Jan Glauberc38f9602009-03-26 15:24:26 +0100898 if (unlikely(irq_ptr->state == QDIO_IRQ_STATE_STOPPED))
899 return;
900
Jan Glauber779e6e12008-07-17 17:16:48 +0200901 qdio_perf_stat_inc(&perf_stats.pci_int);
902
903 for_each_input_queue(irq_ptr, q, i)
904 tasklet_schedule(&q->tasklet);
905
906 if (!(irq_ptr->qib.ac & QIB_AC_OUTBOUND_PCI_SUPPORTED))
907 return;
908
909 for_each_output_queue(irq_ptr, q, i) {
910 if (qdio_outbound_q_done(q))
911 continue;
912
913 if (!siga_syncs_out_pci(q))
914 qdio_siga_sync_q(q);
915
916 tasklet_schedule(&q->tasklet);
917 }
918}
919
920static void qdio_handle_activate_check(struct ccw_device *cdev,
921 unsigned long intparm, int cstat, int dstat)
922{
923 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
924 struct qdio_q *q;
Jan Glauber779e6e12008-07-17 17:16:48 +0200925
Jan Glauber22f99342008-12-25 13:38:46 +0100926 DBF_ERROR("%4x ACT CHECK", irq_ptr->schid.sch_no);
927 DBF_ERROR("intp :%lx", intparm);
928 DBF_ERROR("ds: %2x cs:%2x", dstat, cstat);
Jan Glauber779e6e12008-07-17 17:16:48 +0200929
930 if (irq_ptr->nr_input_qs) {
931 q = irq_ptr->input_qs[0];
932 } else if (irq_ptr->nr_output_qs) {
933 q = irq_ptr->output_qs[0];
934 } else {
935 dump_stack();
936 goto no_handler;
937 }
938 q->handler(q->irq_ptr->cdev, QDIO_ERROR_ACTIVATE_CHECK_CONDITION,
939 0, -1, -1, irq_ptr->int_parm);
940no_handler:
941 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_STOPPED);
942}
943
Jan Glauber779e6e12008-07-17 17:16:48 +0200944static void qdio_establish_handle_irq(struct ccw_device *cdev, int cstat,
945 int dstat)
946{
947 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
Jan Glauber779e6e12008-07-17 17:16:48 +0200948
Jan Glauber22f99342008-12-25 13:38:46 +0100949 DBF_DEV_EVENT(DBF_INFO, irq_ptr, "qest irq");
Jan Glauber4c575422009-06-12 10:26:28 +0200950
951 if (cstat)
952 goto error;
953 if (dstat & ~(DEV_STAT_DEV_END | DEV_STAT_CHN_END))
954 goto error;
955 if (!(dstat & DEV_STAT_DEV_END))
956 goto error;
957 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_ESTABLISHED);
958 return;
959
960error:
961 DBF_ERROR("%4x EQ:error", irq_ptr->schid.sch_no);
962 DBF_ERROR("ds: %2x cs:%2x", dstat, cstat);
963 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_ERR);
Jan Glauber779e6e12008-07-17 17:16:48 +0200964}
965
966/* qdio interrupt handler */
967void qdio_int_handler(struct ccw_device *cdev, unsigned long intparm,
968 struct irb *irb)
969{
970 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
971 int cstat, dstat;
Jan Glauber779e6e12008-07-17 17:16:48 +0200972
973 qdio_perf_stat_inc(&perf_stats.qdio_int);
974
975 if (!intparm || !irq_ptr) {
Jan Glauber22f99342008-12-25 13:38:46 +0100976 DBF_ERROR("qint:%4x", cdev->private->schid.sch_no);
Jan Glauber779e6e12008-07-17 17:16:48 +0200977 return;
978 }
979
980 if (IS_ERR(irb)) {
981 switch (PTR_ERR(irb)) {
982 case -EIO:
Jan Glauber22f99342008-12-25 13:38:46 +0100983 DBF_ERROR("%4x IO error", irq_ptr->schid.sch_no);
Jan Glauber75cb71f2009-04-14 15:36:22 +0200984 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_ERR);
985 wake_up(&cdev->private->wait_q);
Jan Glauber779e6e12008-07-17 17:16:48 +0200986 return;
987 default:
988 WARN_ON(1);
989 return;
990 }
991 }
Jan Glauber22f99342008-12-25 13:38:46 +0100992 qdio_irq_check_sense(irq_ptr, irb);
Jan Glauber779e6e12008-07-17 17:16:48 +0200993 cstat = irb->scsw.cmd.cstat;
994 dstat = irb->scsw.cmd.dstat;
995
996 switch (irq_ptr->state) {
997 case QDIO_IRQ_STATE_INACTIVE:
998 qdio_establish_handle_irq(cdev, cstat, dstat);
999 break;
Jan Glauber779e6e12008-07-17 17:16:48 +02001000 case QDIO_IRQ_STATE_CLEANUP:
1001 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_INACTIVE);
1002 break;
Jan Glauber779e6e12008-07-17 17:16:48 +02001003 case QDIO_IRQ_STATE_ESTABLISHED:
1004 case QDIO_IRQ_STATE_ACTIVE:
1005 if (cstat & SCHN_STAT_PCI) {
1006 qdio_int_handler_pci(irq_ptr);
Jan Glauber779e6e12008-07-17 17:16:48 +02001007 return;
1008 }
Jan Glauber4c575422009-06-12 10:26:28 +02001009 if (cstat || dstat)
Jan Glauber779e6e12008-07-17 17:16:48 +02001010 qdio_handle_activate_check(cdev, intparm, cstat,
1011 dstat);
Jan Glauber4c575422009-06-12 10:26:28 +02001012 break;
Jan Glauber779e6e12008-07-17 17:16:48 +02001013 default:
1014 WARN_ON(1);
1015 }
1016 wake_up(&cdev->private->wait_q);
1017}
1018
1019/**
1020 * qdio_get_ssqd_desc - get qdio subchannel description
1021 * @cdev: ccw device to get description for
Jan Glauberbbd50e12008-12-25 13:38:43 +01001022 * @data: where to store the ssqd
Jan Glauber779e6e12008-07-17 17:16:48 +02001023 *
Jan Glauberbbd50e12008-12-25 13:38:43 +01001024 * Returns 0 or an error code. The results of the chsc are stored in the
1025 * specified structure.
Jan Glauber779e6e12008-07-17 17:16:48 +02001026 */
Jan Glauberbbd50e12008-12-25 13:38:43 +01001027int qdio_get_ssqd_desc(struct ccw_device *cdev,
1028 struct qdio_ssqd_desc *data)
Jan Glauber779e6e12008-07-17 17:16:48 +02001029{
Jan Glauber779e6e12008-07-17 17:16:48 +02001030
Jan Glauberbbd50e12008-12-25 13:38:43 +01001031 if (!cdev || !cdev->private)
1032 return -EINVAL;
1033
Jan Glauber22f99342008-12-25 13:38:46 +01001034 DBF_EVENT("get ssqd:%4x", cdev->private->schid.sch_no);
Jan Glauberbbd50e12008-12-25 13:38:43 +01001035 return qdio_setup_get_ssqd(NULL, &cdev->private->schid, data);
Jan Glauber779e6e12008-07-17 17:16:48 +02001036}
1037EXPORT_SYMBOL_GPL(qdio_get_ssqd_desc);
1038
1039/**
1040 * qdio_cleanup - shutdown queues and free data structures
1041 * @cdev: associated ccw device
1042 * @how: use halt or clear to shutdown
1043 *
Jan Glauber700e9822009-03-26 15:24:27 +01001044 * This function calls qdio_shutdown() for @cdev with method @how.
1045 * and qdio_free(). The qdio_free() return value is ignored since
1046 * !irq_ptr is already checked.
Jan Glauber779e6e12008-07-17 17:16:48 +02001047 */
1048int qdio_cleanup(struct ccw_device *cdev, int how)
1049{
Jan Glauber22f99342008-12-25 13:38:46 +01001050 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
Jan Glauber779e6e12008-07-17 17:16:48 +02001051 int rc;
1052
Jan Glauber779e6e12008-07-17 17:16:48 +02001053 if (!irq_ptr)
1054 return -ENODEV;
1055
Jan Glauber779e6e12008-07-17 17:16:48 +02001056 rc = qdio_shutdown(cdev, how);
Jan Glauber700e9822009-03-26 15:24:27 +01001057
1058 qdio_free(cdev);
Jan Glauber779e6e12008-07-17 17:16:48 +02001059 return rc;
1060}
1061EXPORT_SYMBOL_GPL(qdio_cleanup);
1062
1063static void qdio_shutdown_queues(struct ccw_device *cdev)
1064{
1065 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
1066 struct qdio_q *q;
1067 int i;
1068
1069 for_each_input_queue(irq_ptr, q, i)
Jan Glauberc38f9602009-03-26 15:24:26 +01001070 tasklet_kill(&q->tasklet);
Jan Glauber779e6e12008-07-17 17:16:48 +02001071
1072 for_each_output_queue(irq_ptr, q, i) {
Jan Glauber779e6e12008-07-17 17:16:48 +02001073 del_timer(&q->u.out.timer);
Jan Glauberc38f9602009-03-26 15:24:26 +01001074 tasklet_kill(&q->tasklet);
Jan Glauber779e6e12008-07-17 17:16:48 +02001075 }
1076}
1077
1078/**
1079 * qdio_shutdown - shut down a qdio subchannel
1080 * @cdev: associated ccw device
1081 * @how: use halt or clear to shutdown
1082 */
1083int qdio_shutdown(struct ccw_device *cdev, int how)
1084{
Jan Glauber22f99342008-12-25 13:38:46 +01001085 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
Jan Glauber779e6e12008-07-17 17:16:48 +02001086 int rc;
1087 unsigned long flags;
Jan Glauber779e6e12008-07-17 17:16:48 +02001088
Jan Glauber779e6e12008-07-17 17:16:48 +02001089 if (!irq_ptr)
1090 return -ENODEV;
1091
Jan Glauberb4547402009-03-26 15:24:24 +01001092 BUG_ON(irqs_disabled());
Jan Glauber22f99342008-12-25 13:38:46 +01001093 DBF_EVENT("qshutdown:%4x", cdev->private->schid.sch_no);
1094
Jan Glauber779e6e12008-07-17 17:16:48 +02001095 mutex_lock(&irq_ptr->setup_mutex);
1096 /*
1097 * Subchannel was already shot down. We cannot prevent being called
1098 * twice since cio may trigger a shutdown asynchronously.
1099 */
1100 if (irq_ptr->state == QDIO_IRQ_STATE_INACTIVE) {
1101 mutex_unlock(&irq_ptr->setup_mutex);
1102 return 0;
1103 }
1104
Jan Glauberc38f9602009-03-26 15:24:26 +01001105 /*
1106 * Indicate that the device is going down. Scheduling the queue
1107 * tasklets is forbidden from here on.
1108 */
1109 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_STOPPED);
1110
Jan Glauber779e6e12008-07-17 17:16:48 +02001111 tiqdio_remove_input_queues(irq_ptr);
1112 qdio_shutdown_queues(cdev);
1113 qdio_shutdown_debug_entries(irq_ptr, cdev);
1114
1115 /* cleanup subchannel */
1116 spin_lock_irqsave(get_ccwdev_lock(cdev), flags);
1117
1118 if (how & QDIO_FLAG_CLEANUP_USING_CLEAR)
1119 rc = ccw_device_clear(cdev, QDIO_DOING_CLEANUP);
1120 else
1121 /* default behaviour is halt */
1122 rc = ccw_device_halt(cdev, QDIO_DOING_CLEANUP);
1123 if (rc) {
Jan Glauber22f99342008-12-25 13:38:46 +01001124 DBF_ERROR("%4x SHUTD ERR", irq_ptr->schid.sch_no);
1125 DBF_ERROR("rc:%4d", rc);
Jan Glauber779e6e12008-07-17 17:16:48 +02001126 goto no_cleanup;
1127 }
1128
1129 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_CLEANUP);
1130 spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);
1131 wait_event_interruptible_timeout(cdev->private->wait_q,
1132 irq_ptr->state == QDIO_IRQ_STATE_INACTIVE ||
1133 irq_ptr->state == QDIO_IRQ_STATE_ERR,
1134 10 * HZ);
1135 spin_lock_irqsave(get_ccwdev_lock(cdev), flags);
1136
1137no_cleanup:
1138 qdio_shutdown_thinint(irq_ptr);
1139
1140 /* restore interrupt handler */
1141 if ((void *)cdev->handler == (void *)qdio_int_handler)
1142 cdev->handler = irq_ptr->orig_handler;
1143 spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);
1144
1145 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_INACTIVE);
1146 mutex_unlock(&irq_ptr->setup_mutex);
Jan Glauber779e6e12008-07-17 17:16:48 +02001147 if (rc)
1148 return rc;
1149 return 0;
1150}
1151EXPORT_SYMBOL_GPL(qdio_shutdown);
1152
1153/**
1154 * qdio_free - free data structures for a qdio subchannel
1155 * @cdev: associated ccw device
1156 */
1157int qdio_free(struct ccw_device *cdev)
1158{
Jan Glauber22f99342008-12-25 13:38:46 +01001159 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
Jan Glauber779e6e12008-07-17 17:16:48 +02001160
Jan Glauber779e6e12008-07-17 17:16:48 +02001161 if (!irq_ptr)
1162 return -ENODEV;
1163
Jan Glauber22f99342008-12-25 13:38:46 +01001164 DBF_EVENT("qfree:%4x", cdev->private->schid.sch_no);
Jan Glauber779e6e12008-07-17 17:16:48 +02001165 mutex_lock(&irq_ptr->setup_mutex);
Jan Glauber22f99342008-12-25 13:38:46 +01001166
1167 if (irq_ptr->debug_area != NULL) {
1168 debug_unregister(irq_ptr->debug_area);
1169 irq_ptr->debug_area = NULL;
1170 }
Jan Glauber779e6e12008-07-17 17:16:48 +02001171 cdev->private->qdio_data = NULL;
1172 mutex_unlock(&irq_ptr->setup_mutex);
1173
1174 qdio_release_memory(irq_ptr);
1175 return 0;
1176}
1177EXPORT_SYMBOL_GPL(qdio_free);
1178
1179/**
1180 * qdio_initialize - allocate and establish queues for a qdio subchannel
1181 * @init_data: initialization data
1182 *
1183 * This function first allocates queues via qdio_allocate() and on success
1184 * establishes them via qdio_establish().
1185 */
1186int qdio_initialize(struct qdio_initialize *init_data)
1187{
1188 int rc;
Jan Glauber779e6e12008-07-17 17:16:48 +02001189
1190 rc = qdio_allocate(init_data);
1191 if (rc)
1192 return rc;
1193
1194 rc = qdio_establish(init_data);
1195 if (rc)
1196 qdio_free(init_data->cdev);
1197 return rc;
1198}
1199EXPORT_SYMBOL_GPL(qdio_initialize);
1200
1201/**
1202 * qdio_allocate - allocate qdio queues and associated data
1203 * @init_data: initialization data
1204 */
1205int qdio_allocate(struct qdio_initialize *init_data)
1206{
1207 struct qdio_irq *irq_ptr;
Jan Glauber779e6e12008-07-17 17:16:48 +02001208
Jan Glauber22f99342008-12-25 13:38:46 +01001209 DBF_EVENT("qallocate:%4x", init_data->cdev->private->schid.sch_no);
Jan Glauber779e6e12008-07-17 17:16:48 +02001210
1211 if ((init_data->no_input_qs && !init_data->input_handler) ||
1212 (init_data->no_output_qs && !init_data->output_handler))
1213 return -EINVAL;
1214
1215 if ((init_data->no_input_qs > QDIO_MAX_QUEUES_PER_IRQ) ||
1216 (init_data->no_output_qs > QDIO_MAX_QUEUES_PER_IRQ))
1217 return -EINVAL;
1218
1219 if ((!init_data->input_sbal_addr_array) ||
1220 (!init_data->output_sbal_addr_array))
1221 return -EINVAL;
1222
Jan Glauber779e6e12008-07-17 17:16:48 +02001223 /* irq_ptr must be in GFP_DMA since it contains ccw1.cda */
1224 irq_ptr = (void *) get_zeroed_page(GFP_KERNEL | GFP_DMA);
1225 if (!irq_ptr)
1226 goto out_err;
Jan Glauber779e6e12008-07-17 17:16:48 +02001227
1228 mutex_init(&irq_ptr->setup_mutex);
Jan Glauber22f99342008-12-25 13:38:46 +01001229 qdio_allocate_dbf(init_data, irq_ptr);
Jan Glauber779e6e12008-07-17 17:16:48 +02001230
1231 /*
1232 * Allocate a page for the chsc calls in qdio_establish.
1233 * Must be pre-allocated since a zfcp recovery will call
1234 * qdio_establish. In case of low memory and swap on a zfcp disk
1235 * we may not be able to allocate memory otherwise.
1236 */
1237 irq_ptr->chsc_page = get_zeroed_page(GFP_KERNEL);
1238 if (!irq_ptr->chsc_page)
1239 goto out_rel;
1240
1241 /* qdr is used in ccw1.cda which is u32 */
Jan Glauber3b8e3002008-08-01 16:39:17 +02001242 irq_ptr->qdr = (struct qdr *) get_zeroed_page(GFP_KERNEL | GFP_DMA);
Jan Glauber779e6e12008-07-17 17:16:48 +02001243 if (!irq_ptr->qdr)
1244 goto out_rel;
1245 WARN_ON((unsigned long)irq_ptr->qdr & 0xfff);
1246
Jan Glauber779e6e12008-07-17 17:16:48 +02001247 if (qdio_allocate_qs(irq_ptr, init_data->no_input_qs,
1248 init_data->no_output_qs))
1249 goto out_rel;
1250
1251 init_data->cdev->private->qdio_data = irq_ptr;
1252 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_INACTIVE);
1253 return 0;
1254out_rel:
1255 qdio_release_memory(irq_ptr);
1256out_err:
1257 return -ENOMEM;
1258}
1259EXPORT_SYMBOL_GPL(qdio_allocate);
1260
1261/**
1262 * qdio_establish - establish queues on a qdio subchannel
1263 * @init_data: initialization data
1264 */
1265int qdio_establish(struct qdio_initialize *init_data)
1266{
Jan Glauber779e6e12008-07-17 17:16:48 +02001267 struct qdio_irq *irq_ptr;
1268 struct ccw_device *cdev = init_data->cdev;
1269 unsigned long saveflags;
1270 int rc;
1271
Jan Glauber22f99342008-12-25 13:38:46 +01001272 DBF_EVENT("qestablish:%4x", cdev->private->schid.sch_no);
Jan Glauber58eb27c2008-08-21 19:46:34 +02001273
Jan Glauber779e6e12008-07-17 17:16:48 +02001274 irq_ptr = cdev->private->qdio_data;
1275 if (!irq_ptr)
1276 return -ENODEV;
1277
1278 if (cdev->private->state != DEV_STATE_ONLINE)
1279 return -EINVAL;
1280
Jan Glauber779e6e12008-07-17 17:16:48 +02001281 mutex_lock(&irq_ptr->setup_mutex);
1282 qdio_setup_irq(init_data);
1283
1284 rc = qdio_establish_thinint(irq_ptr);
1285 if (rc) {
1286 mutex_unlock(&irq_ptr->setup_mutex);
1287 qdio_shutdown(cdev, QDIO_FLAG_CLEANUP_USING_CLEAR);
1288 return rc;
1289 }
1290
1291 /* establish q */
1292 irq_ptr->ccw.cmd_code = irq_ptr->equeue.cmd;
1293 irq_ptr->ccw.flags = CCW_FLAG_SLI;
1294 irq_ptr->ccw.count = irq_ptr->equeue.count;
1295 irq_ptr->ccw.cda = (u32)((addr_t)irq_ptr->qdr);
1296
1297 spin_lock_irqsave(get_ccwdev_lock(cdev), saveflags);
1298 ccw_device_set_options_mask(cdev, 0);
1299
1300 rc = ccw_device_start(cdev, &irq_ptr->ccw, QDIO_DOING_ESTABLISH, 0, 0);
1301 if (rc) {
Jan Glauber22f99342008-12-25 13:38:46 +01001302 DBF_ERROR("%4x est IO ERR", irq_ptr->schid.sch_no);
1303 DBF_ERROR("rc:%4x", rc);
Jan Glauber779e6e12008-07-17 17:16:48 +02001304 }
1305 spin_unlock_irqrestore(get_ccwdev_lock(cdev), saveflags);
1306
1307 if (rc) {
1308 mutex_unlock(&irq_ptr->setup_mutex);
1309 qdio_shutdown(cdev, QDIO_FLAG_CLEANUP_USING_CLEAR);
1310 return rc;
1311 }
1312
1313 wait_event_interruptible_timeout(cdev->private->wait_q,
1314 irq_ptr->state == QDIO_IRQ_STATE_ESTABLISHED ||
1315 irq_ptr->state == QDIO_IRQ_STATE_ERR, HZ);
1316
1317 if (irq_ptr->state != QDIO_IRQ_STATE_ESTABLISHED) {
1318 mutex_unlock(&irq_ptr->setup_mutex);
1319 qdio_shutdown(cdev, QDIO_FLAG_CLEANUP_USING_CLEAR);
1320 return -EIO;
1321 }
1322
1323 qdio_setup_ssqd_info(irq_ptr);
Jan Glauber22f99342008-12-25 13:38:46 +01001324 DBF_EVENT("qDmmwc:%2x", irq_ptr->ssqd_desc.mmwc);
1325 DBF_EVENT("qib ac:%4x", irq_ptr->qib.ac);
Jan Glauber779e6e12008-07-17 17:16:48 +02001326
1327 /* qebsm is now setup if available, initialize buffer states */
1328 qdio_init_buf_states(irq_ptr);
1329
1330 mutex_unlock(&irq_ptr->setup_mutex);
1331 qdio_print_subchannel_info(irq_ptr, cdev);
1332 qdio_setup_debug_entries(irq_ptr, cdev);
1333 return 0;
1334}
1335EXPORT_SYMBOL_GPL(qdio_establish);
1336
1337/**
1338 * qdio_activate - activate queues on a qdio subchannel
1339 * @cdev: associated cdev
1340 */
1341int qdio_activate(struct ccw_device *cdev)
1342{
1343 struct qdio_irq *irq_ptr;
1344 int rc;
1345 unsigned long saveflags;
Jan Glauber779e6e12008-07-17 17:16:48 +02001346
Jan Glauber22f99342008-12-25 13:38:46 +01001347 DBF_EVENT("qactivate:%4x", cdev->private->schid.sch_no);
Jan Glauber58eb27c2008-08-21 19:46:34 +02001348
Jan Glauber779e6e12008-07-17 17:16:48 +02001349 irq_ptr = cdev->private->qdio_data;
1350 if (!irq_ptr)
1351 return -ENODEV;
1352
1353 if (cdev->private->state != DEV_STATE_ONLINE)
1354 return -EINVAL;
1355
1356 mutex_lock(&irq_ptr->setup_mutex);
1357 if (irq_ptr->state == QDIO_IRQ_STATE_INACTIVE) {
1358 rc = -EBUSY;
1359 goto out;
1360 }
1361
Jan Glauber779e6e12008-07-17 17:16:48 +02001362 irq_ptr->ccw.cmd_code = irq_ptr->aqueue.cmd;
1363 irq_ptr->ccw.flags = CCW_FLAG_SLI;
1364 irq_ptr->ccw.count = irq_ptr->aqueue.count;
1365 irq_ptr->ccw.cda = 0;
1366
1367 spin_lock_irqsave(get_ccwdev_lock(cdev), saveflags);
1368 ccw_device_set_options(cdev, CCWDEV_REPORT_ALL);
1369
1370 rc = ccw_device_start(cdev, &irq_ptr->ccw, QDIO_DOING_ACTIVATE,
1371 0, DOIO_DENY_PREFETCH);
1372 if (rc) {
Jan Glauber22f99342008-12-25 13:38:46 +01001373 DBF_ERROR("%4x act IO ERR", irq_ptr->schid.sch_no);
1374 DBF_ERROR("rc:%4x", rc);
Jan Glauber779e6e12008-07-17 17:16:48 +02001375 }
1376 spin_unlock_irqrestore(get_ccwdev_lock(cdev), saveflags);
1377
1378 if (rc)
1379 goto out;
1380
1381 if (is_thinint_irq(irq_ptr))
1382 tiqdio_add_input_queues(irq_ptr);
1383
1384 /* wait for subchannel to become active */
1385 msleep(5);
1386
1387 switch (irq_ptr->state) {
1388 case QDIO_IRQ_STATE_STOPPED:
1389 case QDIO_IRQ_STATE_ERR:
Jan Glaubere4c14e22009-03-26 15:24:25 +01001390 rc = -EIO;
1391 break;
Jan Glauber779e6e12008-07-17 17:16:48 +02001392 default:
1393 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_ACTIVE);
1394 rc = 0;
1395 }
1396out:
1397 mutex_unlock(&irq_ptr->setup_mutex);
1398 return rc;
1399}
1400EXPORT_SYMBOL_GPL(qdio_activate);
1401
1402static inline int buf_in_between(int bufnr, int start, int count)
1403{
1404 int end = add_buf(start, count);
1405
1406 if (end > start) {
1407 if (bufnr >= start && bufnr < end)
1408 return 1;
1409 else
1410 return 0;
1411 }
1412
1413 /* wrap-around case */
1414 if ((bufnr >= start && bufnr <= QDIO_MAX_BUFFERS_PER_Q) ||
1415 (bufnr < end))
1416 return 1;
1417 else
1418 return 0;
1419}
1420
1421/**
1422 * handle_inbound - reset processed input buffers
1423 * @q: queue containing the buffers
1424 * @callflags: flags
1425 * @bufnr: first buffer to process
1426 * @count: how many buffers are emptied
1427 */
Jan Glauberd303b6f2009-03-26 15:24:31 +01001428static int handle_inbound(struct qdio_q *q, unsigned int callflags,
1429 int bufnr, int count)
Jan Glauber779e6e12008-07-17 17:16:48 +02001430{
Jan Glauberd303b6f2009-03-26 15:24:31 +01001431 int used, diff;
Jan Glauber779e6e12008-07-17 17:16:48 +02001432
Jan Glauber50f769d2008-12-25 13:38:47 +01001433 if (!q->u.in.polling)
1434 goto set;
1435
1436 /* protect against stop polling setting an ACK for an emptied slsb */
1437 if (count == QDIO_MAX_BUFFERS_PER_Q) {
1438 /* overwriting everything, just delete polling status */
1439 q->u.in.polling = 0;
1440 q->u.in.ack_count = 0;
1441 goto set;
Jan Glaubere85dea02009-03-26 15:24:29 +01001442 } else if (buf_in_between(q->u.in.ack_start, bufnr, count)) {
Jan Glauber50f769d2008-12-25 13:38:47 +01001443 if (is_qebsm(q)) {
Jan Glaubere85dea02009-03-26 15:24:29 +01001444 /* partial overwrite, just update ack_start */
Jan Glauber50f769d2008-12-25 13:38:47 +01001445 diff = add_buf(bufnr, count);
Jan Glaubere85dea02009-03-26 15:24:29 +01001446 diff = sub_buf(diff, q->u.in.ack_start);
Jan Glauber50f769d2008-12-25 13:38:47 +01001447 q->u.in.ack_count -= diff;
1448 if (q->u.in.ack_count <= 0) {
1449 q->u.in.polling = 0;
1450 q->u.in.ack_count = 0;
Jan Glauber50f769d2008-12-25 13:38:47 +01001451 goto set;
1452 }
Jan Glaubere85dea02009-03-26 15:24:29 +01001453 q->u.in.ack_start = add_buf(q->u.in.ack_start, diff);
Jan Glauber50f769d2008-12-25 13:38:47 +01001454 }
1455 else
1456 /* the only ACK will be deleted, so stop polling */
Jan Glauber779e6e12008-07-17 17:16:48 +02001457 q->u.in.polling = 0;
Jan Glauber50f769d2008-12-25 13:38:47 +01001458 }
Jan Glauber779e6e12008-07-17 17:16:48 +02001459
Jan Glauber50f769d2008-12-25 13:38:47 +01001460set:
Jan Glauber779e6e12008-07-17 17:16:48 +02001461 count = set_buf_states(q, bufnr, SLSB_CU_INPUT_EMPTY, count);
Jan Glauber779e6e12008-07-17 17:16:48 +02001462
1463 used = atomic_add_return(count, &q->nr_buf_used) - count;
1464 BUG_ON(used + count > QDIO_MAX_BUFFERS_PER_Q);
1465
1466 /* no need to signal as long as the adapter had free buffers */
1467 if (used)
Jan Glauberd303b6f2009-03-26 15:24:31 +01001468 return 0;
Jan Glauber779e6e12008-07-17 17:16:48 +02001469
Jan Glauberd303b6f2009-03-26 15:24:31 +01001470 if (need_siga_in(q))
1471 return qdio_siga_input(q);
1472 return 0;
Jan Glauber779e6e12008-07-17 17:16:48 +02001473}
1474
1475/**
1476 * handle_outbound - process filled outbound buffers
1477 * @q: queue containing the buffers
1478 * @callflags: flags
1479 * @bufnr: first buffer to process
1480 * @count: how many buffers are filled
1481 */
Jan Glauberd303b6f2009-03-26 15:24:31 +01001482static int handle_outbound(struct qdio_q *q, unsigned int callflags,
1483 int bufnr, int count)
Jan Glauber779e6e12008-07-17 17:16:48 +02001484{
1485 unsigned char state;
Jan Glauberd303b6f2009-03-26 15:24:31 +01001486 int used, rc = 0;
Jan Glauber779e6e12008-07-17 17:16:48 +02001487
1488 qdio_perf_stat_inc(&perf_stats.outbound_handler);
1489
1490 count = set_buf_states(q, bufnr, SLSB_CU_OUTPUT_PRIMED, count);
1491 used = atomic_add_return(count, &q->nr_buf_used);
1492 BUG_ON(used > QDIO_MAX_BUFFERS_PER_Q);
1493
1494 if (callflags & QDIO_FLAG_PCI_OUT)
1495 q->u.out.pci_out_enabled = 1;
1496 else
1497 q->u.out.pci_out_enabled = 0;
1498
1499 if (queue_type(q) == QDIO_IQDIO_QFMT) {
1500 if (multicast_outbound(q))
Jan Glauberd303b6f2009-03-26 15:24:31 +01001501 rc = qdio_kick_outbound_q(q);
Jan Glauber779e6e12008-07-17 17:16:48 +02001502 else
Klaus-Dieter Wacker7a0f4752008-10-10 21:33:18 +02001503 if ((q->irq_ptr->ssqd_desc.mmwc > 1) &&
1504 (count > 1) &&
1505 (count <= q->irq_ptr->ssqd_desc.mmwc)) {
1506 /* exploit enhanced SIGA */
1507 q->u.out.use_enh_siga = 1;
Jan Glauberd303b6f2009-03-26 15:24:31 +01001508 rc = qdio_kick_outbound_q(q);
Klaus-Dieter Wacker7a0f4752008-10-10 21:33:18 +02001509 } else {
1510 /*
1511 * One siga-w per buffer required for unicast
1512 * HiperSockets.
1513 */
1514 q->u.out.use_enh_siga = 0;
Jan Glauberd303b6f2009-03-26 15:24:31 +01001515 while (count--) {
1516 rc = qdio_kick_outbound_q(q);
1517 if (rc)
1518 goto out;
1519 }
Klaus-Dieter Wacker7a0f4752008-10-10 21:33:18 +02001520 }
Jan Glauber779e6e12008-07-17 17:16:48 +02001521 goto out;
1522 }
1523
1524 if (need_siga_sync(q)) {
1525 qdio_siga_sync_q(q);
1526 goto out;
1527 }
1528
1529 /* try to fast requeue buffers */
Jan Glauber50f769d2008-12-25 13:38:47 +01001530 get_buf_state(q, prev_buf(bufnr), &state, 0);
Jan Glauber779e6e12008-07-17 17:16:48 +02001531 if (state != SLSB_CU_OUTPUT_PRIMED)
Jan Glauberd303b6f2009-03-26 15:24:31 +01001532 rc = qdio_kick_outbound_q(q);
Jan Glauber779e6e12008-07-17 17:16:48 +02001533 else {
Jan Glauber22f99342008-12-25 13:38:46 +01001534 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "fast-req");
Jan Glauber779e6e12008-07-17 17:16:48 +02001535 qdio_perf_stat_inc(&perf_stats.fast_requeue);
1536 }
1537out:
Jan Glauber779e6e12008-07-17 17:16:48 +02001538 tasklet_schedule(&q->tasklet);
Jan Glauberd303b6f2009-03-26 15:24:31 +01001539 return rc;
Jan Glauber779e6e12008-07-17 17:16:48 +02001540}
1541
1542/**
1543 * do_QDIO - process input or output buffers
1544 * @cdev: associated ccw_device for the qdio subchannel
1545 * @callflags: input or output and special flags from the program
1546 * @q_nr: queue number
1547 * @bufnr: buffer number
1548 * @count: how many buffers to process
1549 */
1550int do_QDIO(struct ccw_device *cdev, unsigned int callflags,
1551 int q_nr, int bufnr, int count)
1552{
1553 struct qdio_irq *irq_ptr;
Jan Glauber779e6e12008-07-17 17:16:48 +02001554
1555 if ((bufnr > QDIO_MAX_BUFFERS_PER_Q) ||
1556 (count > QDIO_MAX_BUFFERS_PER_Q) ||
Roel Kluin6b9d8e82009-06-12 10:26:34 +02001557 (q_nr >= QDIO_MAX_QUEUES_PER_IRQ))
Jan Glauber779e6e12008-07-17 17:16:48 +02001558 return -EINVAL;
1559
1560 if (!count)
1561 return 0;
1562
1563 irq_ptr = cdev->private->qdio_data;
1564 if (!irq_ptr)
1565 return -ENODEV;
1566
Jan Glauber779e6e12008-07-17 17:16:48 +02001567 if (callflags & QDIO_FLAG_SYNC_INPUT)
Jan Glauber22f99342008-12-25 13:38:46 +01001568 DBF_DEV_EVENT(DBF_INFO, irq_ptr, "doQDIO input");
Jan Glauber779e6e12008-07-17 17:16:48 +02001569 else
Jan Glauber22f99342008-12-25 13:38:46 +01001570 DBF_DEV_EVENT(DBF_INFO, irq_ptr, "doQDIO output");
1571 DBF_DEV_EVENT(DBF_INFO, irq_ptr, "q:%1d flag:%4x", q_nr, callflags);
1572 DBF_DEV_EVENT(DBF_INFO, irq_ptr, "buf:%2d cnt:%3d", bufnr, count);
Jan Glauber779e6e12008-07-17 17:16:48 +02001573
1574 if (irq_ptr->state != QDIO_IRQ_STATE_ACTIVE)
1575 return -EBUSY;
1576
1577 if (callflags & QDIO_FLAG_SYNC_INPUT)
Jan Glauberd303b6f2009-03-26 15:24:31 +01001578 return handle_inbound(irq_ptr->input_qs[q_nr],
1579 callflags, bufnr, count);
Jan Glauber779e6e12008-07-17 17:16:48 +02001580 else if (callflags & QDIO_FLAG_SYNC_OUTPUT)
Jan Glauberd303b6f2009-03-26 15:24:31 +01001581 return handle_outbound(irq_ptr->output_qs[q_nr],
1582 callflags, bufnr, count);
1583 return -EINVAL;
Jan Glauber779e6e12008-07-17 17:16:48 +02001584}
1585EXPORT_SYMBOL_GPL(do_QDIO);
1586
1587static int __init init_QDIO(void)
1588{
1589 int rc;
1590
1591 rc = qdio_setup_init();
1592 if (rc)
1593 return rc;
1594 rc = tiqdio_allocate_memory();
1595 if (rc)
1596 goto out_cache;
1597 rc = qdio_debug_init();
1598 if (rc)
1599 goto out_ti;
1600 rc = qdio_setup_perf_stats();
1601 if (rc)
1602 goto out_debug;
1603 rc = tiqdio_register_thinints();
1604 if (rc)
1605 goto out_perf;
1606 return 0;
1607
1608out_perf:
1609 qdio_remove_perf_stats();
1610out_debug:
1611 qdio_debug_exit();
1612out_ti:
1613 tiqdio_free_memory();
1614out_cache:
1615 qdio_setup_exit();
1616 return rc;
1617}
1618
1619static void __exit exit_QDIO(void)
1620{
1621 tiqdio_unregister_thinints();
1622 tiqdio_free_memory();
1623 qdio_remove_perf_stats();
1624 qdio_debug_exit();
1625 qdio_setup_exit();
1626}
1627
1628module_init(init_QDIO);
1629module_exit(exit_QDIO);