blob: 3ef8d071c64a683316a01b6e12ecd68f3d6f1d9d [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>
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +000017#include <linux/io.h>
Arun Sharma60063492011-07-26 16:09:06 -070018#include <linux/atomic.h>
Jan Glauber779e6e12008-07-17 17:16:48 +020019#include <asm/debug.h>
20#include <asm/qdio.h>
21
22#include "cio.h"
23#include "css.h"
24#include "device.h"
25#include "qdio.h"
26#include "qdio_debug.h"
Jan Glauber779e6e12008-07-17 17:16:48 +020027
28MODULE_AUTHOR("Utz Bacher <utz.bacher@de.ibm.com>,"\
29 "Jan Glauber <jang@linux.vnet.ibm.com>");
30MODULE_DESCRIPTION("QDIO base support");
31MODULE_LICENSE("GPL");
32
Jan Glauber958c0ba2011-01-05 12:47:52 +010033static inline int do_siga_sync(unsigned long schid,
34 unsigned int out_mask, unsigned int in_mask,
35 unsigned int fc)
Jan Glauber779e6e12008-07-17 17:16:48 +020036{
Jan Glauber958c0ba2011-01-05 12:47:52 +010037 register unsigned long __fc asm ("0") = fc;
38 register unsigned long __schid asm ("1") = schid;
Jan Glauber779e6e12008-07-17 17:16:48 +020039 register unsigned long out asm ("2") = out_mask;
40 register unsigned long in asm ("3") = in_mask;
41 int cc;
42
43 asm volatile(
44 " siga 0\n"
45 " ipm %0\n"
46 " srl %0,28\n"
47 : "=d" (cc)
48 : "d" (__fc), "d" (__schid), "d" (out), "d" (in) : "cc");
49 return cc;
50}
51
Jan Glauber958c0ba2011-01-05 12:47:52 +010052static inline int do_siga_input(unsigned long schid, unsigned int mask,
53 unsigned int fc)
Jan Glauber779e6e12008-07-17 17:16:48 +020054{
Jan Glauber958c0ba2011-01-05 12:47:52 +010055 register unsigned long __fc asm ("0") = fc;
56 register unsigned long __schid asm ("1") = schid;
Jan Glauber779e6e12008-07-17 17:16:48 +020057 register unsigned long __mask asm ("2") = mask;
58 int cc;
59
60 asm volatile(
61 " siga 0\n"
62 " ipm %0\n"
63 " srl %0,28\n"
64 : "=d" (cc)
65 : "d" (__fc), "d" (__schid), "d" (__mask) : "cc", "memory");
66 return cc;
67}
68
69/**
70 * do_siga_output - perform SIGA-w/wt function
71 * @schid: subchannel id or in case of QEBSM the subchannel token
72 * @mask: which output queues to process
73 * @bb: busy bit indicator, set only if SIGA-w/wt could not access a buffer
74 * @fc: function code to perform
75 *
76 * Returns cc or QDIO_ERROR_SIGA_ACCESS_EXCEPTION.
77 * Note: For IQDC unicast queues only the highest priority queue is processed.
78 */
79static inline int do_siga_output(unsigned long schid, unsigned long mask,
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +000080 unsigned int *bb, unsigned int fc,
81 unsigned long aob)
Jan Glauber779e6e12008-07-17 17:16:48 +020082{
83 register unsigned long __fc asm("0") = fc;
84 register unsigned long __schid asm("1") = schid;
85 register unsigned long __mask asm("2") = mask;
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +000086 register unsigned long __aob asm("3") = aob;
Jan Glauber779e6e12008-07-17 17:16:48 +020087 int cc = QDIO_ERROR_SIGA_ACCESS_EXCEPTION;
88
89 asm volatile(
90 " siga 0\n"
91 "0: ipm %0\n"
92 " srl %0,28\n"
93 "1:\n"
94 EX_TABLE(0b, 1b)
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +000095 : "+d" (cc), "+d" (__fc), "+d" (__schid), "+d" (__mask),
96 "+d" (__aob)
Jan Glauber779e6e12008-07-17 17:16:48 +020097 : : "cc", "memory");
98 *bb = ((unsigned int) __fc) >> 31;
99 return cc;
100}
101
102static inline int qdio_check_ccq(struct qdio_q *q, unsigned int ccq)
103{
Jan Glauber779e6e12008-07-17 17:16:48 +0200104 /* all done or next buffer state different */
105 if (ccq == 0 || ccq == 32)
106 return 0;
Jan Glauber25f269f2011-10-30 15:17:06 +0100107 /* no buffer processed */
108 if (ccq == 97)
Jan Glauber779e6e12008-07-17 17:16:48 +0200109 return 1;
Jan Glauber25f269f2011-10-30 15:17:06 +0100110 /* not all buffers processed */
111 if (ccq == 96)
112 return 2;
Jan Glauber779e6e12008-07-17 17:16:48 +0200113 /* notify devices immediately */
Jan Glauber22f99342008-12-25 13:38:46 +0100114 DBF_ERROR("%4x ccq:%3d", SCH_NO(q), ccq);
Jan Glauber779e6e12008-07-17 17:16:48 +0200115 return -EIO;
116}
117
118/**
119 * qdio_do_eqbs - extract buffer states for QEBSM
120 * @q: queue to manipulate
121 * @state: state of the extracted buffers
122 * @start: buffer number to start at
123 * @count: count of buffers to examine
Jan Glauber50f769d2008-12-25 13:38:47 +0100124 * @auto_ack: automatically acknowledge buffers
Jan Glauber779e6e12008-07-17 17:16:48 +0200125 *
Coly Li73ac36e2009-01-07 18:09:16 -0800126 * Returns the number of successfully extracted equal buffer states.
Jan Glauber779e6e12008-07-17 17:16:48 +0200127 * Stops processing if a state is different from the last buffers state.
128 */
129static int qdio_do_eqbs(struct qdio_q *q, unsigned char *state,
Jan Glauber50f769d2008-12-25 13:38:47 +0100130 int start, int count, int auto_ack)
Jan Glauber779e6e12008-07-17 17:16:48 +0200131{
Jan Glauber25f269f2011-10-30 15:17:06 +0100132 int rc, tmp_count = count, tmp_start = start, nr = q->nr, retried = 0;
Jan Glauber779e6e12008-07-17 17:16:48 +0200133 unsigned int ccq = 0;
Jan Glauber779e6e12008-07-17 17:16:48 +0200134
135 BUG_ON(!q->irq_ptr->sch_token);
Jan Glauber6486cda2010-01-04 09:05:42 +0100136 qperf_inc(q, eqbs);
Jan Glauber779e6e12008-07-17 17:16:48 +0200137
138 if (!q->is_input_q)
139 nr += q->irq_ptr->nr_input_qs;
140again:
Jan Glauber50f769d2008-12-25 13:38:47 +0100141 ccq = do_eqbs(q->irq_ptr->sch_token, state, nr, &tmp_start, &tmp_count,
142 auto_ack);
Jan Glauber779e6e12008-07-17 17:16:48 +0200143 rc = qdio_check_ccq(q, ccq);
Jan Glauber25f269f2011-10-30 15:17:06 +0100144 if (!rc)
145 return count - tmp_count;
Jan Glauber22f99342008-12-25 13:38:46 +0100146
Jan Glauber779e6e12008-07-17 17:16:48 +0200147 if (rc == 1) {
Jan Glauber22f99342008-12-25 13:38:46 +0100148 DBF_DEV_EVENT(DBF_WARN, q->irq_ptr, "EQBS again:%2d", ccq);
Jan Glauber779e6e12008-07-17 17:16:48 +0200149 goto again;
150 }
151
Jan Glauber25f269f2011-10-30 15:17:06 +0100152 if (rc == 2) {
153 BUG_ON(tmp_count == count);
154 qperf_inc(q, eqbs_partial);
155 DBF_DEV_EVENT(DBF_WARN, q->irq_ptr, "EQBS part:%02x",
156 tmp_count);
157 /*
158 * Retry once, if that fails bail out and process the
159 * extracted buffers before trying again.
160 */
161 if (!retried++)
162 goto again;
163 else
164 return count - tmp_count;
Jan Glauber779e6e12008-07-17 17:16:48 +0200165 }
Jan Glauber25f269f2011-10-30 15:17:06 +0100166
167 DBF_ERROR("%4x EQBS ERROR", SCH_NO(q));
168 DBF_ERROR("%3d%3d%2d", count, tmp_count, nr);
169 q->handler(q->irq_ptr->cdev, QDIO_ERROR_ACTIVATE_CHECK_CONDITION,
170 0, -1, -1, q->irq_ptr->int_parm);
171 return 0;
Jan Glauber779e6e12008-07-17 17:16:48 +0200172}
173
174/**
175 * qdio_do_sqbs - set buffer states for QEBSM
176 * @q: queue to manipulate
177 * @state: new state of the buffers
178 * @start: first buffer number to change
179 * @count: how many buffers to change
180 *
181 * Returns the number of successfully changed buffers.
182 * Does retrying until the specified count of buffer states is set or an
183 * error occurs.
184 */
185static int qdio_do_sqbs(struct qdio_q *q, unsigned char state, int start,
186 int count)
187{
188 unsigned int ccq = 0;
189 int tmp_count = count, tmp_start = start;
190 int nr = q->nr;
191 int rc;
Jan Glauber779e6e12008-07-17 17:16:48 +0200192
Jan Glauber50f769d2008-12-25 13:38:47 +0100193 if (!count)
194 return 0;
195
Jan Glauber779e6e12008-07-17 17:16:48 +0200196 BUG_ON(!q->irq_ptr->sch_token);
Jan Glauber6486cda2010-01-04 09:05:42 +0100197 qperf_inc(q, sqbs);
Jan Glauber779e6e12008-07-17 17:16:48 +0200198
199 if (!q->is_input_q)
200 nr += q->irq_ptr->nr_input_qs;
201again:
202 ccq = do_sqbs(q->irq_ptr->sch_token, state, nr, &tmp_start, &tmp_count);
203 rc = qdio_check_ccq(q, ccq);
Jan Glauber25f269f2011-10-30 15:17:06 +0100204 if (!rc) {
205 WARN_ON(tmp_count);
206 return count - tmp_count;
207 }
208
209 if (rc == 1 || rc == 2) {
Jan Glauber22f99342008-12-25 13:38:46 +0100210 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "SQBS again:%2d", ccq);
Jan Glauber6486cda2010-01-04 09:05:42 +0100211 qperf_inc(q, sqbs_partial);
Jan Glauber779e6e12008-07-17 17:16:48 +0200212 goto again;
213 }
Jan Glauber25f269f2011-10-30 15:17:06 +0100214
215 DBF_ERROR("%4x SQBS ERROR", SCH_NO(q));
216 DBF_ERROR("%3d%3d%2d", count, tmp_count, nr);
217 q->handler(q->irq_ptr->cdev, QDIO_ERROR_ACTIVATE_CHECK_CONDITION,
218 0, -1, -1, q->irq_ptr->int_parm);
219 return 0;
Jan Glauber779e6e12008-07-17 17:16:48 +0200220}
221
222/* returns number of examined buffers and their common state in *state */
223static inline int get_buf_states(struct qdio_q *q, unsigned int bufnr,
Jan Glauber50f769d2008-12-25 13:38:47 +0100224 unsigned char *state, unsigned int count,
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +0000225 int auto_ack, int merge_pending)
Jan Glauber779e6e12008-07-17 17:16:48 +0200226{
227 unsigned char __state = 0;
228 int i;
229
230 BUG_ON(bufnr > QDIO_MAX_BUFFERS_MASK);
231 BUG_ON(count > QDIO_MAX_BUFFERS_PER_Q);
232
233 if (is_qebsm(q))
Jan Glauber50f769d2008-12-25 13:38:47 +0100234 return qdio_do_eqbs(q, state, bufnr, count, auto_ack);
Jan Glauber779e6e12008-07-17 17:16:48 +0200235
236 for (i = 0; i < count; i++) {
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +0000237 if (!__state) {
Jan Glauber779e6e12008-07-17 17:16:48 +0200238 __state = q->slsb.val[bufnr];
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +0000239 if (merge_pending && __state == SLSB_P_OUTPUT_PENDING)
240 __state = SLSB_P_OUTPUT_EMPTY;
241 } else if (merge_pending) {
242 if ((q->slsb.val[bufnr] & __state) != __state)
243 break;
244 } else if (q->slsb.val[bufnr] != __state)
Jan Glauber779e6e12008-07-17 17:16:48 +0200245 break;
246 bufnr = next_buf(bufnr);
247 }
248 *state = __state;
249 return i;
250}
251
Jan Glauber60b5df22009-06-22 12:08:10 +0200252static inline int get_buf_state(struct qdio_q *q, unsigned int bufnr,
253 unsigned char *state, int auto_ack)
Jan Glauber779e6e12008-07-17 17:16:48 +0200254{
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +0000255 return get_buf_states(q, bufnr, state, 1, auto_ack, 0);
Jan Glauber779e6e12008-07-17 17:16:48 +0200256}
257
258/* wrap-around safe setting of slsb states, returns number of changed buffers */
259static inline int set_buf_states(struct qdio_q *q, int bufnr,
260 unsigned char state, int count)
261{
262 int i;
263
264 BUG_ON(bufnr > QDIO_MAX_BUFFERS_MASK);
265 BUG_ON(count > QDIO_MAX_BUFFERS_PER_Q);
266
267 if (is_qebsm(q))
268 return qdio_do_sqbs(q, state, bufnr, count);
269
270 for (i = 0; i < count; i++) {
271 xchg(&q->slsb.val[bufnr], state);
272 bufnr = next_buf(bufnr);
273 }
274 return count;
275}
276
277static inline int set_buf_state(struct qdio_q *q, int bufnr,
278 unsigned char state)
279{
280 return set_buf_states(q, bufnr, state, 1);
281}
282
283/* set slsb states to initial state */
Martin Schwidefskyc4736d92011-10-30 15:17:11 +0100284static void qdio_init_buf_states(struct qdio_irq *irq_ptr)
Jan Glauber779e6e12008-07-17 17:16:48 +0200285{
286 struct qdio_q *q;
287 int i;
288
289 for_each_input_queue(irq_ptr, q, i)
290 set_buf_states(q, 0, SLSB_P_INPUT_NOT_INIT,
291 QDIO_MAX_BUFFERS_PER_Q);
292 for_each_output_queue(irq_ptr, q, i)
293 set_buf_states(q, 0, SLSB_P_OUTPUT_NOT_INIT,
294 QDIO_MAX_BUFFERS_PER_Q);
295}
296
Jan Glauber60b5df22009-06-22 12:08:10 +0200297static inline int qdio_siga_sync(struct qdio_q *q, unsigned int output,
Jan Glauber779e6e12008-07-17 17:16:48 +0200298 unsigned int input)
299{
Jan Glauber958c0ba2011-01-05 12:47:52 +0100300 unsigned long schid = *((u32 *) &q->irq_ptr->schid);
301 unsigned int fc = QDIO_SIGA_SYNC;
Jan Glauber779e6e12008-07-17 17:16:48 +0200302 int cc;
303
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100304 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "siga-s:%1d", q->nr);
Jan Glauber6486cda2010-01-04 09:05:42 +0100305 qperf_inc(q, siga_sync);
Jan Glauber779e6e12008-07-17 17:16:48 +0200306
Jan Glauber958c0ba2011-01-05 12:47:52 +0100307 if (is_qebsm(q)) {
308 schid = q->irq_ptr->sch_token;
309 fc |= QDIO_SIGA_QEBSM_FLAG;
310 }
311
312 cc = do_siga_sync(schid, output, input, fc);
Jan Glauber110da312011-01-05 12:47:53 +0100313 if (unlikely(cc))
Jan Glauber22f99342008-12-25 13:38:46 +0100314 DBF_ERROR("%4x SIGA-S:%2d", SCH_NO(q), cc);
Jan Glauber779e6e12008-07-17 17:16:48 +0200315 return cc;
316}
317
Jan Glauber60b5df22009-06-22 12:08:10 +0200318static inline int qdio_siga_sync_q(struct qdio_q *q)
Jan Glauber779e6e12008-07-17 17:16:48 +0200319{
320 if (q->is_input_q)
321 return qdio_siga_sync(q, 0, q->mask);
322 else
323 return qdio_siga_sync(q, q->mask, 0);
324}
325
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +0000326static int qdio_siga_output(struct qdio_q *q, unsigned int *busy_bit,
327 unsigned long aob)
Jan Glauber779e6e12008-07-17 17:16:48 +0200328{
Jan Glauber958c0ba2011-01-05 12:47:52 +0100329 unsigned long schid = *((u32 *) &q->irq_ptr->schid);
330 unsigned int fc = QDIO_SIGA_WRITE;
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100331 u64 start_time = 0;
Jan Glauberbe8d97a2011-08-03 16:44:17 +0200332 int retries = 0, cc;
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +0000333 unsigned long laob = 0;
334
335 if (q->u.out.use_cq && aob != 0) {
336 fc = QDIO_SIGA_WRITEQ;
337 laob = aob;
338 }
Jan Glauber779e6e12008-07-17 17:16:48 +0200339
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100340 if (is_qebsm(q)) {
Jan Glauber779e6e12008-07-17 17:16:48 +0200341 schid = q->irq_ptr->sch_token;
Jan Glauber958c0ba2011-01-05 12:47:52 +0100342 fc |= QDIO_SIGA_QEBSM_FLAG;
Jan Glauber779e6e12008-07-17 17:16:48 +0200343 }
Jan Glauber779e6e12008-07-17 17:16:48 +0200344again:
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +0000345 WARN_ON_ONCE((aob && queue_type(q) != QDIO_IQDIO_QFMT) ||
346 (aob && fc != QDIO_SIGA_WRITEQ));
347 cc = do_siga_output(schid, q->mask, busy_bit, fc, laob);
Jan Glauber58eb27c2008-08-21 19:46:34 +0200348
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100349 /* hipersocket busy condition */
Jan Glauber110da312011-01-05 12:47:53 +0100350 if (unlikely(*busy_bit)) {
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100351 WARN_ON(queue_type(q) != QDIO_IQDIO_QFMT || cc != 2);
Jan Glauberbe8d97a2011-08-03 16:44:17 +0200352 retries++;
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100353
354 if (!start_time) {
Jan Glauber3a601bf2010-05-17 10:00:17 +0200355 start_time = get_clock();
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100356 goto again;
357 }
Jan Glauber3a601bf2010-05-17 10:00:17 +0200358 if ((get_clock() - start_time) < QDIO_BUSY_BIT_PATIENCE)
Jan Glauber779e6e12008-07-17 17:16:48 +0200359 goto again;
360 }
Jan Glauberbe8d97a2011-08-03 16:44:17 +0200361 if (retries) {
362 DBF_DEV_EVENT(DBF_WARN, q->irq_ptr,
363 "%4x cc2 BB1:%1d", SCH_NO(q), q->nr);
364 DBF_DEV_EVENT(DBF_WARN, q->irq_ptr, "count:%u", retries);
365 }
Jan Glauber779e6e12008-07-17 17:16:48 +0200366 return cc;
367}
368
369static inline int qdio_siga_input(struct qdio_q *q)
370{
Jan Glauber958c0ba2011-01-05 12:47:52 +0100371 unsigned long schid = *((u32 *) &q->irq_ptr->schid);
372 unsigned int fc = QDIO_SIGA_READ;
Jan Glauber779e6e12008-07-17 17:16:48 +0200373 int cc;
374
Jan Glauber22f99342008-12-25 13:38:46 +0100375 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "siga-r:%1d", q->nr);
Jan Glauber6486cda2010-01-04 09:05:42 +0100376 qperf_inc(q, siga_read);
Jan Glauber779e6e12008-07-17 17:16:48 +0200377
Jan Glauber958c0ba2011-01-05 12:47:52 +0100378 if (is_qebsm(q)) {
379 schid = q->irq_ptr->sch_token;
380 fc |= QDIO_SIGA_QEBSM_FLAG;
381 }
382
383 cc = do_siga_input(schid, q->mask, fc);
Jan Glauber110da312011-01-05 12:47:53 +0100384 if (unlikely(cc))
Jan Glauber22f99342008-12-25 13:38:46 +0100385 DBF_ERROR("%4x SIGA-R:%2d", SCH_NO(q), cc);
Jan Glauber779e6e12008-07-17 17:16:48 +0200386 return cc;
387}
388
Jan Glauber90adac52011-01-05 12:47:54 +0100389#define qdio_siga_sync_out(q) qdio_siga_sync(q, ~0U, 0)
390#define qdio_siga_sync_all(q) qdio_siga_sync(q, ~0U, ~0U)
391
392static inline void qdio_sync_queues(struct qdio_q *q)
Jan Glauber779e6e12008-07-17 17:16:48 +0200393{
Jan Glauber90adac52011-01-05 12:47:54 +0100394 /* PCI capable outbound queues will also be scanned so sync them too */
395 if (pci_out_supported(q))
396 qdio_siga_sync_all(q);
397 else
Jan Glauber779e6e12008-07-17 17:16:48 +0200398 qdio_siga_sync_q(q);
399}
400
Jan Glauber60b5df22009-06-22 12:08:10 +0200401int debug_get_buf_state(struct qdio_q *q, unsigned int bufnr,
402 unsigned char *state)
403{
Jan Glauber90adac52011-01-05 12:47:54 +0100404 if (need_siga_sync(q))
405 qdio_siga_sync_q(q);
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +0000406 return get_buf_states(q, bufnr, state, 1, 0, 0);
Jan Glauber60b5df22009-06-22 12:08:10 +0200407}
408
409static inline void qdio_stop_polling(struct qdio_q *q)
Jan Glauber779e6e12008-07-17 17:16:48 +0200410{
Jan Glauber50f769d2008-12-25 13:38:47 +0100411 if (!q->u.in.polling)
Jan Glauber779e6e12008-07-17 17:16:48 +0200412 return;
Jan Glauber50f769d2008-12-25 13:38:47 +0100413
Jan Glauber779e6e12008-07-17 17:16:48 +0200414 q->u.in.polling = 0;
Jan Glauber6486cda2010-01-04 09:05:42 +0100415 qperf_inc(q, stop_polling);
Jan Glauber779e6e12008-07-17 17:16:48 +0200416
417 /* show the card that we are not polling anymore */
Jan Glauber50f769d2008-12-25 13:38:47 +0100418 if (is_qebsm(q)) {
Jan Glaubere85dea02009-03-26 15:24:29 +0100419 set_buf_states(q, q->u.in.ack_start, SLSB_P_INPUT_NOT_INIT,
Jan Glauber50f769d2008-12-25 13:38:47 +0100420 q->u.in.ack_count);
421 q->u.in.ack_count = 0;
422 } else
Jan Glaubere85dea02009-03-26 15:24:29 +0100423 set_buf_state(q, q->u.in.ack_start, SLSB_P_INPUT_NOT_INIT);
Jan Glauber779e6e12008-07-17 17:16:48 +0200424}
425
Jan Glauberd3072972010-02-26 22:37:36 +0100426static inline void account_sbals(struct qdio_q *q, int count)
427{
428 int pos = 0;
429
430 q->q_stats.nr_sbal_total += count;
431 if (count == QDIO_MAX_BUFFERS_MASK) {
432 q->q_stats.nr_sbals[7]++;
433 return;
434 }
435 while (count >>= 1)
436 pos++;
437 q->q_stats.nr_sbals[pos]++;
438}
439
Jan Glauberbffbbd22011-04-20 10:15:33 +0200440static void process_buffer_error(struct qdio_q *q, int count)
Jan Glauber779e6e12008-07-17 17:16:48 +0200441{
Jan Glauberbffbbd22011-04-20 10:15:33 +0200442 unsigned char state = (q->is_input_q) ? SLSB_P_INPUT_NOT_INIT :
443 SLSB_P_OUTPUT_NOT_INIT;
444
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100445 q->qdio_error |= QDIO_ERROR_SLSB_STATE;
Jan Glauber50f769d2008-12-25 13:38:47 +0100446
447 /* special handling for no target buffer empty */
448 if ((!q->is_input_q &&
Jan Glauber3ec90872011-06-06 14:14:40 +0200449 (q->sbal[q->first_to_check]->element[15].sflags) == 0x10)) {
Jan Glauber6486cda2010-01-04 09:05:42 +0100450 qperf_inc(q, target_full);
Jan Glauber1d7e1502009-09-22 22:58:39 +0200451 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "OUTFULL FTC:%02x",
Jan Glauber50f769d2008-12-25 13:38:47 +0100452 q->first_to_check);
Jan Glauber2768b2d2011-10-30 15:17:07 +0100453 goto set;
Jan Glauber50f769d2008-12-25 13:38:47 +0100454 }
455
Jan Glauber22f99342008-12-25 13:38:46 +0100456 DBF_ERROR("%4x BUF ERROR", SCH_NO(q));
457 DBF_ERROR((q->is_input_q) ? "IN:%2d" : "OUT:%2d", q->nr);
Jan Glauber50f769d2008-12-25 13:38:47 +0100458 DBF_ERROR("FTC:%3d C:%3d", q->first_to_check, count);
Jan Glauber22f99342008-12-25 13:38:46 +0100459 DBF_ERROR("F14:%2x F15:%2x",
Jan Glauber3ec90872011-06-06 14:14:40 +0200460 q->sbal[q->first_to_check]->element[14].sflags,
461 q->sbal[q->first_to_check]->element[15].sflags);
Jan Glauberbffbbd22011-04-20 10:15:33 +0200462
Jan Glauber2768b2d2011-10-30 15:17:07 +0100463set:
Jan Glauberbffbbd22011-04-20 10:15:33 +0200464 /*
465 * Interrupts may be avoided as long as the error is present
466 * so change the buffer state immediately to avoid starvation.
467 */
468 set_buf_states(q, q->first_to_check, state, count);
Jan Glauber50f769d2008-12-25 13:38:47 +0100469}
Jan Glauber779e6e12008-07-17 17:16:48 +0200470
Jan Glauber50f769d2008-12-25 13:38:47 +0100471static inline void inbound_primed(struct qdio_q *q, int count)
472{
473 int new;
474
Jan Glauber1d7e1502009-09-22 22:58:39 +0200475 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "in prim: %02x", count);
Jan Glauber50f769d2008-12-25 13:38:47 +0100476
477 /* for QEBSM the ACK was already set by EQBS */
478 if (is_qebsm(q)) {
479 if (!q->u.in.polling) {
480 q->u.in.polling = 1;
481 q->u.in.ack_count = count;
Jan Glaubere85dea02009-03-26 15:24:29 +0100482 q->u.in.ack_start = q->first_to_check;
Jan Glauber50f769d2008-12-25 13:38:47 +0100483 return;
484 }
485
486 /* delete the previous ACK's */
Jan Glaubere85dea02009-03-26 15:24:29 +0100487 set_buf_states(q, q->u.in.ack_start, SLSB_P_INPUT_NOT_INIT,
Jan Glauber50f769d2008-12-25 13:38:47 +0100488 q->u.in.ack_count);
489 q->u.in.ack_count = count;
Jan Glaubere85dea02009-03-26 15:24:29 +0100490 q->u.in.ack_start = q->first_to_check;
Jan Glauber50f769d2008-12-25 13:38:47 +0100491 return;
492 }
493
494 /*
495 * ACK the newest buffer. The ACK will be removed in qdio_stop_polling
496 * or by the next inbound run.
497 */
498 new = add_buf(q->first_to_check, count - 1);
499 if (q->u.in.polling) {
500 /* reset the previous ACK but first set the new one */
501 set_buf_state(q, new, SLSB_P_INPUT_ACK);
Jan Glaubere85dea02009-03-26 15:24:29 +0100502 set_buf_state(q, q->u.in.ack_start, SLSB_P_INPUT_NOT_INIT);
Jan Glauber3fdf1e12009-03-26 15:24:28 +0100503 } else {
Jan Glauber50f769d2008-12-25 13:38:47 +0100504 q->u.in.polling = 1;
Jan Glauber3fdf1e12009-03-26 15:24:28 +0100505 set_buf_state(q, new, SLSB_P_INPUT_ACK);
Jan Glauber50f769d2008-12-25 13:38:47 +0100506 }
507
Jan Glaubere85dea02009-03-26 15:24:29 +0100508 q->u.in.ack_start = new;
Jan Glauber50f769d2008-12-25 13:38:47 +0100509 count--;
510 if (!count)
511 return;
Jan Glauber6541f7b2009-09-22 22:58:40 +0200512 /* need to change ALL buffers to get more interrupts */
513 set_buf_states(q, q->first_to_check, SLSB_P_INPUT_NOT_INIT, count);
Jan Glauber779e6e12008-07-17 17:16:48 +0200514}
515
516static int get_inbound_buffer_frontier(struct qdio_q *q)
517{
518 int count, stop;
Jan Glauber6fa10982011-01-31 11:30:08 +0100519 unsigned char state = 0;
Jan Glauber779e6e12008-07-17 17:16:48 +0200520
Jan Glaubera2b86012011-10-30 15:17:05 +0100521 q->timestamp = get_clock_fast();
522
Jan Glauber779e6e12008-07-17 17:16:48 +0200523 /*
Jan Glauber779e6e12008-07-17 17:16:48 +0200524 * Don't check 128 buffers, as otherwise qdio_inbound_q_moved
525 * would return 0.
526 */
527 count = min(atomic_read(&q->nr_buf_used), QDIO_MAX_BUFFERS_MASK);
528 stop = add_buf(q->first_to_check, count);
529
Jan Glauber779e6e12008-07-17 17:16:48 +0200530 if (q->first_to_check == stop)
531 goto out;
532
Jan Glauber36e3e722009-06-22 12:08:12 +0200533 /*
534 * No siga sync here, as a PCI or we after a thin interrupt
535 * already sync'ed the queues.
536 */
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +0000537 count = get_buf_states(q, q->first_to_check, &state, count, 1, 0);
Jan Glauber779e6e12008-07-17 17:16:48 +0200538 if (!count)
539 goto out;
540
541 switch (state) {
542 case SLSB_P_INPUT_PRIMED:
Jan Glauber50f769d2008-12-25 13:38:47 +0100543 inbound_primed(q, count);
Jan Glauber779e6e12008-07-17 17:16:48 +0200544 q->first_to_check = add_buf(q->first_to_check, count);
Jan Glauber8bcd9b02009-12-18 17:43:26 +0100545 if (atomic_sub(count, &q->nr_buf_used) == 0)
Jan Glauber6486cda2010-01-04 09:05:42 +0100546 qperf_inc(q, inbound_queue_full);
Jan Glauberd3072972010-02-26 22:37:36 +0100547 if (q->irq_ptr->perf_stat_enabled)
548 account_sbals(q, count);
Jan Glauber36e3e722009-06-22 12:08:12 +0200549 break;
Jan Glauber779e6e12008-07-17 17:16:48 +0200550 case SLSB_P_INPUT_ERROR:
Jan Glauberbffbbd22011-04-20 10:15:33 +0200551 process_buffer_error(q, count);
Jan Glauber779e6e12008-07-17 17:16:48 +0200552 q->first_to_check = add_buf(q->first_to_check, count);
553 atomic_sub(count, &q->nr_buf_used);
Jan Glauberd3072972010-02-26 22:37:36 +0100554 if (q->irq_ptr->perf_stat_enabled)
555 account_sbals_error(q, count);
Jan Glauber779e6e12008-07-17 17:16:48 +0200556 break;
557 case SLSB_CU_INPUT_EMPTY:
558 case SLSB_P_INPUT_NOT_INIT:
559 case SLSB_P_INPUT_ACK:
Jan Glauberd3072972010-02-26 22:37:36 +0100560 if (q->irq_ptr->perf_stat_enabled)
561 q->q_stats.nr_sbal_nop++;
Jan Glauber22f99342008-12-25 13:38:46 +0100562 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "in nop");
Jan Glauber779e6e12008-07-17 17:16:48 +0200563 break;
564 default:
565 BUG();
566 }
567out:
Jan Glauber779e6e12008-07-17 17:16:48 +0200568 return q->first_to_check;
569}
570
Jan Glauber60b5df22009-06-22 12:08:10 +0200571static int qdio_inbound_q_moved(struct qdio_q *q)
Jan Glauber779e6e12008-07-17 17:16:48 +0200572{
573 int bufnr;
574
575 bufnr = get_inbound_buffer_frontier(q);
576
Jan Glaubere85dea02009-03-26 15:24:29 +0100577 if ((bufnr != q->last_move) || q->qdio_error) {
578 q->last_move = bufnr;
Martin Schwidefsky27d71602010-02-26 22:37:38 +0100579 if (!is_thinint_irq(q->irq_ptr) && MACHINE_IS_LPAR)
Jan Glauber3a601bf2010-05-17 10:00:17 +0200580 q->u.in.timestamp = get_clock();
Jan Glauber779e6e12008-07-17 17:16:48 +0200581 return 1;
582 } else
583 return 0;
584}
585
Jan Glauber9a2c1602009-06-22 12:08:11 +0200586static inline int qdio_inbound_q_done(struct qdio_q *q)
Jan Glauber60b5df22009-06-22 12:08:10 +0200587{
588 unsigned char state = 0;
589
590 if (!atomic_read(&q->nr_buf_used))
591 return 1;
592
Jan Glauber90adac52011-01-05 12:47:54 +0100593 if (need_siga_sync(q))
594 qdio_siga_sync_q(q);
Jan Glauber60b5df22009-06-22 12:08:10 +0200595 get_buf_state(q, q->first_to_check, &state, 0);
596
Ursula Braun4c522282010-02-09 09:46:07 +0100597 if (state == SLSB_P_INPUT_PRIMED || state == SLSB_P_INPUT_ERROR)
Jan Glauber60b5df22009-06-22 12:08:10 +0200598 /* more work coming */
599 return 0;
Jan Glauber9a2c1602009-06-22 12:08:11 +0200600
601 if (is_thinint_irq(q->irq_ptr))
602 return 1;
603
604 /* don't poll under z/VM */
605 if (MACHINE_IS_VM)
606 return 1;
607
608 /*
609 * At this point we know, that inbound first_to_check
610 * has (probably) not moved (see qdio_inbound_processing).
611 */
Jan Glauber3a601bf2010-05-17 10:00:17 +0200612 if (get_clock() > q->u.in.timestamp + QDIO_INPUT_THRESHOLD) {
Jan Glauber1d7e1502009-09-22 22:58:39 +0200613 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "in done:%02x",
Jan Glauber9a2c1602009-06-22 12:08:11 +0200614 q->first_to_check);
615 return 1;
616 } else
617 return 0;
Jan Glauber60b5df22009-06-22 12:08:10 +0200618}
619
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +0000620static inline int contains_aobs(struct qdio_q *q)
621{
622 return !q->is_input_q && q->u.out.use_cq;
623}
624
625static inline void qdio_trace_aob(struct qdio_irq *irq, struct qdio_q *q,
626 int i, struct qaob *aob)
627{
628 int tmp;
629
630 DBF_DEV_EVENT(DBF_INFO, irq, "AOB%d:%lx", i,
631 (unsigned long) virt_to_phys(aob));
632 DBF_DEV_EVENT(DBF_INFO, irq, "RES00:%lx",
633 (unsigned long) aob->res0[0]);
634 DBF_DEV_EVENT(DBF_INFO, irq, "RES01:%lx",
635 (unsigned long) aob->res0[1]);
636 DBF_DEV_EVENT(DBF_INFO, irq, "RES02:%lx",
637 (unsigned long) aob->res0[2]);
638 DBF_DEV_EVENT(DBF_INFO, irq, "RES03:%lx",
639 (unsigned long) aob->res0[3]);
640 DBF_DEV_EVENT(DBF_INFO, irq, "RES04:%lx",
641 (unsigned long) aob->res0[4]);
642 DBF_DEV_EVENT(DBF_INFO, irq, "RES05:%lx",
643 (unsigned long) aob->res0[5]);
644 DBF_DEV_EVENT(DBF_INFO, irq, "RES1:%x", aob->res1);
645 DBF_DEV_EVENT(DBF_INFO, irq, "RES2:%x", aob->res2);
646 DBF_DEV_EVENT(DBF_INFO, irq, "RES3:%x", aob->res3);
647 DBF_DEV_EVENT(DBF_INFO, irq, "AORC:%u", aob->aorc);
648 DBF_DEV_EVENT(DBF_INFO, irq, "FLAGS:%u", aob->flags);
649 DBF_DEV_EVENT(DBF_INFO, irq, "CBTBS:%u", aob->cbtbs);
650 DBF_DEV_EVENT(DBF_INFO, irq, "SBC:%u", aob->sb_count);
651 for (tmp = 0; tmp < QDIO_MAX_ELEMENTS_PER_BUFFER; ++tmp) {
652 DBF_DEV_EVENT(DBF_INFO, irq, "SBA%d:%lx", tmp,
653 (unsigned long) aob->sba[tmp]);
654 DBF_DEV_EVENT(DBF_INFO, irq, "rSBA%d:%lx", tmp,
655 (unsigned long) q->sbal[i]->element[tmp].addr);
656 DBF_DEV_EVENT(DBF_INFO, irq, "DC%d:%u", tmp, aob->dcount[tmp]);
657 DBF_DEV_EVENT(DBF_INFO, irq, "rDC%d:%u", tmp,
658 q->sbal[i]->element[tmp].length);
659 }
660 DBF_DEV_EVENT(DBF_INFO, irq, "USER0:%lx", (unsigned long) aob->user0);
661 for (tmp = 0; tmp < 2; ++tmp) {
662 DBF_DEV_EVENT(DBF_INFO, irq, "RES4%d:%lx", tmp,
663 (unsigned long) aob->res4[tmp]);
664 }
665 DBF_DEV_EVENT(DBF_INFO, irq, "USER1:%lx", (unsigned long) aob->user1);
666 DBF_DEV_EVENT(DBF_INFO, irq, "USER2:%lx", (unsigned long) aob->user2);
667}
668
669static inline void qdio_handle_aobs(struct qdio_q *q, int start, int count)
670{
671 unsigned char state = 0;
672 int j, b = start;
673
674 if (!contains_aobs(q))
675 return;
676
677 for (j = 0; j < count; ++j) {
678 get_buf_state(q, b, &state, 0);
679 if (state == SLSB_P_OUTPUT_PENDING) {
680 struct qaob *aob = q->u.out.aobs[b];
681 if (aob == NULL)
682 continue;
683
684 BUG_ON(q->u.out.sbal_state == NULL);
685 q->u.out.sbal_state[b].flags |=
686 QDIO_OUTBUF_STATE_FLAG_PENDING;
687 q->u.out.aobs[b] = NULL;
688 } else if (state == SLSB_P_OUTPUT_EMPTY) {
689 BUG_ON(q->u.out.sbal_state == NULL);
690 q->u.out.sbal_state[b].aob = NULL;
691 }
692 b = next_buf(b);
693 }
694}
695
696static inline unsigned long qdio_aob_for_buffer(struct qdio_output_q *q,
697 int bufnr)
698{
699 unsigned long phys_aob = 0;
700
701 if (!q->use_cq)
702 goto out;
703
704 if (!q->aobs[bufnr]) {
705 struct qaob *aob = qdio_allocate_aob();
706 q->aobs[bufnr] = aob;
707 }
708 if (q->aobs[bufnr]) {
709 BUG_ON(q->sbal_state == NULL);
710 q->sbal_state[bufnr].flags = QDIO_OUTBUF_STATE_FLAG_NONE;
711 q->sbal_state[bufnr].aob = q->aobs[bufnr];
712 q->aobs[bufnr]->user1 = (u64) q->sbal_state[bufnr].user;
713 phys_aob = virt_to_phys(q->aobs[bufnr]);
714 BUG_ON(phys_aob & 0xFF);
715 }
716
717out:
718 return phys_aob;
719}
720
Jan Glauber60b5df22009-06-22 12:08:10 +0200721static void qdio_kick_handler(struct qdio_q *q)
Jan Glauber779e6e12008-07-17 17:16:48 +0200722{
Jan Glauber9c8a08d2009-03-26 15:24:32 +0100723 int start = q->first_to_kick;
724 int end = q->first_to_check;
725 int count;
Jan Glauber779e6e12008-07-17 17:16:48 +0200726
727 if (unlikely(q->irq_ptr->state != QDIO_IRQ_STATE_ACTIVE))
728 return;
729
Jan Glauber9c8a08d2009-03-26 15:24:32 +0100730 count = sub_buf(end, start);
731
732 if (q->is_input_q) {
Jan Glauber6486cda2010-01-04 09:05:42 +0100733 qperf_inc(q, inbound_handler);
Jan Glauber1d7e1502009-09-22 22:58:39 +0200734 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "kih s:%02x c:%02x", start, count);
Ursula Braunbd6e8a12010-03-08 12:25:18 +0100735 } else {
Jan Glauber6486cda2010-01-04 09:05:42 +0100736 qperf_inc(q, outbound_handler);
Jan Glauber1d7e1502009-09-22 22:58:39 +0200737 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "koh: s:%02x c:%02x",
738 start, count);
Ursula Braunbd6e8a12010-03-08 12:25:18 +0100739 }
Jan Glauber9c8a08d2009-03-26 15:24:32 +0100740
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +0000741 qdio_handle_aobs(q, start, count);
742
Jan Glauber9c8a08d2009-03-26 15:24:32 +0100743 q->handler(q->irq_ptr->cdev, q->qdio_error, q->nr, start, count,
744 q->irq_ptr->int_parm);
Jan Glauber779e6e12008-07-17 17:16:48 +0200745
746 /* for the next time */
Jan Glauber9c8a08d2009-03-26 15:24:32 +0100747 q->first_to_kick = end;
Jan Glauber779e6e12008-07-17 17:16:48 +0200748 q->qdio_error = 0;
749}
750
751static void __qdio_inbound_processing(struct qdio_q *q)
752{
Jan Glauber6486cda2010-01-04 09:05:42 +0100753 qperf_inc(q, tasklet_inbound);
Jan Glauberf3eb20f2010-05-17 10:00:15 +0200754
Jan Glauber779e6e12008-07-17 17:16:48 +0200755 if (!qdio_inbound_q_moved(q))
756 return;
757
Jan Glauber9c8a08d2009-03-26 15:24:32 +0100758 qdio_kick_handler(q);
Jan Glauber779e6e12008-07-17 17:16:48 +0200759
Jan Glauber6486cda2010-01-04 09:05:42 +0100760 if (!qdio_inbound_q_done(q)) {
Jan Glauber779e6e12008-07-17 17:16:48 +0200761 /* means poll time is not yet over */
Jan Glauber6486cda2010-01-04 09:05:42 +0100762 qperf_inc(q, tasklet_inbound_resched);
Jan Glauberf3eb20f2010-05-17 10:00:15 +0200763 if (likely(q->irq_ptr->state != QDIO_IRQ_STATE_STOPPED)) {
764 tasklet_schedule(&q->tasklet);
765 return;
766 }
Jan Glauber6486cda2010-01-04 09:05:42 +0100767 }
Jan Glauber779e6e12008-07-17 17:16:48 +0200768
769 qdio_stop_polling(q);
770 /*
771 * We need to check again to not lose initiative after
772 * resetting the ACK state.
773 */
Jan Glauber6486cda2010-01-04 09:05:42 +0100774 if (!qdio_inbound_q_done(q)) {
775 qperf_inc(q, tasklet_inbound_resched2);
Jan Glauberf3eb20f2010-05-17 10:00:15 +0200776 if (likely(q->irq_ptr->state != QDIO_IRQ_STATE_STOPPED))
777 tasklet_schedule(&q->tasklet);
Jan Glauber6486cda2010-01-04 09:05:42 +0100778 }
Jan Glauber779e6e12008-07-17 17:16:48 +0200779}
780
Jan Glauber779e6e12008-07-17 17:16:48 +0200781void qdio_inbound_processing(unsigned long data)
782{
783 struct qdio_q *q = (struct qdio_q *)data;
784 __qdio_inbound_processing(q);
785}
786
787static int get_outbound_buffer_frontier(struct qdio_q *q)
788{
789 int count, stop;
Jan Glauber6fa10982011-01-31 11:30:08 +0100790 unsigned char state = 0;
Jan Glauber779e6e12008-07-17 17:16:48 +0200791
Jan Glaubera2b86012011-10-30 15:17:05 +0100792 q->timestamp = get_clock_fast();
793
Jan Glauber90adac52011-01-05 12:47:54 +0100794 if (need_siga_sync(q))
795 if (((queue_type(q) != QDIO_IQDIO_QFMT) &&
796 !pci_out_supported(q)) ||
797 (queue_type(q) == QDIO_IQDIO_QFMT &&
798 multicast_outbound(q)))
799 qdio_siga_sync_q(q);
Jan Glauber779e6e12008-07-17 17:16:48 +0200800
801 /*
802 * Don't check 128 buffers, as otherwise qdio_inbound_q_moved
803 * would return 0.
804 */
805 count = min(atomic_read(&q->nr_buf_used), QDIO_MAX_BUFFERS_MASK);
806 stop = add_buf(q->first_to_check, count);
Jan Glauber779e6e12008-07-17 17:16:48 +0200807 if (q->first_to_check == stop)
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +0000808 goto out;
Jan Glauber779e6e12008-07-17 17:16:48 +0200809
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +0000810 count = get_buf_states(q, q->first_to_check, &state, count, 0, 1);
Jan Glauber779e6e12008-07-17 17:16:48 +0200811 if (!count)
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +0000812 goto out;
Jan Glauber779e6e12008-07-17 17:16:48 +0200813
814 switch (state) {
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +0000815 case SLSB_P_OUTPUT_PENDING:
816 BUG();
Jan Glauber779e6e12008-07-17 17:16:48 +0200817 case SLSB_P_OUTPUT_EMPTY:
818 /* the adapter got it */
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +0000819 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr,
820 "out empty:%1d %02x", q->nr, count);
Jan Glauber779e6e12008-07-17 17:16:48 +0200821
822 atomic_sub(count, &q->nr_buf_used);
823 q->first_to_check = add_buf(q->first_to_check, count);
Jan Glauberd3072972010-02-26 22:37:36 +0100824 if (q->irq_ptr->perf_stat_enabled)
825 account_sbals(q, count);
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +0000826
Jan Glauber36e3e722009-06-22 12:08:12 +0200827 break;
Jan Glauber779e6e12008-07-17 17:16:48 +0200828 case SLSB_P_OUTPUT_ERROR:
Jan Glauberbffbbd22011-04-20 10:15:33 +0200829 process_buffer_error(q, count);
Jan Glauber779e6e12008-07-17 17:16:48 +0200830 q->first_to_check = add_buf(q->first_to_check, count);
831 atomic_sub(count, &q->nr_buf_used);
Jan Glauberd3072972010-02-26 22:37:36 +0100832 if (q->irq_ptr->perf_stat_enabled)
833 account_sbals_error(q, count);
Jan Glauber779e6e12008-07-17 17:16:48 +0200834 break;
835 case SLSB_CU_OUTPUT_PRIMED:
836 /* the adapter has not fetched the output yet */
Jan Glauberd3072972010-02-26 22:37:36 +0100837 if (q->irq_ptr->perf_stat_enabled)
838 q->q_stats.nr_sbal_nop++;
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +0000839 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "out primed:%1d",
840 q->nr);
Jan Glauber779e6e12008-07-17 17:16:48 +0200841 break;
842 case SLSB_P_OUTPUT_NOT_INIT:
843 case SLSB_P_OUTPUT_HALTED:
844 break;
845 default:
846 BUG();
847 }
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +0000848
849out:
Jan Glauber779e6e12008-07-17 17:16:48 +0200850 return q->first_to_check;
851}
852
853/* all buffers processed? */
854static inline int qdio_outbound_q_done(struct qdio_q *q)
855{
856 return atomic_read(&q->nr_buf_used) == 0;
857}
858
859static inline int qdio_outbound_q_moved(struct qdio_q *q)
860{
861 int bufnr;
862
863 bufnr = get_outbound_buffer_frontier(q);
864
Jan Glaubere85dea02009-03-26 15:24:29 +0100865 if ((bufnr != q->last_move) || q->qdio_error) {
866 q->last_move = bufnr;
Jan Glauber22f99342008-12-25 13:38:46 +0100867 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "out moved:%1d", q->nr);
Jan Glauber779e6e12008-07-17 17:16:48 +0200868 return 1;
869 } else
870 return 0;
871}
872
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +0000873static int qdio_kick_outbound_q(struct qdio_q *q, unsigned long aob)
Jan Glauber779e6e12008-07-17 17:16:48 +0200874{
Jan Glauberbe8d97a2011-08-03 16:44:17 +0200875 int retries = 0, cc;
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100876 unsigned int busy_bit;
Jan Glauber779e6e12008-07-17 17:16:48 +0200877
878 if (!need_siga_out(q))
Jan Glauberd303b6f2009-03-26 15:24:31 +0100879 return 0;
Jan Glauber779e6e12008-07-17 17:16:48 +0200880
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100881 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "siga-w:%1d", q->nr);
Jan Glauberbe8d97a2011-08-03 16:44:17 +0200882retry:
Jan Glauber6486cda2010-01-04 09:05:42 +0100883 qperf_inc(q, siga_write);
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100884
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +0000885 cc = qdio_siga_output(q, &busy_bit, aob);
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100886 switch (cc) {
Jan Glauber779e6e12008-07-17 17:16:48 +0200887 case 0:
Jan Glauber779e6e12008-07-17 17:16:48 +0200888 break;
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100889 case 2:
890 if (busy_bit) {
Jan Glauberbe8d97a2011-08-03 16:44:17 +0200891 while (++retries < QDIO_BUSY_BIT_RETRIES) {
892 mdelay(QDIO_BUSY_BIT_RETRY_DELAY);
893 goto retry;
894 }
895 DBF_ERROR("%4x cc2 BBC:%1d", SCH_NO(q), q->nr);
Jan Glauberd303b6f2009-03-26 15:24:31 +0100896 cc |= QDIO_ERROR_SIGA_BUSY;
897 } else
898 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "siga-w cc2:%1d", q->nr);
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100899 break;
900 case 1:
901 case 3:
902 DBF_ERROR("%4x SIGA-W:%1d", SCH_NO(q), cc);
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100903 break;
Jan Glauber779e6e12008-07-17 17:16:48 +0200904 }
Jan Glauberbe8d97a2011-08-03 16:44:17 +0200905 if (retries) {
906 DBF_ERROR("%4x cc2 BB2:%1d", SCH_NO(q), q->nr);
907 DBF_ERROR("count:%u", retries);
908 }
Jan Glauberd303b6f2009-03-26 15:24:31 +0100909 return cc;
Jan Glauber779e6e12008-07-17 17:16:48 +0200910}
911
Jan Glauber779e6e12008-07-17 17:16:48 +0200912static void __qdio_outbound_processing(struct qdio_q *q)
913{
Jan Glauber6486cda2010-01-04 09:05:42 +0100914 qperf_inc(q, tasklet_outbound);
Jan Glauber779e6e12008-07-17 17:16:48 +0200915 BUG_ON(atomic_read(&q->nr_buf_used) < 0);
916
917 if (qdio_outbound_q_moved(q))
Jan Glauber9c8a08d2009-03-26 15:24:32 +0100918 qdio_kick_handler(q);
Jan Glauber779e6e12008-07-17 17:16:48 +0200919
Jan Glauberc38f9602009-03-26 15:24:26 +0100920 if (queue_type(q) == QDIO_ZFCP_QFMT)
Jan Glauber779e6e12008-07-17 17:16:48 +0200921 if (!pci_out_supported(q) && !qdio_outbound_q_done(q))
Jan Glauberc38f9602009-03-26 15:24:26 +0100922 goto sched;
Jan Glauber779e6e12008-07-17 17:16:48 +0200923
Jan Glauber779e6e12008-07-17 17:16:48 +0200924 if (q->u.out.pci_out_enabled)
925 return;
926
927 /*
928 * Now we know that queue type is either qeth without pci enabled
Jan Glauber25f269f2011-10-30 15:17:06 +0100929 * or HiperSockets. Make sure buffer switch from PRIMED to EMPTY
930 * is noticed and outbound_handler is called after some time.
Jan Glauber779e6e12008-07-17 17:16:48 +0200931 */
932 if (qdio_outbound_q_done(q))
933 del_timer(&q->u.out.timer);
Jan Glauber6486cda2010-01-04 09:05:42 +0100934 else
935 if (!timer_pending(&q->u.out.timer))
Jan Glauber779e6e12008-07-17 17:16:48 +0200936 mod_timer(&q->u.out.timer, jiffies + 10 * HZ);
Jan Glauberc38f9602009-03-26 15:24:26 +0100937 return;
938
939sched:
940 if (unlikely(q->irq_ptr->state == QDIO_IRQ_STATE_STOPPED))
941 return;
942 tasklet_schedule(&q->tasklet);
Jan Glauber779e6e12008-07-17 17:16:48 +0200943}
944
945/* outbound tasklet */
946void qdio_outbound_processing(unsigned long data)
947{
948 struct qdio_q *q = (struct qdio_q *)data;
949 __qdio_outbound_processing(q);
950}
951
952void qdio_outbound_timer(unsigned long data)
953{
954 struct qdio_q *q = (struct qdio_q *)data;
Jan Glauberc38f9602009-03-26 15:24:26 +0100955
956 if (unlikely(q->irq_ptr->state == QDIO_IRQ_STATE_STOPPED))
957 return;
Jan Glauber779e6e12008-07-17 17:16:48 +0200958 tasklet_schedule(&q->tasklet);
959}
960
Jan Glauber60b5df22009-06-22 12:08:10 +0200961static inline void qdio_check_outbound_after_thinint(struct qdio_q *q)
Jan Glauber779e6e12008-07-17 17:16:48 +0200962{
963 struct qdio_q *out;
964 int i;
965
966 if (!pci_out_supported(q))
967 return;
968
969 for_each_output_queue(q->irq_ptr, out, i)
970 if (!qdio_outbound_q_done(out))
971 tasklet_schedule(&out->tasklet);
972}
973
Jan Glauber60b5df22009-06-22 12:08:10 +0200974static void __tiqdio_inbound_processing(struct qdio_q *q)
975{
Jan Glauber6486cda2010-01-04 09:05:42 +0100976 qperf_inc(q, tasklet_inbound);
Jan Glauber90adac52011-01-05 12:47:54 +0100977 if (need_siga_sync(q) && need_siga_sync_after_ai(q))
978 qdio_sync_queues(q);
Jan Glauber60b5df22009-06-22 12:08:10 +0200979
980 /*
981 * The interrupt could be caused by a PCI request. Check the
982 * PCI capable outbound queues.
983 */
984 qdio_check_outbound_after_thinint(q);
985
986 if (!qdio_inbound_q_moved(q))
987 return;
988
989 qdio_kick_handler(q);
990
Jan Glauber9a2c1602009-06-22 12:08:11 +0200991 if (!qdio_inbound_q_done(q)) {
Jan Glauber6486cda2010-01-04 09:05:42 +0100992 qperf_inc(q, tasklet_inbound_resched);
Jan Glaubere2910bc2009-09-11 10:28:19 +0200993 if (likely(q->irq_ptr->state != QDIO_IRQ_STATE_STOPPED)) {
Jan Glauber60b5df22009-06-22 12:08:10 +0200994 tasklet_schedule(&q->tasklet);
Jan Glaubere2910bc2009-09-11 10:28:19 +0200995 return;
996 }
Jan Glauber60b5df22009-06-22 12:08:10 +0200997 }
998
999 qdio_stop_polling(q);
1000 /*
1001 * We need to check again to not lose initiative after
1002 * resetting the ACK state.
1003 */
Jan Glauber9a2c1602009-06-22 12:08:11 +02001004 if (!qdio_inbound_q_done(q)) {
Jan Glauber6486cda2010-01-04 09:05:42 +01001005 qperf_inc(q, tasklet_inbound_resched2);
Jan Glauber60b5df22009-06-22 12:08:10 +02001006 if (likely(q->irq_ptr->state != QDIO_IRQ_STATE_STOPPED))
1007 tasklet_schedule(&q->tasklet);
1008 }
1009}
1010
1011void tiqdio_inbound_processing(unsigned long data)
1012{
1013 struct qdio_q *q = (struct qdio_q *)data;
1014 __tiqdio_inbound_processing(q);
1015}
1016
Jan Glauber779e6e12008-07-17 17:16:48 +02001017static inline void qdio_set_state(struct qdio_irq *irq_ptr,
1018 enum qdio_irq_states state)
1019{
Jan Glauber22f99342008-12-25 13:38:46 +01001020 DBF_DEV_EVENT(DBF_INFO, irq_ptr, "newstate: %1d", state);
Jan Glauber779e6e12008-07-17 17:16:48 +02001021
1022 irq_ptr->state = state;
1023 mb();
1024}
1025
Jan Glauber22f99342008-12-25 13:38:46 +01001026static void qdio_irq_check_sense(struct qdio_irq *irq_ptr, struct irb *irb)
Jan Glauber779e6e12008-07-17 17:16:48 +02001027{
Jan Glauber779e6e12008-07-17 17:16:48 +02001028 if (irb->esw.esw0.erw.cons) {
Jan Glauber22f99342008-12-25 13:38:46 +01001029 DBF_ERROR("%4x sense:", irq_ptr->schid.sch_no);
1030 DBF_ERROR_HEX(irb, 64);
1031 DBF_ERROR_HEX(irb->ecw, 64);
Jan Glauber779e6e12008-07-17 17:16:48 +02001032 }
1033}
1034
1035/* PCI interrupt handler */
1036static void qdio_int_handler_pci(struct qdio_irq *irq_ptr)
1037{
1038 int i;
1039 struct qdio_q *q;
1040
Jan Glauberc38f9602009-03-26 15:24:26 +01001041 if (unlikely(irq_ptr->state == QDIO_IRQ_STATE_STOPPED))
1042 return;
1043
Jan Glauberd36deae2010-09-07 21:14:39 +00001044 for_each_input_queue(irq_ptr, q, i) {
1045 if (q->u.in.queue_start_poll) {
1046 /* skip if polling is enabled or already in work */
1047 if (test_and_set_bit(QDIO_QUEUE_IRQS_DISABLED,
1048 &q->u.in.queue_irq_state)) {
1049 qperf_inc(q, int_discarded);
1050 continue;
1051 }
1052 q->u.in.queue_start_poll(q->irq_ptr->cdev, q->nr,
1053 q->irq_ptr->int_parm);
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +00001054 } else {
Jan Glauberd36deae2010-09-07 21:14:39 +00001055 tasklet_schedule(&q->tasklet);
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +00001056 }
Jan Glauberd36deae2010-09-07 21:14:39 +00001057 }
Jan Glauber779e6e12008-07-17 17:16:48 +02001058
Jan Glauber90adac52011-01-05 12:47:54 +01001059 if (!pci_out_supported(q))
Jan Glauber779e6e12008-07-17 17:16:48 +02001060 return;
1061
1062 for_each_output_queue(irq_ptr, q, i) {
1063 if (qdio_outbound_q_done(q))
1064 continue;
Jan Glauber90adac52011-01-05 12:47:54 +01001065 if (need_siga_sync(q) && need_siga_sync_out_after_pci(q))
Jan Glauber779e6e12008-07-17 17:16:48 +02001066 qdio_siga_sync_q(q);
Jan Glauber779e6e12008-07-17 17:16:48 +02001067 tasklet_schedule(&q->tasklet);
1068 }
1069}
1070
1071static void qdio_handle_activate_check(struct ccw_device *cdev,
1072 unsigned long intparm, int cstat, int dstat)
1073{
1074 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
1075 struct qdio_q *q;
Swen Schilligdfe5bb52011-08-15 14:40:31 +02001076 int count;
Jan Glauber779e6e12008-07-17 17:16:48 +02001077
Jan Glauber22f99342008-12-25 13:38:46 +01001078 DBF_ERROR("%4x ACT CHECK", irq_ptr->schid.sch_no);
1079 DBF_ERROR("intp :%lx", intparm);
1080 DBF_ERROR("ds: %2x cs:%2x", dstat, cstat);
Jan Glauber779e6e12008-07-17 17:16:48 +02001081
1082 if (irq_ptr->nr_input_qs) {
1083 q = irq_ptr->input_qs[0];
1084 } else if (irq_ptr->nr_output_qs) {
1085 q = irq_ptr->output_qs[0];
1086 } else {
1087 dump_stack();
1088 goto no_handler;
1089 }
Swen Schilligdfe5bb52011-08-15 14:40:31 +02001090
1091 count = sub_buf(q->first_to_check, q->first_to_kick);
Jan Glauber779e6e12008-07-17 17:16:48 +02001092 q->handler(q->irq_ptr->cdev, QDIO_ERROR_ACTIVATE_CHECK_CONDITION,
Swen Schilligdfe5bb52011-08-15 14:40:31 +02001093 q->nr, q->first_to_kick, count, irq_ptr->int_parm);
Jan Glauber779e6e12008-07-17 17:16:48 +02001094no_handler:
1095 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_STOPPED);
1096}
1097
Jan Glauber779e6e12008-07-17 17:16:48 +02001098static void qdio_establish_handle_irq(struct ccw_device *cdev, int cstat,
1099 int dstat)
1100{
1101 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
Jan Glauber779e6e12008-07-17 17:16:48 +02001102
Jan Glauber22f99342008-12-25 13:38:46 +01001103 DBF_DEV_EVENT(DBF_INFO, irq_ptr, "qest irq");
Jan Glauber4c575422009-06-12 10:26:28 +02001104
1105 if (cstat)
1106 goto error;
1107 if (dstat & ~(DEV_STAT_DEV_END | DEV_STAT_CHN_END))
1108 goto error;
1109 if (!(dstat & DEV_STAT_DEV_END))
1110 goto error;
1111 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_ESTABLISHED);
1112 return;
1113
1114error:
1115 DBF_ERROR("%4x EQ:error", irq_ptr->schid.sch_no);
1116 DBF_ERROR("ds: %2x cs:%2x", dstat, cstat);
1117 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_ERR);
Jan Glauber779e6e12008-07-17 17:16:48 +02001118}
1119
1120/* qdio interrupt handler */
1121void qdio_int_handler(struct ccw_device *cdev, unsigned long intparm,
1122 struct irb *irb)
1123{
1124 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
1125 int cstat, dstat;
Jan Glauber779e6e12008-07-17 17:16:48 +02001126
Jan Glauber779e6e12008-07-17 17:16:48 +02001127 if (!intparm || !irq_ptr) {
Jan Glauber22f99342008-12-25 13:38:46 +01001128 DBF_ERROR("qint:%4x", cdev->private->schid.sch_no);
Jan Glauber779e6e12008-07-17 17:16:48 +02001129 return;
1130 }
1131
Jan Glauber09a308f2010-05-17 10:00:14 +02001132 if (irq_ptr->perf_stat_enabled)
1133 irq_ptr->perf_stat.qdio_int++;
1134
Jan Glauber779e6e12008-07-17 17:16:48 +02001135 if (IS_ERR(irb)) {
1136 switch (PTR_ERR(irb)) {
1137 case -EIO:
Jan Glauber22f99342008-12-25 13:38:46 +01001138 DBF_ERROR("%4x IO error", irq_ptr->schid.sch_no);
Jan Glauber75cb71f2009-04-14 15:36:22 +02001139 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_ERR);
1140 wake_up(&cdev->private->wait_q);
Jan Glauber779e6e12008-07-17 17:16:48 +02001141 return;
1142 default:
1143 WARN_ON(1);
1144 return;
1145 }
1146 }
Jan Glauber22f99342008-12-25 13:38:46 +01001147 qdio_irq_check_sense(irq_ptr, irb);
Jan Glauber779e6e12008-07-17 17:16:48 +02001148 cstat = irb->scsw.cmd.cstat;
1149 dstat = irb->scsw.cmd.dstat;
1150
1151 switch (irq_ptr->state) {
1152 case QDIO_IRQ_STATE_INACTIVE:
1153 qdio_establish_handle_irq(cdev, cstat, dstat);
1154 break;
Jan Glauber779e6e12008-07-17 17:16:48 +02001155 case QDIO_IRQ_STATE_CLEANUP:
1156 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_INACTIVE);
1157 break;
Jan Glauber779e6e12008-07-17 17:16:48 +02001158 case QDIO_IRQ_STATE_ESTABLISHED:
1159 case QDIO_IRQ_STATE_ACTIVE:
1160 if (cstat & SCHN_STAT_PCI) {
1161 qdio_int_handler_pci(irq_ptr);
Jan Glauber779e6e12008-07-17 17:16:48 +02001162 return;
1163 }
Jan Glauber4c575422009-06-12 10:26:28 +02001164 if (cstat || dstat)
Jan Glauber779e6e12008-07-17 17:16:48 +02001165 qdio_handle_activate_check(cdev, intparm, cstat,
1166 dstat);
Jan Glauber4c575422009-06-12 10:26:28 +02001167 break;
Jan Glauber959153d2010-02-09 09:46:08 +01001168 case QDIO_IRQ_STATE_STOPPED:
1169 break;
Jan Glauber779e6e12008-07-17 17:16:48 +02001170 default:
1171 WARN_ON(1);
1172 }
1173 wake_up(&cdev->private->wait_q);
1174}
1175
1176/**
1177 * qdio_get_ssqd_desc - get qdio subchannel description
1178 * @cdev: ccw device to get description for
Jan Glauberbbd50e12008-12-25 13:38:43 +01001179 * @data: where to store the ssqd
Jan Glauber779e6e12008-07-17 17:16:48 +02001180 *
Jan Glauberbbd50e12008-12-25 13:38:43 +01001181 * Returns 0 or an error code. The results of the chsc are stored in the
1182 * specified structure.
Jan Glauber779e6e12008-07-17 17:16:48 +02001183 */
Jan Glauberbbd50e12008-12-25 13:38:43 +01001184int qdio_get_ssqd_desc(struct ccw_device *cdev,
1185 struct qdio_ssqd_desc *data)
Jan Glauber779e6e12008-07-17 17:16:48 +02001186{
Jan Glauber779e6e12008-07-17 17:16:48 +02001187
Jan Glauberbbd50e12008-12-25 13:38:43 +01001188 if (!cdev || !cdev->private)
1189 return -EINVAL;
1190
Jan Glauber22f99342008-12-25 13:38:46 +01001191 DBF_EVENT("get ssqd:%4x", cdev->private->schid.sch_no);
Jan Glauberbbd50e12008-12-25 13:38:43 +01001192 return qdio_setup_get_ssqd(NULL, &cdev->private->schid, data);
Jan Glauber779e6e12008-07-17 17:16:48 +02001193}
1194EXPORT_SYMBOL_GPL(qdio_get_ssqd_desc);
1195
Jan Glauber779e6e12008-07-17 17:16:48 +02001196static void qdio_shutdown_queues(struct ccw_device *cdev)
1197{
1198 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
1199 struct qdio_q *q;
1200 int i;
1201
1202 for_each_input_queue(irq_ptr, q, i)
Jan Glauberc38f9602009-03-26 15:24:26 +01001203 tasklet_kill(&q->tasklet);
Jan Glauber779e6e12008-07-17 17:16:48 +02001204
1205 for_each_output_queue(irq_ptr, q, i) {
Jan Glauber779e6e12008-07-17 17:16:48 +02001206 del_timer(&q->u.out.timer);
Jan Glauberc38f9602009-03-26 15:24:26 +01001207 tasklet_kill(&q->tasklet);
Jan Glauber779e6e12008-07-17 17:16:48 +02001208 }
1209}
1210
1211/**
1212 * qdio_shutdown - shut down a qdio subchannel
1213 * @cdev: associated ccw device
1214 * @how: use halt or clear to shutdown
1215 */
1216int qdio_shutdown(struct ccw_device *cdev, int how)
1217{
Jan Glauber22f99342008-12-25 13:38:46 +01001218 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
Jan Glauber779e6e12008-07-17 17:16:48 +02001219 int rc;
1220 unsigned long flags;
Jan Glauber779e6e12008-07-17 17:16:48 +02001221
Jan Glauber779e6e12008-07-17 17:16:48 +02001222 if (!irq_ptr)
1223 return -ENODEV;
1224
Jan Glauberb4547402009-03-26 15:24:24 +01001225 BUG_ON(irqs_disabled());
Jan Glauber22f99342008-12-25 13:38:46 +01001226 DBF_EVENT("qshutdown:%4x", cdev->private->schid.sch_no);
1227
Jan Glauber779e6e12008-07-17 17:16:48 +02001228 mutex_lock(&irq_ptr->setup_mutex);
1229 /*
1230 * Subchannel was already shot down. We cannot prevent being called
1231 * twice since cio may trigger a shutdown asynchronously.
1232 */
1233 if (irq_ptr->state == QDIO_IRQ_STATE_INACTIVE) {
1234 mutex_unlock(&irq_ptr->setup_mutex);
1235 return 0;
1236 }
1237
Jan Glauberc38f9602009-03-26 15:24:26 +01001238 /*
1239 * Indicate that the device is going down. Scheduling the queue
1240 * tasklets is forbidden from here on.
1241 */
1242 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_STOPPED);
1243
Jan Glauber779e6e12008-07-17 17:16:48 +02001244 tiqdio_remove_input_queues(irq_ptr);
1245 qdio_shutdown_queues(cdev);
1246 qdio_shutdown_debug_entries(irq_ptr, cdev);
1247
1248 /* cleanup subchannel */
1249 spin_lock_irqsave(get_ccwdev_lock(cdev), flags);
1250
1251 if (how & QDIO_FLAG_CLEANUP_USING_CLEAR)
1252 rc = ccw_device_clear(cdev, QDIO_DOING_CLEANUP);
1253 else
1254 /* default behaviour is halt */
1255 rc = ccw_device_halt(cdev, QDIO_DOING_CLEANUP);
1256 if (rc) {
Jan Glauber22f99342008-12-25 13:38:46 +01001257 DBF_ERROR("%4x SHUTD ERR", irq_ptr->schid.sch_no);
1258 DBF_ERROR("rc:%4d", rc);
Jan Glauber779e6e12008-07-17 17:16:48 +02001259 goto no_cleanup;
1260 }
1261
1262 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_CLEANUP);
1263 spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);
1264 wait_event_interruptible_timeout(cdev->private->wait_q,
1265 irq_ptr->state == QDIO_IRQ_STATE_INACTIVE ||
1266 irq_ptr->state == QDIO_IRQ_STATE_ERR,
1267 10 * HZ);
1268 spin_lock_irqsave(get_ccwdev_lock(cdev), flags);
1269
1270no_cleanup:
1271 qdio_shutdown_thinint(irq_ptr);
1272
1273 /* restore interrupt handler */
1274 if ((void *)cdev->handler == (void *)qdio_int_handler)
1275 cdev->handler = irq_ptr->orig_handler;
1276 spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);
1277
1278 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_INACTIVE);
1279 mutex_unlock(&irq_ptr->setup_mutex);
Jan Glauber779e6e12008-07-17 17:16:48 +02001280 if (rc)
1281 return rc;
1282 return 0;
1283}
1284EXPORT_SYMBOL_GPL(qdio_shutdown);
1285
1286/**
1287 * qdio_free - free data structures for a qdio subchannel
1288 * @cdev: associated ccw device
1289 */
1290int qdio_free(struct ccw_device *cdev)
1291{
Jan Glauber22f99342008-12-25 13:38:46 +01001292 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
Jan Glauber779e6e12008-07-17 17:16:48 +02001293
Jan Glauber779e6e12008-07-17 17:16:48 +02001294 if (!irq_ptr)
1295 return -ENODEV;
1296
Jan Glauber22f99342008-12-25 13:38:46 +01001297 DBF_EVENT("qfree:%4x", cdev->private->schid.sch_no);
Jan Glauber779e6e12008-07-17 17:16:48 +02001298 mutex_lock(&irq_ptr->setup_mutex);
Jan Glauber22f99342008-12-25 13:38:46 +01001299
1300 if (irq_ptr->debug_area != NULL) {
1301 debug_unregister(irq_ptr->debug_area);
1302 irq_ptr->debug_area = NULL;
1303 }
Jan Glauber779e6e12008-07-17 17:16:48 +02001304 cdev->private->qdio_data = NULL;
1305 mutex_unlock(&irq_ptr->setup_mutex);
1306
1307 qdio_release_memory(irq_ptr);
1308 return 0;
1309}
1310EXPORT_SYMBOL_GPL(qdio_free);
1311
1312/**
Jan Glauber779e6e12008-07-17 17:16:48 +02001313 * qdio_allocate - allocate qdio queues and associated data
1314 * @init_data: initialization data
1315 */
1316int qdio_allocate(struct qdio_initialize *init_data)
1317{
1318 struct qdio_irq *irq_ptr;
Jan Glauber779e6e12008-07-17 17:16:48 +02001319
Jan Glauber22f99342008-12-25 13:38:46 +01001320 DBF_EVENT("qallocate:%4x", init_data->cdev->private->schid.sch_no);
Jan Glauber779e6e12008-07-17 17:16:48 +02001321
1322 if ((init_data->no_input_qs && !init_data->input_handler) ||
1323 (init_data->no_output_qs && !init_data->output_handler))
1324 return -EINVAL;
1325
1326 if ((init_data->no_input_qs > QDIO_MAX_QUEUES_PER_IRQ) ||
1327 (init_data->no_output_qs > QDIO_MAX_QUEUES_PER_IRQ))
1328 return -EINVAL;
1329
1330 if ((!init_data->input_sbal_addr_array) ||
1331 (!init_data->output_sbal_addr_array))
1332 return -EINVAL;
1333
Jan Glauber779e6e12008-07-17 17:16:48 +02001334 /* irq_ptr must be in GFP_DMA since it contains ccw1.cda */
1335 irq_ptr = (void *) get_zeroed_page(GFP_KERNEL | GFP_DMA);
1336 if (!irq_ptr)
1337 goto out_err;
Jan Glauber779e6e12008-07-17 17:16:48 +02001338
1339 mutex_init(&irq_ptr->setup_mutex);
Jan Glauber22f99342008-12-25 13:38:46 +01001340 qdio_allocate_dbf(init_data, irq_ptr);
Jan Glauber779e6e12008-07-17 17:16:48 +02001341
1342 /*
1343 * Allocate a page for the chsc calls in qdio_establish.
1344 * Must be pre-allocated since a zfcp recovery will call
1345 * qdio_establish. In case of low memory and swap on a zfcp disk
1346 * we may not be able to allocate memory otherwise.
1347 */
1348 irq_ptr->chsc_page = get_zeroed_page(GFP_KERNEL);
1349 if (!irq_ptr->chsc_page)
1350 goto out_rel;
1351
1352 /* qdr is used in ccw1.cda which is u32 */
Jan Glauber3b8e3002008-08-01 16:39:17 +02001353 irq_ptr->qdr = (struct qdr *) get_zeroed_page(GFP_KERNEL | GFP_DMA);
Jan Glauber779e6e12008-07-17 17:16:48 +02001354 if (!irq_ptr->qdr)
1355 goto out_rel;
1356 WARN_ON((unsigned long)irq_ptr->qdr & 0xfff);
1357
Jan Glauber779e6e12008-07-17 17:16:48 +02001358 if (qdio_allocate_qs(irq_ptr, init_data->no_input_qs,
1359 init_data->no_output_qs))
1360 goto out_rel;
1361
1362 init_data->cdev->private->qdio_data = irq_ptr;
1363 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_INACTIVE);
1364 return 0;
1365out_rel:
1366 qdio_release_memory(irq_ptr);
1367out_err:
1368 return -ENOMEM;
1369}
1370EXPORT_SYMBOL_GPL(qdio_allocate);
1371
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +00001372static void qdio_detect_hsicq(struct qdio_irq *irq_ptr)
1373{
1374 struct qdio_q *q = irq_ptr->input_qs[0];
1375 int i, use_cq = 0;
1376
1377 if (irq_ptr->nr_input_qs > 1 && queue_type(q) == QDIO_IQDIO_QFMT)
1378 use_cq = 1;
1379
1380 for_each_output_queue(irq_ptr, q, i) {
1381 if (use_cq) {
1382 if (qdio_enable_async_operation(&q->u.out) < 0) {
1383 use_cq = 0;
1384 continue;
1385 }
1386 } else
1387 qdio_disable_async_operation(&q->u.out);
1388 }
1389 DBF_EVENT("use_cq:%d", use_cq);
1390}
1391
Jan Glauber779e6e12008-07-17 17:16:48 +02001392/**
1393 * qdio_establish - establish queues on a qdio subchannel
1394 * @init_data: initialization data
1395 */
1396int qdio_establish(struct qdio_initialize *init_data)
1397{
Jan Glauber779e6e12008-07-17 17:16:48 +02001398 struct qdio_irq *irq_ptr;
1399 struct ccw_device *cdev = init_data->cdev;
1400 unsigned long saveflags;
1401 int rc;
1402
Jan Glauber22f99342008-12-25 13:38:46 +01001403 DBF_EVENT("qestablish:%4x", cdev->private->schid.sch_no);
Jan Glauber58eb27c2008-08-21 19:46:34 +02001404
Jan Glauber779e6e12008-07-17 17:16:48 +02001405 irq_ptr = cdev->private->qdio_data;
1406 if (!irq_ptr)
1407 return -ENODEV;
1408
1409 if (cdev->private->state != DEV_STATE_ONLINE)
1410 return -EINVAL;
1411
Jan Glauber779e6e12008-07-17 17:16:48 +02001412 mutex_lock(&irq_ptr->setup_mutex);
1413 qdio_setup_irq(init_data);
1414
1415 rc = qdio_establish_thinint(irq_ptr);
1416 if (rc) {
1417 mutex_unlock(&irq_ptr->setup_mutex);
1418 qdio_shutdown(cdev, QDIO_FLAG_CLEANUP_USING_CLEAR);
1419 return rc;
1420 }
1421
1422 /* establish q */
1423 irq_ptr->ccw.cmd_code = irq_ptr->equeue.cmd;
1424 irq_ptr->ccw.flags = CCW_FLAG_SLI;
1425 irq_ptr->ccw.count = irq_ptr->equeue.count;
1426 irq_ptr->ccw.cda = (u32)((addr_t)irq_ptr->qdr);
1427
1428 spin_lock_irqsave(get_ccwdev_lock(cdev), saveflags);
1429 ccw_device_set_options_mask(cdev, 0);
1430
1431 rc = ccw_device_start(cdev, &irq_ptr->ccw, QDIO_DOING_ESTABLISH, 0, 0);
1432 if (rc) {
Jan Glauber22f99342008-12-25 13:38:46 +01001433 DBF_ERROR("%4x est IO ERR", irq_ptr->schid.sch_no);
1434 DBF_ERROR("rc:%4x", rc);
Jan Glauber779e6e12008-07-17 17:16:48 +02001435 }
1436 spin_unlock_irqrestore(get_ccwdev_lock(cdev), saveflags);
1437
1438 if (rc) {
1439 mutex_unlock(&irq_ptr->setup_mutex);
1440 qdio_shutdown(cdev, QDIO_FLAG_CLEANUP_USING_CLEAR);
1441 return rc;
1442 }
1443
1444 wait_event_interruptible_timeout(cdev->private->wait_q,
1445 irq_ptr->state == QDIO_IRQ_STATE_ESTABLISHED ||
1446 irq_ptr->state == QDIO_IRQ_STATE_ERR, HZ);
1447
1448 if (irq_ptr->state != QDIO_IRQ_STATE_ESTABLISHED) {
1449 mutex_unlock(&irq_ptr->setup_mutex);
1450 qdio_shutdown(cdev, QDIO_FLAG_CLEANUP_USING_CLEAR);
1451 return -EIO;
1452 }
1453
1454 qdio_setup_ssqd_info(irq_ptr);
Jan Glauber22f99342008-12-25 13:38:46 +01001455 DBF_EVENT("qib ac:%4x", irq_ptr->qib.ac);
Jan Glauber779e6e12008-07-17 17:16:48 +02001456
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +00001457 qdio_detect_hsicq(irq_ptr);
1458
Jan Glauber779e6e12008-07-17 17:16:48 +02001459 /* qebsm is now setup if available, initialize buffer states */
1460 qdio_init_buf_states(irq_ptr);
1461
1462 mutex_unlock(&irq_ptr->setup_mutex);
1463 qdio_print_subchannel_info(irq_ptr, cdev);
1464 qdio_setup_debug_entries(irq_ptr, cdev);
1465 return 0;
1466}
1467EXPORT_SYMBOL_GPL(qdio_establish);
1468
1469/**
1470 * qdio_activate - activate queues on a qdio subchannel
1471 * @cdev: associated cdev
1472 */
1473int qdio_activate(struct ccw_device *cdev)
1474{
1475 struct qdio_irq *irq_ptr;
1476 int rc;
1477 unsigned long saveflags;
Jan Glauber779e6e12008-07-17 17:16:48 +02001478
Jan Glauber22f99342008-12-25 13:38:46 +01001479 DBF_EVENT("qactivate:%4x", cdev->private->schid.sch_no);
Jan Glauber58eb27c2008-08-21 19:46:34 +02001480
Jan Glauber779e6e12008-07-17 17:16:48 +02001481 irq_ptr = cdev->private->qdio_data;
1482 if (!irq_ptr)
1483 return -ENODEV;
1484
1485 if (cdev->private->state != DEV_STATE_ONLINE)
1486 return -EINVAL;
1487
1488 mutex_lock(&irq_ptr->setup_mutex);
1489 if (irq_ptr->state == QDIO_IRQ_STATE_INACTIVE) {
1490 rc = -EBUSY;
1491 goto out;
1492 }
1493
Jan Glauber779e6e12008-07-17 17:16:48 +02001494 irq_ptr->ccw.cmd_code = irq_ptr->aqueue.cmd;
1495 irq_ptr->ccw.flags = CCW_FLAG_SLI;
1496 irq_ptr->ccw.count = irq_ptr->aqueue.count;
1497 irq_ptr->ccw.cda = 0;
1498
1499 spin_lock_irqsave(get_ccwdev_lock(cdev), saveflags);
1500 ccw_device_set_options(cdev, CCWDEV_REPORT_ALL);
1501
1502 rc = ccw_device_start(cdev, &irq_ptr->ccw, QDIO_DOING_ACTIVATE,
1503 0, DOIO_DENY_PREFETCH);
1504 if (rc) {
Jan Glauber22f99342008-12-25 13:38:46 +01001505 DBF_ERROR("%4x act IO ERR", irq_ptr->schid.sch_no);
1506 DBF_ERROR("rc:%4x", rc);
Jan Glauber779e6e12008-07-17 17:16:48 +02001507 }
1508 spin_unlock_irqrestore(get_ccwdev_lock(cdev), saveflags);
1509
1510 if (rc)
1511 goto out;
1512
1513 if (is_thinint_irq(irq_ptr))
1514 tiqdio_add_input_queues(irq_ptr);
1515
1516 /* wait for subchannel to become active */
1517 msleep(5);
1518
1519 switch (irq_ptr->state) {
1520 case QDIO_IRQ_STATE_STOPPED:
1521 case QDIO_IRQ_STATE_ERR:
Jan Glaubere4c14e22009-03-26 15:24:25 +01001522 rc = -EIO;
1523 break;
Jan Glauber779e6e12008-07-17 17:16:48 +02001524 default:
1525 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_ACTIVE);
1526 rc = 0;
1527 }
1528out:
1529 mutex_unlock(&irq_ptr->setup_mutex);
1530 return rc;
1531}
1532EXPORT_SYMBOL_GPL(qdio_activate);
1533
1534static inline int buf_in_between(int bufnr, int start, int count)
1535{
1536 int end = add_buf(start, count);
1537
1538 if (end > start) {
1539 if (bufnr >= start && bufnr < end)
1540 return 1;
1541 else
1542 return 0;
1543 }
1544
1545 /* wrap-around case */
1546 if ((bufnr >= start && bufnr <= QDIO_MAX_BUFFERS_PER_Q) ||
1547 (bufnr < end))
1548 return 1;
1549 else
1550 return 0;
1551}
1552
1553/**
1554 * handle_inbound - reset processed input buffers
1555 * @q: queue containing the buffers
1556 * @callflags: flags
1557 * @bufnr: first buffer to process
1558 * @count: how many buffers are emptied
1559 */
Jan Glauberd303b6f2009-03-26 15:24:31 +01001560static int handle_inbound(struct qdio_q *q, unsigned int callflags,
1561 int bufnr, int count)
Jan Glauber779e6e12008-07-17 17:16:48 +02001562{
Jan Glauberd303b6f2009-03-26 15:24:31 +01001563 int used, diff;
Jan Glauber779e6e12008-07-17 17:16:48 +02001564
Jan Glauber6486cda2010-01-04 09:05:42 +01001565 qperf_inc(q, inbound_call);
1566
Jan Glauber50f769d2008-12-25 13:38:47 +01001567 if (!q->u.in.polling)
1568 goto set;
1569
1570 /* protect against stop polling setting an ACK for an emptied slsb */
1571 if (count == QDIO_MAX_BUFFERS_PER_Q) {
1572 /* overwriting everything, just delete polling status */
1573 q->u.in.polling = 0;
1574 q->u.in.ack_count = 0;
1575 goto set;
Jan Glaubere85dea02009-03-26 15:24:29 +01001576 } else if (buf_in_between(q->u.in.ack_start, bufnr, count)) {
Jan Glauber50f769d2008-12-25 13:38:47 +01001577 if (is_qebsm(q)) {
Jan Glaubere85dea02009-03-26 15:24:29 +01001578 /* partial overwrite, just update ack_start */
Jan Glauber50f769d2008-12-25 13:38:47 +01001579 diff = add_buf(bufnr, count);
Jan Glaubere85dea02009-03-26 15:24:29 +01001580 diff = sub_buf(diff, q->u.in.ack_start);
Jan Glauber50f769d2008-12-25 13:38:47 +01001581 q->u.in.ack_count -= diff;
1582 if (q->u.in.ack_count <= 0) {
1583 q->u.in.polling = 0;
1584 q->u.in.ack_count = 0;
Jan Glauber50f769d2008-12-25 13:38:47 +01001585 goto set;
1586 }
Jan Glaubere85dea02009-03-26 15:24:29 +01001587 q->u.in.ack_start = add_buf(q->u.in.ack_start, diff);
Jan Glauber50f769d2008-12-25 13:38:47 +01001588 }
1589 else
1590 /* the only ACK will be deleted, so stop polling */
Jan Glauber779e6e12008-07-17 17:16:48 +02001591 q->u.in.polling = 0;
Jan Glauber50f769d2008-12-25 13:38:47 +01001592 }
Jan Glauber779e6e12008-07-17 17:16:48 +02001593
Jan Glauber50f769d2008-12-25 13:38:47 +01001594set:
Jan Glauber779e6e12008-07-17 17:16:48 +02001595 count = set_buf_states(q, bufnr, SLSB_CU_INPUT_EMPTY, count);
Jan Glauber779e6e12008-07-17 17:16:48 +02001596
1597 used = atomic_add_return(count, &q->nr_buf_used) - count;
1598 BUG_ON(used + count > QDIO_MAX_BUFFERS_PER_Q);
1599
Jan Glauberd303b6f2009-03-26 15:24:31 +01001600 if (need_siga_in(q))
1601 return qdio_siga_input(q);
frank.blaschka@de.ibm.com9cb72842011-08-08 01:33:56 +00001602
Jan Glauberd303b6f2009-03-26 15:24:31 +01001603 return 0;
Jan Glauber779e6e12008-07-17 17:16:48 +02001604}
1605
1606/**
1607 * handle_outbound - process filled outbound buffers
1608 * @q: queue containing the buffers
1609 * @callflags: flags
1610 * @bufnr: first buffer to process
1611 * @count: how many buffers are filled
1612 */
Jan Glauberd303b6f2009-03-26 15:24:31 +01001613static int handle_outbound(struct qdio_q *q, unsigned int callflags,
1614 int bufnr, int count)
Jan Glauber779e6e12008-07-17 17:16:48 +02001615{
Jan Glauberc26001d2011-05-23 10:24:38 +02001616 unsigned char state = 0;
Jan Glauberd303b6f2009-03-26 15:24:31 +01001617 int used, rc = 0;
Jan Glauber779e6e12008-07-17 17:16:48 +02001618
Jan Glauber6486cda2010-01-04 09:05:42 +01001619 qperf_inc(q, outbound_call);
Jan Glauber779e6e12008-07-17 17:16:48 +02001620
1621 count = set_buf_states(q, bufnr, SLSB_CU_OUTPUT_PRIMED, count);
1622 used = atomic_add_return(count, &q->nr_buf_used);
1623 BUG_ON(used > QDIO_MAX_BUFFERS_PER_Q);
1624
Jan Glauber01958432011-01-05 12:47:51 +01001625 if (used == QDIO_MAX_BUFFERS_PER_Q)
1626 qperf_inc(q, outbound_queue_full);
1627
Jan Glauber6486cda2010-01-04 09:05:42 +01001628 if (callflags & QDIO_FLAG_PCI_OUT) {
Jan Glauber779e6e12008-07-17 17:16:48 +02001629 q->u.out.pci_out_enabled = 1;
Jan Glauber6486cda2010-01-04 09:05:42 +01001630 qperf_inc(q, pci_request_int);
Jan Glauber110da312011-01-05 12:47:53 +01001631 } else
Jan Glauber779e6e12008-07-17 17:16:48 +02001632 q->u.out.pci_out_enabled = 0;
1633
1634 if (queue_type(q) == QDIO_IQDIO_QFMT) {
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +00001635 unsigned long phys_aob = 0;
1636
1637 /* One SIGA-W per buffer required for unicast HSI */
Jan Glauber110da312011-01-05 12:47:53 +01001638 WARN_ON_ONCE(count > 1 && !multicast_outbound(q));
1639
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +00001640 phys_aob = qdio_aob_for_buffer(&q->u.out, bufnr);
1641
1642 rc = qdio_kick_outbound_q(q, phys_aob);
Jan Glauber90adac52011-01-05 12:47:54 +01001643 } else if (need_siga_sync(q)) {
Jan Glauber110da312011-01-05 12:47:53 +01001644 rc = qdio_siga_sync_q(q);
1645 } else {
1646 /* try to fast requeue buffers */
1647 get_buf_state(q, prev_buf(bufnr), &state, 0);
1648 if (state != SLSB_CU_OUTPUT_PRIMED)
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +00001649 rc = qdio_kick_outbound_q(q, 0);
Jan Glauber779e6e12008-07-17 17:16:48 +02001650 else
Jan Glauber110da312011-01-05 12:47:53 +01001651 qperf_inc(q, fast_requeue);
Jan Glauber779e6e12008-07-17 17:16:48 +02001652 }
1653
Jan Glauber3d6c76f2011-01-05 12:47:50 +01001654 /* in case of SIGA errors we must process the error immediately */
1655 if (used >= q->u.out.scan_threshold || rc)
1656 tasklet_schedule(&q->tasklet);
1657 else
1658 /* free the SBALs in case of no further traffic */
1659 if (!timer_pending(&q->u.out.timer))
1660 mod_timer(&q->u.out.timer, jiffies + HZ);
Jan Glauberd303b6f2009-03-26 15:24:31 +01001661 return rc;
Jan Glauber779e6e12008-07-17 17:16:48 +02001662}
1663
1664/**
1665 * do_QDIO - process input or output buffers
1666 * @cdev: associated ccw_device for the qdio subchannel
1667 * @callflags: input or output and special flags from the program
1668 * @q_nr: queue number
1669 * @bufnr: buffer number
1670 * @count: how many buffers to process
1671 */
1672int do_QDIO(struct ccw_device *cdev, unsigned int callflags,
Jan Glauber66182412009-06-22 12:08:15 +02001673 int q_nr, unsigned int bufnr, unsigned int count)
Jan Glauber779e6e12008-07-17 17:16:48 +02001674{
1675 struct qdio_irq *irq_ptr;
Jan Glauber779e6e12008-07-17 17:16:48 +02001676
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +00001677
Jan Glauber66182412009-06-22 12:08:15 +02001678 if (bufnr >= QDIO_MAX_BUFFERS_PER_Q || count > QDIO_MAX_BUFFERS_PER_Q)
Jan Glauber779e6e12008-07-17 17:16:48 +02001679 return -EINVAL;
1680
Jan Glauber779e6e12008-07-17 17:16:48 +02001681 irq_ptr = cdev->private->qdio_data;
1682 if (!irq_ptr)
1683 return -ENODEV;
1684
Jan Glauber1d7e1502009-09-22 22:58:39 +02001685 DBF_DEV_EVENT(DBF_INFO, irq_ptr,
1686 "do%02x b:%02x c:%02x", callflags, bufnr, count);
Jan Glauber779e6e12008-07-17 17:16:48 +02001687
1688 if (irq_ptr->state != QDIO_IRQ_STATE_ACTIVE)
1689 return -EBUSY;
Jan Glauber9a265132011-03-23 10:16:01 +01001690 if (!count)
1691 return 0;
Jan Glauber779e6e12008-07-17 17:16:48 +02001692 if (callflags & QDIO_FLAG_SYNC_INPUT)
Jan Glauberd303b6f2009-03-26 15:24:31 +01001693 return handle_inbound(irq_ptr->input_qs[q_nr],
1694 callflags, bufnr, count);
Jan Glauber779e6e12008-07-17 17:16:48 +02001695 else if (callflags & QDIO_FLAG_SYNC_OUTPUT)
Jan Glauberd303b6f2009-03-26 15:24:31 +01001696 return handle_outbound(irq_ptr->output_qs[q_nr],
1697 callflags, bufnr, count);
1698 return -EINVAL;
Jan Glauber779e6e12008-07-17 17:16:48 +02001699}
1700EXPORT_SYMBOL_GPL(do_QDIO);
1701
Jan Glauberd36deae2010-09-07 21:14:39 +00001702/**
1703 * qdio_start_irq - process input buffers
1704 * @cdev: associated ccw_device for the qdio subchannel
1705 * @nr: input queue number
1706 *
1707 * Return codes
1708 * 0 - success
1709 * 1 - irqs not started since new data is available
1710 */
1711int qdio_start_irq(struct ccw_device *cdev, int nr)
1712{
1713 struct qdio_q *q;
1714 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
1715
1716 if (!irq_ptr)
1717 return -ENODEV;
1718 q = irq_ptr->input_qs[nr];
1719
1720 WARN_ON(queue_irqs_enabled(q));
1721
Jan Glauber5f4026f2011-10-30 15:17:20 +01001722 clear_nonshared_ind(irq_ptr);
Jan Glauberd36deae2010-09-07 21:14:39 +00001723 qdio_stop_polling(q);
1724 clear_bit(QDIO_QUEUE_IRQS_DISABLED, &q->u.in.queue_irq_state);
1725
1726 /*
1727 * We need to check again to not lose initiative after
1728 * resetting the ACK state.
1729 */
Jan Glauber5f4026f2011-10-30 15:17:20 +01001730 if (test_nonshared_ind(irq_ptr))
Jan Glauberd36deae2010-09-07 21:14:39 +00001731 goto rescan;
1732 if (!qdio_inbound_q_done(q))
1733 goto rescan;
1734 return 0;
1735
1736rescan:
1737 if (test_and_set_bit(QDIO_QUEUE_IRQS_DISABLED,
1738 &q->u.in.queue_irq_state))
1739 return 0;
1740 else
1741 return 1;
1742
1743}
1744EXPORT_SYMBOL(qdio_start_irq);
1745
1746/**
1747 * qdio_get_next_buffers - process input buffers
1748 * @cdev: associated ccw_device for the qdio subchannel
1749 * @nr: input queue number
1750 * @bufnr: first filled buffer number
1751 * @error: buffers are in error state
1752 *
1753 * Return codes
1754 * < 0 - error
1755 * = 0 - no new buffers found
1756 * > 0 - number of processed buffers
1757 */
1758int qdio_get_next_buffers(struct ccw_device *cdev, int nr, int *bufnr,
1759 int *error)
1760{
1761 struct qdio_q *q;
1762 int start, end;
1763 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
1764
1765 if (!irq_ptr)
1766 return -ENODEV;
1767 q = irq_ptr->input_qs[nr];
1768 WARN_ON(queue_irqs_enabled(q));
1769
Jan Glauberd36deae2010-09-07 21:14:39 +00001770 /*
Jan Glauber90adac52011-01-05 12:47:54 +01001771 * Cannot rely on automatic sync after interrupt since queues may
1772 * also be examined without interrupt.
Jan Glauberd36deae2010-09-07 21:14:39 +00001773 */
Jan Glauber90adac52011-01-05 12:47:54 +01001774 if (need_siga_sync(q))
1775 qdio_sync_queues(q);
1776
1777 /* check the PCI capable outbound queues. */
Jan Glauberd36deae2010-09-07 21:14:39 +00001778 qdio_check_outbound_after_thinint(q);
1779
1780 if (!qdio_inbound_q_moved(q))
1781 return 0;
1782
1783 /* Note: upper-layer MUST stop processing immediately here ... */
1784 if (unlikely(q->irq_ptr->state != QDIO_IRQ_STATE_ACTIVE))
1785 return -EIO;
1786
1787 start = q->first_to_kick;
1788 end = q->first_to_check;
1789 *bufnr = start;
1790 *error = q->qdio_error;
1791
1792 /* for the next time */
1793 q->first_to_kick = end;
1794 q->qdio_error = 0;
1795 return sub_buf(end, start);
1796}
1797EXPORT_SYMBOL(qdio_get_next_buffers);
1798
1799/**
1800 * qdio_stop_irq - disable interrupt processing for the device
1801 * @cdev: associated ccw_device for the qdio subchannel
1802 * @nr: input queue number
1803 *
1804 * Return codes
1805 * 0 - interrupts were already disabled
1806 * 1 - interrupts successfully disabled
1807 */
1808int qdio_stop_irq(struct ccw_device *cdev, int nr)
1809{
1810 struct qdio_q *q;
1811 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
1812
1813 if (!irq_ptr)
1814 return -ENODEV;
1815 q = irq_ptr->input_qs[nr];
1816
1817 if (test_and_set_bit(QDIO_QUEUE_IRQS_DISABLED,
1818 &q->u.in.queue_irq_state))
1819 return 0;
1820 else
1821 return 1;
1822}
1823EXPORT_SYMBOL(qdio_stop_irq);
1824
Jan Glauber779e6e12008-07-17 17:16:48 +02001825static int __init init_QDIO(void)
1826{
1827 int rc;
1828
Sebastian Ottaa5c8df2011-04-04 09:43:31 +02001829 rc = qdio_debug_init();
Jan Glauber779e6e12008-07-17 17:16:48 +02001830 if (rc)
1831 return rc;
Sebastian Ottaa5c8df2011-04-04 09:43:31 +02001832 rc = qdio_setup_init();
1833 if (rc)
1834 goto out_debug;
Jan Glauber779e6e12008-07-17 17:16:48 +02001835 rc = tiqdio_allocate_memory();
1836 if (rc)
1837 goto out_cache;
Jan Glauber779e6e12008-07-17 17:16:48 +02001838 rc = tiqdio_register_thinints();
1839 if (rc)
Sebastian Ottaa5c8df2011-04-04 09:43:31 +02001840 goto out_ti;
Jan Glauber779e6e12008-07-17 17:16:48 +02001841 return 0;
1842
Jan Glauber779e6e12008-07-17 17:16:48 +02001843out_ti:
1844 tiqdio_free_memory();
1845out_cache:
1846 qdio_setup_exit();
Sebastian Ottaa5c8df2011-04-04 09:43:31 +02001847out_debug:
1848 qdio_debug_exit();
Jan Glauber779e6e12008-07-17 17:16:48 +02001849 return rc;
1850}
1851
1852static void __exit exit_QDIO(void)
1853{
1854 tiqdio_unregister_thinints();
1855 tiqdio_free_memory();
Jan Glauber779e6e12008-07-17 17:16:48 +02001856 qdio_setup_exit();
Sebastian Ottaa5c8df2011-04-04 09:43:31 +02001857 qdio_debug_exit();
Jan Glauber779e6e12008-07-17 17:16:48 +02001858}
1859
1860module_init(init_QDIO);
1861module_exit(exit_QDIO);