blob: 62b654af9237f17fd6aa2fb970072a366116e74e [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"
Jan Glauber779e6e12008-07-17 17:16:48 +020025
26MODULE_AUTHOR("Utz Bacher <utz.bacher@de.ibm.com>,"\
27 "Jan Glauber <jang@linux.vnet.ibm.com>");
28MODULE_DESCRIPTION("QDIO base support");
29MODULE_LICENSE("GPL");
30
31static inline int do_siga_sync(struct subchannel_id schid,
32 unsigned int out_mask, unsigned int in_mask)
33{
34 register unsigned long __fc asm ("0") = 2;
35 register struct subchannel_id __schid asm ("1") = schid;
36 register unsigned long out asm ("2") = out_mask;
37 register unsigned long in asm ("3") = in_mask;
38 int cc;
39
40 asm volatile(
41 " siga 0\n"
42 " ipm %0\n"
43 " srl %0,28\n"
44 : "=d" (cc)
45 : "d" (__fc), "d" (__schid), "d" (out), "d" (in) : "cc");
46 return cc;
47}
48
49static inline int do_siga_input(struct subchannel_id schid, unsigned int mask)
50{
51 register unsigned long __fc asm ("0") = 1;
52 register struct subchannel_id __schid asm ("1") = schid;
53 register unsigned long __mask asm ("2") = mask;
54 int cc;
55
56 asm volatile(
57 " siga 0\n"
58 " ipm %0\n"
59 " srl %0,28\n"
60 : "=d" (cc)
61 : "d" (__fc), "d" (__schid), "d" (__mask) : "cc", "memory");
62 return cc;
63}
64
65/**
66 * do_siga_output - perform SIGA-w/wt function
67 * @schid: subchannel id or in case of QEBSM the subchannel token
68 * @mask: which output queues to process
69 * @bb: busy bit indicator, set only if SIGA-w/wt could not access a buffer
70 * @fc: function code to perform
71 *
72 * Returns cc or QDIO_ERROR_SIGA_ACCESS_EXCEPTION.
73 * Note: For IQDC unicast queues only the highest priority queue is processed.
74 */
75static inline int do_siga_output(unsigned long schid, unsigned long mask,
Jan Glauber7a0b4cb2008-12-25 13:38:48 +010076 unsigned int *bb, unsigned int fc)
Jan Glauber779e6e12008-07-17 17:16:48 +020077{
78 register unsigned long __fc asm("0") = fc;
79 register unsigned long __schid asm("1") = schid;
80 register unsigned long __mask asm("2") = mask;
81 int cc = QDIO_ERROR_SIGA_ACCESS_EXCEPTION;
82
83 asm volatile(
84 " siga 0\n"
85 "0: ipm %0\n"
86 " srl %0,28\n"
87 "1:\n"
88 EX_TABLE(0b, 1b)
89 : "+d" (cc), "+d" (__fc), "+d" (__schid), "+d" (__mask)
90 : : "cc", "memory");
91 *bb = ((unsigned int) __fc) >> 31;
92 return cc;
93}
94
95static inline int qdio_check_ccq(struct qdio_q *q, unsigned int ccq)
96{
Jan Glauber779e6e12008-07-17 17:16:48 +020097 /* all done or next buffer state different */
98 if (ccq == 0 || ccq == 32)
99 return 0;
100 /* not all buffers processed */
101 if (ccq == 96 || ccq == 97)
102 return 1;
103 /* notify devices immediately */
Jan Glauber22f99342008-12-25 13:38:46 +0100104 DBF_ERROR("%4x ccq:%3d", SCH_NO(q), ccq);
Jan Glauber779e6e12008-07-17 17:16:48 +0200105 return -EIO;
106}
107
108/**
109 * qdio_do_eqbs - extract buffer states for QEBSM
110 * @q: queue to manipulate
111 * @state: state of the extracted buffers
112 * @start: buffer number to start at
113 * @count: count of buffers to examine
Jan Glauber50f769d2008-12-25 13:38:47 +0100114 * @auto_ack: automatically acknowledge buffers
Jan Glauber779e6e12008-07-17 17:16:48 +0200115 *
Coly Li73ac36e2009-01-07 18:09:16 -0800116 * Returns the number of successfully extracted equal buffer states.
Jan Glauber779e6e12008-07-17 17:16:48 +0200117 * Stops processing if a state is different from the last buffers state.
118 */
119static int qdio_do_eqbs(struct qdio_q *q, unsigned char *state,
Jan Glauber50f769d2008-12-25 13:38:47 +0100120 int start, int count, int auto_ack)
Jan Glauber779e6e12008-07-17 17:16:48 +0200121{
122 unsigned int ccq = 0;
123 int tmp_count = count, tmp_start = start;
124 int nr = q->nr;
125 int rc;
Jan Glauber779e6e12008-07-17 17:16:48 +0200126
127 BUG_ON(!q->irq_ptr->sch_token);
Jan Glauber6486cda2010-01-04 09:05:42 +0100128 qperf_inc(q, eqbs);
Jan Glauber779e6e12008-07-17 17:16:48 +0200129
130 if (!q->is_input_q)
131 nr += q->irq_ptr->nr_input_qs;
132again:
Jan Glauber50f769d2008-12-25 13:38:47 +0100133 ccq = do_eqbs(q->irq_ptr->sch_token, state, nr, &tmp_start, &tmp_count,
134 auto_ack);
Jan Glauber779e6e12008-07-17 17:16:48 +0200135 rc = qdio_check_ccq(q, ccq);
136
137 /* At least one buffer was processed, return and extract the remaining
138 * buffers later.
139 */
Jan Glauber23589d02008-12-25 13:38:44 +0100140 if ((ccq == 96) && (count != tmp_count)) {
Jan Glauber6486cda2010-01-04 09:05:42 +0100141 qperf_inc(q, eqbs_partial);
Jan Glauber779e6e12008-07-17 17:16:48 +0200142 return (count - tmp_count);
Jan Glauber23589d02008-12-25 13:38:44 +0100143 }
Jan Glauber22f99342008-12-25 13:38:46 +0100144
Jan Glauber779e6e12008-07-17 17:16:48 +0200145 if (rc == 1) {
Jan Glauber22f99342008-12-25 13:38:46 +0100146 DBF_DEV_EVENT(DBF_WARN, q->irq_ptr, "EQBS again:%2d", ccq);
Jan Glauber779e6e12008-07-17 17:16:48 +0200147 goto again;
148 }
149
150 if (rc < 0) {
Jan Glauber22f99342008-12-25 13:38:46 +0100151 DBF_ERROR("%4x EQBS ERROR", SCH_NO(q));
152 DBF_ERROR("%3d%3d%2d", count, tmp_count, nr);
Jan Glauber779e6e12008-07-17 17:16:48 +0200153 q->handler(q->irq_ptr->cdev,
154 QDIO_ERROR_ACTIVATE_CHECK_CONDITION,
155 0, -1, -1, q->irq_ptr->int_parm);
156 return 0;
157 }
158 return count - tmp_count;
159}
160
161/**
162 * qdio_do_sqbs - set buffer states for QEBSM
163 * @q: queue to manipulate
164 * @state: new state of the buffers
165 * @start: first buffer number to change
166 * @count: how many buffers to change
167 *
168 * Returns the number of successfully changed buffers.
169 * Does retrying until the specified count of buffer states is set or an
170 * error occurs.
171 */
172static int qdio_do_sqbs(struct qdio_q *q, unsigned char state, int start,
173 int count)
174{
175 unsigned int ccq = 0;
176 int tmp_count = count, tmp_start = start;
177 int nr = q->nr;
178 int rc;
Jan Glauber779e6e12008-07-17 17:16:48 +0200179
Jan Glauber50f769d2008-12-25 13:38:47 +0100180 if (!count)
181 return 0;
182
Jan Glauber779e6e12008-07-17 17:16:48 +0200183 BUG_ON(!q->irq_ptr->sch_token);
Jan Glauber6486cda2010-01-04 09:05:42 +0100184 qperf_inc(q, sqbs);
Jan Glauber779e6e12008-07-17 17:16:48 +0200185
186 if (!q->is_input_q)
187 nr += q->irq_ptr->nr_input_qs;
188again:
189 ccq = do_sqbs(q->irq_ptr->sch_token, state, nr, &tmp_start, &tmp_count);
190 rc = qdio_check_ccq(q, ccq);
191 if (rc == 1) {
Jan Glauber22f99342008-12-25 13:38:46 +0100192 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "SQBS again:%2d", ccq);
Jan Glauber6486cda2010-01-04 09:05:42 +0100193 qperf_inc(q, sqbs_partial);
Jan Glauber779e6e12008-07-17 17:16:48 +0200194 goto again;
195 }
196 if (rc < 0) {
Jan Glauber22f99342008-12-25 13:38:46 +0100197 DBF_ERROR("%4x SQBS ERROR", SCH_NO(q));
198 DBF_ERROR("%3d%3d%2d", count, tmp_count, nr);
Jan Glauber779e6e12008-07-17 17:16:48 +0200199 q->handler(q->irq_ptr->cdev,
200 QDIO_ERROR_ACTIVATE_CHECK_CONDITION,
201 0, -1, -1, q->irq_ptr->int_parm);
202 return 0;
203 }
204 WARN_ON(tmp_count);
205 return count - tmp_count;
206}
207
208/* returns number of examined buffers and their common state in *state */
209static inline int get_buf_states(struct qdio_q *q, unsigned int bufnr,
Jan Glauber50f769d2008-12-25 13:38:47 +0100210 unsigned char *state, unsigned int count,
211 int auto_ack)
Jan Glauber779e6e12008-07-17 17:16:48 +0200212{
213 unsigned char __state = 0;
214 int i;
215
216 BUG_ON(bufnr > QDIO_MAX_BUFFERS_MASK);
217 BUG_ON(count > QDIO_MAX_BUFFERS_PER_Q);
218
219 if (is_qebsm(q))
Jan Glauber50f769d2008-12-25 13:38:47 +0100220 return qdio_do_eqbs(q, state, bufnr, count, auto_ack);
Jan Glauber779e6e12008-07-17 17:16:48 +0200221
222 for (i = 0; i < count; i++) {
223 if (!__state)
224 __state = q->slsb.val[bufnr];
225 else if (q->slsb.val[bufnr] != __state)
226 break;
227 bufnr = next_buf(bufnr);
228 }
229 *state = __state;
230 return i;
231}
232
Jan Glauber60b5df22009-06-22 12:08:10 +0200233static inline int get_buf_state(struct qdio_q *q, unsigned int bufnr,
234 unsigned char *state, int auto_ack)
Jan Glauber779e6e12008-07-17 17:16:48 +0200235{
Jan Glauber50f769d2008-12-25 13:38:47 +0100236 return get_buf_states(q, bufnr, state, 1, auto_ack);
Jan Glauber779e6e12008-07-17 17:16:48 +0200237}
238
239/* wrap-around safe setting of slsb states, returns number of changed buffers */
240static inline int set_buf_states(struct qdio_q *q, int bufnr,
241 unsigned char state, int count)
242{
243 int i;
244
245 BUG_ON(bufnr > QDIO_MAX_BUFFERS_MASK);
246 BUG_ON(count > QDIO_MAX_BUFFERS_PER_Q);
247
248 if (is_qebsm(q))
249 return qdio_do_sqbs(q, state, bufnr, count);
250
251 for (i = 0; i < count; i++) {
252 xchg(&q->slsb.val[bufnr], state);
253 bufnr = next_buf(bufnr);
254 }
255 return count;
256}
257
258static inline int set_buf_state(struct qdio_q *q, int bufnr,
259 unsigned char state)
260{
261 return set_buf_states(q, bufnr, state, 1);
262}
263
264/* set slsb states to initial state */
265void qdio_init_buf_states(struct qdio_irq *irq_ptr)
266{
267 struct qdio_q *q;
268 int i;
269
270 for_each_input_queue(irq_ptr, q, i)
271 set_buf_states(q, 0, SLSB_P_INPUT_NOT_INIT,
272 QDIO_MAX_BUFFERS_PER_Q);
273 for_each_output_queue(irq_ptr, q, i)
274 set_buf_states(q, 0, SLSB_P_OUTPUT_NOT_INIT,
275 QDIO_MAX_BUFFERS_PER_Q);
276}
277
Jan Glauber60b5df22009-06-22 12:08:10 +0200278static inline int qdio_siga_sync(struct qdio_q *q, unsigned int output,
Jan Glauber779e6e12008-07-17 17:16:48 +0200279 unsigned int input)
280{
281 int cc;
282
283 if (!need_siga_sync(q))
284 return 0;
285
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100286 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "siga-s:%1d", q->nr);
Jan Glauber6486cda2010-01-04 09:05:42 +0100287 qperf_inc(q, siga_sync);
Jan Glauber779e6e12008-07-17 17:16:48 +0200288
289 cc = do_siga_sync(q->irq_ptr->schid, output, input);
Jan Glauber22f99342008-12-25 13:38:46 +0100290 if (cc)
291 DBF_ERROR("%4x SIGA-S:%2d", SCH_NO(q), cc);
Jan Glauber779e6e12008-07-17 17:16:48 +0200292 return cc;
293}
294
Jan Glauber60b5df22009-06-22 12:08:10 +0200295static inline int qdio_siga_sync_q(struct qdio_q *q)
Jan Glauber779e6e12008-07-17 17:16:48 +0200296{
297 if (q->is_input_q)
298 return qdio_siga_sync(q, 0, q->mask);
299 else
300 return qdio_siga_sync(q, q->mask, 0);
301}
302
303static inline int qdio_siga_sync_out(struct qdio_q *q)
304{
305 return qdio_siga_sync(q, ~0U, 0);
306}
307
308static inline int qdio_siga_sync_all(struct qdio_q *q)
309{
310 return qdio_siga_sync(q, ~0U, ~0U);
311}
312
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100313static int qdio_siga_output(struct qdio_q *q, unsigned int *busy_bit)
Jan Glauber779e6e12008-07-17 17:16:48 +0200314{
Jan Glauber779e6e12008-07-17 17:16:48 +0200315 unsigned long schid;
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100316 unsigned int fc = 0;
317 u64 start_time = 0;
318 int cc;
Jan Glauber779e6e12008-07-17 17:16:48 +0200319
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100320 if (q->u.out.use_enh_siga)
Klaus-Dieter Wacker7a0f4752008-10-10 21:33:18 +0200321 fc = 3;
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100322
323 if (is_qebsm(q)) {
Jan Glauber779e6e12008-07-17 17:16:48 +0200324 schid = q->irq_ptr->sch_token;
325 fc |= 0x80;
326 }
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100327 else
328 schid = *((u32 *)&q->irq_ptr->schid);
Jan Glauber779e6e12008-07-17 17:16:48 +0200329
Jan Glauber779e6e12008-07-17 17:16:48 +0200330again:
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100331 cc = do_siga_output(schid, q->mask, busy_bit, fc);
Jan Glauber58eb27c2008-08-21 19:46:34 +0200332
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100333 /* hipersocket busy condition */
334 if (*busy_bit) {
335 WARN_ON(queue_type(q) != QDIO_IQDIO_QFMT || cc != 2);
336
337 if (!start_time) {
Jan Glauber779e6e12008-07-17 17:16:48 +0200338 start_time = get_usecs();
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100339 goto again;
340 }
341 if ((get_usecs() - start_time) < QDIO_BUSY_BIT_PATIENCE)
Jan Glauber779e6e12008-07-17 17:16:48 +0200342 goto again;
343 }
Jan Glauber779e6e12008-07-17 17:16:48 +0200344 return cc;
345}
346
347static inline int qdio_siga_input(struct qdio_q *q)
348{
349 int cc;
350
Jan Glauber22f99342008-12-25 13:38:46 +0100351 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "siga-r:%1d", q->nr);
Jan Glauber6486cda2010-01-04 09:05:42 +0100352 qperf_inc(q, siga_read);
Jan Glauber779e6e12008-07-17 17:16:48 +0200353
354 cc = do_siga_input(q->irq_ptr->schid, q->mask);
355 if (cc)
Jan Glauber22f99342008-12-25 13:38:46 +0100356 DBF_ERROR("%4x SIGA-R:%2d", SCH_NO(q), cc);
Jan Glauber779e6e12008-07-17 17:16:48 +0200357 return cc;
358}
359
Jan Glauber60b5df22009-06-22 12:08:10 +0200360static inline void qdio_sync_after_thinint(struct qdio_q *q)
Jan Glauber779e6e12008-07-17 17:16:48 +0200361{
362 if (pci_out_supported(q)) {
363 if (need_siga_sync_thinint(q))
364 qdio_siga_sync_all(q);
365 else if (need_siga_sync_out_thinint(q))
366 qdio_siga_sync_out(q);
367 } else
368 qdio_siga_sync_q(q);
369}
370
Jan Glauber60b5df22009-06-22 12:08:10 +0200371int debug_get_buf_state(struct qdio_q *q, unsigned int bufnr,
372 unsigned char *state)
373{
374 qdio_siga_sync_q(q);
375 return get_buf_states(q, bufnr, state, 1, 0);
376}
377
378static inline void qdio_stop_polling(struct qdio_q *q)
Jan Glauber779e6e12008-07-17 17:16:48 +0200379{
Jan Glauber50f769d2008-12-25 13:38:47 +0100380 if (!q->u.in.polling)
Jan Glauber779e6e12008-07-17 17:16:48 +0200381 return;
Jan Glauber50f769d2008-12-25 13:38:47 +0100382
Jan Glauber779e6e12008-07-17 17:16:48 +0200383 q->u.in.polling = 0;
Jan Glauber6486cda2010-01-04 09:05:42 +0100384 qperf_inc(q, stop_polling);
Jan Glauber779e6e12008-07-17 17:16:48 +0200385
386 /* show the card that we are not polling anymore */
Jan Glauber50f769d2008-12-25 13:38:47 +0100387 if (is_qebsm(q)) {
Jan Glaubere85dea02009-03-26 15:24:29 +0100388 set_buf_states(q, q->u.in.ack_start, SLSB_P_INPUT_NOT_INIT,
Jan Glauber50f769d2008-12-25 13:38:47 +0100389 q->u.in.ack_count);
390 q->u.in.ack_count = 0;
391 } else
Jan Glaubere85dea02009-03-26 15:24:29 +0100392 set_buf_state(q, q->u.in.ack_start, SLSB_P_INPUT_NOT_INIT);
Jan Glauber779e6e12008-07-17 17:16:48 +0200393}
394
Jan Glauber50f769d2008-12-25 13:38:47 +0100395static void announce_buffer_error(struct qdio_q *q, int count)
Jan Glauber779e6e12008-07-17 17:16:48 +0200396{
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100397 q->qdio_error |= QDIO_ERROR_SLSB_STATE;
Jan Glauber50f769d2008-12-25 13:38:47 +0100398
399 /* special handling for no target buffer empty */
400 if ((!q->is_input_q &&
401 (q->sbal[q->first_to_check]->element[15].flags & 0xff) == 0x10)) {
Jan Glauber6486cda2010-01-04 09:05:42 +0100402 qperf_inc(q, target_full);
Jan Glauber1d7e1502009-09-22 22:58:39 +0200403 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "OUTFULL FTC:%02x",
Jan Glauber50f769d2008-12-25 13:38:47 +0100404 q->first_to_check);
405 return;
406 }
407
Jan Glauber22f99342008-12-25 13:38:46 +0100408 DBF_ERROR("%4x BUF ERROR", SCH_NO(q));
409 DBF_ERROR((q->is_input_q) ? "IN:%2d" : "OUT:%2d", q->nr);
Jan Glauber50f769d2008-12-25 13:38:47 +0100410 DBF_ERROR("FTC:%3d C:%3d", q->first_to_check, count);
Jan Glauber22f99342008-12-25 13:38:46 +0100411 DBF_ERROR("F14:%2x F15:%2x",
412 q->sbal[q->first_to_check]->element[14].flags & 0xff,
413 q->sbal[q->first_to_check]->element[15].flags & 0xff);
Jan Glauber50f769d2008-12-25 13:38:47 +0100414}
Jan Glauber779e6e12008-07-17 17:16:48 +0200415
Jan Glauber50f769d2008-12-25 13:38:47 +0100416static inline void inbound_primed(struct qdio_q *q, int count)
417{
418 int new;
419
Jan Glauber1d7e1502009-09-22 22:58:39 +0200420 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "in prim: %02x", count);
Jan Glauber50f769d2008-12-25 13:38:47 +0100421
422 /* for QEBSM the ACK was already set by EQBS */
423 if (is_qebsm(q)) {
424 if (!q->u.in.polling) {
425 q->u.in.polling = 1;
426 q->u.in.ack_count = count;
Jan Glaubere85dea02009-03-26 15:24:29 +0100427 q->u.in.ack_start = q->first_to_check;
Jan Glauber50f769d2008-12-25 13:38:47 +0100428 return;
429 }
430
431 /* delete the previous ACK's */
Jan Glaubere85dea02009-03-26 15:24:29 +0100432 set_buf_states(q, q->u.in.ack_start, SLSB_P_INPUT_NOT_INIT,
Jan Glauber50f769d2008-12-25 13:38:47 +0100433 q->u.in.ack_count);
434 q->u.in.ack_count = count;
Jan Glaubere85dea02009-03-26 15:24:29 +0100435 q->u.in.ack_start = q->first_to_check;
Jan Glauber50f769d2008-12-25 13:38:47 +0100436 return;
437 }
438
439 /*
440 * ACK the newest buffer. The ACK will be removed in qdio_stop_polling
441 * or by the next inbound run.
442 */
443 new = add_buf(q->first_to_check, count - 1);
444 if (q->u.in.polling) {
445 /* reset the previous ACK but first set the new one */
446 set_buf_state(q, new, SLSB_P_INPUT_ACK);
Jan Glaubere85dea02009-03-26 15:24:29 +0100447 set_buf_state(q, q->u.in.ack_start, SLSB_P_INPUT_NOT_INIT);
Jan Glauber3fdf1e12009-03-26 15:24:28 +0100448 } else {
Jan Glauber50f769d2008-12-25 13:38:47 +0100449 q->u.in.polling = 1;
Jan Glauber3fdf1e12009-03-26 15:24:28 +0100450 set_buf_state(q, new, SLSB_P_INPUT_ACK);
Jan Glauber50f769d2008-12-25 13:38:47 +0100451 }
452
Jan Glaubere85dea02009-03-26 15:24:29 +0100453 q->u.in.ack_start = new;
Jan Glauber50f769d2008-12-25 13:38:47 +0100454 count--;
455 if (!count)
456 return;
Jan Glauber6541f7b2009-09-22 22:58:40 +0200457 /* need to change ALL buffers to get more interrupts */
458 set_buf_states(q, q->first_to_check, SLSB_P_INPUT_NOT_INIT, count);
Jan Glauber779e6e12008-07-17 17:16:48 +0200459}
460
461static int get_inbound_buffer_frontier(struct qdio_q *q)
462{
463 int count, stop;
464 unsigned char state;
465
466 /*
Jan Glauber779e6e12008-07-17 17:16:48 +0200467 * Don't check 128 buffers, as otherwise qdio_inbound_q_moved
468 * would return 0.
469 */
470 count = min(atomic_read(&q->nr_buf_used), QDIO_MAX_BUFFERS_MASK);
471 stop = add_buf(q->first_to_check, count);
472
Jan Glauber779e6e12008-07-17 17:16:48 +0200473 if (q->first_to_check == stop)
474 goto out;
475
Jan Glauber36e3e722009-06-22 12:08:12 +0200476 /*
477 * No siga sync here, as a PCI or we after a thin interrupt
478 * already sync'ed the queues.
479 */
Jan Glauber50f769d2008-12-25 13:38:47 +0100480 count = get_buf_states(q, q->first_to_check, &state, count, 1);
Jan Glauber779e6e12008-07-17 17:16:48 +0200481 if (!count)
482 goto out;
483
484 switch (state) {
485 case SLSB_P_INPUT_PRIMED:
Jan Glauber50f769d2008-12-25 13:38:47 +0100486 inbound_primed(q, count);
Jan Glauber779e6e12008-07-17 17:16:48 +0200487 q->first_to_check = add_buf(q->first_to_check, count);
Jan Glauber8bcd9b02009-12-18 17:43:26 +0100488 if (atomic_sub(count, &q->nr_buf_used) == 0)
Jan Glauber6486cda2010-01-04 09:05:42 +0100489 qperf_inc(q, inbound_queue_full);
Jan Glauber36e3e722009-06-22 12:08:12 +0200490 break;
Jan Glauber779e6e12008-07-17 17:16:48 +0200491 case SLSB_P_INPUT_ERROR:
Jan Glauber50f769d2008-12-25 13:38:47 +0100492 announce_buffer_error(q, count);
Jan Glauber779e6e12008-07-17 17:16:48 +0200493 /* process the buffer, the upper layer will take care of it */
494 q->first_to_check = add_buf(q->first_to_check, count);
495 atomic_sub(count, &q->nr_buf_used);
496 break;
497 case SLSB_CU_INPUT_EMPTY:
498 case SLSB_P_INPUT_NOT_INIT:
499 case SLSB_P_INPUT_ACK:
Jan Glauber22f99342008-12-25 13:38:46 +0100500 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "in nop");
Jan Glauber779e6e12008-07-17 17:16:48 +0200501 break;
502 default:
503 BUG();
504 }
505out:
Jan Glauber779e6e12008-07-17 17:16:48 +0200506 return q->first_to_check;
507}
508
Jan Glauber60b5df22009-06-22 12:08:10 +0200509static int qdio_inbound_q_moved(struct qdio_q *q)
Jan Glauber779e6e12008-07-17 17:16:48 +0200510{
511 int bufnr;
512
513 bufnr = get_inbound_buffer_frontier(q);
514
Jan Glaubere85dea02009-03-26 15:24:29 +0100515 if ((bufnr != q->last_move) || q->qdio_error) {
516 q->last_move = bufnr;
Jan Glauber9a2c1602009-06-22 12:08:11 +0200517 if (!is_thinint_irq(q->irq_ptr) && !MACHINE_IS_VM)
Jan Glauber779e6e12008-07-17 17:16:48 +0200518 q->u.in.timestamp = get_usecs();
Jan Glauber779e6e12008-07-17 17:16:48 +0200519 return 1;
520 } else
521 return 0;
522}
523
Jan Glauber9a2c1602009-06-22 12:08:11 +0200524static inline int qdio_inbound_q_done(struct qdio_q *q)
Jan Glauber60b5df22009-06-22 12:08:10 +0200525{
526 unsigned char state = 0;
527
528 if (!atomic_read(&q->nr_buf_used))
529 return 1;
530
531 qdio_siga_sync_q(q);
532 get_buf_state(q, q->first_to_check, &state, 0);
533
Ursula Braun4c522282010-02-09 09:46:07 +0100534 if (state == SLSB_P_INPUT_PRIMED || state == SLSB_P_INPUT_ERROR)
Jan Glauber60b5df22009-06-22 12:08:10 +0200535 /* more work coming */
536 return 0;
Jan Glauber9a2c1602009-06-22 12:08:11 +0200537
538 if (is_thinint_irq(q->irq_ptr))
539 return 1;
540
541 /* don't poll under z/VM */
542 if (MACHINE_IS_VM)
543 return 1;
544
545 /*
546 * At this point we know, that inbound first_to_check
547 * has (probably) not moved (see qdio_inbound_processing).
548 */
549 if (get_usecs() > q->u.in.timestamp + QDIO_INPUT_THRESHOLD) {
Jan Glauber1d7e1502009-09-22 22:58:39 +0200550 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "in done:%02x",
Jan Glauber9a2c1602009-06-22 12:08:11 +0200551 q->first_to_check);
552 return 1;
553 } else
554 return 0;
Jan Glauber60b5df22009-06-22 12:08:10 +0200555}
556
557static void qdio_kick_handler(struct qdio_q *q)
Jan Glauber779e6e12008-07-17 17:16:48 +0200558{
Jan Glauber9c8a08d2009-03-26 15:24:32 +0100559 int start = q->first_to_kick;
560 int end = q->first_to_check;
561 int count;
Jan Glauber779e6e12008-07-17 17:16:48 +0200562
563 if (unlikely(q->irq_ptr->state != QDIO_IRQ_STATE_ACTIVE))
564 return;
565
Jan Glauber9c8a08d2009-03-26 15:24:32 +0100566 count = sub_buf(end, start);
567
568 if (q->is_input_q) {
Jan Glauber6486cda2010-01-04 09:05:42 +0100569 qperf_inc(q, inbound_handler);
Jan Glauber1d7e1502009-09-22 22:58:39 +0200570 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "kih s:%02x c:%02x", start, count);
571 } else
Jan Glauber6486cda2010-01-04 09:05:42 +0100572 qperf_inc(q, outbound_handler);
Jan Glauber1d7e1502009-09-22 22:58:39 +0200573 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "koh: s:%02x c:%02x",
574 start, count);
Jan Glauber9c8a08d2009-03-26 15:24:32 +0100575
576 q->handler(q->irq_ptr->cdev, q->qdio_error, q->nr, start, count,
577 q->irq_ptr->int_parm);
Jan Glauber779e6e12008-07-17 17:16:48 +0200578
579 /* for the next time */
Jan Glauber9c8a08d2009-03-26 15:24:32 +0100580 q->first_to_kick = end;
Jan Glauber779e6e12008-07-17 17:16:48 +0200581 q->qdio_error = 0;
582}
583
584static void __qdio_inbound_processing(struct qdio_q *q)
585{
Jan Glauber6486cda2010-01-04 09:05:42 +0100586 qperf_inc(q, tasklet_inbound);
Jan Glauber779e6e12008-07-17 17:16:48 +0200587again:
588 if (!qdio_inbound_q_moved(q))
589 return;
590
Jan Glauber9c8a08d2009-03-26 15:24:32 +0100591 qdio_kick_handler(q);
Jan Glauber779e6e12008-07-17 17:16:48 +0200592
Jan Glauber6486cda2010-01-04 09:05:42 +0100593 if (!qdio_inbound_q_done(q)) {
Jan Glauber779e6e12008-07-17 17:16:48 +0200594 /* means poll time is not yet over */
Jan Glauber6486cda2010-01-04 09:05:42 +0100595 qperf_inc(q, tasklet_inbound_resched);
Jan Glauber779e6e12008-07-17 17:16:48 +0200596 goto again;
Jan Glauber6486cda2010-01-04 09:05:42 +0100597 }
Jan Glauber779e6e12008-07-17 17:16:48 +0200598
599 qdio_stop_polling(q);
600 /*
601 * We need to check again to not lose initiative after
602 * resetting the ACK state.
603 */
Jan Glauber6486cda2010-01-04 09:05:42 +0100604 if (!qdio_inbound_q_done(q)) {
605 qperf_inc(q, tasklet_inbound_resched2);
Jan Glauber779e6e12008-07-17 17:16:48 +0200606 goto again;
Jan Glauber6486cda2010-01-04 09:05:42 +0100607 }
Jan Glauber779e6e12008-07-17 17:16:48 +0200608}
609
Jan Glauber779e6e12008-07-17 17:16:48 +0200610void qdio_inbound_processing(unsigned long data)
611{
612 struct qdio_q *q = (struct qdio_q *)data;
613 __qdio_inbound_processing(q);
614}
615
616static int get_outbound_buffer_frontier(struct qdio_q *q)
617{
618 int count, stop;
619 unsigned char state;
620
621 if (((queue_type(q) != QDIO_IQDIO_QFMT) && !pci_out_supported(q)) ||
622 (queue_type(q) == QDIO_IQDIO_QFMT && multicast_outbound(q)))
623 qdio_siga_sync_q(q);
624
625 /*
626 * Don't check 128 buffers, as otherwise qdio_inbound_q_moved
627 * would return 0.
628 */
629 count = min(atomic_read(&q->nr_buf_used), QDIO_MAX_BUFFERS_MASK);
630 stop = add_buf(q->first_to_check, count);
631
Jan Glauber779e6e12008-07-17 17:16:48 +0200632 if (q->first_to_check == stop)
633 return q->first_to_check;
634
Jan Glauber50f769d2008-12-25 13:38:47 +0100635 count = get_buf_states(q, q->first_to_check, &state, count, 0);
Jan Glauber779e6e12008-07-17 17:16:48 +0200636 if (!count)
637 return q->first_to_check;
638
639 switch (state) {
640 case SLSB_P_OUTPUT_EMPTY:
641 /* the adapter got it */
Jan Glauber1d7e1502009-09-22 22:58:39 +0200642 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "out empty:%1d %02x", q->nr, count);
Jan Glauber779e6e12008-07-17 17:16:48 +0200643
644 atomic_sub(count, &q->nr_buf_used);
645 q->first_to_check = add_buf(q->first_to_check, count);
Jan Glauber36e3e722009-06-22 12:08:12 +0200646 break;
Jan Glauber779e6e12008-07-17 17:16:48 +0200647 case SLSB_P_OUTPUT_ERROR:
Jan Glauber50f769d2008-12-25 13:38:47 +0100648 announce_buffer_error(q, count);
Jan Glauber779e6e12008-07-17 17:16:48 +0200649 /* process the buffer, the upper layer will take care of it */
650 q->first_to_check = add_buf(q->first_to_check, count);
651 atomic_sub(count, &q->nr_buf_used);
652 break;
653 case SLSB_CU_OUTPUT_PRIMED:
654 /* the adapter has not fetched the output yet */
Jan Glauber22f99342008-12-25 13:38:46 +0100655 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "out primed:%1d", q->nr);
Jan Glauber779e6e12008-07-17 17:16:48 +0200656 break;
657 case SLSB_P_OUTPUT_NOT_INIT:
658 case SLSB_P_OUTPUT_HALTED:
659 break;
660 default:
661 BUG();
662 }
663 return q->first_to_check;
664}
665
666/* all buffers processed? */
667static inline int qdio_outbound_q_done(struct qdio_q *q)
668{
669 return atomic_read(&q->nr_buf_used) == 0;
670}
671
672static inline int qdio_outbound_q_moved(struct qdio_q *q)
673{
674 int bufnr;
675
676 bufnr = get_outbound_buffer_frontier(q);
677
Jan Glaubere85dea02009-03-26 15:24:29 +0100678 if ((bufnr != q->last_move) || q->qdio_error) {
679 q->last_move = bufnr;
Jan Glauber22f99342008-12-25 13:38:46 +0100680 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "out moved:%1d", q->nr);
Jan Glauber779e6e12008-07-17 17:16:48 +0200681 return 1;
682 } else
683 return 0;
684}
685
Jan Glauberd303b6f2009-03-26 15:24:31 +0100686static int qdio_kick_outbound_q(struct qdio_q *q)
Jan Glauber779e6e12008-07-17 17:16:48 +0200687{
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100688 unsigned int busy_bit;
689 int cc;
Jan Glauber779e6e12008-07-17 17:16:48 +0200690
691 if (!need_siga_out(q))
Jan Glauberd303b6f2009-03-26 15:24:31 +0100692 return 0;
Jan Glauber779e6e12008-07-17 17:16:48 +0200693
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100694 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "siga-w:%1d", q->nr);
Jan Glauber6486cda2010-01-04 09:05:42 +0100695 qperf_inc(q, siga_write);
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100696
697 cc = qdio_siga_output(q, &busy_bit);
698 switch (cc) {
Jan Glauber779e6e12008-07-17 17:16:48 +0200699 case 0:
Jan Glauber779e6e12008-07-17 17:16:48 +0200700 break;
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100701 case 2:
702 if (busy_bit) {
703 DBF_ERROR("%4x cc2 REP:%1d", SCH_NO(q), q->nr);
Jan Glauberd303b6f2009-03-26 15:24:31 +0100704 cc |= QDIO_ERROR_SIGA_BUSY;
705 } else
706 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "siga-w cc2:%1d", q->nr);
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100707 break;
708 case 1:
709 case 3:
710 DBF_ERROR("%4x SIGA-W:%1d", SCH_NO(q), cc);
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100711 break;
Jan Glauber779e6e12008-07-17 17:16:48 +0200712 }
Jan Glauberd303b6f2009-03-26 15:24:31 +0100713 return cc;
Jan Glauber779e6e12008-07-17 17:16:48 +0200714}
715
Jan Glauber779e6e12008-07-17 17:16:48 +0200716static void __qdio_outbound_processing(struct qdio_q *q)
717{
Jan Glauber6486cda2010-01-04 09:05:42 +0100718 qperf_inc(q, tasklet_outbound);
Jan Glauber779e6e12008-07-17 17:16:48 +0200719 BUG_ON(atomic_read(&q->nr_buf_used) < 0);
720
721 if (qdio_outbound_q_moved(q))
Jan Glauber9c8a08d2009-03-26 15:24:32 +0100722 qdio_kick_handler(q);
Jan Glauber779e6e12008-07-17 17:16:48 +0200723
Jan Glauberc38f9602009-03-26 15:24:26 +0100724 if (queue_type(q) == QDIO_ZFCP_QFMT)
Jan Glauber779e6e12008-07-17 17:16:48 +0200725 if (!pci_out_supported(q) && !qdio_outbound_q_done(q))
Jan Glauberc38f9602009-03-26 15:24:26 +0100726 goto sched;
Jan Glauber779e6e12008-07-17 17:16:48 +0200727
728 /* bail out for HiperSockets unicast queues */
729 if (queue_type(q) == QDIO_IQDIO_QFMT && !multicast_outbound(q))
730 return;
731
Ursula Braun4bcb3a32008-10-10 21:33:04 +0200732 if ((queue_type(q) == QDIO_IQDIO_QFMT) &&
Jan Glauberc38f9602009-03-26 15:24:26 +0100733 (atomic_read(&q->nr_buf_used)) > QDIO_IQDIO_POLL_LVL)
734 goto sched;
Ursula Braun4bcb3a32008-10-10 21:33:04 +0200735
Jan Glauber779e6e12008-07-17 17:16:48 +0200736 if (q->u.out.pci_out_enabled)
737 return;
738
739 /*
740 * Now we know that queue type is either qeth without pci enabled
741 * or HiperSockets multicast. Make sure buffer switch from PRIMED to
742 * EMPTY is noticed and outbound_handler is called after some time.
743 */
744 if (qdio_outbound_q_done(q))
745 del_timer(&q->u.out.timer);
Jan Glauber6486cda2010-01-04 09:05:42 +0100746 else
747 if (!timer_pending(&q->u.out.timer))
Jan Glauber779e6e12008-07-17 17:16:48 +0200748 mod_timer(&q->u.out.timer, jiffies + 10 * HZ);
Jan Glauberc38f9602009-03-26 15:24:26 +0100749 return;
750
751sched:
752 if (unlikely(q->irq_ptr->state == QDIO_IRQ_STATE_STOPPED))
753 return;
754 tasklet_schedule(&q->tasklet);
Jan Glauber779e6e12008-07-17 17:16:48 +0200755}
756
757/* outbound tasklet */
758void qdio_outbound_processing(unsigned long data)
759{
760 struct qdio_q *q = (struct qdio_q *)data;
761 __qdio_outbound_processing(q);
762}
763
764void qdio_outbound_timer(unsigned long data)
765{
766 struct qdio_q *q = (struct qdio_q *)data;
Jan Glauberc38f9602009-03-26 15:24:26 +0100767
768 if (unlikely(q->irq_ptr->state == QDIO_IRQ_STATE_STOPPED))
769 return;
Jan Glauber779e6e12008-07-17 17:16:48 +0200770 tasklet_schedule(&q->tasklet);
771}
772
Jan Glauber60b5df22009-06-22 12:08:10 +0200773static inline void qdio_check_outbound_after_thinint(struct qdio_q *q)
Jan Glauber779e6e12008-07-17 17:16:48 +0200774{
775 struct qdio_q *out;
776 int i;
777
778 if (!pci_out_supported(q))
779 return;
780
781 for_each_output_queue(q->irq_ptr, out, i)
782 if (!qdio_outbound_q_done(out))
783 tasklet_schedule(&out->tasklet);
784}
785
Jan Glauber60b5df22009-06-22 12:08:10 +0200786static void __tiqdio_inbound_processing(struct qdio_q *q)
787{
Jan Glauber6486cda2010-01-04 09:05:42 +0100788 qperf_inc(q, tasklet_inbound);
Jan Glauber60b5df22009-06-22 12:08:10 +0200789 qdio_sync_after_thinint(q);
790
791 /*
792 * The interrupt could be caused by a PCI request. Check the
793 * PCI capable outbound queues.
794 */
795 qdio_check_outbound_after_thinint(q);
796
797 if (!qdio_inbound_q_moved(q))
798 return;
799
800 qdio_kick_handler(q);
801
Jan Glauber9a2c1602009-06-22 12:08:11 +0200802 if (!qdio_inbound_q_done(q)) {
Jan Glauber6486cda2010-01-04 09:05:42 +0100803 qperf_inc(q, tasklet_inbound_resched);
Jan Glaubere2910bc2009-09-11 10:28:19 +0200804 if (likely(q->irq_ptr->state != QDIO_IRQ_STATE_STOPPED)) {
Jan Glauber60b5df22009-06-22 12:08:10 +0200805 tasklet_schedule(&q->tasklet);
Jan Glaubere2910bc2009-09-11 10:28:19 +0200806 return;
807 }
Jan Glauber60b5df22009-06-22 12:08:10 +0200808 }
809
810 qdio_stop_polling(q);
811 /*
812 * We need to check again to not lose initiative after
813 * resetting the ACK state.
814 */
Jan Glauber9a2c1602009-06-22 12:08:11 +0200815 if (!qdio_inbound_q_done(q)) {
Jan Glauber6486cda2010-01-04 09:05:42 +0100816 qperf_inc(q, tasklet_inbound_resched2);
Jan Glauber60b5df22009-06-22 12:08:10 +0200817 if (likely(q->irq_ptr->state != QDIO_IRQ_STATE_STOPPED))
818 tasklet_schedule(&q->tasklet);
819 }
820}
821
822void tiqdio_inbound_processing(unsigned long data)
823{
824 struct qdio_q *q = (struct qdio_q *)data;
825 __tiqdio_inbound_processing(q);
826}
827
Jan Glauber779e6e12008-07-17 17:16:48 +0200828static inline void qdio_set_state(struct qdio_irq *irq_ptr,
829 enum qdio_irq_states state)
830{
Jan Glauber22f99342008-12-25 13:38:46 +0100831 DBF_DEV_EVENT(DBF_INFO, irq_ptr, "newstate: %1d", state);
Jan Glauber779e6e12008-07-17 17:16:48 +0200832
833 irq_ptr->state = state;
834 mb();
835}
836
Jan Glauber22f99342008-12-25 13:38:46 +0100837static void qdio_irq_check_sense(struct qdio_irq *irq_ptr, struct irb *irb)
Jan Glauber779e6e12008-07-17 17:16:48 +0200838{
Jan Glauber779e6e12008-07-17 17:16:48 +0200839 if (irb->esw.esw0.erw.cons) {
Jan Glauber22f99342008-12-25 13:38:46 +0100840 DBF_ERROR("%4x sense:", irq_ptr->schid.sch_no);
841 DBF_ERROR_HEX(irb, 64);
842 DBF_ERROR_HEX(irb->ecw, 64);
Jan Glauber779e6e12008-07-17 17:16:48 +0200843 }
844}
845
846/* PCI interrupt handler */
847static void qdio_int_handler_pci(struct qdio_irq *irq_ptr)
848{
849 int i;
850 struct qdio_q *q;
851
Jan Glauberc38f9602009-03-26 15:24:26 +0100852 if (unlikely(irq_ptr->state == QDIO_IRQ_STATE_STOPPED))
853 return;
854
Jan Glauber779e6e12008-07-17 17:16:48 +0200855 for_each_input_queue(irq_ptr, q, i)
856 tasklet_schedule(&q->tasklet);
857
858 if (!(irq_ptr->qib.ac & QIB_AC_OUTBOUND_PCI_SUPPORTED))
859 return;
860
861 for_each_output_queue(irq_ptr, q, i) {
862 if (qdio_outbound_q_done(q))
863 continue;
864
865 if (!siga_syncs_out_pci(q))
866 qdio_siga_sync_q(q);
867
868 tasklet_schedule(&q->tasklet);
869 }
870}
871
872static void qdio_handle_activate_check(struct ccw_device *cdev,
873 unsigned long intparm, int cstat, int dstat)
874{
875 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
876 struct qdio_q *q;
Jan Glauber779e6e12008-07-17 17:16:48 +0200877
Jan Glauber22f99342008-12-25 13:38:46 +0100878 DBF_ERROR("%4x ACT CHECK", irq_ptr->schid.sch_no);
879 DBF_ERROR("intp :%lx", intparm);
880 DBF_ERROR("ds: %2x cs:%2x", dstat, cstat);
Jan Glauber779e6e12008-07-17 17:16:48 +0200881
882 if (irq_ptr->nr_input_qs) {
883 q = irq_ptr->input_qs[0];
884 } else if (irq_ptr->nr_output_qs) {
885 q = irq_ptr->output_qs[0];
886 } else {
887 dump_stack();
888 goto no_handler;
889 }
890 q->handler(q->irq_ptr->cdev, QDIO_ERROR_ACTIVATE_CHECK_CONDITION,
891 0, -1, -1, irq_ptr->int_parm);
892no_handler:
893 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_STOPPED);
894}
895
Jan Glauber779e6e12008-07-17 17:16:48 +0200896static void qdio_establish_handle_irq(struct ccw_device *cdev, int cstat,
897 int dstat)
898{
899 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
Jan Glauber779e6e12008-07-17 17:16:48 +0200900
Jan Glauber22f99342008-12-25 13:38:46 +0100901 DBF_DEV_EVENT(DBF_INFO, irq_ptr, "qest irq");
Jan Glauber4c575422009-06-12 10:26:28 +0200902
903 if (cstat)
904 goto error;
905 if (dstat & ~(DEV_STAT_DEV_END | DEV_STAT_CHN_END))
906 goto error;
907 if (!(dstat & DEV_STAT_DEV_END))
908 goto error;
909 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_ESTABLISHED);
910 return;
911
912error:
913 DBF_ERROR("%4x EQ:error", irq_ptr->schid.sch_no);
914 DBF_ERROR("ds: %2x cs:%2x", dstat, cstat);
915 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_ERR);
Jan Glauber779e6e12008-07-17 17:16:48 +0200916}
917
918/* qdio interrupt handler */
919void qdio_int_handler(struct ccw_device *cdev, unsigned long intparm,
920 struct irb *irb)
921{
922 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
923 int cstat, dstat;
Jan Glauber779e6e12008-07-17 17:16:48 +0200924
Jan Glauber779e6e12008-07-17 17:16:48 +0200925 if (!intparm || !irq_ptr) {
Jan Glauber22f99342008-12-25 13:38:46 +0100926 DBF_ERROR("qint:%4x", cdev->private->schid.sch_no);
Jan Glauber779e6e12008-07-17 17:16:48 +0200927 return;
928 }
929
930 if (IS_ERR(irb)) {
931 switch (PTR_ERR(irb)) {
932 case -EIO:
Jan Glauber22f99342008-12-25 13:38:46 +0100933 DBF_ERROR("%4x IO error", irq_ptr->schid.sch_no);
Jan Glauber75cb71f2009-04-14 15:36:22 +0200934 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_ERR);
935 wake_up(&cdev->private->wait_q);
Jan Glauber779e6e12008-07-17 17:16:48 +0200936 return;
937 default:
938 WARN_ON(1);
939 return;
940 }
941 }
Jan Glauber22f99342008-12-25 13:38:46 +0100942 qdio_irq_check_sense(irq_ptr, irb);
Jan Glauber779e6e12008-07-17 17:16:48 +0200943 cstat = irb->scsw.cmd.cstat;
944 dstat = irb->scsw.cmd.dstat;
945
946 switch (irq_ptr->state) {
947 case QDIO_IRQ_STATE_INACTIVE:
948 qdio_establish_handle_irq(cdev, cstat, dstat);
949 break;
Jan Glauber779e6e12008-07-17 17:16:48 +0200950 case QDIO_IRQ_STATE_CLEANUP:
951 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_INACTIVE);
952 break;
Jan Glauber779e6e12008-07-17 17:16:48 +0200953 case QDIO_IRQ_STATE_ESTABLISHED:
954 case QDIO_IRQ_STATE_ACTIVE:
955 if (cstat & SCHN_STAT_PCI) {
956 qdio_int_handler_pci(irq_ptr);
Jan Glauber779e6e12008-07-17 17:16:48 +0200957 return;
958 }
Jan Glauber4c575422009-06-12 10:26:28 +0200959 if (cstat || dstat)
Jan Glauber779e6e12008-07-17 17:16:48 +0200960 qdio_handle_activate_check(cdev, intparm, cstat,
961 dstat);
Jan Glauber4c575422009-06-12 10:26:28 +0200962 break;
Jan Glauber959153d2010-02-09 09:46:08 +0100963 case QDIO_IRQ_STATE_STOPPED:
964 break;
Jan Glauber779e6e12008-07-17 17:16:48 +0200965 default:
966 WARN_ON(1);
967 }
968 wake_up(&cdev->private->wait_q);
969}
970
971/**
972 * qdio_get_ssqd_desc - get qdio subchannel description
973 * @cdev: ccw device to get description for
Jan Glauberbbd50e12008-12-25 13:38:43 +0100974 * @data: where to store the ssqd
Jan Glauber779e6e12008-07-17 17:16:48 +0200975 *
Jan Glauberbbd50e12008-12-25 13:38:43 +0100976 * Returns 0 or an error code. The results of the chsc are stored in the
977 * specified structure.
Jan Glauber779e6e12008-07-17 17:16:48 +0200978 */
Jan Glauberbbd50e12008-12-25 13:38:43 +0100979int qdio_get_ssqd_desc(struct ccw_device *cdev,
980 struct qdio_ssqd_desc *data)
Jan Glauber779e6e12008-07-17 17:16:48 +0200981{
Jan Glauber779e6e12008-07-17 17:16:48 +0200982
Jan Glauberbbd50e12008-12-25 13:38:43 +0100983 if (!cdev || !cdev->private)
984 return -EINVAL;
985
Jan Glauber22f99342008-12-25 13:38:46 +0100986 DBF_EVENT("get ssqd:%4x", cdev->private->schid.sch_no);
Jan Glauberbbd50e12008-12-25 13:38:43 +0100987 return qdio_setup_get_ssqd(NULL, &cdev->private->schid, data);
Jan Glauber779e6e12008-07-17 17:16:48 +0200988}
989EXPORT_SYMBOL_GPL(qdio_get_ssqd_desc);
990
991/**
992 * qdio_cleanup - shutdown queues and free data structures
993 * @cdev: associated ccw device
994 * @how: use halt or clear to shutdown
995 *
Jan Glauber700e9822009-03-26 15:24:27 +0100996 * This function calls qdio_shutdown() for @cdev with method @how.
997 * and qdio_free(). The qdio_free() return value is ignored since
998 * !irq_ptr is already checked.
Jan Glauber779e6e12008-07-17 17:16:48 +0200999 */
1000int qdio_cleanup(struct ccw_device *cdev, int how)
1001{
Jan Glauber22f99342008-12-25 13:38:46 +01001002 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
Jan Glauber779e6e12008-07-17 17:16:48 +02001003 int rc;
1004
Jan Glauber779e6e12008-07-17 17:16:48 +02001005 if (!irq_ptr)
1006 return -ENODEV;
1007
Jan Glauber779e6e12008-07-17 17:16:48 +02001008 rc = qdio_shutdown(cdev, how);
Jan Glauber700e9822009-03-26 15:24:27 +01001009
1010 qdio_free(cdev);
Jan Glauber779e6e12008-07-17 17:16:48 +02001011 return rc;
1012}
1013EXPORT_SYMBOL_GPL(qdio_cleanup);
1014
1015static void qdio_shutdown_queues(struct ccw_device *cdev)
1016{
1017 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
1018 struct qdio_q *q;
1019 int i;
1020
1021 for_each_input_queue(irq_ptr, q, i)
Jan Glauberc38f9602009-03-26 15:24:26 +01001022 tasklet_kill(&q->tasklet);
Jan Glauber779e6e12008-07-17 17:16:48 +02001023
1024 for_each_output_queue(irq_ptr, q, i) {
Jan Glauber779e6e12008-07-17 17:16:48 +02001025 del_timer(&q->u.out.timer);
Jan Glauberc38f9602009-03-26 15:24:26 +01001026 tasklet_kill(&q->tasklet);
Jan Glauber779e6e12008-07-17 17:16:48 +02001027 }
1028}
1029
1030/**
1031 * qdio_shutdown - shut down a qdio subchannel
1032 * @cdev: associated ccw device
1033 * @how: use halt or clear to shutdown
1034 */
1035int qdio_shutdown(struct ccw_device *cdev, int how)
1036{
Jan Glauber22f99342008-12-25 13:38:46 +01001037 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
Jan Glauber779e6e12008-07-17 17:16:48 +02001038 int rc;
1039 unsigned long flags;
Jan Glauber779e6e12008-07-17 17:16:48 +02001040
Jan Glauber779e6e12008-07-17 17:16:48 +02001041 if (!irq_ptr)
1042 return -ENODEV;
1043
Jan Glauberb4547402009-03-26 15:24:24 +01001044 BUG_ON(irqs_disabled());
Jan Glauber22f99342008-12-25 13:38:46 +01001045 DBF_EVENT("qshutdown:%4x", cdev->private->schid.sch_no);
1046
Jan Glauber779e6e12008-07-17 17:16:48 +02001047 mutex_lock(&irq_ptr->setup_mutex);
1048 /*
1049 * Subchannel was already shot down. We cannot prevent being called
1050 * twice since cio may trigger a shutdown asynchronously.
1051 */
1052 if (irq_ptr->state == QDIO_IRQ_STATE_INACTIVE) {
1053 mutex_unlock(&irq_ptr->setup_mutex);
1054 return 0;
1055 }
1056
Jan Glauberc38f9602009-03-26 15:24:26 +01001057 /*
1058 * Indicate that the device is going down. Scheduling the queue
1059 * tasklets is forbidden from here on.
1060 */
1061 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_STOPPED);
1062
Jan Glauber779e6e12008-07-17 17:16:48 +02001063 tiqdio_remove_input_queues(irq_ptr);
1064 qdio_shutdown_queues(cdev);
1065 qdio_shutdown_debug_entries(irq_ptr, cdev);
1066
1067 /* cleanup subchannel */
1068 spin_lock_irqsave(get_ccwdev_lock(cdev), flags);
1069
1070 if (how & QDIO_FLAG_CLEANUP_USING_CLEAR)
1071 rc = ccw_device_clear(cdev, QDIO_DOING_CLEANUP);
1072 else
1073 /* default behaviour is halt */
1074 rc = ccw_device_halt(cdev, QDIO_DOING_CLEANUP);
1075 if (rc) {
Jan Glauber22f99342008-12-25 13:38:46 +01001076 DBF_ERROR("%4x SHUTD ERR", irq_ptr->schid.sch_no);
1077 DBF_ERROR("rc:%4d", rc);
Jan Glauber779e6e12008-07-17 17:16:48 +02001078 goto no_cleanup;
1079 }
1080
1081 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_CLEANUP);
1082 spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);
1083 wait_event_interruptible_timeout(cdev->private->wait_q,
1084 irq_ptr->state == QDIO_IRQ_STATE_INACTIVE ||
1085 irq_ptr->state == QDIO_IRQ_STATE_ERR,
1086 10 * HZ);
1087 spin_lock_irqsave(get_ccwdev_lock(cdev), flags);
1088
1089no_cleanup:
1090 qdio_shutdown_thinint(irq_ptr);
1091
1092 /* restore interrupt handler */
1093 if ((void *)cdev->handler == (void *)qdio_int_handler)
1094 cdev->handler = irq_ptr->orig_handler;
1095 spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);
1096
1097 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_INACTIVE);
1098 mutex_unlock(&irq_ptr->setup_mutex);
Jan Glauber779e6e12008-07-17 17:16:48 +02001099 if (rc)
1100 return rc;
1101 return 0;
1102}
1103EXPORT_SYMBOL_GPL(qdio_shutdown);
1104
1105/**
1106 * qdio_free - free data structures for a qdio subchannel
1107 * @cdev: associated ccw device
1108 */
1109int qdio_free(struct ccw_device *cdev)
1110{
Jan Glauber22f99342008-12-25 13:38:46 +01001111 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
Jan Glauber779e6e12008-07-17 17:16:48 +02001112
Jan Glauber779e6e12008-07-17 17:16:48 +02001113 if (!irq_ptr)
1114 return -ENODEV;
1115
Jan Glauber22f99342008-12-25 13:38:46 +01001116 DBF_EVENT("qfree:%4x", cdev->private->schid.sch_no);
Jan Glauber779e6e12008-07-17 17:16:48 +02001117 mutex_lock(&irq_ptr->setup_mutex);
Jan Glauber22f99342008-12-25 13:38:46 +01001118
1119 if (irq_ptr->debug_area != NULL) {
1120 debug_unregister(irq_ptr->debug_area);
1121 irq_ptr->debug_area = NULL;
1122 }
Jan Glauber779e6e12008-07-17 17:16:48 +02001123 cdev->private->qdio_data = NULL;
1124 mutex_unlock(&irq_ptr->setup_mutex);
1125
1126 qdio_release_memory(irq_ptr);
1127 return 0;
1128}
1129EXPORT_SYMBOL_GPL(qdio_free);
1130
1131/**
1132 * qdio_initialize - allocate and establish queues for a qdio subchannel
1133 * @init_data: initialization data
1134 *
1135 * This function first allocates queues via qdio_allocate() and on success
1136 * establishes them via qdio_establish().
1137 */
1138int qdio_initialize(struct qdio_initialize *init_data)
1139{
1140 int rc;
Jan Glauber779e6e12008-07-17 17:16:48 +02001141
1142 rc = qdio_allocate(init_data);
1143 if (rc)
1144 return rc;
1145
1146 rc = qdio_establish(init_data);
1147 if (rc)
1148 qdio_free(init_data->cdev);
1149 return rc;
1150}
1151EXPORT_SYMBOL_GPL(qdio_initialize);
1152
1153/**
1154 * qdio_allocate - allocate qdio queues and associated data
1155 * @init_data: initialization data
1156 */
1157int qdio_allocate(struct qdio_initialize *init_data)
1158{
1159 struct qdio_irq *irq_ptr;
Jan Glauber779e6e12008-07-17 17:16:48 +02001160
Jan Glauber22f99342008-12-25 13:38:46 +01001161 DBF_EVENT("qallocate:%4x", init_data->cdev->private->schid.sch_no);
Jan Glauber779e6e12008-07-17 17:16:48 +02001162
1163 if ((init_data->no_input_qs && !init_data->input_handler) ||
1164 (init_data->no_output_qs && !init_data->output_handler))
1165 return -EINVAL;
1166
1167 if ((init_data->no_input_qs > QDIO_MAX_QUEUES_PER_IRQ) ||
1168 (init_data->no_output_qs > QDIO_MAX_QUEUES_PER_IRQ))
1169 return -EINVAL;
1170
1171 if ((!init_data->input_sbal_addr_array) ||
1172 (!init_data->output_sbal_addr_array))
1173 return -EINVAL;
1174
Jan Glauber779e6e12008-07-17 17:16:48 +02001175 /* irq_ptr must be in GFP_DMA since it contains ccw1.cda */
1176 irq_ptr = (void *) get_zeroed_page(GFP_KERNEL | GFP_DMA);
1177 if (!irq_ptr)
1178 goto out_err;
Jan Glauber779e6e12008-07-17 17:16:48 +02001179
1180 mutex_init(&irq_ptr->setup_mutex);
Jan Glauber22f99342008-12-25 13:38:46 +01001181 qdio_allocate_dbf(init_data, irq_ptr);
Jan Glauber779e6e12008-07-17 17:16:48 +02001182
1183 /*
1184 * Allocate a page for the chsc calls in qdio_establish.
1185 * Must be pre-allocated since a zfcp recovery will call
1186 * qdio_establish. In case of low memory and swap on a zfcp disk
1187 * we may not be able to allocate memory otherwise.
1188 */
1189 irq_ptr->chsc_page = get_zeroed_page(GFP_KERNEL);
1190 if (!irq_ptr->chsc_page)
1191 goto out_rel;
1192
1193 /* qdr is used in ccw1.cda which is u32 */
Jan Glauber3b8e3002008-08-01 16:39:17 +02001194 irq_ptr->qdr = (struct qdr *) get_zeroed_page(GFP_KERNEL | GFP_DMA);
Jan Glauber779e6e12008-07-17 17:16:48 +02001195 if (!irq_ptr->qdr)
1196 goto out_rel;
1197 WARN_ON((unsigned long)irq_ptr->qdr & 0xfff);
1198
Jan Glauber779e6e12008-07-17 17:16:48 +02001199 if (qdio_allocate_qs(irq_ptr, init_data->no_input_qs,
1200 init_data->no_output_qs))
1201 goto out_rel;
1202
1203 init_data->cdev->private->qdio_data = irq_ptr;
1204 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_INACTIVE);
1205 return 0;
1206out_rel:
1207 qdio_release_memory(irq_ptr);
1208out_err:
1209 return -ENOMEM;
1210}
1211EXPORT_SYMBOL_GPL(qdio_allocate);
1212
1213/**
1214 * qdio_establish - establish queues on a qdio subchannel
1215 * @init_data: initialization data
1216 */
1217int qdio_establish(struct qdio_initialize *init_data)
1218{
Jan Glauber779e6e12008-07-17 17:16:48 +02001219 struct qdio_irq *irq_ptr;
1220 struct ccw_device *cdev = init_data->cdev;
1221 unsigned long saveflags;
1222 int rc;
1223
Jan Glauber22f99342008-12-25 13:38:46 +01001224 DBF_EVENT("qestablish:%4x", cdev->private->schid.sch_no);
Jan Glauber58eb27c2008-08-21 19:46:34 +02001225
Jan Glauber779e6e12008-07-17 17:16:48 +02001226 irq_ptr = cdev->private->qdio_data;
1227 if (!irq_ptr)
1228 return -ENODEV;
1229
1230 if (cdev->private->state != DEV_STATE_ONLINE)
1231 return -EINVAL;
1232
Jan Glauber779e6e12008-07-17 17:16:48 +02001233 mutex_lock(&irq_ptr->setup_mutex);
1234 qdio_setup_irq(init_data);
1235
1236 rc = qdio_establish_thinint(irq_ptr);
1237 if (rc) {
1238 mutex_unlock(&irq_ptr->setup_mutex);
1239 qdio_shutdown(cdev, QDIO_FLAG_CLEANUP_USING_CLEAR);
1240 return rc;
1241 }
1242
1243 /* establish q */
1244 irq_ptr->ccw.cmd_code = irq_ptr->equeue.cmd;
1245 irq_ptr->ccw.flags = CCW_FLAG_SLI;
1246 irq_ptr->ccw.count = irq_ptr->equeue.count;
1247 irq_ptr->ccw.cda = (u32)((addr_t)irq_ptr->qdr);
1248
1249 spin_lock_irqsave(get_ccwdev_lock(cdev), saveflags);
1250 ccw_device_set_options_mask(cdev, 0);
1251
1252 rc = ccw_device_start(cdev, &irq_ptr->ccw, QDIO_DOING_ESTABLISH, 0, 0);
1253 if (rc) {
Jan Glauber22f99342008-12-25 13:38:46 +01001254 DBF_ERROR("%4x est IO ERR", irq_ptr->schid.sch_no);
1255 DBF_ERROR("rc:%4x", rc);
Jan Glauber779e6e12008-07-17 17:16:48 +02001256 }
1257 spin_unlock_irqrestore(get_ccwdev_lock(cdev), saveflags);
1258
1259 if (rc) {
1260 mutex_unlock(&irq_ptr->setup_mutex);
1261 qdio_shutdown(cdev, QDIO_FLAG_CLEANUP_USING_CLEAR);
1262 return rc;
1263 }
1264
1265 wait_event_interruptible_timeout(cdev->private->wait_q,
1266 irq_ptr->state == QDIO_IRQ_STATE_ESTABLISHED ||
1267 irq_ptr->state == QDIO_IRQ_STATE_ERR, HZ);
1268
1269 if (irq_ptr->state != QDIO_IRQ_STATE_ESTABLISHED) {
1270 mutex_unlock(&irq_ptr->setup_mutex);
1271 qdio_shutdown(cdev, QDIO_FLAG_CLEANUP_USING_CLEAR);
1272 return -EIO;
1273 }
1274
1275 qdio_setup_ssqd_info(irq_ptr);
Jan Glauber22f99342008-12-25 13:38:46 +01001276 DBF_EVENT("qDmmwc:%2x", irq_ptr->ssqd_desc.mmwc);
1277 DBF_EVENT("qib ac:%4x", irq_ptr->qib.ac);
Jan Glauber779e6e12008-07-17 17:16:48 +02001278
1279 /* qebsm is now setup if available, initialize buffer states */
1280 qdio_init_buf_states(irq_ptr);
1281
1282 mutex_unlock(&irq_ptr->setup_mutex);
1283 qdio_print_subchannel_info(irq_ptr, cdev);
1284 qdio_setup_debug_entries(irq_ptr, cdev);
1285 return 0;
1286}
1287EXPORT_SYMBOL_GPL(qdio_establish);
1288
1289/**
1290 * qdio_activate - activate queues on a qdio subchannel
1291 * @cdev: associated cdev
1292 */
1293int qdio_activate(struct ccw_device *cdev)
1294{
1295 struct qdio_irq *irq_ptr;
1296 int rc;
1297 unsigned long saveflags;
Jan Glauber779e6e12008-07-17 17:16:48 +02001298
Jan Glauber22f99342008-12-25 13:38:46 +01001299 DBF_EVENT("qactivate:%4x", cdev->private->schid.sch_no);
Jan Glauber58eb27c2008-08-21 19:46:34 +02001300
Jan Glauber779e6e12008-07-17 17:16:48 +02001301 irq_ptr = cdev->private->qdio_data;
1302 if (!irq_ptr)
1303 return -ENODEV;
1304
1305 if (cdev->private->state != DEV_STATE_ONLINE)
1306 return -EINVAL;
1307
1308 mutex_lock(&irq_ptr->setup_mutex);
1309 if (irq_ptr->state == QDIO_IRQ_STATE_INACTIVE) {
1310 rc = -EBUSY;
1311 goto out;
1312 }
1313
Jan Glauber779e6e12008-07-17 17:16:48 +02001314 irq_ptr->ccw.cmd_code = irq_ptr->aqueue.cmd;
1315 irq_ptr->ccw.flags = CCW_FLAG_SLI;
1316 irq_ptr->ccw.count = irq_ptr->aqueue.count;
1317 irq_ptr->ccw.cda = 0;
1318
1319 spin_lock_irqsave(get_ccwdev_lock(cdev), saveflags);
1320 ccw_device_set_options(cdev, CCWDEV_REPORT_ALL);
1321
1322 rc = ccw_device_start(cdev, &irq_ptr->ccw, QDIO_DOING_ACTIVATE,
1323 0, DOIO_DENY_PREFETCH);
1324 if (rc) {
Jan Glauber22f99342008-12-25 13:38:46 +01001325 DBF_ERROR("%4x act IO ERR", irq_ptr->schid.sch_no);
1326 DBF_ERROR("rc:%4x", rc);
Jan Glauber779e6e12008-07-17 17:16:48 +02001327 }
1328 spin_unlock_irqrestore(get_ccwdev_lock(cdev), saveflags);
1329
1330 if (rc)
1331 goto out;
1332
1333 if (is_thinint_irq(irq_ptr))
1334 tiqdio_add_input_queues(irq_ptr);
1335
1336 /* wait for subchannel to become active */
1337 msleep(5);
1338
1339 switch (irq_ptr->state) {
1340 case QDIO_IRQ_STATE_STOPPED:
1341 case QDIO_IRQ_STATE_ERR:
Jan Glaubere4c14e22009-03-26 15:24:25 +01001342 rc = -EIO;
1343 break;
Jan Glauber779e6e12008-07-17 17:16:48 +02001344 default:
1345 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_ACTIVE);
1346 rc = 0;
1347 }
1348out:
1349 mutex_unlock(&irq_ptr->setup_mutex);
1350 return rc;
1351}
1352EXPORT_SYMBOL_GPL(qdio_activate);
1353
1354static inline int buf_in_between(int bufnr, int start, int count)
1355{
1356 int end = add_buf(start, count);
1357
1358 if (end > start) {
1359 if (bufnr >= start && bufnr < end)
1360 return 1;
1361 else
1362 return 0;
1363 }
1364
1365 /* wrap-around case */
1366 if ((bufnr >= start && bufnr <= QDIO_MAX_BUFFERS_PER_Q) ||
1367 (bufnr < end))
1368 return 1;
1369 else
1370 return 0;
1371}
1372
1373/**
1374 * handle_inbound - reset processed input buffers
1375 * @q: queue containing the buffers
1376 * @callflags: flags
1377 * @bufnr: first buffer to process
1378 * @count: how many buffers are emptied
1379 */
Jan Glauberd303b6f2009-03-26 15:24:31 +01001380static int handle_inbound(struct qdio_q *q, unsigned int callflags,
1381 int bufnr, int count)
Jan Glauber779e6e12008-07-17 17:16:48 +02001382{
Jan Glauberd303b6f2009-03-26 15:24:31 +01001383 int used, diff;
Jan Glauber779e6e12008-07-17 17:16:48 +02001384
Jan Glauber6486cda2010-01-04 09:05:42 +01001385 qperf_inc(q, inbound_call);
1386
Jan Glauber50f769d2008-12-25 13:38:47 +01001387 if (!q->u.in.polling)
1388 goto set;
1389
1390 /* protect against stop polling setting an ACK for an emptied slsb */
1391 if (count == QDIO_MAX_BUFFERS_PER_Q) {
1392 /* overwriting everything, just delete polling status */
1393 q->u.in.polling = 0;
1394 q->u.in.ack_count = 0;
1395 goto set;
Jan Glaubere85dea02009-03-26 15:24:29 +01001396 } else if (buf_in_between(q->u.in.ack_start, bufnr, count)) {
Jan Glauber50f769d2008-12-25 13:38:47 +01001397 if (is_qebsm(q)) {
Jan Glaubere85dea02009-03-26 15:24:29 +01001398 /* partial overwrite, just update ack_start */
Jan Glauber50f769d2008-12-25 13:38:47 +01001399 diff = add_buf(bufnr, count);
Jan Glaubere85dea02009-03-26 15:24:29 +01001400 diff = sub_buf(diff, q->u.in.ack_start);
Jan Glauber50f769d2008-12-25 13:38:47 +01001401 q->u.in.ack_count -= diff;
1402 if (q->u.in.ack_count <= 0) {
1403 q->u.in.polling = 0;
1404 q->u.in.ack_count = 0;
Jan Glauber50f769d2008-12-25 13:38:47 +01001405 goto set;
1406 }
Jan Glaubere85dea02009-03-26 15:24:29 +01001407 q->u.in.ack_start = add_buf(q->u.in.ack_start, diff);
Jan Glauber50f769d2008-12-25 13:38:47 +01001408 }
1409 else
1410 /* the only ACK will be deleted, so stop polling */
Jan Glauber779e6e12008-07-17 17:16:48 +02001411 q->u.in.polling = 0;
Jan Glauber50f769d2008-12-25 13:38:47 +01001412 }
Jan Glauber779e6e12008-07-17 17:16:48 +02001413
Jan Glauber50f769d2008-12-25 13:38:47 +01001414set:
Jan Glauber779e6e12008-07-17 17:16:48 +02001415 count = set_buf_states(q, bufnr, SLSB_CU_INPUT_EMPTY, count);
Jan Glauber779e6e12008-07-17 17:16:48 +02001416
1417 used = atomic_add_return(count, &q->nr_buf_used) - count;
1418 BUG_ON(used + count > QDIO_MAX_BUFFERS_PER_Q);
1419
1420 /* no need to signal as long as the adapter had free buffers */
1421 if (used)
Jan Glauberd303b6f2009-03-26 15:24:31 +01001422 return 0;
Jan Glauber779e6e12008-07-17 17:16:48 +02001423
Jan Glauberd303b6f2009-03-26 15:24:31 +01001424 if (need_siga_in(q))
1425 return qdio_siga_input(q);
1426 return 0;
Jan Glauber779e6e12008-07-17 17:16:48 +02001427}
1428
1429/**
1430 * handle_outbound - process filled outbound buffers
1431 * @q: queue containing the buffers
1432 * @callflags: flags
1433 * @bufnr: first buffer to process
1434 * @count: how many buffers are filled
1435 */
Jan Glauberd303b6f2009-03-26 15:24:31 +01001436static int handle_outbound(struct qdio_q *q, unsigned int callflags,
1437 int bufnr, int count)
Jan Glauber779e6e12008-07-17 17:16:48 +02001438{
1439 unsigned char state;
Jan Glauberd303b6f2009-03-26 15:24:31 +01001440 int used, rc = 0;
Jan Glauber779e6e12008-07-17 17:16:48 +02001441
Jan Glauber6486cda2010-01-04 09:05:42 +01001442 qperf_inc(q, outbound_call);
Jan Glauber779e6e12008-07-17 17:16:48 +02001443
1444 count = set_buf_states(q, bufnr, SLSB_CU_OUTPUT_PRIMED, count);
1445 used = atomic_add_return(count, &q->nr_buf_used);
1446 BUG_ON(used > QDIO_MAX_BUFFERS_PER_Q);
1447
Jan Glauber6486cda2010-01-04 09:05:42 +01001448 if (callflags & QDIO_FLAG_PCI_OUT) {
Jan Glauber779e6e12008-07-17 17:16:48 +02001449 q->u.out.pci_out_enabled = 1;
Jan Glauber6486cda2010-01-04 09:05:42 +01001450 qperf_inc(q, pci_request_int);
1451 }
Jan Glauber779e6e12008-07-17 17:16:48 +02001452 else
1453 q->u.out.pci_out_enabled = 0;
1454
1455 if (queue_type(q) == QDIO_IQDIO_QFMT) {
1456 if (multicast_outbound(q))
Jan Glauberd303b6f2009-03-26 15:24:31 +01001457 rc = qdio_kick_outbound_q(q);
Jan Glauber779e6e12008-07-17 17:16:48 +02001458 else
Klaus-Dieter Wacker7a0f4752008-10-10 21:33:18 +02001459 if ((q->irq_ptr->ssqd_desc.mmwc > 1) &&
1460 (count > 1) &&
1461 (count <= q->irq_ptr->ssqd_desc.mmwc)) {
1462 /* exploit enhanced SIGA */
1463 q->u.out.use_enh_siga = 1;
Jan Glauberd303b6f2009-03-26 15:24:31 +01001464 rc = qdio_kick_outbound_q(q);
Klaus-Dieter Wacker7a0f4752008-10-10 21:33:18 +02001465 } else {
1466 /*
1467 * One siga-w per buffer required for unicast
1468 * HiperSockets.
1469 */
1470 q->u.out.use_enh_siga = 0;
Jan Glauberd303b6f2009-03-26 15:24:31 +01001471 while (count--) {
1472 rc = qdio_kick_outbound_q(q);
1473 if (rc)
1474 goto out;
1475 }
Klaus-Dieter Wacker7a0f4752008-10-10 21:33:18 +02001476 }
Jan Glauber779e6e12008-07-17 17:16:48 +02001477 goto out;
1478 }
1479
1480 if (need_siga_sync(q)) {
1481 qdio_siga_sync_q(q);
1482 goto out;
1483 }
1484
1485 /* try to fast requeue buffers */
Jan Glauber50f769d2008-12-25 13:38:47 +01001486 get_buf_state(q, prev_buf(bufnr), &state, 0);
Jan Glauber779e6e12008-07-17 17:16:48 +02001487 if (state != SLSB_CU_OUTPUT_PRIMED)
Jan Glauberd303b6f2009-03-26 15:24:31 +01001488 rc = qdio_kick_outbound_q(q);
Jan Glauber1d7e1502009-09-22 22:58:39 +02001489 else
Jan Glauber6486cda2010-01-04 09:05:42 +01001490 qperf_inc(q, fast_requeue);
Jan Glauber1d7e1502009-09-22 22:58:39 +02001491
Jan Glauber779e6e12008-07-17 17:16:48 +02001492out:
Jan Glauber779e6e12008-07-17 17:16:48 +02001493 tasklet_schedule(&q->tasklet);
Jan Glauberd303b6f2009-03-26 15:24:31 +01001494 return rc;
Jan Glauber779e6e12008-07-17 17:16:48 +02001495}
1496
1497/**
1498 * do_QDIO - process input or output buffers
1499 * @cdev: associated ccw_device for the qdio subchannel
1500 * @callflags: input or output and special flags from the program
1501 * @q_nr: queue number
1502 * @bufnr: buffer number
1503 * @count: how many buffers to process
1504 */
1505int do_QDIO(struct ccw_device *cdev, unsigned int callflags,
Jan Glauber66182412009-06-22 12:08:15 +02001506 int q_nr, unsigned int bufnr, unsigned int count)
Jan Glauber779e6e12008-07-17 17:16:48 +02001507{
1508 struct qdio_irq *irq_ptr;
Jan Glauber779e6e12008-07-17 17:16:48 +02001509
Jan Glauber66182412009-06-22 12:08:15 +02001510 if (bufnr >= QDIO_MAX_BUFFERS_PER_Q || count > QDIO_MAX_BUFFERS_PER_Q)
Jan Glauber779e6e12008-07-17 17:16:48 +02001511 return -EINVAL;
1512
Jan Glauber779e6e12008-07-17 17:16:48 +02001513 irq_ptr = cdev->private->qdio_data;
1514 if (!irq_ptr)
1515 return -ENODEV;
1516
Jan Glauber1d7e1502009-09-22 22:58:39 +02001517 DBF_DEV_EVENT(DBF_INFO, irq_ptr,
1518 "do%02x b:%02x c:%02x", callflags, bufnr, count);
Jan Glauber779e6e12008-07-17 17:16:48 +02001519
1520 if (irq_ptr->state != QDIO_IRQ_STATE_ACTIVE)
1521 return -EBUSY;
1522
1523 if (callflags & QDIO_FLAG_SYNC_INPUT)
Jan Glauberd303b6f2009-03-26 15:24:31 +01001524 return handle_inbound(irq_ptr->input_qs[q_nr],
1525 callflags, bufnr, count);
Jan Glauber779e6e12008-07-17 17:16:48 +02001526 else if (callflags & QDIO_FLAG_SYNC_OUTPUT)
Jan Glauberd303b6f2009-03-26 15:24:31 +01001527 return handle_outbound(irq_ptr->output_qs[q_nr],
1528 callflags, bufnr, count);
1529 return -EINVAL;
Jan Glauber779e6e12008-07-17 17:16:48 +02001530}
1531EXPORT_SYMBOL_GPL(do_QDIO);
1532
1533static int __init init_QDIO(void)
1534{
1535 int rc;
1536
1537 rc = qdio_setup_init();
1538 if (rc)
1539 return rc;
1540 rc = tiqdio_allocate_memory();
1541 if (rc)
1542 goto out_cache;
1543 rc = qdio_debug_init();
1544 if (rc)
1545 goto out_ti;
Jan Glauber779e6e12008-07-17 17:16:48 +02001546 rc = tiqdio_register_thinints();
1547 if (rc)
Jan Glauber6486cda2010-01-04 09:05:42 +01001548 goto out_debug;
Jan Glauber779e6e12008-07-17 17:16:48 +02001549 return 0;
1550
Jan Glauber779e6e12008-07-17 17:16:48 +02001551out_debug:
1552 qdio_debug_exit();
1553out_ti:
1554 tiqdio_free_memory();
1555out_cache:
1556 qdio_setup_exit();
1557 return rc;
1558}
1559
1560static void __exit exit_QDIO(void)
1561{
1562 tiqdio_unregister_thinints();
1563 tiqdio_free_memory();
Jan Glauber779e6e12008-07-17 17:16:48 +02001564 qdio_debug_exit();
1565 qdio_setup_exit();
1566}
1567
1568module_init(init_QDIO);
1569module_exit(exit_QDIO);