blob: 1fc81268330e206fe0f02ca8fcbcbf81cedd3924 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090016#include <linux/gfp.h>
Jan Glauber779e6e12008-07-17 17:16:48 +020017#include <asm/atomic.h>
18#include <asm/debug.h>
19#include <asm/qdio.h>
20
21#include "cio.h"
22#include "css.h"
23#include "device.h"
24#include "qdio.h"
25#include "qdio_debug.h"
Jan Glauber779e6e12008-07-17 17:16:48 +020026
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 Glauber6486cda2010-01-04 09:05:42 +0100129 qperf_inc(q, eqbs);
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)) {
Jan Glauber6486cda2010-01-04 09:05:42 +0100142 qperf_inc(q, eqbs_partial);
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 Glauber6486cda2010-01-04 09:05:42 +0100185 qperf_inc(q, sqbs);
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 Glauber6486cda2010-01-04 09:05:42 +0100194 qperf_inc(q, sqbs_partial);
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 Glauber6486cda2010-01-04 09:05:42 +0100288 qperf_inc(q, siga_sync);
Jan Glauber779e6e12008-07-17 17:16:48 +0200289
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 Glauber6486cda2010-01-04 09:05:42 +0100353 qperf_inc(q, siga_read);
Jan Glauber779e6e12008-07-17 17:16:48 +0200354
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;
Jan Glauber6486cda2010-01-04 09:05:42 +0100385 qperf_inc(q, stop_polling);
Jan Glauber779e6e12008-07-17 17:16:48 +0200386
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 Glauberd3072972010-02-26 22:37:36 +0100396static inline void account_sbals(struct qdio_q *q, int count)
397{
398 int pos = 0;
399
400 q->q_stats.nr_sbal_total += count;
401 if (count == QDIO_MAX_BUFFERS_MASK) {
402 q->q_stats.nr_sbals[7]++;
403 return;
404 }
405 while (count >>= 1)
406 pos++;
407 q->q_stats.nr_sbals[pos]++;
408}
409
Jan Glauber50f769d2008-12-25 13:38:47 +0100410static void announce_buffer_error(struct qdio_q *q, int count)
Jan Glauber779e6e12008-07-17 17:16:48 +0200411{
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100412 q->qdio_error |= QDIO_ERROR_SLSB_STATE;
Jan Glauber50f769d2008-12-25 13:38:47 +0100413
414 /* special handling for no target buffer empty */
415 if ((!q->is_input_q &&
416 (q->sbal[q->first_to_check]->element[15].flags & 0xff) == 0x10)) {
Jan Glauber6486cda2010-01-04 09:05:42 +0100417 qperf_inc(q, target_full);
Jan Glauber1d7e1502009-09-22 22:58:39 +0200418 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "OUTFULL FTC:%02x",
Jan Glauber50f769d2008-12-25 13:38:47 +0100419 q->first_to_check);
420 return;
421 }
422
Jan Glauber22f99342008-12-25 13:38:46 +0100423 DBF_ERROR("%4x BUF ERROR", SCH_NO(q));
424 DBF_ERROR((q->is_input_q) ? "IN:%2d" : "OUT:%2d", q->nr);
Jan Glauber50f769d2008-12-25 13:38:47 +0100425 DBF_ERROR("FTC:%3d C:%3d", q->first_to_check, count);
Jan Glauber22f99342008-12-25 13:38:46 +0100426 DBF_ERROR("F14:%2x F15:%2x",
427 q->sbal[q->first_to_check]->element[14].flags & 0xff,
428 q->sbal[q->first_to_check]->element[15].flags & 0xff);
Jan Glauber50f769d2008-12-25 13:38:47 +0100429}
Jan Glauber779e6e12008-07-17 17:16:48 +0200430
Jan Glauber50f769d2008-12-25 13:38:47 +0100431static inline void inbound_primed(struct qdio_q *q, int count)
432{
433 int new;
434
Jan Glauber1d7e1502009-09-22 22:58:39 +0200435 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "in prim: %02x", count);
Jan Glauber50f769d2008-12-25 13:38:47 +0100436
437 /* for QEBSM the ACK was already set by EQBS */
438 if (is_qebsm(q)) {
439 if (!q->u.in.polling) {
440 q->u.in.polling = 1;
441 q->u.in.ack_count = count;
Jan Glaubere85dea02009-03-26 15:24:29 +0100442 q->u.in.ack_start = q->first_to_check;
Jan Glauber50f769d2008-12-25 13:38:47 +0100443 return;
444 }
445
446 /* delete the previous ACK's */
Jan Glaubere85dea02009-03-26 15:24:29 +0100447 set_buf_states(q, q->u.in.ack_start, SLSB_P_INPUT_NOT_INIT,
Jan Glauber50f769d2008-12-25 13:38:47 +0100448 q->u.in.ack_count);
449 q->u.in.ack_count = count;
Jan Glaubere85dea02009-03-26 15:24:29 +0100450 q->u.in.ack_start = q->first_to_check;
Jan Glauber50f769d2008-12-25 13:38:47 +0100451 return;
452 }
453
454 /*
455 * ACK the newest buffer. The ACK will be removed in qdio_stop_polling
456 * or by the next inbound run.
457 */
458 new = add_buf(q->first_to_check, count - 1);
459 if (q->u.in.polling) {
460 /* reset the previous ACK but first set the new one */
461 set_buf_state(q, new, SLSB_P_INPUT_ACK);
Jan Glaubere85dea02009-03-26 15:24:29 +0100462 set_buf_state(q, q->u.in.ack_start, SLSB_P_INPUT_NOT_INIT);
Jan Glauber3fdf1e12009-03-26 15:24:28 +0100463 } else {
Jan Glauber50f769d2008-12-25 13:38:47 +0100464 q->u.in.polling = 1;
Jan Glauber3fdf1e12009-03-26 15:24:28 +0100465 set_buf_state(q, new, SLSB_P_INPUT_ACK);
Jan Glauber50f769d2008-12-25 13:38:47 +0100466 }
467
Jan Glaubere85dea02009-03-26 15:24:29 +0100468 q->u.in.ack_start = new;
Jan Glauber50f769d2008-12-25 13:38:47 +0100469 count--;
470 if (!count)
471 return;
Jan Glauber6541f7b2009-09-22 22:58:40 +0200472 /* need to change ALL buffers to get more interrupts */
473 set_buf_states(q, q->first_to_check, SLSB_P_INPUT_NOT_INIT, count);
Jan Glauber779e6e12008-07-17 17:16:48 +0200474}
475
476static int get_inbound_buffer_frontier(struct qdio_q *q)
477{
478 int count, stop;
479 unsigned char state;
480
481 /*
Jan Glauber779e6e12008-07-17 17:16:48 +0200482 * Don't check 128 buffers, as otherwise qdio_inbound_q_moved
483 * would return 0.
484 */
485 count = min(atomic_read(&q->nr_buf_used), QDIO_MAX_BUFFERS_MASK);
486 stop = add_buf(q->first_to_check, count);
487
Jan Glauber779e6e12008-07-17 17:16:48 +0200488 if (q->first_to_check == stop)
489 goto out;
490
Jan Glauber36e3e722009-06-22 12:08:12 +0200491 /*
492 * No siga sync here, as a PCI or we after a thin interrupt
493 * already sync'ed the queues.
494 */
Jan Glauber50f769d2008-12-25 13:38:47 +0100495 count = get_buf_states(q, q->first_to_check, &state, count, 1);
Jan Glauber779e6e12008-07-17 17:16:48 +0200496 if (!count)
497 goto out;
498
499 switch (state) {
500 case SLSB_P_INPUT_PRIMED:
Jan Glauber50f769d2008-12-25 13:38:47 +0100501 inbound_primed(q, count);
Jan Glauber779e6e12008-07-17 17:16:48 +0200502 q->first_to_check = add_buf(q->first_to_check, count);
Jan Glauber8bcd9b02009-12-18 17:43:26 +0100503 if (atomic_sub(count, &q->nr_buf_used) == 0)
Jan Glauber6486cda2010-01-04 09:05:42 +0100504 qperf_inc(q, inbound_queue_full);
Jan Glauberd3072972010-02-26 22:37:36 +0100505 if (q->irq_ptr->perf_stat_enabled)
506 account_sbals(q, count);
Jan Glauber36e3e722009-06-22 12:08:12 +0200507 break;
Jan Glauber779e6e12008-07-17 17:16:48 +0200508 case SLSB_P_INPUT_ERROR:
Jan Glauber50f769d2008-12-25 13:38:47 +0100509 announce_buffer_error(q, count);
Jan Glauber779e6e12008-07-17 17:16:48 +0200510 /* process the buffer, the upper layer will take care of it */
511 q->first_to_check = add_buf(q->first_to_check, count);
512 atomic_sub(count, &q->nr_buf_used);
Jan Glauberd3072972010-02-26 22:37:36 +0100513 if (q->irq_ptr->perf_stat_enabled)
514 account_sbals_error(q, count);
Jan Glauber779e6e12008-07-17 17:16:48 +0200515 break;
516 case SLSB_CU_INPUT_EMPTY:
517 case SLSB_P_INPUT_NOT_INIT:
518 case SLSB_P_INPUT_ACK:
Jan Glauberd3072972010-02-26 22:37:36 +0100519 if (q->irq_ptr->perf_stat_enabled)
520 q->q_stats.nr_sbal_nop++;
Jan Glauber22f99342008-12-25 13:38:46 +0100521 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "in nop");
Jan Glauber779e6e12008-07-17 17:16:48 +0200522 break;
523 default:
524 BUG();
525 }
526out:
Jan Glauber779e6e12008-07-17 17:16:48 +0200527 return q->first_to_check;
528}
529
Jan Glauber60b5df22009-06-22 12:08:10 +0200530static int qdio_inbound_q_moved(struct qdio_q *q)
Jan Glauber779e6e12008-07-17 17:16:48 +0200531{
532 int bufnr;
533
534 bufnr = get_inbound_buffer_frontier(q);
535
Jan Glaubere85dea02009-03-26 15:24:29 +0100536 if ((bufnr != q->last_move) || q->qdio_error) {
537 q->last_move = bufnr;
Martin Schwidefsky27d71602010-02-26 22:37:38 +0100538 if (!is_thinint_irq(q->irq_ptr) && MACHINE_IS_LPAR)
Jan Glauber779e6e12008-07-17 17:16:48 +0200539 q->u.in.timestamp = get_usecs();
Jan Glauber779e6e12008-07-17 17:16:48 +0200540 return 1;
541 } else
542 return 0;
543}
544
Jan Glauber9a2c1602009-06-22 12:08:11 +0200545static inline int qdio_inbound_q_done(struct qdio_q *q)
Jan Glauber60b5df22009-06-22 12:08:10 +0200546{
547 unsigned char state = 0;
548
549 if (!atomic_read(&q->nr_buf_used))
550 return 1;
551
552 qdio_siga_sync_q(q);
553 get_buf_state(q, q->first_to_check, &state, 0);
554
Ursula Braun4c522282010-02-09 09:46:07 +0100555 if (state == SLSB_P_INPUT_PRIMED || state == SLSB_P_INPUT_ERROR)
Jan Glauber60b5df22009-06-22 12:08:10 +0200556 /* more work coming */
557 return 0;
Jan Glauber9a2c1602009-06-22 12:08:11 +0200558
559 if (is_thinint_irq(q->irq_ptr))
560 return 1;
561
562 /* don't poll under z/VM */
563 if (MACHINE_IS_VM)
564 return 1;
565
566 /*
567 * At this point we know, that inbound first_to_check
568 * has (probably) not moved (see qdio_inbound_processing).
569 */
570 if (get_usecs() > q->u.in.timestamp + QDIO_INPUT_THRESHOLD) {
Jan Glauber1d7e1502009-09-22 22:58:39 +0200571 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "in done:%02x",
Jan Glauber9a2c1602009-06-22 12:08:11 +0200572 q->first_to_check);
573 return 1;
574 } else
575 return 0;
Jan Glauber60b5df22009-06-22 12:08:10 +0200576}
577
578static void qdio_kick_handler(struct qdio_q *q)
Jan Glauber779e6e12008-07-17 17:16:48 +0200579{
Jan Glauber9c8a08d2009-03-26 15:24:32 +0100580 int start = q->first_to_kick;
581 int end = q->first_to_check;
582 int count;
Jan Glauber779e6e12008-07-17 17:16:48 +0200583
584 if (unlikely(q->irq_ptr->state != QDIO_IRQ_STATE_ACTIVE))
585 return;
586
Jan Glauber9c8a08d2009-03-26 15:24:32 +0100587 count = sub_buf(end, start);
588
589 if (q->is_input_q) {
Jan Glauber6486cda2010-01-04 09:05:42 +0100590 qperf_inc(q, inbound_handler);
Jan Glauber1d7e1502009-09-22 22:58:39 +0200591 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "kih s:%02x c:%02x", start, count);
Ursula Braunbd6e8a12010-03-08 12:25:18 +0100592 } else {
Jan Glauber6486cda2010-01-04 09:05:42 +0100593 qperf_inc(q, outbound_handler);
Jan Glauber1d7e1502009-09-22 22:58:39 +0200594 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "koh: s:%02x c:%02x",
595 start, count);
Ursula Braunbd6e8a12010-03-08 12:25:18 +0100596 }
Jan Glauber9c8a08d2009-03-26 15:24:32 +0100597
598 q->handler(q->irq_ptr->cdev, q->qdio_error, q->nr, start, count,
599 q->irq_ptr->int_parm);
Jan Glauber779e6e12008-07-17 17:16:48 +0200600
601 /* for the next time */
Jan Glauber9c8a08d2009-03-26 15:24:32 +0100602 q->first_to_kick = end;
Jan Glauber779e6e12008-07-17 17:16:48 +0200603 q->qdio_error = 0;
604}
605
606static void __qdio_inbound_processing(struct qdio_q *q)
607{
Jan Glauber6486cda2010-01-04 09:05:42 +0100608 qperf_inc(q, tasklet_inbound);
Jan Glauber779e6e12008-07-17 17:16:48 +0200609again:
610 if (!qdio_inbound_q_moved(q))
611 return;
612
Jan Glauber9c8a08d2009-03-26 15:24:32 +0100613 qdio_kick_handler(q);
Jan Glauber779e6e12008-07-17 17:16:48 +0200614
Jan Glauber6486cda2010-01-04 09:05:42 +0100615 if (!qdio_inbound_q_done(q)) {
Jan Glauber779e6e12008-07-17 17:16:48 +0200616 /* means poll time is not yet over */
Jan Glauber6486cda2010-01-04 09:05:42 +0100617 qperf_inc(q, tasklet_inbound_resched);
Jan Glauber779e6e12008-07-17 17:16:48 +0200618 goto again;
Jan Glauber6486cda2010-01-04 09:05:42 +0100619 }
Jan Glauber779e6e12008-07-17 17:16:48 +0200620
621 qdio_stop_polling(q);
622 /*
623 * We need to check again to not lose initiative after
624 * resetting the ACK state.
625 */
Jan Glauber6486cda2010-01-04 09:05:42 +0100626 if (!qdio_inbound_q_done(q)) {
627 qperf_inc(q, tasklet_inbound_resched2);
Jan Glauber779e6e12008-07-17 17:16:48 +0200628 goto again;
Jan Glauber6486cda2010-01-04 09:05:42 +0100629 }
Jan Glauber779e6e12008-07-17 17:16:48 +0200630}
631
Jan Glauber779e6e12008-07-17 17:16:48 +0200632void qdio_inbound_processing(unsigned long data)
633{
634 struct qdio_q *q = (struct qdio_q *)data;
635 __qdio_inbound_processing(q);
636}
637
638static int get_outbound_buffer_frontier(struct qdio_q *q)
639{
640 int count, stop;
641 unsigned char state;
642
643 if (((queue_type(q) != QDIO_IQDIO_QFMT) && !pci_out_supported(q)) ||
644 (queue_type(q) == QDIO_IQDIO_QFMT && multicast_outbound(q)))
645 qdio_siga_sync_q(q);
646
647 /*
648 * Don't check 128 buffers, as otherwise qdio_inbound_q_moved
649 * would return 0.
650 */
651 count = min(atomic_read(&q->nr_buf_used), QDIO_MAX_BUFFERS_MASK);
652 stop = add_buf(q->first_to_check, count);
653
Jan Glauber779e6e12008-07-17 17:16:48 +0200654 if (q->first_to_check == stop)
655 return q->first_to_check;
656
Jan Glauber50f769d2008-12-25 13:38:47 +0100657 count = get_buf_states(q, q->first_to_check, &state, count, 0);
Jan Glauber779e6e12008-07-17 17:16:48 +0200658 if (!count)
659 return q->first_to_check;
660
661 switch (state) {
662 case SLSB_P_OUTPUT_EMPTY:
663 /* the adapter got it */
Jan Glauber1d7e1502009-09-22 22:58:39 +0200664 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "out empty:%1d %02x", q->nr, count);
Jan Glauber779e6e12008-07-17 17:16:48 +0200665
666 atomic_sub(count, &q->nr_buf_used);
667 q->first_to_check = add_buf(q->first_to_check, count);
Jan Glauberd3072972010-02-26 22:37:36 +0100668 if (q->irq_ptr->perf_stat_enabled)
669 account_sbals(q, count);
Jan Glauber36e3e722009-06-22 12:08:12 +0200670 break;
Jan Glauber779e6e12008-07-17 17:16:48 +0200671 case SLSB_P_OUTPUT_ERROR:
Jan Glauber50f769d2008-12-25 13:38:47 +0100672 announce_buffer_error(q, count);
Jan Glauber779e6e12008-07-17 17:16:48 +0200673 /* process the buffer, the upper layer will take care of it */
674 q->first_to_check = add_buf(q->first_to_check, count);
675 atomic_sub(count, &q->nr_buf_used);
Jan Glauberd3072972010-02-26 22:37:36 +0100676 if (q->irq_ptr->perf_stat_enabled)
677 account_sbals_error(q, count);
Jan Glauber779e6e12008-07-17 17:16:48 +0200678 break;
679 case SLSB_CU_OUTPUT_PRIMED:
680 /* the adapter has not fetched the output yet */
Jan Glauberd3072972010-02-26 22:37:36 +0100681 if (q->irq_ptr->perf_stat_enabled)
682 q->q_stats.nr_sbal_nop++;
Jan Glauber22f99342008-12-25 13:38:46 +0100683 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "out primed:%1d", q->nr);
Jan Glauber779e6e12008-07-17 17:16:48 +0200684 break;
685 case SLSB_P_OUTPUT_NOT_INIT:
686 case SLSB_P_OUTPUT_HALTED:
687 break;
688 default:
689 BUG();
690 }
691 return q->first_to_check;
692}
693
694/* all buffers processed? */
695static inline int qdio_outbound_q_done(struct qdio_q *q)
696{
697 return atomic_read(&q->nr_buf_used) == 0;
698}
699
700static inline int qdio_outbound_q_moved(struct qdio_q *q)
701{
702 int bufnr;
703
704 bufnr = get_outbound_buffer_frontier(q);
705
Jan Glaubere85dea02009-03-26 15:24:29 +0100706 if ((bufnr != q->last_move) || q->qdio_error) {
707 q->last_move = bufnr;
Jan Glauber22f99342008-12-25 13:38:46 +0100708 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "out moved:%1d", q->nr);
Jan Glauber779e6e12008-07-17 17:16:48 +0200709 return 1;
710 } else
711 return 0;
712}
713
Jan Glauberd303b6f2009-03-26 15:24:31 +0100714static int qdio_kick_outbound_q(struct qdio_q *q)
Jan Glauber779e6e12008-07-17 17:16:48 +0200715{
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100716 unsigned int busy_bit;
717 int cc;
Jan Glauber779e6e12008-07-17 17:16:48 +0200718
719 if (!need_siga_out(q))
Jan Glauberd303b6f2009-03-26 15:24:31 +0100720 return 0;
Jan Glauber779e6e12008-07-17 17:16:48 +0200721
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100722 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "siga-w:%1d", q->nr);
Jan Glauber6486cda2010-01-04 09:05:42 +0100723 qperf_inc(q, siga_write);
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100724
725 cc = qdio_siga_output(q, &busy_bit);
726 switch (cc) {
Jan Glauber779e6e12008-07-17 17:16:48 +0200727 case 0:
Jan Glauber779e6e12008-07-17 17:16:48 +0200728 break;
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100729 case 2:
730 if (busy_bit) {
731 DBF_ERROR("%4x cc2 REP:%1d", SCH_NO(q), q->nr);
Jan Glauberd303b6f2009-03-26 15:24:31 +0100732 cc |= QDIO_ERROR_SIGA_BUSY;
733 } else
734 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "siga-w cc2:%1d", q->nr);
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100735 break;
736 case 1:
737 case 3:
738 DBF_ERROR("%4x SIGA-W:%1d", SCH_NO(q), cc);
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100739 break;
Jan Glauber779e6e12008-07-17 17:16:48 +0200740 }
Jan Glauberd303b6f2009-03-26 15:24:31 +0100741 return cc;
Jan Glauber779e6e12008-07-17 17:16:48 +0200742}
743
Jan Glauber779e6e12008-07-17 17:16:48 +0200744static void __qdio_outbound_processing(struct qdio_q *q)
745{
Jan Glauber6486cda2010-01-04 09:05:42 +0100746 qperf_inc(q, tasklet_outbound);
Jan Glauber779e6e12008-07-17 17:16:48 +0200747 BUG_ON(atomic_read(&q->nr_buf_used) < 0);
748
749 if (qdio_outbound_q_moved(q))
Jan Glauber9c8a08d2009-03-26 15:24:32 +0100750 qdio_kick_handler(q);
Jan Glauber779e6e12008-07-17 17:16:48 +0200751
Jan Glauberc38f9602009-03-26 15:24:26 +0100752 if (queue_type(q) == QDIO_ZFCP_QFMT)
Jan Glauber779e6e12008-07-17 17:16:48 +0200753 if (!pci_out_supported(q) && !qdio_outbound_q_done(q))
Jan Glauberc38f9602009-03-26 15:24:26 +0100754 goto sched;
Jan Glauber779e6e12008-07-17 17:16:48 +0200755
756 /* bail out for HiperSockets unicast queues */
757 if (queue_type(q) == QDIO_IQDIO_QFMT && !multicast_outbound(q))
758 return;
759
Ursula Braun4bcb3a32008-10-10 21:33:04 +0200760 if ((queue_type(q) == QDIO_IQDIO_QFMT) &&
Jan Glauberc38f9602009-03-26 15:24:26 +0100761 (atomic_read(&q->nr_buf_used)) > QDIO_IQDIO_POLL_LVL)
762 goto sched;
Ursula Braun4bcb3a32008-10-10 21:33:04 +0200763
Jan Glauber779e6e12008-07-17 17:16:48 +0200764 if (q->u.out.pci_out_enabled)
765 return;
766
767 /*
768 * Now we know that queue type is either qeth without pci enabled
769 * or HiperSockets multicast. Make sure buffer switch from PRIMED to
770 * EMPTY is noticed and outbound_handler is called after some time.
771 */
772 if (qdio_outbound_q_done(q))
773 del_timer(&q->u.out.timer);
Jan Glauber6486cda2010-01-04 09:05:42 +0100774 else
775 if (!timer_pending(&q->u.out.timer))
Jan Glauber779e6e12008-07-17 17:16:48 +0200776 mod_timer(&q->u.out.timer, jiffies + 10 * HZ);
Jan Glauberc38f9602009-03-26 15:24:26 +0100777 return;
778
779sched:
780 if (unlikely(q->irq_ptr->state == QDIO_IRQ_STATE_STOPPED))
781 return;
782 tasklet_schedule(&q->tasklet);
Jan Glauber779e6e12008-07-17 17:16:48 +0200783}
784
785/* outbound tasklet */
786void qdio_outbound_processing(unsigned long data)
787{
788 struct qdio_q *q = (struct qdio_q *)data;
789 __qdio_outbound_processing(q);
790}
791
792void qdio_outbound_timer(unsigned long data)
793{
794 struct qdio_q *q = (struct qdio_q *)data;
Jan Glauberc38f9602009-03-26 15:24:26 +0100795
796 if (unlikely(q->irq_ptr->state == QDIO_IRQ_STATE_STOPPED))
797 return;
Jan Glauber779e6e12008-07-17 17:16:48 +0200798 tasklet_schedule(&q->tasklet);
799}
800
Jan Glauber60b5df22009-06-22 12:08:10 +0200801static inline void qdio_check_outbound_after_thinint(struct qdio_q *q)
Jan Glauber779e6e12008-07-17 17:16:48 +0200802{
803 struct qdio_q *out;
804 int i;
805
806 if (!pci_out_supported(q))
807 return;
808
809 for_each_output_queue(q->irq_ptr, out, i)
810 if (!qdio_outbound_q_done(out))
811 tasklet_schedule(&out->tasklet);
812}
813
Jan Glauber60b5df22009-06-22 12:08:10 +0200814static void __tiqdio_inbound_processing(struct qdio_q *q)
815{
Jan Glauber6486cda2010-01-04 09:05:42 +0100816 qperf_inc(q, tasklet_inbound);
Jan Glauber60b5df22009-06-22 12:08:10 +0200817 qdio_sync_after_thinint(q);
818
819 /*
820 * The interrupt could be caused by a PCI request. Check the
821 * PCI capable outbound queues.
822 */
823 qdio_check_outbound_after_thinint(q);
824
825 if (!qdio_inbound_q_moved(q))
826 return;
827
828 qdio_kick_handler(q);
829
Jan Glauber9a2c1602009-06-22 12:08:11 +0200830 if (!qdio_inbound_q_done(q)) {
Jan Glauber6486cda2010-01-04 09:05:42 +0100831 qperf_inc(q, tasklet_inbound_resched);
Jan Glaubere2910bc2009-09-11 10:28:19 +0200832 if (likely(q->irq_ptr->state != QDIO_IRQ_STATE_STOPPED)) {
Jan Glauber60b5df22009-06-22 12:08:10 +0200833 tasklet_schedule(&q->tasklet);
Jan Glaubere2910bc2009-09-11 10:28:19 +0200834 return;
835 }
Jan Glauber60b5df22009-06-22 12:08:10 +0200836 }
837
838 qdio_stop_polling(q);
839 /*
840 * We need to check again to not lose initiative after
841 * resetting the ACK state.
842 */
Jan Glauber9a2c1602009-06-22 12:08:11 +0200843 if (!qdio_inbound_q_done(q)) {
Jan Glauber6486cda2010-01-04 09:05:42 +0100844 qperf_inc(q, tasklet_inbound_resched2);
Jan Glauber60b5df22009-06-22 12:08:10 +0200845 if (likely(q->irq_ptr->state != QDIO_IRQ_STATE_STOPPED))
846 tasklet_schedule(&q->tasklet);
847 }
848}
849
850void tiqdio_inbound_processing(unsigned long data)
851{
852 struct qdio_q *q = (struct qdio_q *)data;
853 __tiqdio_inbound_processing(q);
854}
855
Jan Glauber779e6e12008-07-17 17:16:48 +0200856static inline void qdio_set_state(struct qdio_irq *irq_ptr,
857 enum qdio_irq_states state)
858{
Jan Glauber22f99342008-12-25 13:38:46 +0100859 DBF_DEV_EVENT(DBF_INFO, irq_ptr, "newstate: %1d", state);
Jan Glauber779e6e12008-07-17 17:16:48 +0200860
861 irq_ptr->state = state;
862 mb();
863}
864
Jan Glauber22f99342008-12-25 13:38:46 +0100865static void qdio_irq_check_sense(struct qdio_irq *irq_ptr, struct irb *irb)
Jan Glauber779e6e12008-07-17 17:16:48 +0200866{
Jan Glauber779e6e12008-07-17 17:16:48 +0200867 if (irb->esw.esw0.erw.cons) {
Jan Glauber22f99342008-12-25 13:38:46 +0100868 DBF_ERROR("%4x sense:", irq_ptr->schid.sch_no);
869 DBF_ERROR_HEX(irb, 64);
870 DBF_ERROR_HEX(irb->ecw, 64);
Jan Glauber779e6e12008-07-17 17:16:48 +0200871 }
872}
873
874/* PCI interrupt handler */
875static void qdio_int_handler_pci(struct qdio_irq *irq_ptr)
876{
877 int i;
878 struct qdio_q *q;
879
Jan Glauberc38f9602009-03-26 15:24:26 +0100880 if (unlikely(irq_ptr->state == QDIO_IRQ_STATE_STOPPED))
881 return;
882
Jan Glauber779e6e12008-07-17 17:16:48 +0200883 for_each_input_queue(irq_ptr, q, i)
884 tasklet_schedule(&q->tasklet);
885
886 if (!(irq_ptr->qib.ac & QIB_AC_OUTBOUND_PCI_SUPPORTED))
887 return;
888
889 for_each_output_queue(irq_ptr, q, i) {
890 if (qdio_outbound_q_done(q))
891 continue;
892
893 if (!siga_syncs_out_pci(q))
894 qdio_siga_sync_q(q);
895
896 tasklet_schedule(&q->tasklet);
897 }
898}
899
900static void qdio_handle_activate_check(struct ccw_device *cdev,
901 unsigned long intparm, int cstat, int dstat)
902{
903 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
904 struct qdio_q *q;
Jan Glauber779e6e12008-07-17 17:16:48 +0200905
Jan Glauber22f99342008-12-25 13:38:46 +0100906 DBF_ERROR("%4x ACT CHECK", irq_ptr->schid.sch_no);
907 DBF_ERROR("intp :%lx", intparm);
908 DBF_ERROR("ds: %2x cs:%2x", dstat, cstat);
Jan Glauber779e6e12008-07-17 17:16:48 +0200909
910 if (irq_ptr->nr_input_qs) {
911 q = irq_ptr->input_qs[0];
912 } else if (irq_ptr->nr_output_qs) {
913 q = irq_ptr->output_qs[0];
914 } else {
915 dump_stack();
916 goto no_handler;
917 }
918 q->handler(q->irq_ptr->cdev, QDIO_ERROR_ACTIVATE_CHECK_CONDITION,
919 0, -1, -1, irq_ptr->int_parm);
920no_handler:
921 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_STOPPED);
922}
923
Jan Glauber779e6e12008-07-17 17:16:48 +0200924static void qdio_establish_handle_irq(struct ccw_device *cdev, int cstat,
925 int dstat)
926{
927 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
Jan Glauber779e6e12008-07-17 17:16:48 +0200928
Jan Glauber22f99342008-12-25 13:38:46 +0100929 DBF_DEV_EVENT(DBF_INFO, irq_ptr, "qest irq");
Jan Glauber4c575422009-06-12 10:26:28 +0200930
931 if (cstat)
932 goto error;
933 if (dstat & ~(DEV_STAT_DEV_END | DEV_STAT_CHN_END))
934 goto error;
935 if (!(dstat & DEV_STAT_DEV_END))
936 goto error;
937 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_ESTABLISHED);
938 return;
939
940error:
941 DBF_ERROR("%4x EQ:error", irq_ptr->schid.sch_no);
942 DBF_ERROR("ds: %2x cs:%2x", dstat, cstat);
943 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_ERR);
Jan Glauber779e6e12008-07-17 17:16:48 +0200944}
945
946/* qdio interrupt handler */
947void qdio_int_handler(struct ccw_device *cdev, unsigned long intparm,
948 struct irb *irb)
949{
950 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
951 int cstat, dstat;
Jan Glauber779e6e12008-07-17 17:16:48 +0200952
Jan Glauber779e6e12008-07-17 17:16:48 +0200953 if (!intparm || !irq_ptr) {
Jan Glauber22f99342008-12-25 13:38:46 +0100954 DBF_ERROR("qint:%4x", cdev->private->schid.sch_no);
Jan Glauber779e6e12008-07-17 17:16:48 +0200955 return;
956 }
957
Jan Glauber09a308f2010-05-17 10:00:14 +0200958 if (irq_ptr->perf_stat_enabled)
959 irq_ptr->perf_stat.qdio_int++;
960
Jan Glauber779e6e12008-07-17 17:16:48 +0200961 if (IS_ERR(irb)) {
962 switch (PTR_ERR(irb)) {
963 case -EIO:
Jan Glauber22f99342008-12-25 13:38:46 +0100964 DBF_ERROR("%4x IO error", irq_ptr->schid.sch_no);
Jan Glauber75cb71f2009-04-14 15:36:22 +0200965 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_ERR);
966 wake_up(&cdev->private->wait_q);
Jan Glauber779e6e12008-07-17 17:16:48 +0200967 return;
968 default:
969 WARN_ON(1);
970 return;
971 }
972 }
Jan Glauber22f99342008-12-25 13:38:46 +0100973 qdio_irq_check_sense(irq_ptr, irb);
Jan Glauber779e6e12008-07-17 17:16:48 +0200974 cstat = irb->scsw.cmd.cstat;
975 dstat = irb->scsw.cmd.dstat;
976
977 switch (irq_ptr->state) {
978 case QDIO_IRQ_STATE_INACTIVE:
979 qdio_establish_handle_irq(cdev, cstat, dstat);
980 break;
Jan Glauber779e6e12008-07-17 17:16:48 +0200981 case QDIO_IRQ_STATE_CLEANUP:
982 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_INACTIVE);
983 break;
Jan Glauber779e6e12008-07-17 17:16:48 +0200984 case QDIO_IRQ_STATE_ESTABLISHED:
985 case QDIO_IRQ_STATE_ACTIVE:
986 if (cstat & SCHN_STAT_PCI) {
987 qdio_int_handler_pci(irq_ptr);
Jan Glauber779e6e12008-07-17 17:16:48 +0200988 return;
989 }
Jan Glauber4c575422009-06-12 10:26:28 +0200990 if (cstat || dstat)
Jan Glauber779e6e12008-07-17 17:16:48 +0200991 qdio_handle_activate_check(cdev, intparm, cstat,
992 dstat);
Jan Glauber4c575422009-06-12 10:26:28 +0200993 break;
Jan Glauber959153d2010-02-09 09:46:08 +0100994 case QDIO_IRQ_STATE_STOPPED:
995 break;
Jan Glauber779e6e12008-07-17 17:16:48 +0200996 default:
997 WARN_ON(1);
998 }
999 wake_up(&cdev->private->wait_q);
1000}
1001
1002/**
1003 * qdio_get_ssqd_desc - get qdio subchannel description
1004 * @cdev: ccw device to get description for
Jan Glauberbbd50e12008-12-25 13:38:43 +01001005 * @data: where to store the ssqd
Jan Glauber779e6e12008-07-17 17:16:48 +02001006 *
Jan Glauberbbd50e12008-12-25 13:38:43 +01001007 * Returns 0 or an error code. The results of the chsc are stored in the
1008 * specified structure.
Jan Glauber779e6e12008-07-17 17:16:48 +02001009 */
Jan Glauberbbd50e12008-12-25 13:38:43 +01001010int qdio_get_ssqd_desc(struct ccw_device *cdev,
1011 struct qdio_ssqd_desc *data)
Jan Glauber779e6e12008-07-17 17:16:48 +02001012{
Jan Glauber779e6e12008-07-17 17:16:48 +02001013
Jan Glauberbbd50e12008-12-25 13:38:43 +01001014 if (!cdev || !cdev->private)
1015 return -EINVAL;
1016
Jan Glauber22f99342008-12-25 13:38:46 +01001017 DBF_EVENT("get ssqd:%4x", cdev->private->schid.sch_no);
Jan Glauberbbd50e12008-12-25 13:38:43 +01001018 return qdio_setup_get_ssqd(NULL, &cdev->private->schid, data);
Jan Glauber779e6e12008-07-17 17:16:48 +02001019}
1020EXPORT_SYMBOL_GPL(qdio_get_ssqd_desc);
1021
1022/**
1023 * qdio_cleanup - shutdown queues and free data structures
1024 * @cdev: associated ccw device
1025 * @how: use halt or clear to shutdown
1026 *
Jan Glauber700e9822009-03-26 15:24:27 +01001027 * This function calls qdio_shutdown() for @cdev with method @how.
1028 * and qdio_free(). The qdio_free() return value is ignored since
1029 * !irq_ptr is already checked.
Jan Glauber779e6e12008-07-17 17:16:48 +02001030 */
1031int qdio_cleanup(struct ccw_device *cdev, int how)
1032{
Jan Glauber22f99342008-12-25 13:38:46 +01001033 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
Jan Glauber779e6e12008-07-17 17:16:48 +02001034 int rc;
1035
Jan Glauber779e6e12008-07-17 17:16:48 +02001036 if (!irq_ptr)
1037 return -ENODEV;
1038
Jan Glauber779e6e12008-07-17 17:16:48 +02001039 rc = qdio_shutdown(cdev, how);
Jan Glauber700e9822009-03-26 15:24:27 +01001040
1041 qdio_free(cdev);
Jan Glauber779e6e12008-07-17 17:16:48 +02001042 return rc;
1043}
1044EXPORT_SYMBOL_GPL(qdio_cleanup);
1045
1046static void qdio_shutdown_queues(struct ccw_device *cdev)
1047{
1048 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
1049 struct qdio_q *q;
1050 int i;
1051
1052 for_each_input_queue(irq_ptr, q, i)
Jan Glauberc38f9602009-03-26 15:24:26 +01001053 tasklet_kill(&q->tasklet);
Jan Glauber779e6e12008-07-17 17:16:48 +02001054
1055 for_each_output_queue(irq_ptr, q, i) {
Jan Glauber779e6e12008-07-17 17:16:48 +02001056 del_timer(&q->u.out.timer);
Jan Glauberc38f9602009-03-26 15:24:26 +01001057 tasklet_kill(&q->tasklet);
Jan Glauber779e6e12008-07-17 17:16:48 +02001058 }
1059}
1060
1061/**
1062 * qdio_shutdown - shut down a qdio subchannel
1063 * @cdev: associated ccw device
1064 * @how: use halt or clear to shutdown
1065 */
1066int qdio_shutdown(struct ccw_device *cdev, int how)
1067{
Jan Glauber22f99342008-12-25 13:38:46 +01001068 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
Jan Glauber779e6e12008-07-17 17:16:48 +02001069 int rc;
1070 unsigned long flags;
Jan Glauber779e6e12008-07-17 17:16:48 +02001071
Jan Glauber779e6e12008-07-17 17:16:48 +02001072 if (!irq_ptr)
1073 return -ENODEV;
1074
Jan Glauberb4547402009-03-26 15:24:24 +01001075 BUG_ON(irqs_disabled());
Jan Glauber22f99342008-12-25 13:38:46 +01001076 DBF_EVENT("qshutdown:%4x", cdev->private->schid.sch_no);
1077
Jan Glauber779e6e12008-07-17 17:16:48 +02001078 mutex_lock(&irq_ptr->setup_mutex);
1079 /*
1080 * Subchannel was already shot down. We cannot prevent being called
1081 * twice since cio may trigger a shutdown asynchronously.
1082 */
1083 if (irq_ptr->state == QDIO_IRQ_STATE_INACTIVE) {
1084 mutex_unlock(&irq_ptr->setup_mutex);
1085 return 0;
1086 }
1087
Jan Glauberc38f9602009-03-26 15:24:26 +01001088 /*
1089 * Indicate that the device is going down. Scheduling the queue
1090 * tasklets is forbidden from here on.
1091 */
1092 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_STOPPED);
1093
Jan Glauber779e6e12008-07-17 17:16:48 +02001094 tiqdio_remove_input_queues(irq_ptr);
1095 qdio_shutdown_queues(cdev);
1096 qdio_shutdown_debug_entries(irq_ptr, cdev);
1097
1098 /* cleanup subchannel */
1099 spin_lock_irqsave(get_ccwdev_lock(cdev), flags);
1100
1101 if (how & QDIO_FLAG_CLEANUP_USING_CLEAR)
1102 rc = ccw_device_clear(cdev, QDIO_DOING_CLEANUP);
1103 else
1104 /* default behaviour is halt */
1105 rc = ccw_device_halt(cdev, QDIO_DOING_CLEANUP);
1106 if (rc) {
Jan Glauber22f99342008-12-25 13:38:46 +01001107 DBF_ERROR("%4x SHUTD ERR", irq_ptr->schid.sch_no);
1108 DBF_ERROR("rc:%4d", rc);
Jan Glauber779e6e12008-07-17 17:16:48 +02001109 goto no_cleanup;
1110 }
1111
1112 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_CLEANUP);
1113 spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);
1114 wait_event_interruptible_timeout(cdev->private->wait_q,
1115 irq_ptr->state == QDIO_IRQ_STATE_INACTIVE ||
1116 irq_ptr->state == QDIO_IRQ_STATE_ERR,
1117 10 * HZ);
1118 spin_lock_irqsave(get_ccwdev_lock(cdev), flags);
1119
1120no_cleanup:
1121 qdio_shutdown_thinint(irq_ptr);
1122
1123 /* restore interrupt handler */
1124 if ((void *)cdev->handler == (void *)qdio_int_handler)
1125 cdev->handler = irq_ptr->orig_handler;
1126 spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);
1127
1128 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_INACTIVE);
1129 mutex_unlock(&irq_ptr->setup_mutex);
Jan Glauber779e6e12008-07-17 17:16:48 +02001130 if (rc)
1131 return rc;
1132 return 0;
1133}
1134EXPORT_SYMBOL_GPL(qdio_shutdown);
1135
1136/**
1137 * qdio_free - free data structures for a qdio subchannel
1138 * @cdev: associated ccw device
1139 */
1140int qdio_free(struct ccw_device *cdev)
1141{
Jan Glauber22f99342008-12-25 13:38:46 +01001142 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
Jan Glauber779e6e12008-07-17 17:16:48 +02001143
Jan Glauber779e6e12008-07-17 17:16:48 +02001144 if (!irq_ptr)
1145 return -ENODEV;
1146
Jan Glauber22f99342008-12-25 13:38:46 +01001147 DBF_EVENT("qfree:%4x", cdev->private->schid.sch_no);
Jan Glauber779e6e12008-07-17 17:16:48 +02001148 mutex_lock(&irq_ptr->setup_mutex);
Jan Glauber22f99342008-12-25 13:38:46 +01001149
1150 if (irq_ptr->debug_area != NULL) {
1151 debug_unregister(irq_ptr->debug_area);
1152 irq_ptr->debug_area = NULL;
1153 }
Jan Glauber779e6e12008-07-17 17:16:48 +02001154 cdev->private->qdio_data = NULL;
1155 mutex_unlock(&irq_ptr->setup_mutex);
1156
1157 qdio_release_memory(irq_ptr);
1158 return 0;
1159}
1160EXPORT_SYMBOL_GPL(qdio_free);
1161
1162/**
1163 * qdio_initialize - allocate and establish queues for a qdio subchannel
1164 * @init_data: initialization data
1165 *
1166 * This function first allocates queues via qdio_allocate() and on success
1167 * establishes them via qdio_establish().
1168 */
1169int qdio_initialize(struct qdio_initialize *init_data)
1170{
1171 int rc;
Jan Glauber779e6e12008-07-17 17:16:48 +02001172
1173 rc = qdio_allocate(init_data);
1174 if (rc)
1175 return rc;
1176
1177 rc = qdio_establish(init_data);
1178 if (rc)
1179 qdio_free(init_data->cdev);
1180 return rc;
1181}
1182EXPORT_SYMBOL_GPL(qdio_initialize);
1183
1184/**
1185 * qdio_allocate - allocate qdio queues and associated data
1186 * @init_data: initialization data
1187 */
1188int qdio_allocate(struct qdio_initialize *init_data)
1189{
1190 struct qdio_irq *irq_ptr;
Jan Glauber779e6e12008-07-17 17:16:48 +02001191
Jan Glauber22f99342008-12-25 13:38:46 +01001192 DBF_EVENT("qallocate:%4x", init_data->cdev->private->schid.sch_no);
Jan Glauber779e6e12008-07-17 17:16:48 +02001193
1194 if ((init_data->no_input_qs && !init_data->input_handler) ||
1195 (init_data->no_output_qs && !init_data->output_handler))
1196 return -EINVAL;
1197
1198 if ((init_data->no_input_qs > QDIO_MAX_QUEUES_PER_IRQ) ||
1199 (init_data->no_output_qs > QDIO_MAX_QUEUES_PER_IRQ))
1200 return -EINVAL;
1201
1202 if ((!init_data->input_sbal_addr_array) ||
1203 (!init_data->output_sbal_addr_array))
1204 return -EINVAL;
1205
Jan Glauber779e6e12008-07-17 17:16:48 +02001206 /* irq_ptr must be in GFP_DMA since it contains ccw1.cda */
1207 irq_ptr = (void *) get_zeroed_page(GFP_KERNEL | GFP_DMA);
1208 if (!irq_ptr)
1209 goto out_err;
Jan Glauber779e6e12008-07-17 17:16:48 +02001210
1211 mutex_init(&irq_ptr->setup_mutex);
Jan Glauber22f99342008-12-25 13:38:46 +01001212 qdio_allocate_dbf(init_data, irq_ptr);
Jan Glauber779e6e12008-07-17 17:16:48 +02001213
1214 /*
1215 * Allocate a page for the chsc calls in qdio_establish.
1216 * Must be pre-allocated since a zfcp recovery will call
1217 * qdio_establish. In case of low memory and swap on a zfcp disk
1218 * we may not be able to allocate memory otherwise.
1219 */
1220 irq_ptr->chsc_page = get_zeroed_page(GFP_KERNEL);
1221 if (!irq_ptr->chsc_page)
1222 goto out_rel;
1223
1224 /* qdr is used in ccw1.cda which is u32 */
Jan Glauber3b8e3002008-08-01 16:39:17 +02001225 irq_ptr->qdr = (struct qdr *) get_zeroed_page(GFP_KERNEL | GFP_DMA);
Jan Glauber779e6e12008-07-17 17:16:48 +02001226 if (!irq_ptr->qdr)
1227 goto out_rel;
1228 WARN_ON((unsigned long)irq_ptr->qdr & 0xfff);
1229
Jan Glauber779e6e12008-07-17 17:16:48 +02001230 if (qdio_allocate_qs(irq_ptr, init_data->no_input_qs,
1231 init_data->no_output_qs))
1232 goto out_rel;
1233
1234 init_data->cdev->private->qdio_data = irq_ptr;
1235 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_INACTIVE);
1236 return 0;
1237out_rel:
1238 qdio_release_memory(irq_ptr);
1239out_err:
1240 return -ENOMEM;
1241}
1242EXPORT_SYMBOL_GPL(qdio_allocate);
1243
1244/**
1245 * qdio_establish - establish queues on a qdio subchannel
1246 * @init_data: initialization data
1247 */
1248int qdio_establish(struct qdio_initialize *init_data)
1249{
Jan Glauber779e6e12008-07-17 17:16:48 +02001250 struct qdio_irq *irq_ptr;
1251 struct ccw_device *cdev = init_data->cdev;
1252 unsigned long saveflags;
1253 int rc;
1254
Jan Glauber22f99342008-12-25 13:38:46 +01001255 DBF_EVENT("qestablish:%4x", cdev->private->schid.sch_no);
Jan Glauber58eb27c2008-08-21 19:46:34 +02001256
Jan Glauber779e6e12008-07-17 17:16:48 +02001257 irq_ptr = cdev->private->qdio_data;
1258 if (!irq_ptr)
1259 return -ENODEV;
1260
1261 if (cdev->private->state != DEV_STATE_ONLINE)
1262 return -EINVAL;
1263
Jan Glauber779e6e12008-07-17 17:16:48 +02001264 mutex_lock(&irq_ptr->setup_mutex);
1265 qdio_setup_irq(init_data);
1266
1267 rc = qdio_establish_thinint(irq_ptr);
1268 if (rc) {
1269 mutex_unlock(&irq_ptr->setup_mutex);
1270 qdio_shutdown(cdev, QDIO_FLAG_CLEANUP_USING_CLEAR);
1271 return rc;
1272 }
1273
1274 /* establish q */
1275 irq_ptr->ccw.cmd_code = irq_ptr->equeue.cmd;
1276 irq_ptr->ccw.flags = CCW_FLAG_SLI;
1277 irq_ptr->ccw.count = irq_ptr->equeue.count;
1278 irq_ptr->ccw.cda = (u32)((addr_t)irq_ptr->qdr);
1279
1280 spin_lock_irqsave(get_ccwdev_lock(cdev), saveflags);
1281 ccw_device_set_options_mask(cdev, 0);
1282
1283 rc = ccw_device_start(cdev, &irq_ptr->ccw, QDIO_DOING_ESTABLISH, 0, 0);
1284 if (rc) {
Jan Glauber22f99342008-12-25 13:38:46 +01001285 DBF_ERROR("%4x est IO ERR", irq_ptr->schid.sch_no);
1286 DBF_ERROR("rc:%4x", rc);
Jan Glauber779e6e12008-07-17 17:16:48 +02001287 }
1288 spin_unlock_irqrestore(get_ccwdev_lock(cdev), saveflags);
1289
1290 if (rc) {
1291 mutex_unlock(&irq_ptr->setup_mutex);
1292 qdio_shutdown(cdev, QDIO_FLAG_CLEANUP_USING_CLEAR);
1293 return rc;
1294 }
1295
1296 wait_event_interruptible_timeout(cdev->private->wait_q,
1297 irq_ptr->state == QDIO_IRQ_STATE_ESTABLISHED ||
1298 irq_ptr->state == QDIO_IRQ_STATE_ERR, HZ);
1299
1300 if (irq_ptr->state != QDIO_IRQ_STATE_ESTABLISHED) {
1301 mutex_unlock(&irq_ptr->setup_mutex);
1302 qdio_shutdown(cdev, QDIO_FLAG_CLEANUP_USING_CLEAR);
1303 return -EIO;
1304 }
1305
1306 qdio_setup_ssqd_info(irq_ptr);
Jan Glauber22f99342008-12-25 13:38:46 +01001307 DBF_EVENT("qDmmwc:%2x", irq_ptr->ssqd_desc.mmwc);
1308 DBF_EVENT("qib ac:%4x", irq_ptr->qib.ac);
Jan Glauber779e6e12008-07-17 17:16:48 +02001309
1310 /* qebsm is now setup if available, initialize buffer states */
1311 qdio_init_buf_states(irq_ptr);
1312
1313 mutex_unlock(&irq_ptr->setup_mutex);
1314 qdio_print_subchannel_info(irq_ptr, cdev);
1315 qdio_setup_debug_entries(irq_ptr, cdev);
1316 return 0;
1317}
1318EXPORT_SYMBOL_GPL(qdio_establish);
1319
1320/**
1321 * qdio_activate - activate queues on a qdio subchannel
1322 * @cdev: associated cdev
1323 */
1324int qdio_activate(struct ccw_device *cdev)
1325{
1326 struct qdio_irq *irq_ptr;
1327 int rc;
1328 unsigned long saveflags;
Jan Glauber779e6e12008-07-17 17:16:48 +02001329
Jan Glauber22f99342008-12-25 13:38:46 +01001330 DBF_EVENT("qactivate:%4x", cdev->private->schid.sch_no);
Jan Glauber58eb27c2008-08-21 19:46:34 +02001331
Jan Glauber779e6e12008-07-17 17:16:48 +02001332 irq_ptr = cdev->private->qdio_data;
1333 if (!irq_ptr)
1334 return -ENODEV;
1335
1336 if (cdev->private->state != DEV_STATE_ONLINE)
1337 return -EINVAL;
1338
1339 mutex_lock(&irq_ptr->setup_mutex);
1340 if (irq_ptr->state == QDIO_IRQ_STATE_INACTIVE) {
1341 rc = -EBUSY;
1342 goto out;
1343 }
1344
Jan Glauber779e6e12008-07-17 17:16:48 +02001345 irq_ptr->ccw.cmd_code = irq_ptr->aqueue.cmd;
1346 irq_ptr->ccw.flags = CCW_FLAG_SLI;
1347 irq_ptr->ccw.count = irq_ptr->aqueue.count;
1348 irq_ptr->ccw.cda = 0;
1349
1350 spin_lock_irqsave(get_ccwdev_lock(cdev), saveflags);
1351 ccw_device_set_options(cdev, CCWDEV_REPORT_ALL);
1352
1353 rc = ccw_device_start(cdev, &irq_ptr->ccw, QDIO_DOING_ACTIVATE,
1354 0, DOIO_DENY_PREFETCH);
1355 if (rc) {
Jan Glauber22f99342008-12-25 13:38:46 +01001356 DBF_ERROR("%4x act IO ERR", irq_ptr->schid.sch_no);
1357 DBF_ERROR("rc:%4x", rc);
Jan Glauber779e6e12008-07-17 17:16:48 +02001358 }
1359 spin_unlock_irqrestore(get_ccwdev_lock(cdev), saveflags);
1360
1361 if (rc)
1362 goto out;
1363
1364 if (is_thinint_irq(irq_ptr))
1365 tiqdio_add_input_queues(irq_ptr);
1366
1367 /* wait for subchannel to become active */
1368 msleep(5);
1369
1370 switch (irq_ptr->state) {
1371 case QDIO_IRQ_STATE_STOPPED:
1372 case QDIO_IRQ_STATE_ERR:
Jan Glaubere4c14e22009-03-26 15:24:25 +01001373 rc = -EIO;
1374 break;
Jan Glauber779e6e12008-07-17 17:16:48 +02001375 default:
1376 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_ACTIVE);
1377 rc = 0;
1378 }
1379out:
1380 mutex_unlock(&irq_ptr->setup_mutex);
1381 return rc;
1382}
1383EXPORT_SYMBOL_GPL(qdio_activate);
1384
1385static inline int buf_in_between(int bufnr, int start, int count)
1386{
1387 int end = add_buf(start, count);
1388
1389 if (end > start) {
1390 if (bufnr >= start && bufnr < end)
1391 return 1;
1392 else
1393 return 0;
1394 }
1395
1396 /* wrap-around case */
1397 if ((bufnr >= start && bufnr <= QDIO_MAX_BUFFERS_PER_Q) ||
1398 (bufnr < end))
1399 return 1;
1400 else
1401 return 0;
1402}
1403
1404/**
1405 * handle_inbound - reset processed input buffers
1406 * @q: queue containing the buffers
1407 * @callflags: flags
1408 * @bufnr: first buffer to process
1409 * @count: how many buffers are emptied
1410 */
Jan Glauberd303b6f2009-03-26 15:24:31 +01001411static int handle_inbound(struct qdio_q *q, unsigned int callflags,
1412 int bufnr, int count)
Jan Glauber779e6e12008-07-17 17:16:48 +02001413{
Jan Glauberd303b6f2009-03-26 15:24:31 +01001414 int used, diff;
Jan Glauber779e6e12008-07-17 17:16:48 +02001415
Jan Glauber6486cda2010-01-04 09:05:42 +01001416 qperf_inc(q, inbound_call);
1417
Jan Glauber50f769d2008-12-25 13:38:47 +01001418 if (!q->u.in.polling)
1419 goto set;
1420
1421 /* protect against stop polling setting an ACK for an emptied slsb */
1422 if (count == QDIO_MAX_BUFFERS_PER_Q) {
1423 /* overwriting everything, just delete polling status */
1424 q->u.in.polling = 0;
1425 q->u.in.ack_count = 0;
1426 goto set;
Jan Glaubere85dea02009-03-26 15:24:29 +01001427 } else if (buf_in_between(q->u.in.ack_start, bufnr, count)) {
Jan Glauber50f769d2008-12-25 13:38:47 +01001428 if (is_qebsm(q)) {
Jan Glaubere85dea02009-03-26 15:24:29 +01001429 /* partial overwrite, just update ack_start */
Jan Glauber50f769d2008-12-25 13:38:47 +01001430 diff = add_buf(bufnr, count);
Jan Glaubere85dea02009-03-26 15:24:29 +01001431 diff = sub_buf(diff, q->u.in.ack_start);
Jan Glauber50f769d2008-12-25 13:38:47 +01001432 q->u.in.ack_count -= diff;
1433 if (q->u.in.ack_count <= 0) {
1434 q->u.in.polling = 0;
1435 q->u.in.ack_count = 0;
Jan Glauber50f769d2008-12-25 13:38:47 +01001436 goto set;
1437 }
Jan Glaubere85dea02009-03-26 15:24:29 +01001438 q->u.in.ack_start = add_buf(q->u.in.ack_start, diff);
Jan Glauber50f769d2008-12-25 13:38:47 +01001439 }
1440 else
1441 /* the only ACK will be deleted, so stop polling */
Jan Glauber779e6e12008-07-17 17:16:48 +02001442 q->u.in.polling = 0;
Jan Glauber50f769d2008-12-25 13:38:47 +01001443 }
Jan Glauber779e6e12008-07-17 17:16:48 +02001444
Jan Glauber50f769d2008-12-25 13:38:47 +01001445set:
Jan Glauber779e6e12008-07-17 17:16:48 +02001446 count = set_buf_states(q, bufnr, SLSB_CU_INPUT_EMPTY, count);
Jan Glauber779e6e12008-07-17 17:16:48 +02001447
1448 used = atomic_add_return(count, &q->nr_buf_used) - count;
1449 BUG_ON(used + count > QDIO_MAX_BUFFERS_PER_Q);
1450
1451 /* no need to signal as long as the adapter had free buffers */
1452 if (used)
Jan Glauberd303b6f2009-03-26 15:24:31 +01001453 return 0;
Jan Glauber779e6e12008-07-17 17:16:48 +02001454
Jan Glauberd303b6f2009-03-26 15:24:31 +01001455 if (need_siga_in(q))
1456 return qdio_siga_input(q);
1457 return 0;
Jan Glauber779e6e12008-07-17 17:16:48 +02001458}
1459
1460/**
1461 * handle_outbound - process filled outbound buffers
1462 * @q: queue containing the buffers
1463 * @callflags: flags
1464 * @bufnr: first buffer to process
1465 * @count: how many buffers are filled
1466 */
Jan Glauberd303b6f2009-03-26 15:24:31 +01001467static int handle_outbound(struct qdio_q *q, unsigned int callflags,
1468 int bufnr, int count)
Jan Glauber779e6e12008-07-17 17:16:48 +02001469{
1470 unsigned char state;
Jan Glauberd303b6f2009-03-26 15:24:31 +01001471 int used, rc = 0;
Jan Glauber779e6e12008-07-17 17:16:48 +02001472
Jan Glauber6486cda2010-01-04 09:05:42 +01001473 qperf_inc(q, outbound_call);
Jan Glauber779e6e12008-07-17 17:16:48 +02001474
1475 count = set_buf_states(q, bufnr, SLSB_CU_OUTPUT_PRIMED, count);
1476 used = atomic_add_return(count, &q->nr_buf_used);
1477 BUG_ON(used > QDIO_MAX_BUFFERS_PER_Q);
1478
Jan Glauber6486cda2010-01-04 09:05:42 +01001479 if (callflags & QDIO_FLAG_PCI_OUT) {
Jan Glauber779e6e12008-07-17 17:16:48 +02001480 q->u.out.pci_out_enabled = 1;
Jan Glauber6486cda2010-01-04 09:05:42 +01001481 qperf_inc(q, pci_request_int);
1482 }
Jan Glauber779e6e12008-07-17 17:16:48 +02001483 else
1484 q->u.out.pci_out_enabled = 0;
1485
1486 if (queue_type(q) == QDIO_IQDIO_QFMT) {
1487 if (multicast_outbound(q))
Jan Glauberd303b6f2009-03-26 15:24:31 +01001488 rc = qdio_kick_outbound_q(q);
Jan Glauber779e6e12008-07-17 17:16:48 +02001489 else
Klaus-Dieter Wacker7a0f4752008-10-10 21:33:18 +02001490 if ((q->irq_ptr->ssqd_desc.mmwc > 1) &&
1491 (count > 1) &&
1492 (count <= q->irq_ptr->ssqd_desc.mmwc)) {
1493 /* exploit enhanced SIGA */
1494 q->u.out.use_enh_siga = 1;
Jan Glauberd303b6f2009-03-26 15:24:31 +01001495 rc = qdio_kick_outbound_q(q);
Klaus-Dieter Wacker7a0f4752008-10-10 21:33:18 +02001496 } else {
1497 /*
1498 * One siga-w per buffer required for unicast
1499 * HiperSockets.
1500 */
1501 q->u.out.use_enh_siga = 0;
Jan Glauberd303b6f2009-03-26 15:24:31 +01001502 while (count--) {
1503 rc = qdio_kick_outbound_q(q);
1504 if (rc)
1505 goto out;
1506 }
Klaus-Dieter Wacker7a0f4752008-10-10 21:33:18 +02001507 }
Jan Glauber779e6e12008-07-17 17:16:48 +02001508 goto out;
1509 }
1510
1511 if (need_siga_sync(q)) {
1512 qdio_siga_sync_q(q);
1513 goto out;
1514 }
1515
1516 /* try to fast requeue buffers */
Jan Glauber50f769d2008-12-25 13:38:47 +01001517 get_buf_state(q, prev_buf(bufnr), &state, 0);
Jan Glauber779e6e12008-07-17 17:16:48 +02001518 if (state != SLSB_CU_OUTPUT_PRIMED)
Jan Glauberd303b6f2009-03-26 15:24:31 +01001519 rc = qdio_kick_outbound_q(q);
Jan Glauber1d7e1502009-09-22 22:58:39 +02001520 else
Jan Glauber6486cda2010-01-04 09:05:42 +01001521 qperf_inc(q, fast_requeue);
Jan Glauber1d7e1502009-09-22 22:58:39 +02001522
Jan Glauber779e6e12008-07-17 17:16:48 +02001523out:
Jan Glauber779e6e12008-07-17 17:16:48 +02001524 tasklet_schedule(&q->tasklet);
Jan Glauberd303b6f2009-03-26 15:24:31 +01001525 return rc;
Jan Glauber779e6e12008-07-17 17:16:48 +02001526}
1527
1528/**
1529 * do_QDIO - process input or output buffers
1530 * @cdev: associated ccw_device for the qdio subchannel
1531 * @callflags: input or output and special flags from the program
1532 * @q_nr: queue number
1533 * @bufnr: buffer number
1534 * @count: how many buffers to process
1535 */
1536int do_QDIO(struct ccw_device *cdev, unsigned int callflags,
Jan Glauber66182412009-06-22 12:08:15 +02001537 int q_nr, unsigned int bufnr, unsigned int count)
Jan Glauber779e6e12008-07-17 17:16:48 +02001538{
1539 struct qdio_irq *irq_ptr;
Jan Glauber779e6e12008-07-17 17:16:48 +02001540
Jan Glauber66182412009-06-22 12:08:15 +02001541 if (bufnr >= QDIO_MAX_BUFFERS_PER_Q || count > QDIO_MAX_BUFFERS_PER_Q)
Jan Glauber779e6e12008-07-17 17:16:48 +02001542 return -EINVAL;
1543
Jan Glauber779e6e12008-07-17 17:16:48 +02001544 irq_ptr = cdev->private->qdio_data;
1545 if (!irq_ptr)
1546 return -ENODEV;
1547
Jan Glauber1d7e1502009-09-22 22:58:39 +02001548 DBF_DEV_EVENT(DBF_INFO, irq_ptr,
1549 "do%02x b:%02x c:%02x", callflags, bufnr, count);
Jan Glauber779e6e12008-07-17 17:16:48 +02001550
1551 if (irq_ptr->state != QDIO_IRQ_STATE_ACTIVE)
1552 return -EBUSY;
1553
1554 if (callflags & QDIO_FLAG_SYNC_INPUT)
Jan Glauberd303b6f2009-03-26 15:24:31 +01001555 return handle_inbound(irq_ptr->input_qs[q_nr],
1556 callflags, bufnr, count);
Jan Glauber779e6e12008-07-17 17:16:48 +02001557 else if (callflags & QDIO_FLAG_SYNC_OUTPUT)
Jan Glauberd303b6f2009-03-26 15:24:31 +01001558 return handle_outbound(irq_ptr->output_qs[q_nr],
1559 callflags, bufnr, count);
1560 return -EINVAL;
Jan Glauber779e6e12008-07-17 17:16:48 +02001561}
1562EXPORT_SYMBOL_GPL(do_QDIO);
1563
1564static int __init init_QDIO(void)
1565{
1566 int rc;
1567
1568 rc = qdio_setup_init();
1569 if (rc)
1570 return rc;
1571 rc = tiqdio_allocate_memory();
1572 if (rc)
1573 goto out_cache;
1574 rc = qdio_debug_init();
1575 if (rc)
1576 goto out_ti;
Jan Glauber779e6e12008-07-17 17:16:48 +02001577 rc = tiqdio_register_thinints();
1578 if (rc)
Jan Glauber6486cda2010-01-04 09:05:42 +01001579 goto out_debug;
Jan Glauber779e6e12008-07-17 17:16:48 +02001580 return 0;
1581
Jan Glauber779e6e12008-07-17 17:16:48 +02001582out_debug:
1583 qdio_debug_exit();
1584out_ti:
1585 tiqdio_free_memory();
1586out_cache:
1587 qdio_setup_exit();
1588 return rc;
1589}
1590
1591static void __exit exit_QDIO(void)
1592{
1593 tiqdio_unregister_thinints();
1594 tiqdio_free_memory();
Jan Glauber779e6e12008-07-17 17:16:48 +02001595 qdio_debug_exit();
1596 qdio_setup_exit();
1597}
1598
1599module_init(init_QDIO);
1600module_exit(exit_QDIO);