blob: 779b7741d495ad4be2a3ad8f8f1e68764c27d609 [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
Jan Glauber779e6e12008-07-17 17:16:48 +0200479 if (q->first_to_check == stop)
480 goto out;
481
Jan Glauber36e3e722009-06-22 12:08:12 +0200482 /*
483 * No siga sync here, as a PCI or we after a thin interrupt
484 * already sync'ed the queues.
485 */
Jan Glauber50f769d2008-12-25 13:38:47 +0100486 count = get_buf_states(q, q->first_to_check, &state, count, 1);
Jan Glauber779e6e12008-07-17 17:16:48 +0200487 if (!count)
488 goto out;
489
490 switch (state) {
491 case SLSB_P_INPUT_PRIMED:
Jan Glauber50f769d2008-12-25 13:38:47 +0100492 inbound_primed(q, count);
Jan Glauber779e6e12008-07-17 17:16:48 +0200493 q->first_to_check = add_buf(q->first_to_check, count);
494 atomic_sub(count, &q->nr_buf_used);
Jan Glauber36e3e722009-06-22 12:08:12 +0200495 break;
Jan Glauber779e6e12008-07-17 17:16:48 +0200496 case SLSB_P_INPUT_ERROR:
Jan Glauber50f769d2008-12-25 13:38:47 +0100497 announce_buffer_error(q, count);
Jan Glauber779e6e12008-07-17 17:16:48 +0200498 /* process the buffer, the upper layer will take care of it */
499 q->first_to_check = add_buf(q->first_to_check, count);
500 atomic_sub(count, &q->nr_buf_used);
501 break;
502 case SLSB_CU_INPUT_EMPTY:
503 case SLSB_P_INPUT_NOT_INIT:
504 case SLSB_P_INPUT_ACK:
Jan Glauber22f99342008-12-25 13:38:46 +0100505 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "in nop");
Jan Glauber779e6e12008-07-17 17:16:48 +0200506 break;
507 default:
508 BUG();
509 }
510out:
Jan Glauber779e6e12008-07-17 17:16:48 +0200511 return q->first_to_check;
512}
513
Jan Glauber60b5df22009-06-22 12:08:10 +0200514static int qdio_inbound_q_moved(struct qdio_q *q)
Jan Glauber779e6e12008-07-17 17:16:48 +0200515{
516 int bufnr;
517
518 bufnr = get_inbound_buffer_frontier(q);
519
Jan Glaubere85dea02009-03-26 15:24:29 +0100520 if ((bufnr != q->last_move) || q->qdio_error) {
521 q->last_move = bufnr;
Jan Glauber9a2c1602009-06-22 12:08:11 +0200522 if (!is_thinint_irq(q->irq_ptr) && !MACHINE_IS_VM)
Jan Glauber779e6e12008-07-17 17:16:48 +0200523 q->u.in.timestamp = get_usecs();
Jan Glauber779e6e12008-07-17 17:16:48 +0200524 return 1;
525 } else
526 return 0;
527}
528
Jan Glauber9a2c1602009-06-22 12:08:11 +0200529static inline int qdio_inbound_q_done(struct qdio_q *q)
Jan Glauber60b5df22009-06-22 12:08:10 +0200530{
531 unsigned char state = 0;
532
533 if (!atomic_read(&q->nr_buf_used))
534 return 1;
535
536 qdio_siga_sync_q(q);
537 get_buf_state(q, q->first_to_check, &state, 0);
538
539 if (state == SLSB_P_INPUT_PRIMED)
540 /* more work coming */
541 return 0;
Jan Glauber9a2c1602009-06-22 12:08:11 +0200542
543 if (is_thinint_irq(q->irq_ptr))
544 return 1;
545
546 /* don't poll under z/VM */
547 if (MACHINE_IS_VM)
548 return 1;
549
550 /*
551 * At this point we know, that inbound first_to_check
552 * has (probably) not moved (see qdio_inbound_processing).
553 */
554 if (get_usecs() > q->u.in.timestamp + QDIO_INPUT_THRESHOLD) {
555 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "in done:%3d",
556 q->first_to_check);
557 return 1;
558 } else
559 return 0;
Jan Glauber60b5df22009-06-22 12:08:10 +0200560}
561
562static void qdio_kick_handler(struct qdio_q *q)
Jan Glauber779e6e12008-07-17 17:16:48 +0200563{
Jan Glauber9c8a08d2009-03-26 15:24:32 +0100564 int start = q->first_to_kick;
565 int end = q->first_to_check;
566 int count;
Jan Glauber779e6e12008-07-17 17:16:48 +0200567
568 if (unlikely(q->irq_ptr->state != QDIO_IRQ_STATE_ACTIVE))
569 return;
570
Jan Glauber9c8a08d2009-03-26 15:24:32 +0100571 count = sub_buf(end, start);
572
573 if (q->is_input_q) {
574 qdio_perf_stat_inc(&perf_stats.inbound_handler);
575 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "kih s:%3d c:%3d", start, count);
576 } else {
577 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "koh: nr:%1d", q->nr);
578 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "s:%3d c:%3d", start, count);
579 }
580
581 q->handler(q->irq_ptr->cdev, q->qdio_error, q->nr, start, count,
582 q->irq_ptr->int_parm);
Jan Glauber779e6e12008-07-17 17:16:48 +0200583
584 /* for the next time */
Jan Glauber9c8a08d2009-03-26 15:24:32 +0100585 q->first_to_kick = end;
Jan Glauber779e6e12008-07-17 17:16:48 +0200586 q->qdio_error = 0;
587}
588
589static void __qdio_inbound_processing(struct qdio_q *q)
590{
591 qdio_perf_stat_inc(&perf_stats.tasklet_inbound);
592again:
593 if (!qdio_inbound_q_moved(q))
594 return;
595
Jan Glauber9c8a08d2009-03-26 15:24:32 +0100596 qdio_kick_handler(q);
Jan Glauber779e6e12008-07-17 17:16:48 +0200597
598 if (!qdio_inbound_q_done(q))
599 /* means poll time is not yet over */
600 goto again;
601
602 qdio_stop_polling(q);
603 /*
604 * We need to check again to not lose initiative after
605 * resetting the ACK state.
606 */
607 if (!qdio_inbound_q_done(q))
608 goto again;
609}
610
Jan Glauber779e6e12008-07-17 17:16:48 +0200611void qdio_inbound_processing(unsigned long data)
612{
613 struct qdio_q *q = (struct qdio_q *)data;
614 __qdio_inbound_processing(q);
615}
616
617static int get_outbound_buffer_frontier(struct qdio_q *q)
618{
619 int count, stop;
620 unsigned char state;
621
622 if (((queue_type(q) != QDIO_IQDIO_QFMT) && !pci_out_supported(q)) ||
623 (queue_type(q) == QDIO_IQDIO_QFMT && multicast_outbound(q)))
624 qdio_siga_sync_q(q);
625
626 /*
627 * Don't check 128 buffers, as otherwise qdio_inbound_q_moved
628 * would return 0.
629 */
630 count = min(atomic_read(&q->nr_buf_used), QDIO_MAX_BUFFERS_MASK);
631 stop = add_buf(q->first_to_check, count);
632
Jan Glauber779e6e12008-07-17 17:16:48 +0200633 if (q->first_to_check == stop)
634 return q->first_to_check;
635
Jan Glauber50f769d2008-12-25 13:38:47 +0100636 count = get_buf_states(q, q->first_to_check, &state, count, 0);
Jan Glauber779e6e12008-07-17 17:16:48 +0200637 if (!count)
638 return q->first_to_check;
639
640 switch (state) {
641 case SLSB_P_OUTPUT_EMPTY:
642 /* the adapter got it */
Jan Glauber22f99342008-12-25 13:38:46 +0100643 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "out empty:%1d %3d", q->nr, count);
Jan Glauber779e6e12008-07-17 17:16:48 +0200644
645 atomic_sub(count, &q->nr_buf_used);
646 q->first_to_check = add_buf(q->first_to_check, count);
Jan Glauber36e3e722009-06-22 12:08:12 +0200647 break;
Jan Glauber779e6e12008-07-17 17:16:48 +0200648 case SLSB_P_OUTPUT_ERROR:
Jan Glauber50f769d2008-12-25 13:38:47 +0100649 announce_buffer_error(q, count);
Jan Glauber779e6e12008-07-17 17:16:48 +0200650 /* process the buffer, the upper layer will take care of it */
651 q->first_to_check = add_buf(q->first_to_check, count);
652 atomic_sub(count, &q->nr_buf_used);
653 break;
654 case SLSB_CU_OUTPUT_PRIMED:
655 /* the adapter has not fetched the output yet */
Jan Glauber22f99342008-12-25 13:38:46 +0100656 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "out primed:%1d", q->nr);
Jan Glauber779e6e12008-07-17 17:16:48 +0200657 break;
658 case SLSB_P_OUTPUT_NOT_INIT:
659 case SLSB_P_OUTPUT_HALTED:
660 break;
661 default:
662 BUG();
663 }
664 return q->first_to_check;
665}
666
667/* all buffers processed? */
668static inline int qdio_outbound_q_done(struct qdio_q *q)
669{
670 return atomic_read(&q->nr_buf_used) == 0;
671}
672
673static inline int qdio_outbound_q_moved(struct qdio_q *q)
674{
675 int bufnr;
676
677 bufnr = get_outbound_buffer_frontier(q);
678
Jan Glaubere85dea02009-03-26 15:24:29 +0100679 if ((bufnr != q->last_move) || q->qdio_error) {
680 q->last_move = bufnr;
Jan Glauber22f99342008-12-25 13:38:46 +0100681 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "out moved:%1d", q->nr);
Jan Glauber779e6e12008-07-17 17:16:48 +0200682 return 1;
683 } else
684 return 0;
685}
686
Jan Glauberd303b6f2009-03-26 15:24:31 +0100687static int qdio_kick_outbound_q(struct qdio_q *q)
Jan Glauber779e6e12008-07-17 17:16:48 +0200688{
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100689 unsigned int busy_bit;
690 int cc;
Jan Glauber779e6e12008-07-17 17:16:48 +0200691
692 if (!need_siga_out(q))
Jan Glauberd303b6f2009-03-26 15:24:31 +0100693 return 0;
Jan Glauber779e6e12008-07-17 17:16:48 +0200694
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100695 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "siga-w:%1d", q->nr);
696 qdio_perf_stat_inc(&perf_stats.siga_out);
697
698 cc = qdio_siga_output(q, &busy_bit);
699 switch (cc) {
Jan Glauber779e6e12008-07-17 17:16:48 +0200700 case 0:
Jan Glauber779e6e12008-07-17 17:16:48 +0200701 break;
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100702 case 2:
703 if (busy_bit) {
704 DBF_ERROR("%4x cc2 REP:%1d", SCH_NO(q), q->nr);
Jan Glauberd303b6f2009-03-26 15:24:31 +0100705 cc |= QDIO_ERROR_SIGA_BUSY;
706 } else
707 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "siga-w cc2:%1d", q->nr);
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100708 break;
709 case 1:
710 case 3:
711 DBF_ERROR("%4x SIGA-W:%1d", SCH_NO(q), cc);
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100712 break;
Jan Glauber779e6e12008-07-17 17:16:48 +0200713 }
Jan Glauberd303b6f2009-03-26 15:24:31 +0100714 return cc;
Jan Glauber779e6e12008-07-17 17:16:48 +0200715}
716
Jan Glauber779e6e12008-07-17 17:16:48 +0200717static void __qdio_outbound_processing(struct qdio_q *q)
718{
Jan Glauber779e6e12008-07-17 17:16:48 +0200719 qdio_perf_stat_inc(&perf_stats.tasklet_outbound);
Jan Glauber779e6e12008-07-17 17:16:48 +0200720 BUG_ON(atomic_read(&q->nr_buf_used) < 0);
721
722 if (qdio_outbound_q_moved(q))
Jan Glauber9c8a08d2009-03-26 15:24:32 +0100723 qdio_kick_handler(q);
Jan Glauber779e6e12008-07-17 17:16:48 +0200724
Jan Glauberc38f9602009-03-26 15:24:26 +0100725 if (queue_type(q) == QDIO_ZFCP_QFMT)
Jan Glauber779e6e12008-07-17 17:16:48 +0200726 if (!pci_out_supported(q) && !qdio_outbound_q_done(q))
Jan Glauberc38f9602009-03-26 15:24:26 +0100727 goto sched;
Jan Glauber779e6e12008-07-17 17:16:48 +0200728
729 /* bail out for HiperSockets unicast queues */
730 if (queue_type(q) == QDIO_IQDIO_QFMT && !multicast_outbound(q))
731 return;
732
Ursula Braun4bcb3a32008-10-10 21:33:04 +0200733 if ((queue_type(q) == QDIO_IQDIO_QFMT) &&
Jan Glauberc38f9602009-03-26 15:24:26 +0100734 (atomic_read(&q->nr_buf_used)) > QDIO_IQDIO_POLL_LVL)
735 goto sched;
Ursula Braun4bcb3a32008-10-10 21:33:04 +0200736
Jan Glauber779e6e12008-07-17 17:16:48 +0200737 if (q->u.out.pci_out_enabled)
738 return;
739
740 /*
741 * Now we know that queue type is either qeth without pci enabled
742 * or HiperSockets multicast. Make sure buffer switch from PRIMED to
743 * EMPTY is noticed and outbound_handler is called after some time.
744 */
745 if (qdio_outbound_q_done(q))
746 del_timer(&q->u.out.timer);
747 else {
748 if (!timer_pending(&q->u.out.timer)) {
749 mod_timer(&q->u.out.timer, jiffies + 10 * HZ);
750 qdio_perf_stat_inc(&perf_stats.debug_tl_out_timer);
751 }
752 }
Jan Glauberc38f9602009-03-26 15:24:26 +0100753 return;
754
755sched:
756 if (unlikely(q->irq_ptr->state == QDIO_IRQ_STATE_STOPPED))
757 return;
758 tasklet_schedule(&q->tasklet);
Jan Glauber779e6e12008-07-17 17:16:48 +0200759}
760
761/* outbound tasklet */
762void qdio_outbound_processing(unsigned long data)
763{
764 struct qdio_q *q = (struct qdio_q *)data;
765 __qdio_outbound_processing(q);
766}
767
768void qdio_outbound_timer(unsigned long data)
769{
770 struct qdio_q *q = (struct qdio_q *)data;
Jan Glauberc38f9602009-03-26 15:24:26 +0100771
772 if (unlikely(q->irq_ptr->state == QDIO_IRQ_STATE_STOPPED))
773 return;
Jan Glauber779e6e12008-07-17 17:16:48 +0200774 tasklet_schedule(&q->tasklet);
775}
776
Jan Glauber60b5df22009-06-22 12:08:10 +0200777static inline void qdio_check_outbound_after_thinint(struct qdio_q *q)
Jan Glauber779e6e12008-07-17 17:16:48 +0200778{
779 struct qdio_q *out;
780 int i;
781
782 if (!pci_out_supported(q))
783 return;
784
785 for_each_output_queue(q->irq_ptr, out, i)
786 if (!qdio_outbound_q_done(out))
787 tasklet_schedule(&out->tasklet);
788}
789
Jan Glauber60b5df22009-06-22 12:08:10 +0200790static void __tiqdio_inbound_processing(struct qdio_q *q)
791{
792 qdio_perf_stat_inc(&perf_stats.thinint_inbound);
793 qdio_sync_after_thinint(q);
794
795 /*
796 * The interrupt could be caused by a PCI request. Check the
797 * PCI capable outbound queues.
798 */
799 qdio_check_outbound_after_thinint(q);
800
801 if (!qdio_inbound_q_moved(q))
802 return;
803
804 qdio_kick_handler(q);
805
Jan Glauber9a2c1602009-06-22 12:08:11 +0200806 if (!qdio_inbound_q_done(q)) {
Jan Glauber60b5df22009-06-22 12:08:10 +0200807 qdio_perf_stat_inc(&perf_stats.thinint_inbound_loop);
808 if (likely(q->irq_ptr->state != QDIO_IRQ_STATE_STOPPED))
809 tasklet_schedule(&q->tasklet);
810 }
811
812 qdio_stop_polling(q);
813 /*
814 * We need to check again to not lose initiative after
815 * resetting the ACK state.
816 */
Jan Glauber9a2c1602009-06-22 12:08:11 +0200817 if (!qdio_inbound_q_done(q)) {
Jan Glauber60b5df22009-06-22 12:08:10 +0200818 qdio_perf_stat_inc(&perf_stats.thinint_inbound_loop2);
819 if (likely(q->irq_ptr->state != QDIO_IRQ_STATE_STOPPED))
820 tasklet_schedule(&q->tasklet);
821 }
822}
823
824void tiqdio_inbound_processing(unsigned long data)
825{
826 struct qdio_q *q = (struct qdio_q *)data;
827 __tiqdio_inbound_processing(q);
828}
829
Jan Glauber779e6e12008-07-17 17:16:48 +0200830static inline void qdio_set_state(struct qdio_irq *irq_ptr,
831 enum qdio_irq_states state)
832{
Jan Glauber22f99342008-12-25 13:38:46 +0100833 DBF_DEV_EVENT(DBF_INFO, irq_ptr, "newstate: %1d", state);
Jan Glauber779e6e12008-07-17 17:16:48 +0200834
835 irq_ptr->state = state;
836 mb();
837}
838
Jan Glauber22f99342008-12-25 13:38:46 +0100839static void qdio_irq_check_sense(struct qdio_irq *irq_ptr, struct irb *irb)
Jan Glauber779e6e12008-07-17 17:16:48 +0200840{
Jan Glauber779e6e12008-07-17 17:16:48 +0200841 if (irb->esw.esw0.erw.cons) {
Jan Glauber22f99342008-12-25 13:38:46 +0100842 DBF_ERROR("%4x sense:", irq_ptr->schid.sch_no);
843 DBF_ERROR_HEX(irb, 64);
844 DBF_ERROR_HEX(irb->ecw, 64);
Jan Glauber779e6e12008-07-17 17:16:48 +0200845 }
846}
847
848/* PCI interrupt handler */
849static void qdio_int_handler_pci(struct qdio_irq *irq_ptr)
850{
851 int i;
852 struct qdio_q *q;
853
Jan Glauberc38f9602009-03-26 15:24:26 +0100854 if (unlikely(irq_ptr->state == QDIO_IRQ_STATE_STOPPED))
855 return;
856
Jan Glauber779e6e12008-07-17 17:16:48 +0200857 qdio_perf_stat_inc(&perf_stats.pci_int);
858
859 for_each_input_queue(irq_ptr, q, i)
860 tasklet_schedule(&q->tasklet);
861
862 if (!(irq_ptr->qib.ac & QIB_AC_OUTBOUND_PCI_SUPPORTED))
863 return;
864
865 for_each_output_queue(irq_ptr, q, i) {
866 if (qdio_outbound_q_done(q))
867 continue;
868
869 if (!siga_syncs_out_pci(q))
870 qdio_siga_sync_q(q);
871
872 tasklet_schedule(&q->tasklet);
873 }
874}
875
876static void qdio_handle_activate_check(struct ccw_device *cdev,
877 unsigned long intparm, int cstat, int dstat)
878{
879 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
880 struct qdio_q *q;
Jan Glauber779e6e12008-07-17 17:16:48 +0200881
Jan Glauber22f99342008-12-25 13:38:46 +0100882 DBF_ERROR("%4x ACT CHECK", irq_ptr->schid.sch_no);
883 DBF_ERROR("intp :%lx", intparm);
884 DBF_ERROR("ds: %2x cs:%2x", dstat, cstat);
Jan Glauber779e6e12008-07-17 17:16:48 +0200885
886 if (irq_ptr->nr_input_qs) {
887 q = irq_ptr->input_qs[0];
888 } else if (irq_ptr->nr_output_qs) {
889 q = irq_ptr->output_qs[0];
890 } else {
891 dump_stack();
892 goto no_handler;
893 }
894 q->handler(q->irq_ptr->cdev, QDIO_ERROR_ACTIVATE_CHECK_CONDITION,
895 0, -1, -1, irq_ptr->int_parm);
896no_handler:
897 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_STOPPED);
898}
899
Jan Glauber779e6e12008-07-17 17:16:48 +0200900static void qdio_establish_handle_irq(struct ccw_device *cdev, int cstat,
901 int dstat)
902{
903 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
Jan Glauber779e6e12008-07-17 17:16:48 +0200904
Jan Glauber22f99342008-12-25 13:38:46 +0100905 DBF_DEV_EVENT(DBF_INFO, irq_ptr, "qest irq");
Jan Glauber4c575422009-06-12 10:26:28 +0200906
907 if (cstat)
908 goto error;
909 if (dstat & ~(DEV_STAT_DEV_END | DEV_STAT_CHN_END))
910 goto error;
911 if (!(dstat & DEV_STAT_DEV_END))
912 goto error;
913 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_ESTABLISHED);
914 return;
915
916error:
917 DBF_ERROR("%4x EQ:error", irq_ptr->schid.sch_no);
918 DBF_ERROR("ds: %2x cs:%2x", dstat, cstat);
919 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_ERR);
Jan Glauber779e6e12008-07-17 17:16:48 +0200920}
921
922/* qdio interrupt handler */
923void qdio_int_handler(struct ccw_device *cdev, unsigned long intparm,
924 struct irb *irb)
925{
926 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
927 int cstat, dstat;
Jan Glauber779e6e12008-07-17 17:16:48 +0200928
929 qdio_perf_stat_inc(&perf_stats.qdio_int);
930
931 if (!intparm || !irq_ptr) {
Jan Glauber22f99342008-12-25 13:38:46 +0100932 DBF_ERROR("qint:%4x", cdev->private->schid.sch_no);
Jan Glauber779e6e12008-07-17 17:16:48 +0200933 return;
934 }
935
936 if (IS_ERR(irb)) {
937 switch (PTR_ERR(irb)) {
938 case -EIO:
Jan Glauber22f99342008-12-25 13:38:46 +0100939 DBF_ERROR("%4x IO error", irq_ptr->schid.sch_no);
Jan Glauber75cb71f2009-04-14 15:36:22 +0200940 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_ERR);
941 wake_up(&cdev->private->wait_q);
Jan Glauber779e6e12008-07-17 17:16:48 +0200942 return;
943 default:
944 WARN_ON(1);
945 return;
946 }
947 }
Jan Glauber22f99342008-12-25 13:38:46 +0100948 qdio_irq_check_sense(irq_ptr, irb);
Jan Glauber779e6e12008-07-17 17:16:48 +0200949 cstat = irb->scsw.cmd.cstat;
950 dstat = irb->scsw.cmd.dstat;
951
952 switch (irq_ptr->state) {
953 case QDIO_IRQ_STATE_INACTIVE:
954 qdio_establish_handle_irq(cdev, cstat, dstat);
955 break;
Jan Glauber779e6e12008-07-17 17:16:48 +0200956 case QDIO_IRQ_STATE_CLEANUP:
957 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_INACTIVE);
958 break;
Jan Glauber779e6e12008-07-17 17:16:48 +0200959 case QDIO_IRQ_STATE_ESTABLISHED:
960 case QDIO_IRQ_STATE_ACTIVE:
961 if (cstat & SCHN_STAT_PCI) {
962 qdio_int_handler_pci(irq_ptr);
Jan Glauber779e6e12008-07-17 17:16:48 +0200963 return;
964 }
Jan Glauber4c575422009-06-12 10:26:28 +0200965 if (cstat || dstat)
Jan Glauber779e6e12008-07-17 17:16:48 +0200966 qdio_handle_activate_check(cdev, intparm, cstat,
967 dstat);
Jan Glauber4c575422009-06-12 10:26:28 +0200968 break;
Jan Glauber779e6e12008-07-17 17:16:48 +0200969 default:
970 WARN_ON(1);
971 }
972 wake_up(&cdev->private->wait_q);
973}
974
975/**
976 * qdio_get_ssqd_desc - get qdio subchannel description
977 * @cdev: ccw device to get description for
Jan Glauberbbd50e12008-12-25 13:38:43 +0100978 * @data: where to store the ssqd
Jan Glauber779e6e12008-07-17 17:16:48 +0200979 *
Jan Glauberbbd50e12008-12-25 13:38:43 +0100980 * Returns 0 or an error code. The results of the chsc are stored in the
981 * specified structure.
Jan Glauber779e6e12008-07-17 17:16:48 +0200982 */
Jan Glauberbbd50e12008-12-25 13:38:43 +0100983int qdio_get_ssqd_desc(struct ccw_device *cdev,
984 struct qdio_ssqd_desc *data)
Jan Glauber779e6e12008-07-17 17:16:48 +0200985{
Jan Glauber779e6e12008-07-17 17:16:48 +0200986
Jan Glauberbbd50e12008-12-25 13:38:43 +0100987 if (!cdev || !cdev->private)
988 return -EINVAL;
989
Jan Glauber22f99342008-12-25 13:38:46 +0100990 DBF_EVENT("get ssqd:%4x", cdev->private->schid.sch_no);
Jan Glauberbbd50e12008-12-25 13:38:43 +0100991 return qdio_setup_get_ssqd(NULL, &cdev->private->schid, data);
Jan Glauber779e6e12008-07-17 17:16:48 +0200992}
993EXPORT_SYMBOL_GPL(qdio_get_ssqd_desc);
994
995/**
996 * qdio_cleanup - shutdown queues and free data structures
997 * @cdev: associated ccw device
998 * @how: use halt or clear to shutdown
999 *
Jan Glauber700e9822009-03-26 15:24:27 +01001000 * This function calls qdio_shutdown() for @cdev with method @how.
1001 * and qdio_free(). The qdio_free() return value is ignored since
1002 * !irq_ptr is already checked.
Jan Glauber779e6e12008-07-17 17:16:48 +02001003 */
1004int qdio_cleanup(struct ccw_device *cdev, int how)
1005{
Jan Glauber22f99342008-12-25 13:38:46 +01001006 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
Jan Glauber779e6e12008-07-17 17:16:48 +02001007 int rc;
1008
Jan Glauber779e6e12008-07-17 17:16:48 +02001009 if (!irq_ptr)
1010 return -ENODEV;
1011
Jan Glauber779e6e12008-07-17 17:16:48 +02001012 rc = qdio_shutdown(cdev, how);
Jan Glauber700e9822009-03-26 15:24:27 +01001013
1014 qdio_free(cdev);
Jan Glauber779e6e12008-07-17 17:16:48 +02001015 return rc;
1016}
1017EXPORT_SYMBOL_GPL(qdio_cleanup);
1018
1019static void qdio_shutdown_queues(struct ccw_device *cdev)
1020{
1021 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
1022 struct qdio_q *q;
1023 int i;
1024
1025 for_each_input_queue(irq_ptr, q, i)
Jan Glauberc38f9602009-03-26 15:24:26 +01001026 tasklet_kill(&q->tasklet);
Jan Glauber779e6e12008-07-17 17:16:48 +02001027
1028 for_each_output_queue(irq_ptr, q, i) {
Jan Glauber779e6e12008-07-17 17:16:48 +02001029 del_timer(&q->u.out.timer);
Jan Glauberc38f9602009-03-26 15:24:26 +01001030 tasklet_kill(&q->tasklet);
Jan Glauber779e6e12008-07-17 17:16:48 +02001031 }
1032}
1033
1034/**
1035 * qdio_shutdown - shut down a qdio subchannel
1036 * @cdev: associated ccw device
1037 * @how: use halt or clear to shutdown
1038 */
1039int qdio_shutdown(struct ccw_device *cdev, int how)
1040{
Jan Glauber22f99342008-12-25 13:38:46 +01001041 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
Jan Glauber779e6e12008-07-17 17:16:48 +02001042 int rc;
1043 unsigned long flags;
Jan Glauber779e6e12008-07-17 17:16:48 +02001044
Jan Glauber779e6e12008-07-17 17:16:48 +02001045 if (!irq_ptr)
1046 return -ENODEV;
1047
Jan Glauberb4547402009-03-26 15:24:24 +01001048 BUG_ON(irqs_disabled());
Jan Glauber22f99342008-12-25 13:38:46 +01001049 DBF_EVENT("qshutdown:%4x", cdev->private->schid.sch_no);
1050
Jan Glauber779e6e12008-07-17 17:16:48 +02001051 mutex_lock(&irq_ptr->setup_mutex);
1052 /*
1053 * Subchannel was already shot down. We cannot prevent being called
1054 * twice since cio may trigger a shutdown asynchronously.
1055 */
1056 if (irq_ptr->state == QDIO_IRQ_STATE_INACTIVE) {
1057 mutex_unlock(&irq_ptr->setup_mutex);
1058 return 0;
1059 }
1060
Jan Glauberc38f9602009-03-26 15:24:26 +01001061 /*
1062 * Indicate that the device is going down. Scheduling the queue
1063 * tasklets is forbidden from here on.
1064 */
1065 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_STOPPED);
1066
Jan Glauber779e6e12008-07-17 17:16:48 +02001067 tiqdio_remove_input_queues(irq_ptr);
1068 qdio_shutdown_queues(cdev);
1069 qdio_shutdown_debug_entries(irq_ptr, cdev);
1070
1071 /* cleanup subchannel */
1072 spin_lock_irqsave(get_ccwdev_lock(cdev), flags);
1073
1074 if (how & QDIO_FLAG_CLEANUP_USING_CLEAR)
1075 rc = ccw_device_clear(cdev, QDIO_DOING_CLEANUP);
1076 else
1077 /* default behaviour is halt */
1078 rc = ccw_device_halt(cdev, QDIO_DOING_CLEANUP);
1079 if (rc) {
Jan Glauber22f99342008-12-25 13:38:46 +01001080 DBF_ERROR("%4x SHUTD ERR", irq_ptr->schid.sch_no);
1081 DBF_ERROR("rc:%4d", rc);
Jan Glauber779e6e12008-07-17 17:16:48 +02001082 goto no_cleanup;
1083 }
1084
1085 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_CLEANUP);
1086 spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);
1087 wait_event_interruptible_timeout(cdev->private->wait_q,
1088 irq_ptr->state == QDIO_IRQ_STATE_INACTIVE ||
1089 irq_ptr->state == QDIO_IRQ_STATE_ERR,
1090 10 * HZ);
1091 spin_lock_irqsave(get_ccwdev_lock(cdev), flags);
1092
1093no_cleanup:
1094 qdio_shutdown_thinint(irq_ptr);
1095
1096 /* restore interrupt handler */
1097 if ((void *)cdev->handler == (void *)qdio_int_handler)
1098 cdev->handler = irq_ptr->orig_handler;
1099 spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);
1100
1101 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_INACTIVE);
1102 mutex_unlock(&irq_ptr->setup_mutex);
Jan Glauber779e6e12008-07-17 17:16:48 +02001103 if (rc)
1104 return rc;
1105 return 0;
1106}
1107EXPORT_SYMBOL_GPL(qdio_shutdown);
1108
1109/**
1110 * qdio_free - free data structures for a qdio subchannel
1111 * @cdev: associated ccw device
1112 */
1113int qdio_free(struct ccw_device *cdev)
1114{
Jan Glauber22f99342008-12-25 13:38:46 +01001115 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
Jan Glauber779e6e12008-07-17 17:16:48 +02001116
Jan Glauber779e6e12008-07-17 17:16:48 +02001117 if (!irq_ptr)
1118 return -ENODEV;
1119
Jan Glauber22f99342008-12-25 13:38:46 +01001120 DBF_EVENT("qfree:%4x", cdev->private->schid.sch_no);
Jan Glauber779e6e12008-07-17 17:16:48 +02001121 mutex_lock(&irq_ptr->setup_mutex);
Jan Glauber22f99342008-12-25 13:38:46 +01001122
1123 if (irq_ptr->debug_area != NULL) {
1124 debug_unregister(irq_ptr->debug_area);
1125 irq_ptr->debug_area = NULL;
1126 }
Jan Glauber779e6e12008-07-17 17:16:48 +02001127 cdev->private->qdio_data = NULL;
1128 mutex_unlock(&irq_ptr->setup_mutex);
1129
1130 qdio_release_memory(irq_ptr);
1131 return 0;
1132}
1133EXPORT_SYMBOL_GPL(qdio_free);
1134
1135/**
1136 * qdio_initialize - allocate and establish queues for a qdio subchannel
1137 * @init_data: initialization data
1138 *
1139 * This function first allocates queues via qdio_allocate() and on success
1140 * establishes them via qdio_establish().
1141 */
1142int qdio_initialize(struct qdio_initialize *init_data)
1143{
1144 int rc;
Jan Glauber779e6e12008-07-17 17:16:48 +02001145
1146 rc = qdio_allocate(init_data);
1147 if (rc)
1148 return rc;
1149
1150 rc = qdio_establish(init_data);
1151 if (rc)
1152 qdio_free(init_data->cdev);
1153 return rc;
1154}
1155EXPORT_SYMBOL_GPL(qdio_initialize);
1156
1157/**
1158 * qdio_allocate - allocate qdio queues and associated data
1159 * @init_data: initialization data
1160 */
1161int qdio_allocate(struct qdio_initialize *init_data)
1162{
1163 struct qdio_irq *irq_ptr;
Jan Glauber779e6e12008-07-17 17:16:48 +02001164
Jan Glauber22f99342008-12-25 13:38:46 +01001165 DBF_EVENT("qallocate:%4x", init_data->cdev->private->schid.sch_no);
Jan Glauber779e6e12008-07-17 17:16:48 +02001166
1167 if ((init_data->no_input_qs && !init_data->input_handler) ||
1168 (init_data->no_output_qs && !init_data->output_handler))
1169 return -EINVAL;
1170
1171 if ((init_data->no_input_qs > QDIO_MAX_QUEUES_PER_IRQ) ||
1172 (init_data->no_output_qs > QDIO_MAX_QUEUES_PER_IRQ))
1173 return -EINVAL;
1174
1175 if ((!init_data->input_sbal_addr_array) ||
1176 (!init_data->output_sbal_addr_array))
1177 return -EINVAL;
1178
Jan Glauber779e6e12008-07-17 17:16:48 +02001179 /* irq_ptr must be in GFP_DMA since it contains ccw1.cda */
1180 irq_ptr = (void *) get_zeroed_page(GFP_KERNEL | GFP_DMA);
1181 if (!irq_ptr)
1182 goto out_err;
Jan Glauber779e6e12008-07-17 17:16:48 +02001183
1184 mutex_init(&irq_ptr->setup_mutex);
Jan Glauber22f99342008-12-25 13:38:46 +01001185 qdio_allocate_dbf(init_data, irq_ptr);
Jan Glauber779e6e12008-07-17 17:16:48 +02001186
1187 /*
1188 * Allocate a page for the chsc calls in qdio_establish.
1189 * Must be pre-allocated since a zfcp recovery will call
1190 * qdio_establish. In case of low memory and swap on a zfcp disk
1191 * we may not be able to allocate memory otherwise.
1192 */
1193 irq_ptr->chsc_page = get_zeroed_page(GFP_KERNEL);
1194 if (!irq_ptr->chsc_page)
1195 goto out_rel;
1196
1197 /* qdr is used in ccw1.cda which is u32 */
Jan Glauber3b8e3002008-08-01 16:39:17 +02001198 irq_ptr->qdr = (struct qdr *) get_zeroed_page(GFP_KERNEL | GFP_DMA);
Jan Glauber779e6e12008-07-17 17:16:48 +02001199 if (!irq_ptr->qdr)
1200 goto out_rel;
1201 WARN_ON((unsigned long)irq_ptr->qdr & 0xfff);
1202
Jan Glauber779e6e12008-07-17 17:16:48 +02001203 if (qdio_allocate_qs(irq_ptr, init_data->no_input_qs,
1204 init_data->no_output_qs))
1205 goto out_rel;
1206
1207 init_data->cdev->private->qdio_data = irq_ptr;
1208 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_INACTIVE);
1209 return 0;
1210out_rel:
1211 qdio_release_memory(irq_ptr);
1212out_err:
1213 return -ENOMEM;
1214}
1215EXPORT_SYMBOL_GPL(qdio_allocate);
1216
1217/**
1218 * qdio_establish - establish queues on a qdio subchannel
1219 * @init_data: initialization data
1220 */
1221int qdio_establish(struct qdio_initialize *init_data)
1222{
Jan Glauber779e6e12008-07-17 17:16:48 +02001223 struct qdio_irq *irq_ptr;
1224 struct ccw_device *cdev = init_data->cdev;
1225 unsigned long saveflags;
1226 int rc;
1227
Jan Glauber22f99342008-12-25 13:38:46 +01001228 DBF_EVENT("qestablish:%4x", cdev->private->schid.sch_no);
Jan Glauber58eb27c2008-08-21 19:46:34 +02001229
Jan Glauber779e6e12008-07-17 17:16:48 +02001230 irq_ptr = cdev->private->qdio_data;
1231 if (!irq_ptr)
1232 return -ENODEV;
1233
1234 if (cdev->private->state != DEV_STATE_ONLINE)
1235 return -EINVAL;
1236
Jan Glauber779e6e12008-07-17 17:16:48 +02001237 mutex_lock(&irq_ptr->setup_mutex);
1238 qdio_setup_irq(init_data);
1239
1240 rc = qdio_establish_thinint(irq_ptr);
1241 if (rc) {
1242 mutex_unlock(&irq_ptr->setup_mutex);
1243 qdio_shutdown(cdev, QDIO_FLAG_CLEANUP_USING_CLEAR);
1244 return rc;
1245 }
1246
1247 /* establish q */
1248 irq_ptr->ccw.cmd_code = irq_ptr->equeue.cmd;
1249 irq_ptr->ccw.flags = CCW_FLAG_SLI;
1250 irq_ptr->ccw.count = irq_ptr->equeue.count;
1251 irq_ptr->ccw.cda = (u32)((addr_t)irq_ptr->qdr);
1252
1253 spin_lock_irqsave(get_ccwdev_lock(cdev), saveflags);
1254 ccw_device_set_options_mask(cdev, 0);
1255
1256 rc = ccw_device_start(cdev, &irq_ptr->ccw, QDIO_DOING_ESTABLISH, 0, 0);
1257 if (rc) {
Jan Glauber22f99342008-12-25 13:38:46 +01001258 DBF_ERROR("%4x est IO ERR", irq_ptr->schid.sch_no);
1259 DBF_ERROR("rc:%4x", rc);
Jan Glauber779e6e12008-07-17 17:16:48 +02001260 }
1261 spin_unlock_irqrestore(get_ccwdev_lock(cdev), saveflags);
1262
1263 if (rc) {
1264 mutex_unlock(&irq_ptr->setup_mutex);
1265 qdio_shutdown(cdev, QDIO_FLAG_CLEANUP_USING_CLEAR);
1266 return rc;
1267 }
1268
1269 wait_event_interruptible_timeout(cdev->private->wait_q,
1270 irq_ptr->state == QDIO_IRQ_STATE_ESTABLISHED ||
1271 irq_ptr->state == QDIO_IRQ_STATE_ERR, HZ);
1272
1273 if (irq_ptr->state != QDIO_IRQ_STATE_ESTABLISHED) {
1274 mutex_unlock(&irq_ptr->setup_mutex);
1275 qdio_shutdown(cdev, QDIO_FLAG_CLEANUP_USING_CLEAR);
1276 return -EIO;
1277 }
1278
1279 qdio_setup_ssqd_info(irq_ptr);
Jan Glauber22f99342008-12-25 13:38:46 +01001280 DBF_EVENT("qDmmwc:%2x", irq_ptr->ssqd_desc.mmwc);
1281 DBF_EVENT("qib ac:%4x", irq_ptr->qib.ac);
Jan Glauber779e6e12008-07-17 17:16:48 +02001282
1283 /* qebsm is now setup if available, initialize buffer states */
1284 qdio_init_buf_states(irq_ptr);
1285
1286 mutex_unlock(&irq_ptr->setup_mutex);
1287 qdio_print_subchannel_info(irq_ptr, cdev);
1288 qdio_setup_debug_entries(irq_ptr, cdev);
1289 return 0;
1290}
1291EXPORT_SYMBOL_GPL(qdio_establish);
1292
1293/**
1294 * qdio_activate - activate queues on a qdio subchannel
1295 * @cdev: associated cdev
1296 */
1297int qdio_activate(struct ccw_device *cdev)
1298{
1299 struct qdio_irq *irq_ptr;
1300 int rc;
1301 unsigned long saveflags;
Jan Glauber779e6e12008-07-17 17:16:48 +02001302
Jan Glauber22f99342008-12-25 13:38:46 +01001303 DBF_EVENT("qactivate:%4x", cdev->private->schid.sch_no);
Jan Glauber58eb27c2008-08-21 19:46:34 +02001304
Jan Glauber779e6e12008-07-17 17:16:48 +02001305 irq_ptr = cdev->private->qdio_data;
1306 if (!irq_ptr)
1307 return -ENODEV;
1308
1309 if (cdev->private->state != DEV_STATE_ONLINE)
1310 return -EINVAL;
1311
1312 mutex_lock(&irq_ptr->setup_mutex);
1313 if (irq_ptr->state == QDIO_IRQ_STATE_INACTIVE) {
1314 rc = -EBUSY;
1315 goto out;
1316 }
1317
Jan Glauber779e6e12008-07-17 17:16:48 +02001318 irq_ptr->ccw.cmd_code = irq_ptr->aqueue.cmd;
1319 irq_ptr->ccw.flags = CCW_FLAG_SLI;
1320 irq_ptr->ccw.count = irq_ptr->aqueue.count;
1321 irq_ptr->ccw.cda = 0;
1322
1323 spin_lock_irqsave(get_ccwdev_lock(cdev), saveflags);
1324 ccw_device_set_options(cdev, CCWDEV_REPORT_ALL);
1325
1326 rc = ccw_device_start(cdev, &irq_ptr->ccw, QDIO_DOING_ACTIVATE,
1327 0, DOIO_DENY_PREFETCH);
1328 if (rc) {
Jan Glauber22f99342008-12-25 13:38:46 +01001329 DBF_ERROR("%4x act IO ERR", irq_ptr->schid.sch_no);
1330 DBF_ERROR("rc:%4x", rc);
Jan Glauber779e6e12008-07-17 17:16:48 +02001331 }
1332 spin_unlock_irqrestore(get_ccwdev_lock(cdev), saveflags);
1333
1334 if (rc)
1335 goto out;
1336
1337 if (is_thinint_irq(irq_ptr))
1338 tiqdio_add_input_queues(irq_ptr);
1339
1340 /* wait for subchannel to become active */
1341 msleep(5);
1342
1343 switch (irq_ptr->state) {
1344 case QDIO_IRQ_STATE_STOPPED:
1345 case QDIO_IRQ_STATE_ERR:
Jan Glaubere4c14e22009-03-26 15:24:25 +01001346 rc = -EIO;
1347 break;
Jan Glauber779e6e12008-07-17 17:16:48 +02001348 default:
1349 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_ACTIVE);
1350 rc = 0;
1351 }
1352out:
1353 mutex_unlock(&irq_ptr->setup_mutex);
1354 return rc;
1355}
1356EXPORT_SYMBOL_GPL(qdio_activate);
1357
1358static inline int buf_in_between(int bufnr, int start, int count)
1359{
1360 int end = add_buf(start, count);
1361
1362 if (end > start) {
1363 if (bufnr >= start && bufnr < end)
1364 return 1;
1365 else
1366 return 0;
1367 }
1368
1369 /* wrap-around case */
1370 if ((bufnr >= start && bufnr <= QDIO_MAX_BUFFERS_PER_Q) ||
1371 (bufnr < end))
1372 return 1;
1373 else
1374 return 0;
1375}
1376
1377/**
1378 * handle_inbound - reset processed input buffers
1379 * @q: queue containing the buffers
1380 * @callflags: flags
1381 * @bufnr: first buffer to process
1382 * @count: how many buffers are emptied
1383 */
Jan Glauberd303b6f2009-03-26 15:24:31 +01001384static int handle_inbound(struct qdio_q *q, unsigned int callflags,
1385 int bufnr, int count)
Jan Glauber779e6e12008-07-17 17:16:48 +02001386{
Jan Glauberd303b6f2009-03-26 15:24:31 +01001387 int used, diff;
Jan Glauber779e6e12008-07-17 17:16:48 +02001388
Jan Glauber50f769d2008-12-25 13:38:47 +01001389 if (!q->u.in.polling)
1390 goto set;
1391
1392 /* protect against stop polling setting an ACK for an emptied slsb */
1393 if (count == QDIO_MAX_BUFFERS_PER_Q) {
1394 /* overwriting everything, just delete polling status */
1395 q->u.in.polling = 0;
1396 q->u.in.ack_count = 0;
1397 goto set;
Jan Glaubere85dea02009-03-26 15:24:29 +01001398 } else if (buf_in_between(q->u.in.ack_start, bufnr, count)) {
Jan Glauber50f769d2008-12-25 13:38:47 +01001399 if (is_qebsm(q)) {
Jan Glaubere85dea02009-03-26 15:24:29 +01001400 /* partial overwrite, just update ack_start */
Jan Glauber50f769d2008-12-25 13:38:47 +01001401 diff = add_buf(bufnr, count);
Jan Glaubere85dea02009-03-26 15:24:29 +01001402 diff = sub_buf(diff, q->u.in.ack_start);
Jan Glauber50f769d2008-12-25 13:38:47 +01001403 q->u.in.ack_count -= diff;
1404 if (q->u.in.ack_count <= 0) {
1405 q->u.in.polling = 0;
1406 q->u.in.ack_count = 0;
Jan Glauber50f769d2008-12-25 13:38:47 +01001407 goto set;
1408 }
Jan Glaubere85dea02009-03-26 15:24:29 +01001409 q->u.in.ack_start = add_buf(q->u.in.ack_start, diff);
Jan Glauber50f769d2008-12-25 13:38:47 +01001410 }
1411 else
1412 /* the only ACK will be deleted, so stop polling */
Jan Glauber779e6e12008-07-17 17:16:48 +02001413 q->u.in.polling = 0;
Jan Glauber50f769d2008-12-25 13:38:47 +01001414 }
Jan Glauber779e6e12008-07-17 17:16:48 +02001415
Jan Glauber50f769d2008-12-25 13:38:47 +01001416set:
Jan Glauber779e6e12008-07-17 17:16:48 +02001417 count = set_buf_states(q, bufnr, SLSB_CU_INPUT_EMPTY, count);
Jan Glauber779e6e12008-07-17 17:16:48 +02001418
1419 used = atomic_add_return(count, &q->nr_buf_used) - count;
1420 BUG_ON(used + count > QDIO_MAX_BUFFERS_PER_Q);
1421
1422 /* no need to signal as long as the adapter had free buffers */
1423 if (used)
Jan Glauberd303b6f2009-03-26 15:24:31 +01001424 return 0;
Jan Glauber779e6e12008-07-17 17:16:48 +02001425
Jan Glauberd303b6f2009-03-26 15:24:31 +01001426 if (need_siga_in(q))
1427 return qdio_siga_input(q);
1428 return 0;
Jan Glauber779e6e12008-07-17 17:16:48 +02001429}
1430
1431/**
1432 * handle_outbound - process filled outbound buffers
1433 * @q: queue containing the buffers
1434 * @callflags: flags
1435 * @bufnr: first buffer to process
1436 * @count: how many buffers are filled
1437 */
Jan Glauberd303b6f2009-03-26 15:24:31 +01001438static int handle_outbound(struct qdio_q *q, unsigned int callflags,
1439 int bufnr, int count)
Jan Glauber779e6e12008-07-17 17:16:48 +02001440{
1441 unsigned char state;
Jan Glauberd303b6f2009-03-26 15:24:31 +01001442 int used, rc = 0;
Jan Glauber779e6e12008-07-17 17:16:48 +02001443
1444 qdio_perf_stat_inc(&perf_stats.outbound_handler);
1445
1446 count = set_buf_states(q, bufnr, SLSB_CU_OUTPUT_PRIMED, count);
1447 used = atomic_add_return(count, &q->nr_buf_used);
1448 BUG_ON(used > QDIO_MAX_BUFFERS_PER_Q);
1449
1450 if (callflags & QDIO_FLAG_PCI_OUT)
1451 q->u.out.pci_out_enabled = 1;
1452 else
1453 q->u.out.pci_out_enabled = 0;
1454
1455 if (queue_type(q) == QDIO_IQDIO_QFMT) {
1456 if (multicast_outbound(q))
Jan Glauberd303b6f2009-03-26 15:24:31 +01001457 rc = qdio_kick_outbound_q(q);
Jan Glauber779e6e12008-07-17 17:16:48 +02001458 else
Klaus-Dieter Wacker7a0f4752008-10-10 21:33:18 +02001459 if ((q->irq_ptr->ssqd_desc.mmwc > 1) &&
1460 (count > 1) &&
1461 (count <= q->irq_ptr->ssqd_desc.mmwc)) {
1462 /* exploit enhanced SIGA */
1463 q->u.out.use_enh_siga = 1;
Jan Glauberd303b6f2009-03-26 15:24:31 +01001464 rc = qdio_kick_outbound_q(q);
Klaus-Dieter Wacker7a0f4752008-10-10 21:33:18 +02001465 } else {
1466 /*
1467 * One siga-w per buffer required for unicast
1468 * HiperSockets.
1469 */
1470 q->u.out.use_enh_siga = 0;
Jan Glauberd303b6f2009-03-26 15:24:31 +01001471 while (count--) {
1472 rc = qdio_kick_outbound_q(q);
1473 if (rc)
1474 goto out;
1475 }
Klaus-Dieter Wacker7a0f4752008-10-10 21:33:18 +02001476 }
Jan Glauber779e6e12008-07-17 17:16:48 +02001477 goto out;
1478 }
1479
1480 if (need_siga_sync(q)) {
1481 qdio_siga_sync_q(q);
1482 goto out;
1483 }
1484
1485 /* try to fast requeue buffers */
Jan Glauber50f769d2008-12-25 13:38:47 +01001486 get_buf_state(q, prev_buf(bufnr), &state, 0);
Jan Glauber779e6e12008-07-17 17:16:48 +02001487 if (state != SLSB_CU_OUTPUT_PRIMED)
Jan Glauberd303b6f2009-03-26 15:24:31 +01001488 rc = qdio_kick_outbound_q(q);
Jan Glauber779e6e12008-07-17 17:16:48 +02001489 else {
Jan Glauber22f99342008-12-25 13:38:46 +01001490 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "fast-req");
Jan Glauber779e6e12008-07-17 17:16:48 +02001491 qdio_perf_stat_inc(&perf_stats.fast_requeue);
1492 }
1493out:
Jan Glauber779e6e12008-07-17 17:16:48 +02001494 tasklet_schedule(&q->tasklet);
Jan Glauberd303b6f2009-03-26 15:24:31 +01001495 return rc;
Jan Glauber779e6e12008-07-17 17:16:48 +02001496}
1497
1498/**
1499 * do_QDIO - process input or output buffers
1500 * @cdev: associated ccw_device for the qdio subchannel
1501 * @callflags: input or output and special flags from the program
1502 * @q_nr: queue number
1503 * @bufnr: buffer number
1504 * @count: how many buffers to process
1505 */
1506int do_QDIO(struct ccw_device *cdev, unsigned int callflags,
1507 int q_nr, int bufnr, int count)
1508{
1509 struct qdio_irq *irq_ptr;
Jan Glauber779e6e12008-07-17 17:16:48 +02001510
1511 if ((bufnr > QDIO_MAX_BUFFERS_PER_Q) ||
1512 (count > QDIO_MAX_BUFFERS_PER_Q) ||
Roel Kluin6b9d8e82009-06-12 10:26:34 +02001513 (q_nr >= QDIO_MAX_QUEUES_PER_IRQ))
Jan Glauber779e6e12008-07-17 17:16:48 +02001514 return -EINVAL;
1515
1516 if (!count)
1517 return 0;
1518
1519 irq_ptr = cdev->private->qdio_data;
1520 if (!irq_ptr)
1521 return -ENODEV;
1522
Jan Glauber779e6e12008-07-17 17:16:48 +02001523 if (callflags & QDIO_FLAG_SYNC_INPUT)
Jan Glauber22f99342008-12-25 13:38:46 +01001524 DBF_DEV_EVENT(DBF_INFO, irq_ptr, "doQDIO input");
Jan Glauber779e6e12008-07-17 17:16:48 +02001525 else
Jan Glauber22f99342008-12-25 13:38:46 +01001526 DBF_DEV_EVENT(DBF_INFO, irq_ptr, "doQDIO output");
1527 DBF_DEV_EVENT(DBF_INFO, irq_ptr, "q:%1d flag:%4x", q_nr, callflags);
1528 DBF_DEV_EVENT(DBF_INFO, irq_ptr, "buf:%2d cnt:%3d", bufnr, count);
Jan Glauber779e6e12008-07-17 17:16:48 +02001529
1530 if (irq_ptr->state != QDIO_IRQ_STATE_ACTIVE)
1531 return -EBUSY;
1532
1533 if (callflags & QDIO_FLAG_SYNC_INPUT)
Jan Glauberd303b6f2009-03-26 15:24:31 +01001534 return handle_inbound(irq_ptr->input_qs[q_nr],
1535 callflags, bufnr, count);
Jan Glauber779e6e12008-07-17 17:16:48 +02001536 else if (callflags & QDIO_FLAG_SYNC_OUTPUT)
Jan Glauberd303b6f2009-03-26 15:24:31 +01001537 return handle_outbound(irq_ptr->output_qs[q_nr],
1538 callflags, bufnr, count);
1539 return -EINVAL;
Jan Glauber779e6e12008-07-17 17:16:48 +02001540}
1541EXPORT_SYMBOL_GPL(do_QDIO);
1542
1543static int __init init_QDIO(void)
1544{
1545 int rc;
1546
1547 rc = qdio_setup_init();
1548 if (rc)
1549 return rc;
1550 rc = tiqdio_allocate_memory();
1551 if (rc)
1552 goto out_cache;
1553 rc = qdio_debug_init();
1554 if (rc)
1555 goto out_ti;
1556 rc = qdio_setup_perf_stats();
1557 if (rc)
1558 goto out_debug;
1559 rc = tiqdio_register_thinints();
1560 if (rc)
1561 goto out_perf;
1562 return 0;
1563
1564out_perf:
1565 qdio_remove_perf_stats();
1566out_debug:
1567 qdio_debug_exit();
1568out_ti:
1569 tiqdio_free_memory();
1570out_cache:
1571 qdio_setup_exit();
1572 return rc;
1573}
1574
1575static void __exit exit_QDIO(void)
1576{
1577 tiqdio_unregister_thinints();
1578 tiqdio_free_memory();
1579 qdio_remove_perf_stats();
1580 qdio_debug_exit();
1581 qdio_setup_exit();
1582}
1583
1584module_init(init_QDIO);
1585module_exit(exit_QDIO);