blob: 1974ec7bf0ed5a5ecdf0a67b850d661cc96559bb [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
234inline int get_buf_state(struct qdio_q *q, unsigned int bufnr,
Jan Glauber50f769d2008-12-25 13:38:47 +0100235 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
279static int qdio_siga_sync(struct qdio_q *q, unsigned int output,
280 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
296inline int qdio_siga_sync_q(struct qdio_q *q)
297{
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
361/* called from thinint inbound handler */
362void qdio_sync_after_thinint(struct qdio_q *q)
363{
364 if (pci_out_supported(q)) {
365 if (need_siga_sync_thinint(q))
366 qdio_siga_sync_all(q);
367 else if (need_siga_sync_out_thinint(q))
368 qdio_siga_sync_out(q);
369 } else
370 qdio_siga_sync_q(q);
371}
372
373inline void qdio_stop_polling(struct qdio_q *q)
374{
Jan Glauber50f769d2008-12-25 13:38:47 +0100375 if (!q->u.in.polling)
Jan Glauber779e6e12008-07-17 17:16:48 +0200376 return;
Jan Glauber50f769d2008-12-25 13:38:47 +0100377
Jan Glauber779e6e12008-07-17 17:16:48 +0200378 q->u.in.polling = 0;
379 qdio_perf_stat_inc(&perf_stats.debug_stop_polling);
380
381 /* show the card that we are not polling anymore */
Jan Glauber50f769d2008-12-25 13:38:47 +0100382 if (is_qebsm(q)) {
383 set_buf_states(q, q->last_move_ftc, SLSB_P_INPUT_NOT_INIT,
384 q->u.in.ack_count);
385 q->u.in.ack_count = 0;
386 } else
387 set_buf_state(q, q->last_move_ftc, SLSB_P_INPUT_NOT_INIT);
Jan Glauber779e6e12008-07-17 17:16:48 +0200388}
389
Jan Glauber50f769d2008-12-25 13:38:47 +0100390static void announce_buffer_error(struct qdio_q *q, int count)
Jan Glauber779e6e12008-07-17 17:16:48 +0200391{
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100392 q->qdio_error |= QDIO_ERROR_SLSB_STATE;
Jan Glauber50f769d2008-12-25 13:38:47 +0100393
394 /* special handling for no target buffer empty */
395 if ((!q->is_input_q &&
396 (q->sbal[q->first_to_check]->element[15].flags & 0xff) == 0x10)) {
397 qdio_perf_stat_inc(&perf_stats.outbound_target_full);
398 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "OUTFULL FTC:%3d",
399 q->first_to_check);
400 return;
401 }
402
Jan Glauber22f99342008-12-25 13:38:46 +0100403 DBF_ERROR("%4x BUF ERROR", SCH_NO(q));
404 DBF_ERROR((q->is_input_q) ? "IN:%2d" : "OUT:%2d", q->nr);
Jan Glauber50f769d2008-12-25 13:38:47 +0100405 DBF_ERROR("FTC:%3d C:%3d", q->first_to_check, count);
Jan Glauber22f99342008-12-25 13:38:46 +0100406 DBF_ERROR("F14:%2x F15:%2x",
407 q->sbal[q->first_to_check]->element[14].flags & 0xff,
408 q->sbal[q->first_to_check]->element[15].flags & 0xff);
Jan Glauber50f769d2008-12-25 13:38:47 +0100409}
Jan Glauber779e6e12008-07-17 17:16:48 +0200410
Jan Glauber50f769d2008-12-25 13:38:47 +0100411static inline void inbound_primed(struct qdio_q *q, int count)
412{
413 int new;
414
415 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "in prim: %3d", count);
416
417 /* for QEBSM the ACK was already set by EQBS */
418 if (is_qebsm(q)) {
419 if (!q->u.in.polling) {
420 q->u.in.polling = 1;
421 q->u.in.ack_count = count;
422 q->last_move_ftc = q->first_to_check;
423 return;
424 }
425
426 /* delete the previous ACK's */
427 set_buf_states(q, q->last_move_ftc, SLSB_P_INPUT_NOT_INIT,
428 q->u.in.ack_count);
429 q->u.in.ack_count = count;
430 q->last_move_ftc = q->first_to_check;
431 return;
432 }
433
434 /*
435 * ACK the newest buffer. The ACK will be removed in qdio_stop_polling
436 * or by the next inbound run.
437 */
438 new = add_buf(q->first_to_check, count - 1);
439 if (q->u.in.polling) {
440 /* reset the previous ACK but first set the new one */
441 set_buf_state(q, new, SLSB_P_INPUT_ACK);
442 set_buf_state(q, q->last_move_ftc, SLSB_P_INPUT_NOT_INIT);
443 }
444 else {
445 q->u.in.polling = 1;
446 set_buf_state(q, q->first_to_check, SLSB_P_INPUT_ACK);
447 }
448
449 q->last_move_ftc = new;
450 count--;
451 if (!count)
452 return;
453
454 /*
455 * Need to change all PRIMED buffers to NOT_INIT, otherwise
456 * we're loosing initiative in the thinint code.
457 */
458 set_buf_states(q, next_buf(q->first_to_check), SLSB_P_INPUT_NOT_INIT,
459 count);
Jan Glauber779e6e12008-07-17 17:16:48 +0200460}
461
462static int get_inbound_buffer_frontier(struct qdio_q *q)
463{
464 int count, stop;
465 unsigned char state;
466
467 /*
Jan Glauber779e6e12008-07-17 17:16:48 +0200468 * Don't check 128 buffers, as otherwise qdio_inbound_q_moved
469 * would return 0.
470 */
471 count = min(atomic_read(&q->nr_buf_used), QDIO_MAX_BUFFERS_MASK);
472 stop = add_buf(q->first_to_check, count);
473
474 /*
475 * No siga sync here, as a PCI or we after a thin interrupt
476 * will sync the queues.
477 */
478
479 /* need to set count to 1 for non-qebsm */
480 if (!is_qebsm(q))
481 count = 1;
482
483check_next:
484 if (q->first_to_check == stop)
485 goto out;
486
Jan Glauber50f769d2008-12-25 13:38:47 +0100487 count = get_buf_states(q, q->first_to_check, &state, count, 1);
Jan Glauber779e6e12008-07-17 17:16:48 +0200488 if (!count)
489 goto out;
490
491 switch (state) {
492 case SLSB_P_INPUT_PRIMED:
Jan Glauber50f769d2008-12-25 13:38:47 +0100493 inbound_primed(q, count);
Jan Glauber779e6e12008-07-17 17:16:48 +0200494 /*
495 * No siga-sync needed for non-qebsm here, as the inbound queue
496 * will be synced on the next siga-r, resp.
497 * tiqdio_is_inbound_q_done will do the siga-sync.
498 */
499 q->first_to_check = add_buf(q->first_to_check, count);
500 atomic_sub(count, &q->nr_buf_used);
501 goto check_next;
502 case SLSB_P_INPUT_ERROR:
Jan Glauber50f769d2008-12-25 13:38:47 +0100503 announce_buffer_error(q, count);
Jan Glauber779e6e12008-07-17 17:16:48 +0200504 /* process the buffer, the upper layer will take care of it */
505 q->first_to_check = add_buf(q->first_to_check, count);
506 atomic_sub(count, &q->nr_buf_used);
507 break;
508 case SLSB_CU_INPUT_EMPTY:
509 case SLSB_P_INPUT_NOT_INIT:
510 case SLSB_P_INPUT_ACK:
Jan Glauber22f99342008-12-25 13:38:46 +0100511 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "in nop");
Jan Glauber779e6e12008-07-17 17:16:48 +0200512 break;
513 default:
514 BUG();
515 }
516out:
Jan Glauber779e6e12008-07-17 17:16:48 +0200517 return q->first_to_check;
518}
519
520int qdio_inbound_q_moved(struct qdio_q *q)
521{
522 int bufnr;
523
524 bufnr = get_inbound_buffer_frontier(q);
525
526 if ((bufnr != q->last_move_ftc) || q->qdio_error) {
527 if (!need_siga_sync(q) && !pci_out_supported(q))
528 q->u.in.timestamp = get_usecs();
529
Jan Glauber22f99342008-12-25 13:38:46 +0100530 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "in moved");
Jan Glauber779e6e12008-07-17 17:16:48 +0200531 return 1;
532 } else
533 return 0;
534}
535
536static int qdio_inbound_q_done(struct qdio_q *q)
537{
Jan Glauber9a1ce282008-12-25 13:38:45 +0100538 unsigned char state = 0;
Jan Glauber779e6e12008-07-17 17:16:48 +0200539
540 if (!atomic_read(&q->nr_buf_used))
541 return 1;
542
543 /*
544 * We need that one for synchronization with the adapter, as it
545 * does a kind of PCI avoidance.
546 */
547 qdio_siga_sync_q(q);
548
Jan Glauber50f769d2008-12-25 13:38:47 +0100549 get_buf_state(q, q->first_to_check, &state, 0);
Jan Glauber779e6e12008-07-17 17:16:48 +0200550 if (state == SLSB_P_INPUT_PRIMED)
551 /* we got something to do */
552 return 0;
553
554 /* on VM, we don't poll, so the q is always done here */
555 if (need_siga_sync(q) || pci_out_supported(q))
556 return 1;
557
558 /*
559 * At this point we know, that inbound first_to_check
560 * has (probably) not moved (see qdio_inbound_processing).
561 */
562 if (get_usecs() > q->u.in.timestamp + QDIO_INPUT_THRESHOLD) {
Jan Glauber22f99342008-12-25 13:38:46 +0100563 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "in done:%3d",
564 q->first_to_check);
Jan Glauber779e6e12008-07-17 17:16:48 +0200565 return 1;
566 } else {
Jan Glauber22f99342008-12-25 13:38:46 +0100567 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "in notd:%3d",
568 q->first_to_check);
Jan Glauber779e6e12008-07-17 17:16:48 +0200569 return 0;
570 }
571}
572
573void qdio_kick_inbound_handler(struct qdio_q *q)
574{
575 int count, start, end;
Jan Glauber779e6e12008-07-17 17:16:48 +0200576
577 qdio_perf_stat_inc(&perf_stats.inbound_handler);
578
579 start = q->first_to_kick;
580 end = q->first_to_check;
581 if (end >= start)
582 count = end - start;
583 else
584 count = end + QDIO_MAX_BUFFERS_PER_Q - start;
585
Jan Glauber22f99342008-12-25 13:38:46 +0100586 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "kih s:%3d c:%3d", start, count);
Jan Glauber779e6e12008-07-17 17:16:48 +0200587
588 if (unlikely(q->irq_ptr->state != QDIO_IRQ_STATE_ACTIVE))
589 return;
590
591 q->handler(q->irq_ptr->cdev, q->qdio_error, q->nr,
592 start, count, q->irq_ptr->int_parm);
593
594 /* for the next time */
595 q->first_to_kick = q->first_to_check;
596 q->qdio_error = 0;
597}
598
599static void __qdio_inbound_processing(struct qdio_q *q)
600{
601 qdio_perf_stat_inc(&perf_stats.tasklet_inbound);
602again:
603 if (!qdio_inbound_q_moved(q))
604 return;
605
606 qdio_kick_inbound_handler(q);
607
608 if (!qdio_inbound_q_done(q))
609 /* means poll time is not yet over */
610 goto again;
611
612 qdio_stop_polling(q);
613 /*
614 * We need to check again to not lose initiative after
615 * resetting the ACK state.
616 */
617 if (!qdio_inbound_q_done(q))
618 goto again;
619}
620
621/* inbound tasklet */
622void qdio_inbound_processing(unsigned long data)
623{
624 struct qdio_q *q = (struct qdio_q *)data;
625 __qdio_inbound_processing(q);
626}
627
628static int get_outbound_buffer_frontier(struct qdio_q *q)
629{
630 int count, stop;
631 unsigned char state;
632
633 if (((queue_type(q) != QDIO_IQDIO_QFMT) && !pci_out_supported(q)) ||
634 (queue_type(q) == QDIO_IQDIO_QFMT && multicast_outbound(q)))
635 qdio_siga_sync_q(q);
636
637 /*
638 * Don't check 128 buffers, as otherwise qdio_inbound_q_moved
639 * would return 0.
640 */
641 count = min(atomic_read(&q->nr_buf_used), QDIO_MAX_BUFFERS_MASK);
642 stop = add_buf(q->first_to_check, count);
643
644 /* need to set count to 1 for non-qebsm */
645 if (!is_qebsm(q))
646 count = 1;
647
648check_next:
649 if (q->first_to_check == stop)
650 return q->first_to_check;
651
Jan Glauber50f769d2008-12-25 13:38:47 +0100652 count = get_buf_states(q, q->first_to_check, &state, count, 0);
Jan Glauber779e6e12008-07-17 17:16:48 +0200653 if (!count)
654 return q->first_to_check;
655
656 switch (state) {
657 case SLSB_P_OUTPUT_EMPTY:
658 /* the adapter got it */
Jan Glauber22f99342008-12-25 13:38:46 +0100659 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "out empty:%1d %3d", q->nr, count);
Jan Glauber779e6e12008-07-17 17:16:48 +0200660
661 atomic_sub(count, &q->nr_buf_used);
662 q->first_to_check = add_buf(q->first_to_check, count);
663 /*
664 * We fetch all buffer states at once. get_buf_states may
665 * return count < stop. For QEBSM we do not loop.
666 */
667 if (is_qebsm(q))
668 break;
669 goto check_next;
670 case SLSB_P_OUTPUT_ERROR:
Jan Glauber50f769d2008-12-25 13:38:47 +0100671 announce_buffer_error(q, count);
Jan Glauber779e6e12008-07-17 17:16:48 +0200672 /* process the buffer, the upper layer will take care of it */
673 q->first_to_check = add_buf(q->first_to_check, count);
674 atomic_sub(count, &q->nr_buf_used);
675 break;
676 case SLSB_CU_OUTPUT_PRIMED:
677 /* the adapter has not fetched the output yet */
Jan Glauber22f99342008-12-25 13:38:46 +0100678 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "out primed:%1d", q->nr);
Jan Glauber779e6e12008-07-17 17:16:48 +0200679 break;
680 case SLSB_P_OUTPUT_NOT_INIT:
681 case SLSB_P_OUTPUT_HALTED:
682 break;
683 default:
684 BUG();
685 }
686 return q->first_to_check;
687}
688
689/* all buffers processed? */
690static inline int qdio_outbound_q_done(struct qdio_q *q)
691{
692 return atomic_read(&q->nr_buf_used) == 0;
693}
694
695static inline int qdio_outbound_q_moved(struct qdio_q *q)
696{
697 int bufnr;
698
699 bufnr = get_outbound_buffer_frontier(q);
700
701 if ((bufnr != q->last_move_ftc) || q->qdio_error) {
702 q->last_move_ftc = bufnr;
Jan Glauber22f99342008-12-25 13:38:46 +0100703 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "out moved:%1d", q->nr);
Jan Glauber779e6e12008-07-17 17:16:48 +0200704 return 1;
705 } else
706 return 0;
707}
708
Jan Glauber779e6e12008-07-17 17:16:48 +0200709static void qdio_kick_outbound_q(struct qdio_q *q)
710{
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100711 unsigned int busy_bit;
712 int cc;
Jan Glauber779e6e12008-07-17 17:16:48 +0200713
714 if (!need_siga_out(q))
715 return;
716
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100717 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "siga-w:%1d", q->nr);
718 qdio_perf_stat_inc(&perf_stats.siga_out);
719
720 cc = qdio_siga_output(q, &busy_bit);
721 switch (cc) {
Jan Glauber779e6e12008-07-17 17:16:48 +0200722 case 0:
Jan Glauber779e6e12008-07-17 17:16:48 +0200723 break;
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100724 case 2:
725 if (busy_bit) {
726 DBF_ERROR("%4x cc2 REP:%1d", SCH_NO(q), q->nr);
727 q->qdio_error = cc | QDIO_ERROR_SIGA_BUSY;
728 } else {
729 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "siga-w cc2:%1d",
730 q->nr);
731 q->qdio_error = cc;
Jan Glauber779e6e12008-07-17 17:16:48 +0200732 }
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100733 break;
734 case 1:
735 case 3:
736 DBF_ERROR("%4x SIGA-W:%1d", SCH_NO(q), cc);
737 q->qdio_error = cc;
738 break;
Jan Glauber779e6e12008-07-17 17:16:48 +0200739 }
740}
741
742static void qdio_kick_outbound_handler(struct qdio_q *q)
743{
744 int start, end, count;
Jan Glauber779e6e12008-07-17 17:16:48 +0200745
746 start = q->first_to_kick;
747 end = q->last_move_ftc;
748 if (end >= start)
749 count = end - start;
750 else
751 count = end + QDIO_MAX_BUFFERS_PER_Q - start;
752
Jan Glauber22f99342008-12-25 13:38:46 +0100753 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "kickouth: %1d", q->nr);
754 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "s:%3d c:%3d", start, count);
Jan Glauber779e6e12008-07-17 17:16:48 +0200755
756 if (unlikely(q->irq_ptr->state != QDIO_IRQ_STATE_ACTIVE))
757 return;
758
759 q->handler(q->irq_ptr->cdev, q->qdio_error, q->nr, start, count,
760 q->irq_ptr->int_parm);
761
762 /* for the next time: */
763 q->first_to_kick = q->last_move_ftc;
764 q->qdio_error = 0;
765}
766
767static void __qdio_outbound_processing(struct qdio_q *q)
768{
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100769 unsigned long flags;
Jan Glauber779e6e12008-07-17 17:16:48 +0200770
771 qdio_perf_stat_inc(&perf_stats.tasklet_outbound);
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100772 spin_lock_irqsave(&q->lock, flags);
Jan Glauber779e6e12008-07-17 17:16:48 +0200773
774 BUG_ON(atomic_read(&q->nr_buf_used) < 0);
775
776 if (qdio_outbound_q_moved(q))
777 qdio_kick_outbound_handler(q);
778
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100779 spin_unlock_irqrestore(&q->lock, flags);
780
Jan Glauberc38f9602009-03-26 15:24:26 +0100781 if (queue_type(q) == QDIO_ZFCP_QFMT)
Jan Glauber779e6e12008-07-17 17:16:48 +0200782 if (!pci_out_supported(q) && !qdio_outbound_q_done(q))
Jan Glauberc38f9602009-03-26 15:24:26 +0100783 goto sched;
Jan Glauber779e6e12008-07-17 17:16:48 +0200784
785 /* bail out for HiperSockets unicast queues */
786 if (queue_type(q) == QDIO_IQDIO_QFMT && !multicast_outbound(q))
787 return;
788
Ursula Braun4bcb3a32008-10-10 21:33:04 +0200789 if ((queue_type(q) == QDIO_IQDIO_QFMT) &&
Jan Glauberc38f9602009-03-26 15:24:26 +0100790 (atomic_read(&q->nr_buf_used)) > QDIO_IQDIO_POLL_LVL)
791 goto sched;
Ursula Braun4bcb3a32008-10-10 21:33:04 +0200792
Jan Glauber779e6e12008-07-17 17:16:48 +0200793 if (q->u.out.pci_out_enabled)
794 return;
795
796 /*
797 * Now we know that queue type is either qeth without pci enabled
798 * or HiperSockets multicast. Make sure buffer switch from PRIMED to
799 * EMPTY is noticed and outbound_handler is called after some time.
800 */
801 if (qdio_outbound_q_done(q))
802 del_timer(&q->u.out.timer);
803 else {
804 if (!timer_pending(&q->u.out.timer)) {
805 mod_timer(&q->u.out.timer, jiffies + 10 * HZ);
806 qdio_perf_stat_inc(&perf_stats.debug_tl_out_timer);
807 }
808 }
Jan Glauberc38f9602009-03-26 15:24:26 +0100809 return;
810
811sched:
812 if (unlikely(q->irq_ptr->state == QDIO_IRQ_STATE_STOPPED))
813 return;
814 tasklet_schedule(&q->tasklet);
Jan Glauber779e6e12008-07-17 17:16:48 +0200815}
816
817/* outbound tasklet */
818void qdio_outbound_processing(unsigned long data)
819{
820 struct qdio_q *q = (struct qdio_q *)data;
821 __qdio_outbound_processing(q);
822}
823
824void qdio_outbound_timer(unsigned long data)
825{
826 struct qdio_q *q = (struct qdio_q *)data;
Jan Glauberc38f9602009-03-26 15:24:26 +0100827
828 if (unlikely(q->irq_ptr->state == QDIO_IRQ_STATE_STOPPED))
829 return;
Jan Glauber779e6e12008-07-17 17:16:48 +0200830 tasklet_schedule(&q->tasklet);
831}
832
833/* called from thinint inbound tasklet */
834void qdio_check_outbound_after_thinint(struct qdio_q *q)
835{
836 struct qdio_q *out;
837 int i;
838
839 if (!pci_out_supported(q))
840 return;
841
842 for_each_output_queue(q->irq_ptr, out, i)
843 if (!qdio_outbound_q_done(out))
844 tasklet_schedule(&out->tasklet);
845}
846
847static inline void qdio_set_state(struct qdio_irq *irq_ptr,
848 enum qdio_irq_states state)
849{
Jan Glauber22f99342008-12-25 13:38:46 +0100850 DBF_DEV_EVENT(DBF_INFO, irq_ptr, "newstate: %1d", state);
Jan Glauber779e6e12008-07-17 17:16:48 +0200851
852 irq_ptr->state = state;
853 mb();
854}
855
Jan Glauber22f99342008-12-25 13:38:46 +0100856static void qdio_irq_check_sense(struct qdio_irq *irq_ptr, struct irb *irb)
Jan Glauber779e6e12008-07-17 17:16:48 +0200857{
Jan Glauber779e6e12008-07-17 17:16:48 +0200858 if (irb->esw.esw0.erw.cons) {
Jan Glauber22f99342008-12-25 13:38:46 +0100859 DBF_ERROR("%4x sense:", irq_ptr->schid.sch_no);
860 DBF_ERROR_HEX(irb, 64);
861 DBF_ERROR_HEX(irb->ecw, 64);
Jan Glauber779e6e12008-07-17 17:16:48 +0200862 }
863}
864
865/* PCI interrupt handler */
866static void qdio_int_handler_pci(struct qdio_irq *irq_ptr)
867{
868 int i;
869 struct qdio_q *q;
870
Jan Glauberc38f9602009-03-26 15:24:26 +0100871 if (unlikely(irq_ptr->state == QDIO_IRQ_STATE_STOPPED))
872 return;
873
Jan Glauber779e6e12008-07-17 17:16:48 +0200874 qdio_perf_stat_inc(&perf_stats.pci_int);
875
876 for_each_input_queue(irq_ptr, q, i)
877 tasklet_schedule(&q->tasklet);
878
879 if (!(irq_ptr->qib.ac & QIB_AC_OUTBOUND_PCI_SUPPORTED))
880 return;
881
882 for_each_output_queue(irq_ptr, q, i) {
883 if (qdio_outbound_q_done(q))
884 continue;
885
886 if (!siga_syncs_out_pci(q))
887 qdio_siga_sync_q(q);
888
889 tasklet_schedule(&q->tasklet);
890 }
891}
892
893static void qdio_handle_activate_check(struct ccw_device *cdev,
894 unsigned long intparm, int cstat, int dstat)
895{
896 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
897 struct qdio_q *q;
Jan Glauber779e6e12008-07-17 17:16:48 +0200898
Jan Glauber22f99342008-12-25 13:38:46 +0100899 DBF_ERROR("%4x ACT CHECK", irq_ptr->schid.sch_no);
900 DBF_ERROR("intp :%lx", intparm);
901 DBF_ERROR("ds: %2x cs:%2x", dstat, cstat);
Jan Glauber779e6e12008-07-17 17:16:48 +0200902
903 if (irq_ptr->nr_input_qs) {
904 q = irq_ptr->input_qs[0];
905 } else if (irq_ptr->nr_output_qs) {
906 q = irq_ptr->output_qs[0];
907 } else {
908 dump_stack();
909 goto no_handler;
910 }
911 q->handler(q->irq_ptr->cdev, QDIO_ERROR_ACTIVATE_CHECK_CONDITION,
912 0, -1, -1, irq_ptr->int_parm);
913no_handler:
914 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_STOPPED);
915}
916
917static void qdio_call_shutdown(struct work_struct *work)
918{
919 struct ccw_device_private *priv;
920 struct ccw_device *cdev;
921
922 priv = container_of(work, struct ccw_device_private, kick_work);
923 cdev = priv->cdev;
924 qdio_shutdown(cdev, QDIO_FLAG_CLEANUP_USING_CLEAR);
925 put_device(&cdev->dev);
926}
927
928static void qdio_int_error(struct ccw_device *cdev)
929{
930 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
931
932 switch (irq_ptr->state) {
933 case QDIO_IRQ_STATE_INACTIVE:
934 case QDIO_IRQ_STATE_CLEANUP:
935 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_ERR);
936 break;
937 case QDIO_IRQ_STATE_ESTABLISHED:
938 case QDIO_IRQ_STATE_ACTIVE:
939 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_STOPPED);
940 if (get_device(&cdev->dev)) {
941 /* Can't call shutdown from interrupt context. */
942 PREPARE_WORK(&cdev->private->kick_work,
943 qdio_call_shutdown);
944 queue_work(ccw_device_work, &cdev->private->kick_work);
945 }
946 break;
947 default:
948 WARN_ON(1);
949 }
950 wake_up(&cdev->private->wait_q);
951}
952
953static int qdio_establish_check_errors(struct ccw_device *cdev, int cstat,
Jan Glauber22f99342008-12-25 13:38:46 +0100954 int dstat)
Jan Glauber779e6e12008-07-17 17:16:48 +0200955{
956 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
957
958 if (cstat || (dstat & ~(DEV_STAT_CHN_END | DEV_STAT_DEV_END))) {
Jan Glauber22f99342008-12-25 13:38:46 +0100959 DBF_ERROR("EQ:ck con");
Jan Glauber779e6e12008-07-17 17:16:48 +0200960 goto error;
961 }
962
963 if (!(dstat & DEV_STAT_DEV_END)) {
Jan Glauber22f99342008-12-25 13:38:46 +0100964 DBF_ERROR("EQ:no dev");
Jan Glauber779e6e12008-07-17 17:16:48 +0200965 goto error;
966 }
967
968 if (dstat & ~(DEV_STAT_CHN_END | DEV_STAT_DEV_END)) {
Jan Glauber22f99342008-12-25 13:38:46 +0100969 DBF_ERROR("EQ: bad io");
Jan Glauber779e6e12008-07-17 17:16:48 +0200970 goto error;
971 }
972 return 0;
973error:
Jan Glauber22f99342008-12-25 13:38:46 +0100974 DBF_ERROR("%4x EQ:error", irq_ptr->schid.sch_no);
975 DBF_ERROR("ds: %2x cs:%2x", dstat, cstat);
976
Jan Glauber779e6e12008-07-17 17:16:48 +0200977 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_ERR);
978 return 1;
979}
980
981static void qdio_establish_handle_irq(struct ccw_device *cdev, int cstat,
982 int dstat)
983{
984 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
Jan Glauber779e6e12008-07-17 17:16:48 +0200985
Jan Glauber22f99342008-12-25 13:38:46 +0100986 DBF_DEV_EVENT(DBF_INFO, irq_ptr, "qest irq");
Jan Glauber779e6e12008-07-17 17:16:48 +0200987 if (!qdio_establish_check_errors(cdev, cstat, dstat))
988 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_ESTABLISHED);
989}
990
991/* qdio interrupt handler */
992void qdio_int_handler(struct ccw_device *cdev, unsigned long intparm,
993 struct irb *irb)
994{
995 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
996 int cstat, dstat;
Jan Glauber779e6e12008-07-17 17:16:48 +0200997
998 qdio_perf_stat_inc(&perf_stats.qdio_int);
999
1000 if (!intparm || !irq_ptr) {
Jan Glauber22f99342008-12-25 13:38:46 +01001001 DBF_ERROR("qint:%4x", cdev->private->schid.sch_no);
Jan Glauber779e6e12008-07-17 17:16:48 +02001002 return;
1003 }
1004
1005 if (IS_ERR(irb)) {
1006 switch (PTR_ERR(irb)) {
1007 case -EIO:
Jan Glauber22f99342008-12-25 13:38:46 +01001008 DBF_ERROR("%4x IO error", irq_ptr->schid.sch_no);
Jan Glauber779e6e12008-07-17 17:16:48 +02001009 return;
1010 case -ETIMEDOUT:
Jan Glauber22f99342008-12-25 13:38:46 +01001011 DBF_ERROR("%4x IO timeout", irq_ptr->schid.sch_no);
Jan Glauber779e6e12008-07-17 17:16:48 +02001012 qdio_int_error(cdev);
1013 return;
1014 default:
1015 WARN_ON(1);
1016 return;
1017 }
1018 }
Jan Glauber22f99342008-12-25 13:38:46 +01001019 qdio_irq_check_sense(irq_ptr, irb);
Jan Glauber779e6e12008-07-17 17:16:48 +02001020
1021 cstat = irb->scsw.cmd.cstat;
1022 dstat = irb->scsw.cmd.dstat;
1023
1024 switch (irq_ptr->state) {
1025 case QDIO_IRQ_STATE_INACTIVE:
1026 qdio_establish_handle_irq(cdev, cstat, dstat);
1027 break;
1028
1029 case QDIO_IRQ_STATE_CLEANUP:
1030 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_INACTIVE);
1031 break;
1032
1033 case QDIO_IRQ_STATE_ESTABLISHED:
1034 case QDIO_IRQ_STATE_ACTIVE:
1035 if (cstat & SCHN_STAT_PCI) {
1036 qdio_int_handler_pci(irq_ptr);
1037 /* no state change so no need to wake up wait_q */
1038 return;
1039 }
1040 if ((cstat & ~SCHN_STAT_PCI) || dstat) {
1041 qdio_handle_activate_check(cdev, intparm, cstat,
1042 dstat);
1043 break;
1044 }
1045 default:
1046 WARN_ON(1);
1047 }
1048 wake_up(&cdev->private->wait_q);
1049}
1050
1051/**
1052 * qdio_get_ssqd_desc - get qdio subchannel description
1053 * @cdev: ccw device to get description for
Jan Glauberbbd50e12008-12-25 13:38:43 +01001054 * @data: where to store the ssqd
Jan Glauber779e6e12008-07-17 17:16:48 +02001055 *
Jan Glauberbbd50e12008-12-25 13:38:43 +01001056 * Returns 0 or an error code. The results of the chsc are stored in the
1057 * specified structure.
Jan Glauber779e6e12008-07-17 17:16:48 +02001058 */
Jan Glauberbbd50e12008-12-25 13:38:43 +01001059int qdio_get_ssqd_desc(struct ccw_device *cdev,
1060 struct qdio_ssqd_desc *data)
Jan Glauber779e6e12008-07-17 17:16:48 +02001061{
Jan Glauber779e6e12008-07-17 17:16:48 +02001062
Jan Glauberbbd50e12008-12-25 13:38:43 +01001063 if (!cdev || !cdev->private)
1064 return -EINVAL;
1065
Jan Glauber22f99342008-12-25 13:38:46 +01001066 DBF_EVENT("get ssqd:%4x", cdev->private->schid.sch_no);
Jan Glauberbbd50e12008-12-25 13:38:43 +01001067 return qdio_setup_get_ssqd(NULL, &cdev->private->schid, data);
Jan Glauber779e6e12008-07-17 17:16:48 +02001068}
1069EXPORT_SYMBOL_GPL(qdio_get_ssqd_desc);
1070
1071/**
1072 * qdio_cleanup - shutdown queues and free data structures
1073 * @cdev: associated ccw device
1074 * @how: use halt or clear to shutdown
1075 *
1076 * This function calls qdio_shutdown() for @cdev with method @how
1077 * and on success qdio_free() for @cdev.
1078 */
1079int qdio_cleanup(struct ccw_device *cdev, int how)
1080{
Jan Glauber22f99342008-12-25 13:38:46 +01001081 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
Jan Glauber779e6e12008-07-17 17:16:48 +02001082 int rc;
1083
Jan Glauber779e6e12008-07-17 17:16:48 +02001084 if (!irq_ptr)
1085 return -ENODEV;
1086
Jan Glauber779e6e12008-07-17 17:16:48 +02001087 rc = qdio_shutdown(cdev, how);
1088 if (rc == 0)
1089 rc = qdio_free(cdev);
1090 return rc;
1091}
1092EXPORT_SYMBOL_GPL(qdio_cleanup);
1093
1094static void qdio_shutdown_queues(struct ccw_device *cdev)
1095{
1096 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
1097 struct qdio_q *q;
1098 int i;
1099
1100 for_each_input_queue(irq_ptr, q, i)
Jan Glauberc38f9602009-03-26 15:24:26 +01001101 tasklet_kill(&q->tasklet);
Jan Glauber779e6e12008-07-17 17:16:48 +02001102
1103 for_each_output_queue(irq_ptr, q, i) {
Jan Glauber779e6e12008-07-17 17:16:48 +02001104 del_timer(&q->u.out.timer);
Jan Glauberc38f9602009-03-26 15:24:26 +01001105 tasklet_kill(&q->tasklet);
Jan Glauber779e6e12008-07-17 17:16:48 +02001106 }
1107}
1108
1109/**
1110 * qdio_shutdown - shut down a qdio subchannel
1111 * @cdev: associated ccw device
1112 * @how: use halt or clear to shutdown
1113 */
1114int qdio_shutdown(struct ccw_device *cdev, int how)
1115{
Jan Glauber22f99342008-12-25 13:38:46 +01001116 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
Jan Glauber779e6e12008-07-17 17:16:48 +02001117 int rc;
1118 unsigned long flags;
Jan Glauber779e6e12008-07-17 17:16:48 +02001119
Jan Glauber779e6e12008-07-17 17:16:48 +02001120 if (!irq_ptr)
1121 return -ENODEV;
1122
Jan Glauberb4547402009-03-26 15:24:24 +01001123 BUG_ON(irqs_disabled());
Jan Glauber22f99342008-12-25 13:38:46 +01001124 DBF_EVENT("qshutdown:%4x", cdev->private->schid.sch_no);
1125
Jan Glauber779e6e12008-07-17 17:16:48 +02001126 mutex_lock(&irq_ptr->setup_mutex);
1127 /*
1128 * Subchannel was already shot down. We cannot prevent being called
1129 * twice since cio may trigger a shutdown asynchronously.
1130 */
1131 if (irq_ptr->state == QDIO_IRQ_STATE_INACTIVE) {
1132 mutex_unlock(&irq_ptr->setup_mutex);
1133 return 0;
1134 }
1135
Jan Glauberc38f9602009-03-26 15:24:26 +01001136 /*
1137 * Indicate that the device is going down. Scheduling the queue
1138 * tasklets is forbidden from here on.
1139 */
1140 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_STOPPED);
1141
Jan Glauber779e6e12008-07-17 17:16:48 +02001142 tiqdio_remove_input_queues(irq_ptr);
1143 qdio_shutdown_queues(cdev);
1144 qdio_shutdown_debug_entries(irq_ptr, cdev);
1145
1146 /* cleanup subchannel */
1147 spin_lock_irqsave(get_ccwdev_lock(cdev), flags);
1148
1149 if (how & QDIO_FLAG_CLEANUP_USING_CLEAR)
1150 rc = ccw_device_clear(cdev, QDIO_DOING_CLEANUP);
1151 else
1152 /* default behaviour is halt */
1153 rc = ccw_device_halt(cdev, QDIO_DOING_CLEANUP);
1154 if (rc) {
Jan Glauber22f99342008-12-25 13:38:46 +01001155 DBF_ERROR("%4x SHUTD ERR", irq_ptr->schid.sch_no);
1156 DBF_ERROR("rc:%4d", rc);
Jan Glauber779e6e12008-07-17 17:16:48 +02001157 goto no_cleanup;
1158 }
1159
1160 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_CLEANUP);
1161 spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);
1162 wait_event_interruptible_timeout(cdev->private->wait_q,
1163 irq_ptr->state == QDIO_IRQ_STATE_INACTIVE ||
1164 irq_ptr->state == QDIO_IRQ_STATE_ERR,
1165 10 * HZ);
1166 spin_lock_irqsave(get_ccwdev_lock(cdev), flags);
1167
1168no_cleanup:
1169 qdio_shutdown_thinint(irq_ptr);
1170
1171 /* restore interrupt handler */
1172 if ((void *)cdev->handler == (void *)qdio_int_handler)
1173 cdev->handler = irq_ptr->orig_handler;
1174 spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);
1175
1176 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_INACTIVE);
1177 mutex_unlock(&irq_ptr->setup_mutex);
Jan Glauber779e6e12008-07-17 17:16:48 +02001178 if (rc)
1179 return rc;
1180 return 0;
1181}
1182EXPORT_SYMBOL_GPL(qdio_shutdown);
1183
1184/**
1185 * qdio_free - free data structures for a qdio subchannel
1186 * @cdev: associated ccw device
1187 */
1188int qdio_free(struct ccw_device *cdev)
1189{
Jan Glauber22f99342008-12-25 13:38:46 +01001190 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
Jan Glauber779e6e12008-07-17 17:16:48 +02001191
Jan Glauber779e6e12008-07-17 17:16:48 +02001192 if (!irq_ptr)
1193 return -ENODEV;
1194
Jan Glauber22f99342008-12-25 13:38:46 +01001195 DBF_EVENT("qfree:%4x", cdev->private->schid.sch_no);
Jan Glauber779e6e12008-07-17 17:16:48 +02001196 mutex_lock(&irq_ptr->setup_mutex);
Jan Glauber22f99342008-12-25 13:38:46 +01001197
1198 if (irq_ptr->debug_area != NULL) {
1199 debug_unregister(irq_ptr->debug_area);
1200 irq_ptr->debug_area = NULL;
1201 }
Jan Glauber779e6e12008-07-17 17:16:48 +02001202 cdev->private->qdio_data = NULL;
1203 mutex_unlock(&irq_ptr->setup_mutex);
1204
1205 qdio_release_memory(irq_ptr);
1206 return 0;
1207}
1208EXPORT_SYMBOL_GPL(qdio_free);
1209
1210/**
1211 * qdio_initialize - allocate and establish queues for a qdio subchannel
1212 * @init_data: initialization data
1213 *
1214 * This function first allocates queues via qdio_allocate() and on success
1215 * establishes them via qdio_establish().
1216 */
1217int qdio_initialize(struct qdio_initialize *init_data)
1218{
1219 int rc;
Jan Glauber779e6e12008-07-17 17:16:48 +02001220
1221 rc = qdio_allocate(init_data);
1222 if (rc)
1223 return rc;
1224
1225 rc = qdio_establish(init_data);
1226 if (rc)
1227 qdio_free(init_data->cdev);
1228 return rc;
1229}
1230EXPORT_SYMBOL_GPL(qdio_initialize);
1231
1232/**
1233 * qdio_allocate - allocate qdio queues and associated data
1234 * @init_data: initialization data
1235 */
1236int qdio_allocate(struct qdio_initialize *init_data)
1237{
1238 struct qdio_irq *irq_ptr;
Jan Glauber779e6e12008-07-17 17:16:48 +02001239
Jan Glauber22f99342008-12-25 13:38:46 +01001240 DBF_EVENT("qallocate:%4x", init_data->cdev->private->schid.sch_no);
Jan Glauber779e6e12008-07-17 17:16:48 +02001241
1242 if ((init_data->no_input_qs && !init_data->input_handler) ||
1243 (init_data->no_output_qs && !init_data->output_handler))
1244 return -EINVAL;
1245
1246 if ((init_data->no_input_qs > QDIO_MAX_QUEUES_PER_IRQ) ||
1247 (init_data->no_output_qs > QDIO_MAX_QUEUES_PER_IRQ))
1248 return -EINVAL;
1249
1250 if ((!init_data->input_sbal_addr_array) ||
1251 (!init_data->output_sbal_addr_array))
1252 return -EINVAL;
1253
Jan Glauber779e6e12008-07-17 17:16:48 +02001254 /* irq_ptr must be in GFP_DMA since it contains ccw1.cda */
1255 irq_ptr = (void *) get_zeroed_page(GFP_KERNEL | GFP_DMA);
1256 if (!irq_ptr)
1257 goto out_err;
Jan Glauber779e6e12008-07-17 17:16:48 +02001258
1259 mutex_init(&irq_ptr->setup_mutex);
Jan Glauber22f99342008-12-25 13:38:46 +01001260 qdio_allocate_dbf(init_data, irq_ptr);
Jan Glauber779e6e12008-07-17 17:16:48 +02001261
1262 /*
1263 * Allocate a page for the chsc calls in qdio_establish.
1264 * Must be pre-allocated since a zfcp recovery will call
1265 * qdio_establish. In case of low memory and swap on a zfcp disk
1266 * we may not be able to allocate memory otherwise.
1267 */
1268 irq_ptr->chsc_page = get_zeroed_page(GFP_KERNEL);
1269 if (!irq_ptr->chsc_page)
1270 goto out_rel;
1271
1272 /* qdr is used in ccw1.cda which is u32 */
Jan Glauber3b8e3002008-08-01 16:39:17 +02001273 irq_ptr->qdr = (struct qdr *) get_zeroed_page(GFP_KERNEL | GFP_DMA);
Jan Glauber779e6e12008-07-17 17:16:48 +02001274 if (!irq_ptr->qdr)
1275 goto out_rel;
1276 WARN_ON((unsigned long)irq_ptr->qdr & 0xfff);
1277
Jan Glauber779e6e12008-07-17 17:16:48 +02001278 if (qdio_allocate_qs(irq_ptr, init_data->no_input_qs,
1279 init_data->no_output_qs))
1280 goto out_rel;
1281
1282 init_data->cdev->private->qdio_data = irq_ptr;
1283 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_INACTIVE);
1284 return 0;
1285out_rel:
1286 qdio_release_memory(irq_ptr);
1287out_err:
1288 return -ENOMEM;
1289}
1290EXPORT_SYMBOL_GPL(qdio_allocate);
1291
1292/**
1293 * qdio_establish - establish queues on a qdio subchannel
1294 * @init_data: initialization data
1295 */
1296int qdio_establish(struct qdio_initialize *init_data)
1297{
Jan Glauber779e6e12008-07-17 17:16:48 +02001298 struct qdio_irq *irq_ptr;
1299 struct ccw_device *cdev = init_data->cdev;
1300 unsigned long saveflags;
1301 int rc;
1302
Jan Glauber22f99342008-12-25 13:38:46 +01001303 DBF_EVENT("qestablish:%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
Jan Glauber779e6e12008-07-17 17:16:48 +02001312 mutex_lock(&irq_ptr->setup_mutex);
1313 qdio_setup_irq(init_data);
1314
1315 rc = qdio_establish_thinint(irq_ptr);
1316 if (rc) {
1317 mutex_unlock(&irq_ptr->setup_mutex);
1318 qdio_shutdown(cdev, QDIO_FLAG_CLEANUP_USING_CLEAR);
1319 return rc;
1320 }
1321
1322 /* establish q */
1323 irq_ptr->ccw.cmd_code = irq_ptr->equeue.cmd;
1324 irq_ptr->ccw.flags = CCW_FLAG_SLI;
1325 irq_ptr->ccw.count = irq_ptr->equeue.count;
1326 irq_ptr->ccw.cda = (u32)((addr_t)irq_ptr->qdr);
1327
1328 spin_lock_irqsave(get_ccwdev_lock(cdev), saveflags);
1329 ccw_device_set_options_mask(cdev, 0);
1330
1331 rc = ccw_device_start(cdev, &irq_ptr->ccw, QDIO_DOING_ESTABLISH, 0, 0);
1332 if (rc) {
Jan Glauber22f99342008-12-25 13:38:46 +01001333 DBF_ERROR("%4x est IO ERR", irq_ptr->schid.sch_no);
1334 DBF_ERROR("rc:%4x", rc);
Jan Glauber779e6e12008-07-17 17:16:48 +02001335 }
1336 spin_unlock_irqrestore(get_ccwdev_lock(cdev), saveflags);
1337
1338 if (rc) {
1339 mutex_unlock(&irq_ptr->setup_mutex);
1340 qdio_shutdown(cdev, QDIO_FLAG_CLEANUP_USING_CLEAR);
1341 return rc;
1342 }
1343
1344 wait_event_interruptible_timeout(cdev->private->wait_q,
1345 irq_ptr->state == QDIO_IRQ_STATE_ESTABLISHED ||
1346 irq_ptr->state == QDIO_IRQ_STATE_ERR, HZ);
1347
1348 if (irq_ptr->state != QDIO_IRQ_STATE_ESTABLISHED) {
1349 mutex_unlock(&irq_ptr->setup_mutex);
1350 qdio_shutdown(cdev, QDIO_FLAG_CLEANUP_USING_CLEAR);
1351 return -EIO;
1352 }
1353
1354 qdio_setup_ssqd_info(irq_ptr);
Jan Glauber22f99342008-12-25 13:38:46 +01001355 DBF_EVENT("qDmmwc:%2x", irq_ptr->ssqd_desc.mmwc);
1356 DBF_EVENT("qib ac:%4x", irq_ptr->qib.ac);
Jan Glauber779e6e12008-07-17 17:16:48 +02001357
1358 /* qebsm is now setup if available, initialize buffer states */
1359 qdio_init_buf_states(irq_ptr);
1360
1361 mutex_unlock(&irq_ptr->setup_mutex);
1362 qdio_print_subchannel_info(irq_ptr, cdev);
1363 qdio_setup_debug_entries(irq_ptr, cdev);
1364 return 0;
1365}
1366EXPORT_SYMBOL_GPL(qdio_establish);
1367
1368/**
1369 * qdio_activate - activate queues on a qdio subchannel
1370 * @cdev: associated cdev
1371 */
1372int qdio_activate(struct ccw_device *cdev)
1373{
1374 struct qdio_irq *irq_ptr;
1375 int rc;
1376 unsigned long saveflags;
Jan Glauber779e6e12008-07-17 17:16:48 +02001377
Jan Glauber22f99342008-12-25 13:38:46 +01001378 DBF_EVENT("qactivate:%4x", cdev->private->schid.sch_no);
Jan Glauber58eb27c2008-08-21 19:46:34 +02001379
Jan Glauber779e6e12008-07-17 17:16:48 +02001380 irq_ptr = cdev->private->qdio_data;
1381 if (!irq_ptr)
1382 return -ENODEV;
1383
1384 if (cdev->private->state != DEV_STATE_ONLINE)
1385 return -EINVAL;
1386
1387 mutex_lock(&irq_ptr->setup_mutex);
1388 if (irq_ptr->state == QDIO_IRQ_STATE_INACTIVE) {
1389 rc = -EBUSY;
1390 goto out;
1391 }
1392
Jan Glauber779e6e12008-07-17 17:16:48 +02001393 irq_ptr->ccw.cmd_code = irq_ptr->aqueue.cmd;
1394 irq_ptr->ccw.flags = CCW_FLAG_SLI;
1395 irq_ptr->ccw.count = irq_ptr->aqueue.count;
1396 irq_ptr->ccw.cda = 0;
1397
1398 spin_lock_irqsave(get_ccwdev_lock(cdev), saveflags);
1399 ccw_device_set_options(cdev, CCWDEV_REPORT_ALL);
1400
1401 rc = ccw_device_start(cdev, &irq_ptr->ccw, QDIO_DOING_ACTIVATE,
1402 0, DOIO_DENY_PREFETCH);
1403 if (rc) {
Jan Glauber22f99342008-12-25 13:38:46 +01001404 DBF_ERROR("%4x act IO ERR", irq_ptr->schid.sch_no);
1405 DBF_ERROR("rc:%4x", rc);
Jan Glauber779e6e12008-07-17 17:16:48 +02001406 }
1407 spin_unlock_irqrestore(get_ccwdev_lock(cdev), saveflags);
1408
1409 if (rc)
1410 goto out;
1411
1412 if (is_thinint_irq(irq_ptr))
1413 tiqdio_add_input_queues(irq_ptr);
1414
1415 /* wait for subchannel to become active */
1416 msleep(5);
1417
1418 switch (irq_ptr->state) {
1419 case QDIO_IRQ_STATE_STOPPED:
1420 case QDIO_IRQ_STATE_ERR:
Jan Glaubere4c14e22009-03-26 15:24:25 +01001421 rc = -EIO;
1422 break;
Jan Glauber779e6e12008-07-17 17:16:48 +02001423 default:
1424 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_ACTIVE);
1425 rc = 0;
1426 }
1427out:
1428 mutex_unlock(&irq_ptr->setup_mutex);
1429 return rc;
1430}
1431EXPORT_SYMBOL_GPL(qdio_activate);
1432
1433static inline int buf_in_between(int bufnr, int start, int count)
1434{
1435 int end = add_buf(start, count);
1436
1437 if (end > start) {
1438 if (bufnr >= start && bufnr < end)
1439 return 1;
1440 else
1441 return 0;
1442 }
1443
1444 /* wrap-around case */
1445 if ((bufnr >= start && bufnr <= QDIO_MAX_BUFFERS_PER_Q) ||
1446 (bufnr < end))
1447 return 1;
1448 else
1449 return 0;
1450}
1451
1452/**
1453 * handle_inbound - reset processed input buffers
1454 * @q: queue containing the buffers
1455 * @callflags: flags
1456 * @bufnr: first buffer to process
1457 * @count: how many buffers are emptied
1458 */
1459static void handle_inbound(struct qdio_q *q, unsigned int callflags,
1460 int bufnr, int count)
1461{
Jan Glauber7a0b4cb2008-12-25 13:38:48 +01001462 int used, cc, diff;
Jan Glauber779e6e12008-07-17 17:16:48 +02001463
Jan Glauber50f769d2008-12-25 13:38:47 +01001464 if (!q->u.in.polling)
1465 goto set;
1466
1467 /* protect against stop polling setting an ACK for an emptied slsb */
1468 if (count == QDIO_MAX_BUFFERS_PER_Q) {
1469 /* overwriting everything, just delete polling status */
1470 q->u.in.polling = 0;
1471 q->u.in.ack_count = 0;
1472 goto set;
1473 } else if (buf_in_between(q->last_move_ftc, bufnr, count)) {
1474 if (is_qebsm(q)) {
1475 /* partial overwrite, just update last_move_ftc */
1476 diff = add_buf(bufnr, count);
1477 diff = sub_buf(diff, q->last_move_ftc);
1478 q->u.in.ack_count -= diff;
1479 if (q->u.in.ack_count <= 0) {
1480 q->u.in.polling = 0;
1481 q->u.in.ack_count = 0;
1482 /* TODO: must we set last_move_ftc to something meaningful? */
1483 goto set;
1484 }
1485 q->last_move_ftc = add_buf(q->last_move_ftc, diff);
1486 }
1487 else
1488 /* the only ACK will be deleted, so stop polling */
Jan Glauber779e6e12008-07-17 17:16:48 +02001489 q->u.in.polling = 0;
Jan Glauber50f769d2008-12-25 13:38:47 +01001490 }
Jan Glauber779e6e12008-07-17 17:16:48 +02001491
Jan Glauber50f769d2008-12-25 13:38:47 +01001492set:
Jan Glauber779e6e12008-07-17 17:16:48 +02001493 count = set_buf_states(q, bufnr, SLSB_CU_INPUT_EMPTY, count);
Jan Glauber779e6e12008-07-17 17:16:48 +02001494
1495 used = atomic_add_return(count, &q->nr_buf_used) - count;
1496 BUG_ON(used + count > QDIO_MAX_BUFFERS_PER_Q);
1497
1498 /* no need to signal as long as the adapter had free buffers */
1499 if (used)
1500 return;
1501
1502 if (need_siga_in(q)) {
Jan Glauber7a0b4cb2008-12-25 13:38:48 +01001503 cc = qdio_siga_input(q);
1504 if (cc)
1505 q->qdio_error = cc;
Jan Glauber779e6e12008-07-17 17:16:48 +02001506 }
1507}
1508
1509/**
1510 * handle_outbound - process filled outbound buffers
1511 * @q: queue containing the buffers
1512 * @callflags: flags
1513 * @bufnr: first buffer to process
1514 * @count: how many buffers are filled
1515 */
1516static void handle_outbound(struct qdio_q *q, unsigned int callflags,
1517 int bufnr, int count)
1518{
1519 unsigned char state;
1520 int used;
1521
1522 qdio_perf_stat_inc(&perf_stats.outbound_handler);
1523
1524 count = set_buf_states(q, bufnr, SLSB_CU_OUTPUT_PRIMED, count);
1525 used = atomic_add_return(count, &q->nr_buf_used);
1526 BUG_ON(used > QDIO_MAX_BUFFERS_PER_Q);
1527
1528 if (callflags & QDIO_FLAG_PCI_OUT)
1529 q->u.out.pci_out_enabled = 1;
1530 else
1531 q->u.out.pci_out_enabled = 0;
1532
1533 if (queue_type(q) == QDIO_IQDIO_QFMT) {
1534 if (multicast_outbound(q))
1535 qdio_kick_outbound_q(q);
1536 else
Klaus-Dieter Wacker7a0f4752008-10-10 21:33:18 +02001537 if ((q->irq_ptr->ssqd_desc.mmwc > 1) &&
1538 (count > 1) &&
1539 (count <= q->irq_ptr->ssqd_desc.mmwc)) {
1540 /* exploit enhanced SIGA */
1541 q->u.out.use_enh_siga = 1;
Jan Glauber779e6e12008-07-17 17:16:48 +02001542 qdio_kick_outbound_q(q);
Klaus-Dieter Wacker7a0f4752008-10-10 21:33:18 +02001543 } else {
1544 /*
1545 * One siga-w per buffer required for unicast
1546 * HiperSockets.
1547 */
1548 q->u.out.use_enh_siga = 0;
1549 while (count--)
1550 qdio_kick_outbound_q(q);
1551 }
Jan Glauber7a0b4cb2008-12-25 13:38:48 +01001552
1553 /* report CC=2 conditions synchronously */
1554 if (q->qdio_error)
1555 __qdio_outbound_processing(q);
Jan Glauber779e6e12008-07-17 17:16:48 +02001556 goto out;
1557 }
1558
1559 if (need_siga_sync(q)) {
1560 qdio_siga_sync_q(q);
1561 goto out;
1562 }
1563
1564 /* try to fast requeue buffers */
Jan Glauber50f769d2008-12-25 13:38:47 +01001565 get_buf_state(q, prev_buf(bufnr), &state, 0);
Jan Glauber779e6e12008-07-17 17:16:48 +02001566 if (state != SLSB_CU_OUTPUT_PRIMED)
1567 qdio_kick_outbound_q(q);
1568 else {
Jan Glauber22f99342008-12-25 13:38:46 +01001569 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "fast-req");
Jan Glauber779e6e12008-07-17 17:16:48 +02001570 qdio_perf_stat_inc(&perf_stats.fast_requeue);
1571 }
1572out:
Jan Glauber779e6e12008-07-17 17:16:48 +02001573 tasklet_schedule(&q->tasklet);
1574}
1575
1576/**
1577 * do_QDIO - process input or output buffers
1578 * @cdev: associated ccw_device for the qdio subchannel
1579 * @callflags: input or output and special flags from the program
1580 * @q_nr: queue number
1581 * @bufnr: buffer number
1582 * @count: how many buffers to process
1583 */
1584int do_QDIO(struct ccw_device *cdev, unsigned int callflags,
1585 int q_nr, int bufnr, int count)
1586{
1587 struct qdio_irq *irq_ptr;
Jan Glauber779e6e12008-07-17 17:16:48 +02001588
1589 if ((bufnr > QDIO_MAX_BUFFERS_PER_Q) ||
1590 (count > QDIO_MAX_BUFFERS_PER_Q) ||
1591 (q_nr > QDIO_MAX_QUEUES_PER_IRQ))
1592 return -EINVAL;
1593
1594 if (!count)
1595 return 0;
1596
1597 irq_ptr = cdev->private->qdio_data;
1598 if (!irq_ptr)
1599 return -ENODEV;
1600
Jan Glauber779e6e12008-07-17 17:16:48 +02001601 if (callflags & QDIO_FLAG_SYNC_INPUT)
Jan Glauber22f99342008-12-25 13:38:46 +01001602 DBF_DEV_EVENT(DBF_INFO, irq_ptr, "doQDIO input");
Jan Glauber779e6e12008-07-17 17:16:48 +02001603 else
Jan Glauber22f99342008-12-25 13:38:46 +01001604 DBF_DEV_EVENT(DBF_INFO, irq_ptr, "doQDIO output");
1605 DBF_DEV_EVENT(DBF_INFO, irq_ptr, "q:%1d flag:%4x", q_nr, callflags);
1606 DBF_DEV_EVENT(DBF_INFO, irq_ptr, "buf:%2d cnt:%3d", bufnr, count);
Jan Glauber779e6e12008-07-17 17:16:48 +02001607
1608 if (irq_ptr->state != QDIO_IRQ_STATE_ACTIVE)
1609 return -EBUSY;
1610
1611 if (callflags & QDIO_FLAG_SYNC_INPUT)
Jan Glauber22f99342008-12-25 13:38:46 +01001612 handle_inbound(irq_ptr->input_qs[q_nr], callflags, bufnr,
1613 count);
Jan Glauber779e6e12008-07-17 17:16:48 +02001614 else if (callflags & QDIO_FLAG_SYNC_OUTPUT)
Jan Glauber22f99342008-12-25 13:38:46 +01001615 handle_outbound(irq_ptr->output_qs[q_nr], callflags, bufnr,
1616 count);
1617 else
Jan Glauber779e6e12008-07-17 17:16:48 +02001618 return -EINVAL;
Jan Glauber779e6e12008-07-17 17:16:48 +02001619 return 0;
1620}
1621EXPORT_SYMBOL_GPL(do_QDIO);
1622
1623static int __init init_QDIO(void)
1624{
1625 int rc;
1626
1627 rc = qdio_setup_init();
1628 if (rc)
1629 return rc;
1630 rc = tiqdio_allocate_memory();
1631 if (rc)
1632 goto out_cache;
1633 rc = qdio_debug_init();
1634 if (rc)
1635 goto out_ti;
1636 rc = qdio_setup_perf_stats();
1637 if (rc)
1638 goto out_debug;
1639 rc = tiqdio_register_thinints();
1640 if (rc)
1641 goto out_perf;
1642 return 0;
1643
1644out_perf:
1645 qdio_remove_perf_stats();
1646out_debug:
1647 qdio_debug_exit();
1648out_ti:
1649 tiqdio_free_memory();
1650out_cache:
1651 qdio_setup_exit();
1652 return rc;
1653}
1654
1655static void __exit exit_QDIO(void)
1656{
1657 tiqdio_unregister_thinints();
1658 tiqdio_free_memory();
1659 qdio_remove_perf_stats();
1660 qdio_debug_exit();
1661 qdio_setup_exit();
1662}
1663
1664module_init(init_QDIO);
1665module_exit(exit_QDIO);