[S390] qdio: remove memset hack
[deliverable/linux.git] / drivers / s390 / cio / qdio_main.c
CommitLineData
779e6e1c
JG
1/*
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>
5a0e3ad6 16#include <linux/gfp.h>
779e6e1c
JG
17#include <asm/atomic.h>
18#include <asm/debug.h>
19#include <asm/qdio.h>
20
21#include "cio.h"
22#include "css.h"
23#include "device.h"
24#include "qdio.h"
25#include "qdio_debug.h"
779e6e1c
JG
26
27MODULE_AUTHOR("Utz Bacher <utz.bacher@de.ibm.com>,"\
28 "Jan Glauber <jang@linux.vnet.ibm.com>");
29MODULE_DESCRIPTION("QDIO base support");
30MODULE_LICENSE("GPL");
31
32static inline int do_siga_sync(struct subchannel_id schid,
33 unsigned int out_mask, unsigned int in_mask)
34{
35 register unsigned long __fc asm ("0") = 2;
36 register struct subchannel_id __schid asm ("1") = schid;
37 register unsigned long out asm ("2") = out_mask;
38 register unsigned long in asm ("3") = in_mask;
39 int cc;
40
41 asm volatile(
42 " siga 0\n"
43 " ipm %0\n"
44 " srl %0,28\n"
45 : "=d" (cc)
46 : "d" (__fc), "d" (__schid), "d" (out), "d" (in) : "cc");
47 return cc;
48}
49
50static inline int do_siga_input(struct subchannel_id schid, unsigned int mask)
51{
52 register unsigned long __fc asm ("0") = 1;
53 register struct subchannel_id __schid asm ("1") = schid;
54 register unsigned long __mask asm ("2") = mask;
55 int cc;
56
57 asm volatile(
58 " siga 0\n"
59 " ipm %0\n"
60 " srl %0,28\n"
61 : "=d" (cc)
62 : "d" (__fc), "d" (__schid), "d" (__mask) : "cc", "memory");
63 return cc;
64}
65
66/**
67 * do_siga_output - perform SIGA-w/wt function
68 * @schid: subchannel id or in case of QEBSM the subchannel token
69 * @mask: which output queues to process
70 * @bb: busy bit indicator, set only if SIGA-w/wt could not access a buffer
71 * @fc: function code to perform
72 *
73 * Returns cc or QDIO_ERROR_SIGA_ACCESS_EXCEPTION.
74 * Note: For IQDC unicast queues only the highest priority queue is processed.
75 */
76static inline int do_siga_output(unsigned long schid, unsigned long mask,
7a0b4cbc 77 unsigned int *bb, unsigned int fc)
779e6e1c
JG
78{
79 register unsigned long __fc asm("0") = fc;
80 register unsigned long __schid asm("1") = schid;
81 register unsigned long __mask asm("2") = mask;
82 int cc = QDIO_ERROR_SIGA_ACCESS_EXCEPTION;
83
84 asm volatile(
85 " siga 0\n"
86 "0: ipm %0\n"
87 " srl %0,28\n"
88 "1:\n"
89 EX_TABLE(0b, 1b)
90 : "+d" (cc), "+d" (__fc), "+d" (__schid), "+d" (__mask)
91 : : "cc", "memory");
92 *bb = ((unsigned int) __fc) >> 31;
93 return cc;
94}
95
96static inline int qdio_check_ccq(struct qdio_q *q, unsigned int ccq)
97{
779e6e1c
JG
98 /* all done or next buffer state different */
99 if (ccq == 0 || ccq == 32)
100 return 0;
101 /* not all buffers processed */
102 if (ccq == 96 || ccq == 97)
103 return 1;
104 /* notify devices immediately */
22f99347 105 DBF_ERROR("%4x ccq:%3d", SCH_NO(q), ccq);
779e6e1c
JG
106 return -EIO;
107}
108
109/**
110 * qdio_do_eqbs - extract buffer states for QEBSM
111 * @q: queue to manipulate
112 * @state: state of the extracted buffers
113 * @start: buffer number to start at
114 * @count: count of buffers to examine
50f769df 115 * @auto_ack: automatically acknowledge buffers
779e6e1c 116 *
73ac36ea 117 * Returns the number of successfully extracted equal buffer states.
779e6e1c
JG
118 * Stops processing if a state is different from the last buffers state.
119 */
120static int qdio_do_eqbs(struct qdio_q *q, unsigned char *state,
50f769df 121 int start, int count, int auto_ack)
779e6e1c
JG
122{
123 unsigned int ccq = 0;
124 int tmp_count = count, tmp_start = start;
125 int nr = q->nr;
126 int rc;
779e6e1c
JG
127
128 BUG_ON(!q->irq_ptr->sch_token);
6486cda6 129 qperf_inc(q, eqbs);
779e6e1c
JG
130
131 if (!q->is_input_q)
132 nr += q->irq_ptr->nr_input_qs;
133again:
50f769df
JG
134 ccq = do_eqbs(q->irq_ptr->sch_token, state, nr, &tmp_start, &tmp_count,
135 auto_ack);
779e6e1c
JG
136 rc = qdio_check_ccq(q, ccq);
137
138 /* At least one buffer was processed, return and extract the remaining
139 * buffers later.
140 */
23589d05 141 if ((ccq == 96) && (count != tmp_count)) {
6486cda6 142 qperf_inc(q, eqbs_partial);
779e6e1c 143 return (count - tmp_count);
23589d05 144 }
22f99347 145
779e6e1c 146 if (rc == 1) {
22f99347 147 DBF_DEV_EVENT(DBF_WARN, q->irq_ptr, "EQBS again:%2d", ccq);
779e6e1c
JG
148 goto again;
149 }
150
151 if (rc < 0) {
22f99347
JG
152 DBF_ERROR("%4x EQBS ERROR", SCH_NO(q));
153 DBF_ERROR("%3d%3d%2d", count, tmp_count, nr);
779e6e1c
JG
154 q->handler(q->irq_ptr->cdev,
155 QDIO_ERROR_ACTIVATE_CHECK_CONDITION,
156 0, -1, -1, q->irq_ptr->int_parm);
157 return 0;
158 }
159 return count - tmp_count;
160}
161
162/**
163 * qdio_do_sqbs - set buffer states for QEBSM
164 * @q: queue to manipulate
165 * @state: new state of the buffers
166 * @start: first buffer number to change
167 * @count: how many buffers to change
168 *
169 * Returns the number of successfully changed buffers.
170 * Does retrying until the specified count of buffer states is set or an
171 * error occurs.
172 */
173static int qdio_do_sqbs(struct qdio_q *q, unsigned char state, int start,
174 int count)
175{
176 unsigned int ccq = 0;
177 int tmp_count = count, tmp_start = start;
178 int nr = q->nr;
179 int rc;
779e6e1c 180
50f769df
JG
181 if (!count)
182 return 0;
183
779e6e1c 184 BUG_ON(!q->irq_ptr->sch_token);
6486cda6 185 qperf_inc(q, sqbs);
779e6e1c
JG
186
187 if (!q->is_input_q)
188 nr += q->irq_ptr->nr_input_qs;
189again:
190 ccq = do_sqbs(q->irq_ptr->sch_token, state, nr, &tmp_start, &tmp_count);
191 rc = qdio_check_ccq(q, ccq);
192 if (rc == 1) {
22f99347 193 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "SQBS again:%2d", ccq);
6486cda6 194 qperf_inc(q, sqbs_partial);
779e6e1c
JG
195 goto again;
196 }
197 if (rc < 0) {
22f99347
JG
198 DBF_ERROR("%4x SQBS ERROR", SCH_NO(q));
199 DBF_ERROR("%3d%3d%2d", count, tmp_count, nr);
779e6e1c
JG
200 q->handler(q->irq_ptr->cdev,
201 QDIO_ERROR_ACTIVATE_CHECK_CONDITION,
202 0, -1, -1, q->irq_ptr->int_parm);
203 return 0;
204 }
205 WARN_ON(tmp_count);
206 return count - tmp_count;
207}
208
209/* returns number of examined buffers and their common state in *state */
210static inline int get_buf_states(struct qdio_q *q, unsigned int bufnr,
50f769df
JG
211 unsigned char *state, unsigned int count,
212 int auto_ack)
779e6e1c
JG
213{
214 unsigned char __state = 0;
215 int i;
216
217 BUG_ON(bufnr > QDIO_MAX_BUFFERS_MASK);
218 BUG_ON(count > QDIO_MAX_BUFFERS_PER_Q);
219
220 if (is_qebsm(q))
50f769df 221 return qdio_do_eqbs(q, state, bufnr, count, auto_ack);
779e6e1c
JG
222
223 for (i = 0; i < count; i++) {
224 if (!__state)
225 __state = q->slsb.val[bufnr];
226 else if (q->slsb.val[bufnr] != __state)
227 break;
228 bufnr = next_buf(bufnr);
229 }
230 *state = __state;
231 return i;
232}
233
60b5df2f
JG
234static inline int get_buf_state(struct qdio_q *q, unsigned int bufnr,
235 unsigned char *state, int auto_ack)
779e6e1c 236{
50f769df 237 return get_buf_states(q, bufnr, state, 1, auto_ack);
779e6e1c
JG
238}
239
240/* wrap-around safe setting of slsb states, returns number of changed buffers */
241static inline int set_buf_states(struct qdio_q *q, int bufnr,
242 unsigned char state, int count)
243{
244 int i;
245
246 BUG_ON(bufnr > QDIO_MAX_BUFFERS_MASK);
247 BUG_ON(count > QDIO_MAX_BUFFERS_PER_Q);
248
249 if (is_qebsm(q))
250 return qdio_do_sqbs(q, state, bufnr, count);
251
252 for (i = 0; i < count; i++) {
253 xchg(&q->slsb.val[bufnr], state);
254 bufnr = next_buf(bufnr);
255 }
256 return count;
257}
258
259static inline int set_buf_state(struct qdio_q *q, int bufnr,
260 unsigned char state)
261{
262 return set_buf_states(q, bufnr, state, 1);
263}
264
265/* set slsb states to initial state */
266void qdio_init_buf_states(struct qdio_irq *irq_ptr)
267{
268 struct qdio_q *q;
269 int i;
270
271 for_each_input_queue(irq_ptr, q, i)
272 set_buf_states(q, 0, SLSB_P_INPUT_NOT_INIT,
273 QDIO_MAX_BUFFERS_PER_Q);
274 for_each_output_queue(irq_ptr, q, i)
275 set_buf_states(q, 0, SLSB_P_OUTPUT_NOT_INIT,
276 QDIO_MAX_BUFFERS_PER_Q);
277}
278
60b5df2f 279static inline int qdio_siga_sync(struct qdio_q *q, unsigned int output,
779e6e1c
JG
280 unsigned int input)
281{
282 int cc;
283
284 if (!need_siga_sync(q))
285 return 0;
286
7a0b4cbc 287 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "siga-s:%1d", q->nr);
6486cda6 288 qperf_inc(q, siga_sync);
779e6e1c
JG
289
290 cc = do_siga_sync(q->irq_ptr->schid, output, input);
22f99347
JG
291 if (cc)
292 DBF_ERROR("%4x SIGA-S:%2d", SCH_NO(q), cc);
779e6e1c
JG
293 return cc;
294}
295
60b5df2f 296static inline int qdio_siga_sync_q(struct qdio_q *q)
779e6e1c
JG
297{
298 if (q->is_input_q)
299 return qdio_siga_sync(q, 0, q->mask);
300 else
301 return qdio_siga_sync(q, q->mask, 0);
302}
303
304static inline int qdio_siga_sync_out(struct qdio_q *q)
305{
306 return qdio_siga_sync(q, ~0U, 0);
307}
308
309static inline int qdio_siga_sync_all(struct qdio_q *q)
310{
311 return qdio_siga_sync(q, ~0U, ~0U);
312}
313
7a0b4cbc 314static int qdio_siga_output(struct qdio_q *q, unsigned int *busy_bit)
779e6e1c 315{
779e6e1c 316 unsigned long schid;
7a0b4cbc
JG
317 unsigned int fc = 0;
318 u64 start_time = 0;
319 int cc;
779e6e1c 320
7a0b4cbc 321 if (q->u.out.use_enh_siga)
7a0f4755 322 fc = 3;
7a0b4cbc
JG
323
324 if (is_qebsm(q)) {
779e6e1c
JG
325 schid = q->irq_ptr->sch_token;
326 fc |= 0x80;
327 }
7a0b4cbc
JG
328 else
329 schid = *((u32 *)&q->irq_ptr->schid);
779e6e1c 330
779e6e1c 331again:
7a0b4cbc
JG
332 cc = do_siga_output(schid, q->mask, busy_bit, fc);
333
334 /* hipersocket busy condition */
335 if (*busy_bit) {
336 WARN_ON(queue_type(q) != QDIO_IQDIO_QFMT || cc != 2);
58eb27cd 337
7a0b4cbc 338 if (!start_time) {
779e6e1c 339 start_time = get_usecs();
7a0b4cbc
JG
340 goto again;
341 }
342 if ((get_usecs() - start_time) < QDIO_BUSY_BIT_PATIENCE)
779e6e1c
JG
343 goto again;
344 }
779e6e1c
JG
345 return cc;
346}
347
348static inline int qdio_siga_input(struct qdio_q *q)
349{
350 int cc;
351
22f99347 352 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "siga-r:%1d", q->nr);
6486cda6 353 qperf_inc(q, siga_read);
779e6e1c
JG
354
355 cc = do_siga_input(q->irq_ptr->schid, q->mask);
356 if (cc)
22f99347 357 DBF_ERROR("%4x SIGA-R:%2d", SCH_NO(q), cc);
779e6e1c
JG
358 return cc;
359}
360
60b5df2f 361static inline void qdio_sync_after_thinint(struct qdio_q *q)
779e6e1c
JG
362{
363 if (pci_out_supported(q)) {
364 if (need_siga_sync_thinint(q))
365 qdio_siga_sync_all(q);
366 else if (need_siga_sync_out_thinint(q))
367 qdio_siga_sync_out(q);
368 } else
369 qdio_siga_sync_q(q);
370}
371
60b5df2f
JG
372int debug_get_buf_state(struct qdio_q *q, unsigned int bufnr,
373 unsigned char *state)
374{
375 qdio_siga_sync_q(q);
376 return get_buf_states(q, bufnr, state, 1, 0);
377}
378
379static inline void qdio_stop_polling(struct qdio_q *q)
779e6e1c 380{
50f769df 381 if (!q->u.in.polling)
779e6e1c 382 return;
50f769df 383
779e6e1c 384 q->u.in.polling = 0;
6486cda6 385 qperf_inc(q, stop_polling);
779e6e1c
JG
386
387 /* show the card that we are not polling anymore */
50f769df 388 if (is_qebsm(q)) {
e85dea0e 389 set_buf_states(q, q->u.in.ack_start, SLSB_P_INPUT_NOT_INIT,
50f769df
JG
390 q->u.in.ack_count);
391 q->u.in.ack_count = 0;
392 } else
e85dea0e 393 set_buf_state(q, q->u.in.ack_start, SLSB_P_INPUT_NOT_INIT);
779e6e1c
JG
394}
395
d307297f
JG
396static inline void account_sbals(struct qdio_q *q, int count)
397{
398 int pos = 0;
399
400 q->q_stats.nr_sbal_total += count;
401 if (count == QDIO_MAX_BUFFERS_MASK) {
402 q->q_stats.nr_sbals[7]++;
403 return;
404 }
405 while (count >>= 1)
406 pos++;
407 q->q_stats.nr_sbals[pos]++;
408}
409
50f769df 410static void announce_buffer_error(struct qdio_q *q, int count)
779e6e1c 411{
7a0b4cbc 412 q->qdio_error |= QDIO_ERROR_SLSB_STATE;
50f769df
JG
413
414 /* special handling for no target buffer empty */
415 if ((!q->is_input_q &&
416 (q->sbal[q->first_to_check]->element[15].flags & 0xff) == 0x10)) {
6486cda6 417 qperf_inc(q, target_full);
1d7e1500 418 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "OUTFULL FTC:%02x",
50f769df
JG
419 q->first_to_check);
420 return;
421 }
422
22f99347
JG
423 DBF_ERROR("%4x BUF ERROR", SCH_NO(q));
424 DBF_ERROR((q->is_input_q) ? "IN:%2d" : "OUT:%2d", q->nr);
50f769df 425 DBF_ERROR("FTC:%3d C:%3d", q->first_to_check, count);
22f99347
JG
426 DBF_ERROR("F14:%2x F15:%2x",
427 q->sbal[q->first_to_check]->element[14].flags & 0xff,
428 q->sbal[q->first_to_check]->element[15].flags & 0xff);
50f769df 429}
779e6e1c 430
50f769df
JG
431static inline void inbound_primed(struct qdio_q *q, int count)
432{
433 int new;
434
1d7e1500 435 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "in prim: %02x", count);
50f769df
JG
436
437 /* for QEBSM the ACK was already set by EQBS */
438 if (is_qebsm(q)) {
439 if (!q->u.in.polling) {
440 q->u.in.polling = 1;
441 q->u.in.ack_count = count;
e85dea0e 442 q->u.in.ack_start = q->first_to_check;
50f769df
JG
443 return;
444 }
445
446 /* delete the previous ACK's */
e85dea0e 447 set_buf_states(q, q->u.in.ack_start, SLSB_P_INPUT_NOT_INIT,
50f769df
JG
448 q->u.in.ack_count);
449 q->u.in.ack_count = count;
e85dea0e 450 q->u.in.ack_start = q->first_to_check;
50f769df
JG
451 return;
452 }
453
454 /*
455 * ACK the newest buffer. The ACK will be removed in qdio_stop_polling
456 * or by the next inbound run.
457 */
458 new = add_buf(q->first_to_check, count - 1);
459 if (q->u.in.polling) {
460 /* reset the previous ACK but first set the new one */
461 set_buf_state(q, new, SLSB_P_INPUT_ACK);
e85dea0e 462 set_buf_state(q, q->u.in.ack_start, SLSB_P_INPUT_NOT_INIT);
3fdf1e18 463 } else {
50f769df 464 q->u.in.polling = 1;
3fdf1e18 465 set_buf_state(q, new, SLSB_P_INPUT_ACK);
50f769df
JG
466 }
467
e85dea0e 468 q->u.in.ack_start = new;
50f769df
JG
469 count--;
470 if (!count)
471 return;
6541f7b6
JG
472 /* need to change ALL buffers to get more interrupts */
473 set_buf_states(q, q->first_to_check, SLSB_P_INPUT_NOT_INIT, count);
779e6e1c
JG
474}
475
476static int get_inbound_buffer_frontier(struct qdio_q *q)
477{
478 int count, stop;
479 unsigned char state;
480
779e6e1c
JG
481 /*
482 * Don't check 128 buffers, as otherwise qdio_inbound_q_moved
483 * would return 0.
484 */
485 count = min(atomic_read(&q->nr_buf_used), QDIO_MAX_BUFFERS_MASK);
486 stop = add_buf(q->first_to_check, count);
487
779e6e1c
JG
488 if (q->first_to_check == stop)
489 goto out;
490
36e3e721
JG
491 /*
492 * No siga sync here, as a PCI or we after a thin interrupt
493 * already sync'ed the queues.
494 */
50f769df 495 count = get_buf_states(q, q->first_to_check, &state, count, 1);
779e6e1c
JG
496 if (!count)
497 goto out;
498
499 switch (state) {
500 case SLSB_P_INPUT_PRIMED:
50f769df 501 inbound_primed(q, count);
779e6e1c 502 q->first_to_check = add_buf(q->first_to_check, count);
8bcd9b04 503 if (atomic_sub(count, &q->nr_buf_used) == 0)
6486cda6 504 qperf_inc(q, inbound_queue_full);
d307297f
JG
505 if (q->irq_ptr->perf_stat_enabled)
506 account_sbals(q, count);
36e3e721 507 break;
779e6e1c 508 case SLSB_P_INPUT_ERROR:
50f769df 509 announce_buffer_error(q, count);
779e6e1c
JG
510 /* process the buffer, the upper layer will take care of it */
511 q->first_to_check = add_buf(q->first_to_check, count);
512 atomic_sub(count, &q->nr_buf_used);
d307297f
JG
513 if (q->irq_ptr->perf_stat_enabled)
514 account_sbals_error(q, count);
779e6e1c
JG
515 break;
516 case SLSB_CU_INPUT_EMPTY:
517 case SLSB_P_INPUT_NOT_INIT:
518 case SLSB_P_INPUT_ACK:
d307297f
JG
519 if (q->irq_ptr->perf_stat_enabled)
520 q->q_stats.nr_sbal_nop++;
22f99347 521 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "in nop");
779e6e1c
JG
522 break;
523 default:
524 BUG();
525 }
526out:
779e6e1c
JG
527 return q->first_to_check;
528}
529
60b5df2f 530static int qdio_inbound_q_moved(struct qdio_q *q)
779e6e1c
JG
531{
532 int bufnr;
533
534 bufnr = get_inbound_buffer_frontier(q);
535
e85dea0e
JG
536 if ((bufnr != q->last_move) || q->qdio_error) {
537 q->last_move = bufnr;
27d71602 538 if (!is_thinint_irq(q->irq_ptr) && MACHINE_IS_LPAR)
779e6e1c 539 q->u.in.timestamp = get_usecs();
779e6e1c
JG
540 return 1;
541 } else
542 return 0;
543}
544
9a2c160a 545static inline int qdio_inbound_q_done(struct qdio_q *q)
779e6e1c 546{
9a1ce28a 547 unsigned char state = 0;
779e6e1c
JG
548
549 if (!atomic_read(&q->nr_buf_used))
550 return 1;
551
779e6e1c 552 qdio_siga_sync_q(q);
50f769df 553 get_buf_state(q, q->first_to_check, &state, 0);
9a2c160a 554
4c52228d 555 if (state == SLSB_P_INPUT_PRIMED || state == SLSB_P_INPUT_ERROR)
9a2c160a 556 /* more work coming */
779e6e1c
JG
557 return 0;
558
9a2c160a
JG
559 if (is_thinint_irq(q->irq_ptr))
560 return 1;
561
562 /* don't poll under z/VM */
563 if (MACHINE_IS_VM)
779e6e1c
JG
564 return 1;
565
566 /*
567 * At this point we know, that inbound first_to_check
568 * has (probably) not moved (see qdio_inbound_processing).
569 */
570 if (get_usecs() > q->u.in.timestamp + QDIO_INPUT_THRESHOLD) {
1d7e1500 571 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "in done:%02x",
22f99347 572 q->first_to_check);
779e6e1c 573 return 1;
9a2c160a 574 } else
60b5df2f 575 return 0;
60b5df2f
JG
576}
577
578static void qdio_kick_handler(struct qdio_q *q)
779e6e1c 579{
9c8a08d7
JG
580 int start = q->first_to_kick;
581 int end = q->first_to_check;
582 int count;
779e6e1c
JG
583
584 if (unlikely(q->irq_ptr->state != QDIO_IRQ_STATE_ACTIVE))
585 return;
586
9c8a08d7
JG
587 count = sub_buf(end, start);
588
589 if (q->is_input_q) {
6486cda6 590 qperf_inc(q, inbound_handler);
1d7e1500 591 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "kih s:%02x c:%02x", start, count);
bd6e8a16 592 } else {
6486cda6 593 qperf_inc(q, outbound_handler);
1d7e1500
JG
594 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "koh: s:%02x c:%02x",
595 start, count);
bd6e8a16 596 }
9c8a08d7
JG
597
598 q->handler(q->irq_ptr->cdev, q->qdio_error, q->nr, start, count,
599 q->irq_ptr->int_parm);
779e6e1c
JG
600
601 /* for the next time */
9c8a08d7 602 q->first_to_kick = end;
779e6e1c
JG
603 q->qdio_error = 0;
604}
605
606static void __qdio_inbound_processing(struct qdio_q *q)
607{
6486cda6 608 qperf_inc(q, tasklet_inbound);
f3eb20fa 609
779e6e1c
JG
610 if (!qdio_inbound_q_moved(q))
611 return;
612
9c8a08d7 613 qdio_kick_handler(q);
779e6e1c 614
6486cda6 615 if (!qdio_inbound_q_done(q)) {
779e6e1c 616 /* means poll time is not yet over */
6486cda6 617 qperf_inc(q, tasklet_inbound_resched);
f3eb20fa
JG
618 if (likely(q->irq_ptr->state != QDIO_IRQ_STATE_STOPPED)) {
619 tasklet_schedule(&q->tasklet);
620 return;
621 }
6486cda6 622 }
779e6e1c
JG
623
624 qdio_stop_polling(q);
625 /*
626 * We need to check again to not lose initiative after
627 * resetting the ACK state.
628 */
6486cda6
JG
629 if (!qdio_inbound_q_done(q)) {
630 qperf_inc(q, tasklet_inbound_resched2);
f3eb20fa
JG
631 if (likely(q->irq_ptr->state != QDIO_IRQ_STATE_STOPPED))
632 tasklet_schedule(&q->tasklet);
6486cda6 633 }
779e6e1c
JG
634}
635
779e6e1c
JG
636void qdio_inbound_processing(unsigned long data)
637{
638 struct qdio_q *q = (struct qdio_q *)data;
639 __qdio_inbound_processing(q);
640}
641
642static int get_outbound_buffer_frontier(struct qdio_q *q)
643{
644 int count, stop;
645 unsigned char state;
646
647 if (((queue_type(q) != QDIO_IQDIO_QFMT) && !pci_out_supported(q)) ||
648 (queue_type(q) == QDIO_IQDIO_QFMT && multicast_outbound(q)))
649 qdio_siga_sync_q(q);
650
651 /*
652 * Don't check 128 buffers, as otherwise qdio_inbound_q_moved
653 * would return 0.
654 */
655 count = min(atomic_read(&q->nr_buf_used), QDIO_MAX_BUFFERS_MASK);
656 stop = add_buf(q->first_to_check, count);
657
779e6e1c
JG
658 if (q->first_to_check == stop)
659 return q->first_to_check;
660
50f769df 661 count = get_buf_states(q, q->first_to_check, &state, count, 0);
779e6e1c
JG
662 if (!count)
663 return q->first_to_check;
664
665 switch (state) {
666 case SLSB_P_OUTPUT_EMPTY:
667 /* the adapter got it */
1d7e1500 668 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "out empty:%1d %02x", q->nr, count);
779e6e1c
JG
669
670 atomic_sub(count, &q->nr_buf_used);
671 q->first_to_check = add_buf(q->first_to_check, count);
d307297f
JG
672 if (q->irq_ptr->perf_stat_enabled)
673 account_sbals(q, count);
36e3e721 674 break;
779e6e1c 675 case SLSB_P_OUTPUT_ERROR:
50f769df 676 announce_buffer_error(q, count);
779e6e1c
JG
677 /* process the buffer, the upper layer will take care of it */
678 q->first_to_check = add_buf(q->first_to_check, count);
679 atomic_sub(count, &q->nr_buf_used);
d307297f
JG
680 if (q->irq_ptr->perf_stat_enabled)
681 account_sbals_error(q, count);
779e6e1c
JG
682 break;
683 case SLSB_CU_OUTPUT_PRIMED:
684 /* the adapter has not fetched the output yet */
d307297f
JG
685 if (q->irq_ptr->perf_stat_enabled)
686 q->q_stats.nr_sbal_nop++;
22f99347 687 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "out primed:%1d", q->nr);
779e6e1c
JG
688 break;
689 case SLSB_P_OUTPUT_NOT_INIT:
690 case SLSB_P_OUTPUT_HALTED:
691 break;
692 default:
693 BUG();
694 }
695 return q->first_to_check;
696}
697
698/* all buffers processed? */
699static inline int qdio_outbound_q_done(struct qdio_q *q)
700{
701 return atomic_read(&q->nr_buf_used) == 0;
702}
703
704static inline int qdio_outbound_q_moved(struct qdio_q *q)
705{
706 int bufnr;
707
708 bufnr = get_outbound_buffer_frontier(q);
709
e85dea0e
JG
710 if ((bufnr != q->last_move) || q->qdio_error) {
711 q->last_move = bufnr;
22f99347 712 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "out moved:%1d", q->nr);
779e6e1c
JG
713 return 1;
714 } else
715 return 0;
716}
717
d303b6fd 718static int qdio_kick_outbound_q(struct qdio_q *q)
779e6e1c 719{
7a0b4cbc
JG
720 unsigned int busy_bit;
721 int cc;
779e6e1c
JG
722
723 if (!need_siga_out(q))
d303b6fd 724 return 0;
779e6e1c 725
7a0b4cbc 726 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "siga-w:%1d", q->nr);
6486cda6 727 qperf_inc(q, siga_write);
7a0b4cbc
JG
728
729 cc = qdio_siga_output(q, &busy_bit);
730 switch (cc) {
779e6e1c 731 case 0:
779e6e1c 732 break;
7a0b4cbc
JG
733 case 2:
734 if (busy_bit) {
735 DBF_ERROR("%4x cc2 REP:%1d", SCH_NO(q), q->nr);
d303b6fd
JG
736 cc |= QDIO_ERROR_SIGA_BUSY;
737 } else
738 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "siga-w cc2:%1d", q->nr);
7a0b4cbc
JG
739 break;
740 case 1:
741 case 3:
742 DBF_ERROR("%4x SIGA-W:%1d", SCH_NO(q), cc);
7a0b4cbc 743 break;
779e6e1c 744 }
d303b6fd 745 return cc;
779e6e1c
JG
746}
747
779e6e1c
JG
748static void __qdio_outbound_processing(struct qdio_q *q)
749{
6486cda6 750 qperf_inc(q, tasklet_outbound);
779e6e1c
JG
751 BUG_ON(atomic_read(&q->nr_buf_used) < 0);
752
753 if (qdio_outbound_q_moved(q))
9c8a08d7 754 qdio_kick_handler(q);
779e6e1c 755
c38f9608 756 if (queue_type(q) == QDIO_ZFCP_QFMT)
779e6e1c 757 if (!pci_out_supported(q) && !qdio_outbound_q_done(q))
c38f9608 758 goto sched;
779e6e1c
JG
759
760 /* bail out for HiperSockets unicast queues */
761 if (queue_type(q) == QDIO_IQDIO_QFMT && !multicast_outbound(q))
762 return;
763
4bcb3a37 764 if ((queue_type(q) == QDIO_IQDIO_QFMT) &&
c38f9608
JG
765 (atomic_read(&q->nr_buf_used)) > QDIO_IQDIO_POLL_LVL)
766 goto sched;
4bcb3a37 767
779e6e1c
JG
768 if (q->u.out.pci_out_enabled)
769 return;
770
771 /*
772 * Now we know that queue type is either qeth without pci enabled
773 * or HiperSockets multicast. Make sure buffer switch from PRIMED to
774 * EMPTY is noticed and outbound_handler is called after some time.
775 */
776 if (qdio_outbound_q_done(q))
777 del_timer(&q->u.out.timer);
6486cda6
JG
778 else
779 if (!timer_pending(&q->u.out.timer))
779e6e1c 780 mod_timer(&q->u.out.timer, jiffies + 10 * HZ);
c38f9608
JG
781 return;
782
783sched:
784 if (unlikely(q->irq_ptr->state == QDIO_IRQ_STATE_STOPPED))
785 return;
786 tasklet_schedule(&q->tasklet);
779e6e1c
JG
787}
788
789/* outbound tasklet */
790void qdio_outbound_processing(unsigned long data)
791{
792 struct qdio_q *q = (struct qdio_q *)data;
793 __qdio_outbound_processing(q);
794}
795
796void qdio_outbound_timer(unsigned long data)
797{
798 struct qdio_q *q = (struct qdio_q *)data;
c38f9608
JG
799
800 if (unlikely(q->irq_ptr->state == QDIO_IRQ_STATE_STOPPED))
801 return;
779e6e1c
JG
802 tasklet_schedule(&q->tasklet);
803}
804
60b5df2f 805static inline void qdio_check_outbound_after_thinint(struct qdio_q *q)
779e6e1c
JG
806{
807 struct qdio_q *out;
808 int i;
809
810 if (!pci_out_supported(q))
811 return;
812
813 for_each_output_queue(q->irq_ptr, out, i)
814 if (!qdio_outbound_q_done(out))
815 tasklet_schedule(&out->tasklet);
816}
817
60b5df2f
JG
818static void __tiqdio_inbound_processing(struct qdio_q *q)
819{
6486cda6 820 qperf_inc(q, tasklet_inbound);
60b5df2f
JG
821 qdio_sync_after_thinint(q);
822
823 /*
824 * The interrupt could be caused by a PCI request. Check the
825 * PCI capable outbound queues.
826 */
827 qdio_check_outbound_after_thinint(q);
828
829 if (!qdio_inbound_q_moved(q))
830 return;
831
832 qdio_kick_handler(q);
833
9a2c160a 834 if (!qdio_inbound_q_done(q)) {
6486cda6 835 qperf_inc(q, tasklet_inbound_resched);
e2910bcf 836 if (likely(q->irq_ptr->state != QDIO_IRQ_STATE_STOPPED)) {
60b5df2f 837 tasklet_schedule(&q->tasklet);
e2910bcf
JG
838 return;
839 }
60b5df2f
JG
840 }
841
842 qdio_stop_polling(q);
843 /*
844 * We need to check again to not lose initiative after
845 * resetting the ACK state.
846 */
9a2c160a 847 if (!qdio_inbound_q_done(q)) {
6486cda6 848 qperf_inc(q, tasklet_inbound_resched2);
60b5df2f
JG
849 if (likely(q->irq_ptr->state != QDIO_IRQ_STATE_STOPPED))
850 tasklet_schedule(&q->tasklet);
851 }
852}
853
854void tiqdio_inbound_processing(unsigned long data)
855{
856 struct qdio_q *q = (struct qdio_q *)data;
857 __tiqdio_inbound_processing(q);
858}
859
779e6e1c
JG
860static inline void qdio_set_state(struct qdio_irq *irq_ptr,
861 enum qdio_irq_states state)
862{
22f99347 863 DBF_DEV_EVENT(DBF_INFO, irq_ptr, "newstate: %1d", state);
779e6e1c
JG
864
865 irq_ptr->state = state;
866 mb();
867}
868
22f99347 869static void qdio_irq_check_sense(struct qdio_irq *irq_ptr, struct irb *irb)
779e6e1c 870{
779e6e1c 871 if (irb->esw.esw0.erw.cons) {
22f99347
JG
872 DBF_ERROR("%4x sense:", irq_ptr->schid.sch_no);
873 DBF_ERROR_HEX(irb, 64);
874 DBF_ERROR_HEX(irb->ecw, 64);
779e6e1c
JG
875 }
876}
877
878/* PCI interrupt handler */
879static void qdio_int_handler_pci(struct qdio_irq *irq_ptr)
880{
881 int i;
882 struct qdio_q *q;
883
c38f9608
JG
884 if (unlikely(irq_ptr->state == QDIO_IRQ_STATE_STOPPED))
885 return;
886
779e6e1c
JG
887 for_each_input_queue(irq_ptr, q, i)
888 tasklet_schedule(&q->tasklet);
889
890 if (!(irq_ptr->qib.ac & QIB_AC_OUTBOUND_PCI_SUPPORTED))
891 return;
892
893 for_each_output_queue(irq_ptr, q, i) {
894 if (qdio_outbound_q_done(q))
895 continue;
896
897 if (!siga_syncs_out_pci(q))
898 qdio_siga_sync_q(q);
899
900 tasklet_schedule(&q->tasklet);
901 }
902}
903
904static void qdio_handle_activate_check(struct ccw_device *cdev,
905 unsigned long intparm, int cstat, int dstat)
906{
907 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
908 struct qdio_q *q;
779e6e1c 909
22f99347
JG
910 DBF_ERROR("%4x ACT CHECK", irq_ptr->schid.sch_no);
911 DBF_ERROR("intp :%lx", intparm);
912 DBF_ERROR("ds: %2x cs:%2x", dstat, cstat);
779e6e1c
JG
913
914 if (irq_ptr->nr_input_qs) {
915 q = irq_ptr->input_qs[0];
916 } else if (irq_ptr->nr_output_qs) {
917 q = irq_ptr->output_qs[0];
918 } else {
919 dump_stack();
920 goto no_handler;
921 }
922 q->handler(q->irq_ptr->cdev, QDIO_ERROR_ACTIVATE_CHECK_CONDITION,
923 0, -1, -1, irq_ptr->int_parm);
924no_handler:
925 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_STOPPED);
926}
927
4c575423
JG
928static void qdio_establish_handle_irq(struct ccw_device *cdev, int cstat,
929 int dstat)
779e6e1c
JG
930{
931 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
932
4c575423 933 DBF_DEV_EVENT(DBF_INFO, irq_ptr, "qest irq");
779e6e1c 934
4c575423 935 if (cstat)
779e6e1c 936 goto error;
4c575423 937 if (dstat & ~(DEV_STAT_DEV_END | DEV_STAT_CHN_END))
779e6e1c 938 goto error;
4c575423
JG
939 if (!(dstat & DEV_STAT_DEV_END))
940 goto error;
941 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_ESTABLISHED);
942 return;
943
779e6e1c 944error:
22f99347
JG
945 DBF_ERROR("%4x EQ:error", irq_ptr->schid.sch_no);
946 DBF_ERROR("ds: %2x cs:%2x", dstat, cstat);
779e6e1c 947 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_ERR);
779e6e1c
JG
948}
949
950/* qdio interrupt handler */
951void qdio_int_handler(struct ccw_device *cdev, unsigned long intparm,
952 struct irb *irb)
953{
954 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
955 int cstat, dstat;
779e6e1c 956
779e6e1c 957 if (!intparm || !irq_ptr) {
22f99347 958 DBF_ERROR("qint:%4x", cdev->private->schid.sch_no);
779e6e1c
JG
959 return;
960 }
961
09a308f3
JG
962 if (irq_ptr->perf_stat_enabled)
963 irq_ptr->perf_stat.qdio_int++;
964
779e6e1c
JG
965 if (IS_ERR(irb)) {
966 switch (PTR_ERR(irb)) {
967 case -EIO:
22f99347 968 DBF_ERROR("%4x IO error", irq_ptr->schid.sch_no);
75cb71f3
JG
969 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_ERR);
970 wake_up(&cdev->private->wait_q);
779e6e1c
JG
971 return;
972 default:
973 WARN_ON(1);
974 return;
975 }
976 }
22f99347 977 qdio_irq_check_sense(irq_ptr, irb);
779e6e1c
JG
978 cstat = irb->scsw.cmd.cstat;
979 dstat = irb->scsw.cmd.dstat;
980
981 switch (irq_ptr->state) {
982 case QDIO_IRQ_STATE_INACTIVE:
983 qdio_establish_handle_irq(cdev, cstat, dstat);
984 break;
779e6e1c
JG
985 case QDIO_IRQ_STATE_CLEANUP:
986 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_INACTIVE);
987 break;
779e6e1c
JG
988 case QDIO_IRQ_STATE_ESTABLISHED:
989 case QDIO_IRQ_STATE_ACTIVE:
990 if (cstat & SCHN_STAT_PCI) {
991 qdio_int_handler_pci(irq_ptr);
779e6e1c
JG
992 return;
993 }
4c575423 994 if (cstat || dstat)
779e6e1c
JG
995 qdio_handle_activate_check(cdev, intparm, cstat,
996 dstat);
4c575423 997 break;
959153d3
JG
998 case QDIO_IRQ_STATE_STOPPED:
999 break;
779e6e1c
JG
1000 default:
1001 WARN_ON(1);
1002 }
1003 wake_up(&cdev->private->wait_q);
1004}
1005
1006/**
1007 * qdio_get_ssqd_desc - get qdio subchannel description
1008 * @cdev: ccw device to get description for
bbd50e17 1009 * @data: where to store the ssqd
779e6e1c 1010 *
bbd50e17
JG
1011 * Returns 0 or an error code. The results of the chsc are stored in the
1012 * specified structure.
779e6e1c 1013 */
bbd50e17
JG
1014int qdio_get_ssqd_desc(struct ccw_device *cdev,
1015 struct qdio_ssqd_desc *data)
779e6e1c 1016{
779e6e1c 1017
bbd50e17
JG
1018 if (!cdev || !cdev->private)
1019 return -EINVAL;
1020
22f99347 1021 DBF_EVENT("get ssqd:%4x", cdev->private->schid.sch_no);
bbd50e17 1022 return qdio_setup_get_ssqd(NULL, &cdev->private->schid, data);
779e6e1c
JG
1023}
1024EXPORT_SYMBOL_GPL(qdio_get_ssqd_desc);
1025
1026/**
1027 * qdio_cleanup - shutdown queues and free data structures
1028 * @cdev: associated ccw device
1029 * @how: use halt or clear to shutdown
1030 *
700e982f
JG
1031 * This function calls qdio_shutdown() for @cdev with method @how.
1032 * and qdio_free(). The qdio_free() return value is ignored since
1033 * !irq_ptr is already checked.
779e6e1c
JG
1034 */
1035int qdio_cleanup(struct ccw_device *cdev, int how)
1036{
22f99347 1037 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
779e6e1c
JG
1038 int rc;
1039
779e6e1c
JG
1040 if (!irq_ptr)
1041 return -ENODEV;
1042
779e6e1c 1043 rc = qdio_shutdown(cdev, how);
700e982f
JG
1044
1045 qdio_free(cdev);
779e6e1c
JG
1046 return rc;
1047}
1048EXPORT_SYMBOL_GPL(qdio_cleanup);
1049
1050static void qdio_shutdown_queues(struct ccw_device *cdev)
1051{
1052 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
1053 struct qdio_q *q;
1054 int i;
1055
1056 for_each_input_queue(irq_ptr, q, i)
c38f9608 1057 tasklet_kill(&q->tasklet);
779e6e1c
JG
1058
1059 for_each_output_queue(irq_ptr, q, i) {
779e6e1c 1060 del_timer(&q->u.out.timer);
c38f9608 1061 tasklet_kill(&q->tasklet);
779e6e1c
JG
1062 }
1063}
1064
1065/**
1066 * qdio_shutdown - shut down a qdio subchannel
1067 * @cdev: associated ccw device
1068 * @how: use halt or clear to shutdown
1069 */
1070int qdio_shutdown(struct ccw_device *cdev, int how)
1071{
22f99347 1072 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
779e6e1c
JG
1073 int rc;
1074 unsigned long flags;
779e6e1c 1075
779e6e1c
JG
1076 if (!irq_ptr)
1077 return -ENODEV;
1078
b4547402 1079 BUG_ON(irqs_disabled());
22f99347
JG
1080 DBF_EVENT("qshutdown:%4x", cdev->private->schid.sch_no);
1081
779e6e1c
JG
1082 mutex_lock(&irq_ptr->setup_mutex);
1083 /*
1084 * Subchannel was already shot down. We cannot prevent being called
1085 * twice since cio may trigger a shutdown asynchronously.
1086 */
1087 if (irq_ptr->state == QDIO_IRQ_STATE_INACTIVE) {
1088 mutex_unlock(&irq_ptr->setup_mutex);
1089 return 0;
1090 }
1091
c38f9608
JG
1092 /*
1093 * Indicate that the device is going down. Scheduling the queue
1094 * tasklets is forbidden from here on.
1095 */
1096 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_STOPPED);
1097
779e6e1c
JG
1098 tiqdio_remove_input_queues(irq_ptr);
1099 qdio_shutdown_queues(cdev);
1100 qdio_shutdown_debug_entries(irq_ptr, cdev);
1101
1102 /* cleanup subchannel */
1103 spin_lock_irqsave(get_ccwdev_lock(cdev), flags);
1104
1105 if (how & QDIO_FLAG_CLEANUP_USING_CLEAR)
1106 rc = ccw_device_clear(cdev, QDIO_DOING_CLEANUP);
1107 else
1108 /* default behaviour is halt */
1109 rc = ccw_device_halt(cdev, QDIO_DOING_CLEANUP);
1110 if (rc) {
22f99347
JG
1111 DBF_ERROR("%4x SHUTD ERR", irq_ptr->schid.sch_no);
1112 DBF_ERROR("rc:%4d", rc);
779e6e1c
JG
1113 goto no_cleanup;
1114 }
1115
1116 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_CLEANUP);
1117 spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);
1118 wait_event_interruptible_timeout(cdev->private->wait_q,
1119 irq_ptr->state == QDIO_IRQ_STATE_INACTIVE ||
1120 irq_ptr->state == QDIO_IRQ_STATE_ERR,
1121 10 * HZ);
1122 spin_lock_irqsave(get_ccwdev_lock(cdev), flags);
1123
1124no_cleanup:
1125 qdio_shutdown_thinint(irq_ptr);
1126
1127 /* restore interrupt handler */
1128 if ((void *)cdev->handler == (void *)qdio_int_handler)
1129 cdev->handler = irq_ptr->orig_handler;
1130 spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);
1131
1132 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_INACTIVE);
1133 mutex_unlock(&irq_ptr->setup_mutex);
779e6e1c
JG
1134 if (rc)
1135 return rc;
1136 return 0;
1137}
1138EXPORT_SYMBOL_GPL(qdio_shutdown);
1139
1140/**
1141 * qdio_free - free data structures for a qdio subchannel
1142 * @cdev: associated ccw device
1143 */
1144int qdio_free(struct ccw_device *cdev)
1145{
22f99347 1146 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
58eb27cd 1147
779e6e1c
JG
1148 if (!irq_ptr)
1149 return -ENODEV;
1150
22f99347 1151 DBF_EVENT("qfree:%4x", cdev->private->schid.sch_no);
779e6e1c 1152 mutex_lock(&irq_ptr->setup_mutex);
22f99347
JG
1153
1154 if (irq_ptr->debug_area != NULL) {
1155 debug_unregister(irq_ptr->debug_area);
1156 irq_ptr->debug_area = NULL;
1157 }
779e6e1c
JG
1158 cdev->private->qdio_data = NULL;
1159 mutex_unlock(&irq_ptr->setup_mutex);
1160
1161 qdio_release_memory(irq_ptr);
1162 return 0;
1163}
1164EXPORT_SYMBOL_GPL(qdio_free);
1165
1166/**
1167 * qdio_initialize - allocate and establish queues for a qdio subchannel
1168 * @init_data: initialization data
1169 *
1170 * This function first allocates queues via qdio_allocate() and on success
1171 * establishes them via qdio_establish().
1172 */
1173int qdio_initialize(struct qdio_initialize *init_data)
1174{
1175 int rc;
779e6e1c
JG
1176
1177 rc = qdio_allocate(init_data);
1178 if (rc)
1179 return rc;
1180
1181 rc = qdio_establish(init_data);
1182 if (rc)
1183 qdio_free(init_data->cdev);
1184 return rc;
1185}
1186EXPORT_SYMBOL_GPL(qdio_initialize);
1187
1188/**
1189 * qdio_allocate - allocate qdio queues and associated data
1190 * @init_data: initialization data
1191 */
1192int qdio_allocate(struct qdio_initialize *init_data)
1193{
1194 struct qdio_irq *irq_ptr;
779e6e1c 1195
22f99347 1196 DBF_EVENT("qallocate:%4x", init_data->cdev->private->schid.sch_no);
779e6e1c
JG
1197
1198 if ((init_data->no_input_qs && !init_data->input_handler) ||
1199 (init_data->no_output_qs && !init_data->output_handler))
1200 return -EINVAL;
1201
1202 if ((init_data->no_input_qs > QDIO_MAX_QUEUES_PER_IRQ) ||
1203 (init_data->no_output_qs > QDIO_MAX_QUEUES_PER_IRQ))
1204 return -EINVAL;
1205
1206 if ((!init_data->input_sbal_addr_array) ||
1207 (!init_data->output_sbal_addr_array))
1208 return -EINVAL;
1209
779e6e1c
JG
1210 /* irq_ptr must be in GFP_DMA since it contains ccw1.cda */
1211 irq_ptr = (void *) get_zeroed_page(GFP_KERNEL | GFP_DMA);
1212 if (!irq_ptr)
1213 goto out_err;
779e6e1c
JG
1214
1215 mutex_init(&irq_ptr->setup_mutex);
22f99347 1216 qdio_allocate_dbf(init_data, irq_ptr);
779e6e1c
JG
1217
1218 /*
1219 * Allocate a page for the chsc calls in qdio_establish.
1220 * Must be pre-allocated since a zfcp recovery will call
1221 * qdio_establish. In case of low memory and swap on a zfcp disk
1222 * we may not be able to allocate memory otherwise.
1223 */
1224 irq_ptr->chsc_page = get_zeroed_page(GFP_KERNEL);
1225 if (!irq_ptr->chsc_page)
1226 goto out_rel;
1227
1228 /* qdr is used in ccw1.cda which is u32 */
3b8e3004 1229 irq_ptr->qdr = (struct qdr *) get_zeroed_page(GFP_KERNEL | GFP_DMA);
779e6e1c
JG
1230 if (!irq_ptr->qdr)
1231 goto out_rel;
1232 WARN_ON((unsigned long)irq_ptr->qdr & 0xfff);
1233
779e6e1c
JG
1234 if (qdio_allocate_qs(irq_ptr, init_data->no_input_qs,
1235 init_data->no_output_qs))
1236 goto out_rel;
1237
1238 init_data->cdev->private->qdio_data = irq_ptr;
1239 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_INACTIVE);
1240 return 0;
1241out_rel:
1242 qdio_release_memory(irq_ptr);
1243out_err:
1244 return -ENOMEM;
1245}
1246EXPORT_SYMBOL_GPL(qdio_allocate);
1247
1248/**
1249 * qdio_establish - establish queues on a qdio subchannel
1250 * @init_data: initialization data
1251 */
1252int qdio_establish(struct qdio_initialize *init_data)
1253{
779e6e1c
JG
1254 struct qdio_irq *irq_ptr;
1255 struct ccw_device *cdev = init_data->cdev;
1256 unsigned long saveflags;
1257 int rc;
1258
22f99347 1259 DBF_EVENT("qestablish:%4x", cdev->private->schid.sch_no);
58eb27cd 1260
779e6e1c
JG
1261 irq_ptr = cdev->private->qdio_data;
1262 if (!irq_ptr)
1263 return -ENODEV;
1264
1265 if (cdev->private->state != DEV_STATE_ONLINE)
1266 return -EINVAL;
1267
779e6e1c
JG
1268 mutex_lock(&irq_ptr->setup_mutex);
1269 qdio_setup_irq(init_data);
1270
1271 rc = qdio_establish_thinint(irq_ptr);
1272 if (rc) {
1273 mutex_unlock(&irq_ptr->setup_mutex);
1274 qdio_shutdown(cdev, QDIO_FLAG_CLEANUP_USING_CLEAR);
1275 return rc;
1276 }
1277
1278 /* establish q */
1279 irq_ptr->ccw.cmd_code = irq_ptr->equeue.cmd;
1280 irq_ptr->ccw.flags = CCW_FLAG_SLI;
1281 irq_ptr->ccw.count = irq_ptr->equeue.count;
1282 irq_ptr->ccw.cda = (u32)((addr_t)irq_ptr->qdr);
1283
1284 spin_lock_irqsave(get_ccwdev_lock(cdev), saveflags);
1285 ccw_device_set_options_mask(cdev, 0);
1286
1287 rc = ccw_device_start(cdev, &irq_ptr->ccw, QDIO_DOING_ESTABLISH, 0, 0);
1288 if (rc) {
22f99347
JG
1289 DBF_ERROR("%4x est IO ERR", irq_ptr->schid.sch_no);
1290 DBF_ERROR("rc:%4x", rc);
779e6e1c
JG
1291 }
1292 spin_unlock_irqrestore(get_ccwdev_lock(cdev), saveflags);
1293
1294 if (rc) {
1295 mutex_unlock(&irq_ptr->setup_mutex);
1296 qdio_shutdown(cdev, QDIO_FLAG_CLEANUP_USING_CLEAR);
1297 return rc;
1298 }
1299
1300 wait_event_interruptible_timeout(cdev->private->wait_q,
1301 irq_ptr->state == QDIO_IRQ_STATE_ESTABLISHED ||
1302 irq_ptr->state == QDIO_IRQ_STATE_ERR, HZ);
1303
1304 if (irq_ptr->state != QDIO_IRQ_STATE_ESTABLISHED) {
1305 mutex_unlock(&irq_ptr->setup_mutex);
1306 qdio_shutdown(cdev, QDIO_FLAG_CLEANUP_USING_CLEAR);
1307 return -EIO;
1308 }
1309
1310 qdio_setup_ssqd_info(irq_ptr);
22f99347
JG
1311 DBF_EVENT("qDmmwc:%2x", irq_ptr->ssqd_desc.mmwc);
1312 DBF_EVENT("qib ac:%4x", irq_ptr->qib.ac);
779e6e1c
JG
1313
1314 /* qebsm is now setup if available, initialize buffer states */
1315 qdio_init_buf_states(irq_ptr);
1316
1317 mutex_unlock(&irq_ptr->setup_mutex);
1318 qdio_print_subchannel_info(irq_ptr, cdev);
1319 qdio_setup_debug_entries(irq_ptr, cdev);
1320 return 0;
1321}
1322EXPORT_SYMBOL_GPL(qdio_establish);
1323
1324/**
1325 * qdio_activate - activate queues on a qdio subchannel
1326 * @cdev: associated cdev
1327 */
1328int qdio_activate(struct ccw_device *cdev)
1329{
1330 struct qdio_irq *irq_ptr;
1331 int rc;
1332 unsigned long saveflags;
779e6e1c 1333
22f99347 1334 DBF_EVENT("qactivate:%4x", cdev->private->schid.sch_no);
58eb27cd 1335
779e6e1c
JG
1336 irq_ptr = cdev->private->qdio_data;
1337 if (!irq_ptr)
1338 return -ENODEV;
1339
1340 if (cdev->private->state != DEV_STATE_ONLINE)
1341 return -EINVAL;
1342
1343 mutex_lock(&irq_ptr->setup_mutex);
1344 if (irq_ptr->state == QDIO_IRQ_STATE_INACTIVE) {
1345 rc = -EBUSY;
1346 goto out;
1347 }
1348
779e6e1c
JG
1349 irq_ptr->ccw.cmd_code = irq_ptr->aqueue.cmd;
1350 irq_ptr->ccw.flags = CCW_FLAG_SLI;
1351 irq_ptr->ccw.count = irq_ptr->aqueue.count;
1352 irq_ptr->ccw.cda = 0;
1353
1354 spin_lock_irqsave(get_ccwdev_lock(cdev), saveflags);
1355 ccw_device_set_options(cdev, CCWDEV_REPORT_ALL);
1356
1357 rc = ccw_device_start(cdev, &irq_ptr->ccw, QDIO_DOING_ACTIVATE,
1358 0, DOIO_DENY_PREFETCH);
1359 if (rc) {
22f99347
JG
1360 DBF_ERROR("%4x act IO ERR", irq_ptr->schid.sch_no);
1361 DBF_ERROR("rc:%4x", rc);
779e6e1c
JG
1362 }
1363 spin_unlock_irqrestore(get_ccwdev_lock(cdev), saveflags);
1364
1365 if (rc)
1366 goto out;
1367
1368 if (is_thinint_irq(irq_ptr))
1369 tiqdio_add_input_queues(irq_ptr);
1370
1371 /* wait for subchannel to become active */
1372 msleep(5);
1373
1374 switch (irq_ptr->state) {
1375 case QDIO_IRQ_STATE_STOPPED:
1376 case QDIO_IRQ_STATE_ERR:
e4c14e20
JG
1377 rc = -EIO;
1378 break;
779e6e1c
JG
1379 default:
1380 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_ACTIVE);
1381 rc = 0;
1382 }
1383out:
1384 mutex_unlock(&irq_ptr->setup_mutex);
1385 return rc;
1386}
1387EXPORT_SYMBOL_GPL(qdio_activate);
1388
1389static inline int buf_in_between(int bufnr, int start, int count)
1390{
1391 int end = add_buf(start, count);
1392
1393 if (end > start) {
1394 if (bufnr >= start && bufnr < end)
1395 return 1;
1396 else
1397 return 0;
1398 }
1399
1400 /* wrap-around case */
1401 if ((bufnr >= start && bufnr <= QDIO_MAX_BUFFERS_PER_Q) ||
1402 (bufnr < end))
1403 return 1;
1404 else
1405 return 0;
1406}
1407
1408/**
1409 * handle_inbound - reset processed input buffers
1410 * @q: queue containing the buffers
1411 * @callflags: flags
1412 * @bufnr: first buffer to process
1413 * @count: how many buffers are emptied
1414 */
d303b6fd
JG
1415static int handle_inbound(struct qdio_q *q, unsigned int callflags,
1416 int bufnr, int count)
779e6e1c 1417{
d303b6fd 1418 int used, diff;
779e6e1c 1419
6486cda6
JG
1420 qperf_inc(q, inbound_call);
1421
50f769df
JG
1422 if (!q->u.in.polling)
1423 goto set;
1424
1425 /* protect against stop polling setting an ACK for an emptied slsb */
1426 if (count == QDIO_MAX_BUFFERS_PER_Q) {
1427 /* overwriting everything, just delete polling status */
1428 q->u.in.polling = 0;
1429 q->u.in.ack_count = 0;
1430 goto set;
e85dea0e 1431 } else if (buf_in_between(q->u.in.ack_start, bufnr, count)) {
50f769df 1432 if (is_qebsm(q)) {
e85dea0e 1433 /* partial overwrite, just update ack_start */
50f769df 1434 diff = add_buf(bufnr, count);
e85dea0e 1435 diff = sub_buf(diff, q->u.in.ack_start);
50f769df
JG
1436 q->u.in.ack_count -= diff;
1437 if (q->u.in.ack_count <= 0) {
1438 q->u.in.polling = 0;
1439 q->u.in.ack_count = 0;
50f769df
JG
1440 goto set;
1441 }
e85dea0e 1442 q->u.in.ack_start = add_buf(q->u.in.ack_start, diff);
50f769df
JG
1443 }
1444 else
1445 /* the only ACK will be deleted, so stop polling */
779e6e1c 1446 q->u.in.polling = 0;
50f769df 1447 }
779e6e1c 1448
50f769df 1449set:
779e6e1c 1450 count = set_buf_states(q, bufnr, SLSB_CU_INPUT_EMPTY, count);
779e6e1c
JG
1451
1452 used = atomic_add_return(count, &q->nr_buf_used) - count;
1453 BUG_ON(used + count > QDIO_MAX_BUFFERS_PER_Q);
1454
1455 /* no need to signal as long as the adapter had free buffers */
1456 if (used)
d303b6fd 1457 return 0;
779e6e1c 1458
d303b6fd
JG
1459 if (need_siga_in(q))
1460 return qdio_siga_input(q);
1461 return 0;
779e6e1c
JG
1462}
1463
1464/**
1465 * handle_outbound - process filled outbound buffers
1466 * @q: queue containing the buffers
1467 * @callflags: flags
1468 * @bufnr: first buffer to process
1469 * @count: how many buffers are filled
1470 */
d303b6fd
JG
1471static int handle_outbound(struct qdio_q *q, unsigned int callflags,
1472 int bufnr, int count)
779e6e1c
JG
1473{
1474 unsigned char state;
d303b6fd 1475 int used, rc = 0;
779e6e1c 1476
6486cda6 1477 qperf_inc(q, outbound_call);
779e6e1c
JG
1478
1479 count = set_buf_states(q, bufnr, SLSB_CU_OUTPUT_PRIMED, count);
1480 used = atomic_add_return(count, &q->nr_buf_used);
1481 BUG_ON(used > QDIO_MAX_BUFFERS_PER_Q);
1482
6486cda6 1483 if (callflags & QDIO_FLAG_PCI_OUT) {
779e6e1c 1484 q->u.out.pci_out_enabled = 1;
6486cda6
JG
1485 qperf_inc(q, pci_request_int);
1486 }
779e6e1c
JG
1487 else
1488 q->u.out.pci_out_enabled = 0;
1489
1490 if (queue_type(q) == QDIO_IQDIO_QFMT) {
1491 if (multicast_outbound(q))
d303b6fd 1492 rc = qdio_kick_outbound_q(q);
779e6e1c 1493 else
7a0f4755
KDW
1494 if ((q->irq_ptr->ssqd_desc.mmwc > 1) &&
1495 (count > 1) &&
1496 (count <= q->irq_ptr->ssqd_desc.mmwc)) {
1497 /* exploit enhanced SIGA */
1498 q->u.out.use_enh_siga = 1;
d303b6fd 1499 rc = qdio_kick_outbound_q(q);
7a0f4755
KDW
1500 } else {
1501 /*
1502 * One siga-w per buffer required for unicast
1503 * HiperSockets.
1504 */
1505 q->u.out.use_enh_siga = 0;
d303b6fd
JG
1506 while (count--) {
1507 rc = qdio_kick_outbound_q(q);
1508 if (rc)
1509 goto out;
1510 }
7a0f4755 1511 }
779e6e1c
JG
1512 goto out;
1513 }
1514
1515 if (need_siga_sync(q)) {
1516 qdio_siga_sync_q(q);
1517 goto out;
1518 }
1519
1520 /* try to fast requeue buffers */
50f769df 1521 get_buf_state(q, prev_buf(bufnr), &state, 0);
779e6e1c 1522 if (state != SLSB_CU_OUTPUT_PRIMED)
d303b6fd 1523 rc = qdio_kick_outbound_q(q);
1d7e1500 1524 else
6486cda6 1525 qperf_inc(q, fast_requeue);
1d7e1500 1526
779e6e1c 1527out:
779e6e1c 1528 tasklet_schedule(&q->tasklet);
d303b6fd 1529 return rc;
779e6e1c
JG
1530}
1531
1532/**
1533 * do_QDIO - process input or output buffers
1534 * @cdev: associated ccw_device for the qdio subchannel
1535 * @callflags: input or output and special flags from the program
1536 * @q_nr: queue number
1537 * @bufnr: buffer number
1538 * @count: how many buffers to process
1539 */
1540int do_QDIO(struct ccw_device *cdev, unsigned int callflags,
6618241b 1541 int q_nr, unsigned int bufnr, unsigned int count)
779e6e1c
JG
1542{
1543 struct qdio_irq *irq_ptr;
779e6e1c 1544
6618241b 1545 if (bufnr >= QDIO_MAX_BUFFERS_PER_Q || count > QDIO_MAX_BUFFERS_PER_Q)
779e6e1c
JG
1546 return -EINVAL;
1547
779e6e1c
JG
1548 irq_ptr = cdev->private->qdio_data;
1549 if (!irq_ptr)
1550 return -ENODEV;
1551
1d7e1500
JG
1552 DBF_DEV_EVENT(DBF_INFO, irq_ptr,
1553 "do%02x b:%02x c:%02x", callflags, bufnr, count);
779e6e1c
JG
1554
1555 if (irq_ptr->state != QDIO_IRQ_STATE_ACTIVE)
1556 return -EBUSY;
1557
1558 if (callflags & QDIO_FLAG_SYNC_INPUT)
d303b6fd
JG
1559 return handle_inbound(irq_ptr->input_qs[q_nr],
1560 callflags, bufnr, count);
779e6e1c 1561 else if (callflags & QDIO_FLAG_SYNC_OUTPUT)
d303b6fd
JG
1562 return handle_outbound(irq_ptr->output_qs[q_nr],
1563 callflags, bufnr, count);
1564 return -EINVAL;
779e6e1c
JG
1565}
1566EXPORT_SYMBOL_GPL(do_QDIO);
1567
1568static int __init init_QDIO(void)
1569{
1570 int rc;
1571
1572 rc = qdio_setup_init();
1573 if (rc)
1574 return rc;
1575 rc = tiqdio_allocate_memory();
1576 if (rc)
1577 goto out_cache;
1578 rc = qdio_debug_init();
1579 if (rc)
1580 goto out_ti;
779e6e1c
JG
1581 rc = tiqdio_register_thinints();
1582 if (rc)
6486cda6 1583 goto out_debug;
779e6e1c
JG
1584 return 0;
1585
779e6e1c
JG
1586out_debug:
1587 qdio_debug_exit();
1588out_ti:
1589 tiqdio_free_memory();
1590out_cache:
1591 qdio_setup_exit();
1592 return rc;
1593}
1594
1595static void __exit exit_QDIO(void)
1596{
1597 tiqdio_unregister_thinints();
1598 tiqdio_free_memory();
779e6e1c
JG
1599 qdio_debug_exit();
1600 qdio_setup_exit();
1601}
1602
1603module_init(init_QDIO);
1604module_exit(exit_QDIO);
This page took 0.260224 seconds and 5 git commands to generate.