blob: a44a8c5b91beb7f79597db31343675242dd0e249 [file] [log] [blame]
Jan Glauber779e6e12008-07-17 17:16:48 +02001/*
2 * linux/drivers/s390/cio/qdio_main.c
3 *
4 * Linux for s390 qdio support, buffer handling, qdio API and module support.
5 *
6 * Copyright 2000,2008 IBM Corp.
7 * Author(s): Utz Bacher <utz.bacher@de.ibm.com>
8 * Jan Glauber <jang@linux.vnet.ibm.com>
9 * 2.6 cio integration by Cornelia Huck <cornelia.huck@de.ibm.com>
10 */
11#include <linux/module.h>
12#include <linux/init.h>
13#include <linux/kernel.h>
14#include <linux/timer.h>
15#include <linux/delay.h>
16#include <asm/atomic.h>
17#include <asm/debug.h>
18#include <asm/qdio.h>
19
20#include "cio.h"
21#include "css.h"
22#include "device.h"
23#include "qdio.h"
24#include "qdio_debug.h"
25#include "qdio_perf.h"
26
27MODULE_AUTHOR("Utz Bacher <utz.bacher@de.ibm.com>,"\
28 "Jan Glauber <jang@linux.vnet.ibm.com>");
29MODULE_DESCRIPTION("QDIO base support");
30MODULE_LICENSE("GPL");
31
32static inline int do_siga_sync(struct subchannel_id schid,
33 unsigned int out_mask, unsigned int in_mask)
34{
35 register unsigned long __fc asm ("0") = 2;
36 register struct subchannel_id __schid asm ("1") = schid;
37 register unsigned long out asm ("2") = out_mask;
38 register unsigned long in asm ("3") = in_mask;
39 int cc;
40
41 asm volatile(
42 " siga 0\n"
43 " ipm %0\n"
44 " srl %0,28\n"
45 : "=d" (cc)
46 : "d" (__fc), "d" (__schid), "d" (out), "d" (in) : "cc");
47 return cc;
48}
49
50static inline int do_siga_input(struct subchannel_id schid, unsigned int mask)
51{
52 register unsigned long __fc asm ("0") = 1;
53 register struct subchannel_id __schid asm ("1") = schid;
54 register unsigned long __mask asm ("2") = mask;
55 int cc;
56
57 asm volatile(
58 " siga 0\n"
59 " ipm %0\n"
60 " srl %0,28\n"
61 : "=d" (cc)
62 : "d" (__fc), "d" (__schid), "d" (__mask) : "cc", "memory");
63 return cc;
64}
65
66/**
67 * do_siga_output - perform SIGA-w/wt function
68 * @schid: subchannel id or in case of QEBSM the subchannel token
69 * @mask: which output queues to process
70 * @bb: busy bit indicator, set only if SIGA-w/wt could not access a buffer
71 * @fc: function code to perform
72 *
73 * Returns cc or QDIO_ERROR_SIGA_ACCESS_EXCEPTION.
74 * Note: For IQDC unicast queues only the highest priority queue is processed.
75 */
76static inline int do_siga_output(unsigned long schid, unsigned long mask,
77 u32 *bb, unsigned int fc)
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{
98 char dbf_text[15];
99
100 /* all done or next buffer state different */
101 if (ccq == 0 || ccq == 32)
102 return 0;
103 /* not all buffers processed */
104 if (ccq == 96 || ccq == 97)
105 return 1;
106 /* notify devices immediately */
107 sprintf(dbf_text, "%d", ccq);
108 QDIO_DBF_TEXT2(1, trace, dbf_text);
109 return -EIO;
110}
111
112/**
113 * qdio_do_eqbs - extract buffer states for QEBSM
114 * @q: queue to manipulate
115 * @state: state of the extracted buffers
116 * @start: buffer number to start at
117 * @count: count of buffers to examine
118 *
119 * Returns the number of successfull extracted equal buffer states.
120 * Stops processing if a state is different from the last buffers state.
121 */
122static int qdio_do_eqbs(struct qdio_q *q, unsigned char *state,
123 int start, int count)
124{
125 unsigned int ccq = 0;
126 int tmp_count = count, tmp_start = start;
127 int nr = q->nr;
128 int rc;
129 char dbf_text[15];
130
131 BUG_ON(!q->irq_ptr->sch_token);
Jan Glauber23589d02008-12-25 13:38:44 +0100132 qdio_perf_stat_inc(&perf_stats.debug_eqbs_all);
Jan Glauber779e6e12008-07-17 17:16:48 +0200133
134 if (!q->is_input_q)
135 nr += q->irq_ptr->nr_input_qs;
136again:
137 ccq = do_eqbs(q->irq_ptr->sch_token, state, nr, &tmp_start, &tmp_count);
138 rc = qdio_check_ccq(q, ccq);
139
140 /* At least one buffer was processed, return and extract the remaining
141 * buffers later.
142 */
Jan Glauber23589d02008-12-25 13:38:44 +0100143 if ((ccq == 96) && (count != tmp_count)) {
144 qdio_perf_stat_inc(&perf_stats.debug_eqbs_incomplete);
Jan Glauber779e6e12008-07-17 17:16:48 +0200145 return (count - tmp_count);
Jan Glauber23589d02008-12-25 13:38:44 +0100146 }
Jan Glauber779e6e12008-07-17 17:16:48 +0200147 if (rc == 1) {
148 QDIO_DBF_TEXT5(1, trace, "eqAGAIN");
149 goto again;
150 }
151
152 if (rc < 0) {
153 QDIO_DBF_TEXT2(1, trace, "eqberr");
154 sprintf(dbf_text, "%2x,%2x,%d,%d", count, tmp_count, ccq, nr);
155 QDIO_DBF_TEXT2(1, trace, dbf_text);
156 q->handler(q->irq_ptr->cdev,
157 QDIO_ERROR_ACTIVATE_CHECK_CONDITION,
158 0, -1, -1, q->irq_ptr->int_parm);
159 return 0;
160 }
161 return count - tmp_count;
162}
163
164/**
165 * qdio_do_sqbs - set buffer states for QEBSM
166 * @q: queue to manipulate
167 * @state: new state of the buffers
168 * @start: first buffer number to change
169 * @count: how many buffers to change
170 *
171 * Returns the number of successfully changed buffers.
172 * Does retrying until the specified count of buffer states is set or an
173 * error occurs.
174 */
175static int qdio_do_sqbs(struct qdio_q *q, unsigned char state, int start,
176 int count)
177{
178 unsigned int ccq = 0;
179 int tmp_count = count, tmp_start = start;
180 int nr = q->nr;
181 int rc;
182 char dbf_text[15];
183
184 BUG_ON(!q->irq_ptr->sch_token);
Jan Glauber23589d02008-12-25 13:38:44 +0100185 qdio_perf_stat_inc(&perf_stats.debug_sqbs_all);
Jan Glauber779e6e12008-07-17 17:16:48 +0200186
187 if (!q->is_input_q)
188 nr += q->irq_ptr->nr_input_qs;
189again:
190 ccq = do_sqbs(q->irq_ptr->sch_token, state, nr, &tmp_start, &tmp_count);
191 rc = qdio_check_ccq(q, ccq);
192 if (rc == 1) {
193 QDIO_DBF_TEXT5(1, trace, "sqAGAIN");
Jan Glauber23589d02008-12-25 13:38:44 +0100194 qdio_perf_stat_inc(&perf_stats.debug_sqbs_incomplete);
Jan Glauber779e6e12008-07-17 17:16:48 +0200195 goto again;
196 }
197 if (rc < 0) {
198 QDIO_DBF_TEXT3(1, trace, "sqberr");
199 sprintf(dbf_text, "%2x,%2x", count, tmp_count);
200 QDIO_DBF_TEXT3(1, trace, dbf_text);
201 sprintf(dbf_text, "%d,%d", ccq, nr);
202 QDIO_DBF_TEXT3(1, trace, dbf_text);
203
204 q->handler(q->irq_ptr->cdev,
205 QDIO_ERROR_ACTIVATE_CHECK_CONDITION,
206 0, -1, -1, q->irq_ptr->int_parm);
207 return 0;
208 }
209 WARN_ON(tmp_count);
210 return count - tmp_count;
211}
212
213/* returns number of examined buffers and their common state in *state */
214static inline int get_buf_states(struct qdio_q *q, unsigned int bufnr,
215 unsigned char *state, unsigned int count)
216{
217 unsigned char __state = 0;
218 int i;
219
220 BUG_ON(bufnr > QDIO_MAX_BUFFERS_MASK);
221 BUG_ON(count > QDIO_MAX_BUFFERS_PER_Q);
222
223 if (is_qebsm(q))
224 return qdio_do_eqbs(q, state, bufnr, count);
225
226 for (i = 0; i < count; i++) {
227 if (!__state)
228 __state = q->slsb.val[bufnr];
229 else if (q->slsb.val[bufnr] != __state)
230 break;
231 bufnr = next_buf(bufnr);
232 }
233 *state = __state;
234 return i;
235}
236
237inline int get_buf_state(struct qdio_q *q, unsigned int bufnr,
238 unsigned char *state)
239{
240 return get_buf_states(q, bufnr, state, 1);
241}
242
243/* wrap-around safe setting of slsb states, returns number of changed buffers */
244static inline int set_buf_states(struct qdio_q *q, int bufnr,
245 unsigned char state, int count)
246{
247 int i;
248
249 BUG_ON(bufnr > QDIO_MAX_BUFFERS_MASK);
250 BUG_ON(count > QDIO_MAX_BUFFERS_PER_Q);
251
252 if (is_qebsm(q))
253 return qdio_do_sqbs(q, state, bufnr, count);
254
255 for (i = 0; i < count; i++) {
256 xchg(&q->slsb.val[bufnr], state);
257 bufnr = next_buf(bufnr);
258 }
259 return count;
260}
261
262static inline int set_buf_state(struct qdio_q *q, int bufnr,
263 unsigned char state)
264{
265 return set_buf_states(q, bufnr, state, 1);
266}
267
268/* set slsb states to initial state */
269void qdio_init_buf_states(struct qdio_irq *irq_ptr)
270{
271 struct qdio_q *q;
272 int i;
273
274 for_each_input_queue(irq_ptr, q, i)
275 set_buf_states(q, 0, SLSB_P_INPUT_NOT_INIT,
276 QDIO_MAX_BUFFERS_PER_Q);
277 for_each_output_queue(irq_ptr, q, i)
278 set_buf_states(q, 0, SLSB_P_OUTPUT_NOT_INIT,
279 QDIO_MAX_BUFFERS_PER_Q);
280}
281
282static int qdio_siga_sync(struct qdio_q *q, unsigned int output,
283 unsigned int input)
284{
285 int cc;
286
287 if (!need_siga_sync(q))
288 return 0;
289
290 qdio_perf_stat_inc(&perf_stats.siga_sync);
291
292 cc = do_siga_sync(q->irq_ptr->schid, output, input);
293 if (cc) {
294 QDIO_DBF_TEXT4(0, trace, "sigasync");
295 QDIO_DBF_HEX4(0, trace, &q, sizeof(void *));
296 QDIO_DBF_HEX3(0, trace, &cc, sizeof(int *));
297 }
298 return cc;
299}
300
301inline int qdio_siga_sync_q(struct qdio_q *q)
302{
303 if (q->is_input_q)
304 return qdio_siga_sync(q, 0, q->mask);
305 else
306 return qdio_siga_sync(q, q->mask, 0);
307}
308
309static inline int qdio_siga_sync_out(struct qdio_q *q)
310{
311 return qdio_siga_sync(q, ~0U, 0);
312}
313
314static inline int qdio_siga_sync_all(struct qdio_q *q)
315{
316 return qdio_siga_sync(q, ~0U, ~0U);
317}
318
319static inline int qdio_do_siga_output(struct qdio_q *q, unsigned int *busy_bit)
320{
321 unsigned int fc = 0;
322 unsigned long schid;
323
Klaus-Dieter Wacker7a0f4752008-10-10 21:33:18 +0200324 if (q->u.out.use_enh_siga) {
325 fc = 3;
326 }
Jan Glauber779e6e12008-07-17 17:16:48 +0200327 if (!is_qebsm(q))
328 schid = *((u32 *)&q->irq_ptr->schid);
329 else {
330 schid = q->irq_ptr->sch_token;
331 fc |= 0x80;
332 }
333 return do_siga_output(schid, q->mask, busy_bit, fc);
334}
335
336static int qdio_siga_output(struct qdio_q *q)
337{
338 int cc;
339 u32 busy_bit;
340 u64 start_time = 0;
Jan Glauber58eb27c2008-08-21 19:46:34 +0200341 char dbf_text[15];
Jan Glauber779e6e12008-07-17 17:16:48 +0200342
343 QDIO_DBF_TEXT5(0, trace, "sigaout");
344 QDIO_DBF_HEX5(0, trace, &q, sizeof(void *));
345
346 qdio_perf_stat_inc(&perf_stats.siga_out);
347again:
348 cc = qdio_do_siga_output(q, &busy_bit);
349 if (queue_type(q) == QDIO_IQDIO_QFMT && cc == 2 && busy_bit) {
Jan Glauber58eb27c2008-08-21 19:46:34 +0200350 sprintf(dbf_text, "bb%4x%2x", q->irq_ptr->schid.sch_no, q->nr);
351 QDIO_DBF_TEXT3(0, trace, dbf_text);
352
Jan Glauber779e6e12008-07-17 17:16:48 +0200353 if (!start_time)
354 start_time = get_usecs();
355 else if ((get_usecs() - start_time) < QDIO_BUSY_BIT_PATIENCE)
356 goto again;
357 }
358
359 if (cc == 2 && busy_bit)
360 cc |= QDIO_ERROR_SIGA_BUSY;
361 if (cc)
362 QDIO_DBF_HEX3(0, trace, &cc, sizeof(int *));
363 return cc;
364}
365
366static inline int qdio_siga_input(struct qdio_q *q)
367{
368 int cc;
369
370 QDIO_DBF_TEXT4(0, trace, "sigain");
371 QDIO_DBF_HEX4(0, trace, &q, sizeof(void *));
372
373 qdio_perf_stat_inc(&perf_stats.siga_in);
374
375 cc = do_siga_input(q->irq_ptr->schid, q->mask);
376 if (cc)
377 QDIO_DBF_HEX3(0, trace, &cc, sizeof(int *));
378 return cc;
379}
380
381/* called from thinint inbound handler */
382void qdio_sync_after_thinint(struct qdio_q *q)
383{
384 if (pci_out_supported(q)) {
385 if (need_siga_sync_thinint(q))
386 qdio_siga_sync_all(q);
387 else if (need_siga_sync_out_thinint(q))
388 qdio_siga_sync_out(q);
389 } else
390 qdio_siga_sync_q(q);
391}
392
393inline void qdio_stop_polling(struct qdio_q *q)
394{
395 spin_lock_bh(&q->u.in.lock);
396 if (!q->u.in.polling) {
397 spin_unlock_bh(&q->u.in.lock);
398 return;
399 }
400 q->u.in.polling = 0;
401 qdio_perf_stat_inc(&perf_stats.debug_stop_polling);
402
403 /* show the card that we are not polling anymore */
404 set_buf_state(q, q->last_move_ftc, SLSB_P_INPUT_NOT_INIT);
405 spin_unlock_bh(&q->u.in.lock);
406}
407
408static void announce_buffer_error(struct qdio_q *q)
409{
410 char dbf_text[15];
411
412 if (q->is_input_q)
413 QDIO_DBF_TEXT3(1, trace, "inperr");
414 else
415 QDIO_DBF_TEXT3(0, trace, "outperr");
416
417 sprintf(dbf_text, "%x-%x-%x", q->first_to_check,
418 q->sbal[q->first_to_check]->element[14].flags,
419 q->sbal[q->first_to_check]->element[15].flags);
420 QDIO_DBF_TEXT3(1, trace, dbf_text);
421 QDIO_DBF_HEX2(1, trace, q->sbal[q->first_to_check], 256);
422
423 q->qdio_error = QDIO_ERROR_SLSB_STATE;
424}
425
426static int get_inbound_buffer_frontier(struct qdio_q *q)
427{
428 int count, stop;
429 unsigned char state;
430
431 /*
432 * If we still poll don't update last_move_ftc, keep the
433 * previously ACK buffer there.
434 */
435 if (!q->u.in.polling)
436 q->last_move_ftc = q->first_to_check;
437
438 /*
439 * Don't check 128 buffers, as otherwise qdio_inbound_q_moved
440 * would return 0.
441 */
442 count = min(atomic_read(&q->nr_buf_used), QDIO_MAX_BUFFERS_MASK);
443 stop = add_buf(q->first_to_check, count);
444
445 /*
446 * No siga sync here, as a PCI or we after a thin interrupt
447 * will sync the queues.
448 */
449
450 /* need to set count to 1 for non-qebsm */
451 if (!is_qebsm(q))
452 count = 1;
453
454check_next:
455 if (q->first_to_check == stop)
456 goto out;
457
458 count = get_buf_states(q, q->first_to_check, &state, count);
459 if (!count)
460 goto out;
461
462 switch (state) {
463 case SLSB_P_INPUT_PRIMED:
464 QDIO_DBF_TEXT5(0, trace, "inptprim");
465
466 /*
467 * Only ACK the first buffer. The ACK will be removed in
468 * qdio_stop_polling.
469 */
470 if (q->u.in.polling)
471 state = SLSB_P_INPUT_NOT_INIT;
472 else {
473 q->u.in.polling = 1;
474 state = SLSB_P_INPUT_ACK;
475 }
476 set_buf_state(q, q->first_to_check, state);
477
478 /*
479 * Need to change all PRIMED buffers to NOT_INIT, otherwise
480 * we're loosing initiative in the thinint code.
481 */
482 if (count > 1)
483 set_buf_states(q, next_buf(q->first_to_check),
484 SLSB_P_INPUT_NOT_INIT, count - 1);
485
486 /*
487 * No siga-sync needed for non-qebsm here, as the inbound queue
488 * will be synced on the next siga-r, resp.
489 * tiqdio_is_inbound_q_done will do the siga-sync.
490 */
491 q->first_to_check = add_buf(q->first_to_check, count);
492 atomic_sub(count, &q->nr_buf_used);
493 goto check_next;
494 case SLSB_P_INPUT_ERROR:
495 announce_buffer_error(q);
496 /* process the buffer, the upper layer will take care of it */
497 q->first_to_check = add_buf(q->first_to_check, count);
498 atomic_sub(count, &q->nr_buf_used);
499 break;
500 case SLSB_CU_INPUT_EMPTY:
501 case SLSB_P_INPUT_NOT_INIT:
502 case SLSB_P_INPUT_ACK:
503 QDIO_DBF_TEXT5(0, trace, "inpnipro");
504 break;
505 default:
506 BUG();
507 }
508out:
509 QDIO_DBF_HEX4(0, trace, &q->first_to_check, sizeof(int));
510 return q->first_to_check;
511}
512
513int qdio_inbound_q_moved(struct qdio_q *q)
514{
515 int bufnr;
516
517 bufnr = get_inbound_buffer_frontier(q);
518
519 if ((bufnr != q->last_move_ftc) || q->qdio_error) {
520 if (!need_siga_sync(q) && !pci_out_supported(q))
521 q->u.in.timestamp = get_usecs();
522
523 QDIO_DBF_TEXT4(0, trace, "inhasmvd");
524 QDIO_DBF_HEX4(0, trace, &q, sizeof(void *));
525 return 1;
526 } else
527 return 0;
528}
529
530static int qdio_inbound_q_done(struct qdio_q *q)
531{
532 unsigned char state;
533#ifdef CONFIG_QDIO_DEBUG
534 char dbf_text[15];
535#endif
536
537 if (!atomic_read(&q->nr_buf_used))
538 return 1;
539
540 /*
541 * We need that one for synchronization with the adapter, as it
542 * does a kind of PCI avoidance.
543 */
544 qdio_siga_sync_q(q);
545
546 get_buf_state(q, q->first_to_check, &state);
547 if (state == SLSB_P_INPUT_PRIMED)
548 /* we got something to do */
549 return 0;
550
551 /* on VM, we don't poll, so the q is always done here */
552 if (need_siga_sync(q) || pci_out_supported(q))
553 return 1;
554
555 /*
556 * At this point we know, that inbound first_to_check
557 * has (probably) not moved (see qdio_inbound_processing).
558 */
559 if (get_usecs() > q->u.in.timestamp + QDIO_INPUT_THRESHOLD) {
560#ifdef CONFIG_QDIO_DEBUG
561 QDIO_DBF_TEXT4(0, trace, "inqisdon");
562 QDIO_DBF_HEX4(0, trace, &q, sizeof(void *));
563 sprintf(dbf_text, "pf%02x", q->first_to_check);
564 QDIO_DBF_TEXT4(0, trace, dbf_text);
565#endif /* CONFIG_QDIO_DEBUG */
566 return 1;
567 } else {
568#ifdef CONFIG_QDIO_DEBUG
569 QDIO_DBF_TEXT4(0, trace, "inqisntd");
570 QDIO_DBF_HEX4(0, trace, &q, sizeof(void *));
571 sprintf(dbf_text, "pf%02x", q->first_to_check);
572 QDIO_DBF_TEXT4(0, trace, dbf_text);
573#endif /* CONFIG_QDIO_DEBUG */
574 return 0;
575 }
576}
577
578void qdio_kick_inbound_handler(struct qdio_q *q)
579{
580 int count, start, end;
581#ifdef CONFIG_QDIO_DEBUG
582 char dbf_text[15];
583#endif
584
585 qdio_perf_stat_inc(&perf_stats.inbound_handler);
586
587 start = q->first_to_kick;
588 end = q->first_to_check;
589 if (end >= start)
590 count = end - start;
591 else
592 count = end + QDIO_MAX_BUFFERS_PER_Q - start;
593
594#ifdef CONFIG_QDIO_DEBUG
595 sprintf(dbf_text, "s=%2xc=%2x", start, count);
596 QDIO_DBF_TEXT4(0, trace, dbf_text);
597#endif /* CONFIG_QDIO_DEBUG */
598
599 if (unlikely(q->irq_ptr->state != QDIO_IRQ_STATE_ACTIVE))
600 return;
601
602 q->handler(q->irq_ptr->cdev, q->qdio_error, q->nr,
603 start, count, q->irq_ptr->int_parm);
604
605 /* for the next time */
606 q->first_to_kick = q->first_to_check;
607 q->qdio_error = 0;
608}
609
610static void __qdio_inbound_processing(struct qdio_q *q)
611{
612 qdio_perf_stat_inc(&perf_stats.tasklet_inbound);
613again:
614 if (!qdio_inbound_q_moved(q))
615 return;
616
617 qdio_kick_inbound_handler(q);
618
619 if (!qdio_inbound_q_done(q))
620 /* means poll time is not yet over */
621 goto again;
622
623 qdio_stop_polling(q);
624 /*
625 * We need to check again to not lose initiative after
626 * resetting the ACK state.
627 */
628 if (!qdio_inbound_q_done(q))
629 goto again;
630}
631
632/* inbound tasklet */
633void qdio_inbound_processing(unsigned long data)
634{
635 struct qdio_q *q = (struct qdio_q *)data;
636 __qdio_inbound_processing(q);
637}
638
639static int get_outbound_buffer_frontier(struct qdio_q *q)
640{
641 int count, stop;
642 unsigned char state;
643
644 if (((queue_type(q) != QDIO_IQDIO_QFMT) && !pci_out_supported(q)) ||
645 (queue_type(q) == QDIO_IQDIO_QFMT && multicast_outbound(q)))
646 qdio_siga_sync_q(q);
647
648 /*
649 * Don't check 128 buffers, as otherwise qdio_inbound_q_moved
650 * would return 0.
651 */
652 count = min(atomic_read(&q->nr_buf_used), QDIO_MAX_BUFFERS_MASK);
653 stop = add_buf(q->first_to_check, count);
654
655 /* need to set count to 1 for non-qebsm */
656 if (!is_qebsm(q))
657 count = 1;
658
659check_next:
660 if (q->first_to_check == stop)
661 return q->first_to_check;
662
663 count = get_buf_states(q, q->first_to_check, &state, count);
664 if (!count)
665 return q->first_to_check;
666
667 switch (state) {
668 case SLSB_P_OUTPUT_EMPTY:
669 /* the adapter got it */
670 QDIO_DBF_TEXT5(0, trace, "outpempt");
671
672 atomic_sub(count, &q->nr_buf_used);
673 q->first_to_check = add_buf(q->first_to_check, count);
674 /*
675 * We fetch all buffer states at once. get_buf_states may
676 * return count < stop. For QEBSM we do not loop.
677 */
678 if (is_qebsm(q))
679 break;
680 goto check_next;
681 case SLSB_P_OUTPUT_ERROR:
682 announce_buffer_error(q);
683 /* process the buffer, the upper layer will take care of it */
684 q->first_to_check = add_buf(q->first_to_check, count);
685 atomic_sub(count, &q->nr_buf_used);
686 break;
687 case SLSB_CU_OUTPUT_PRIMED:
688 /* the adapter has not fetched the output yet */
689 QDIO_DBF_TEXT5(0, trace, "outpprim");
690 break;
691 case SLSB_P_OUTPUT_NOT_INIT:
692 case SLSB_P_OUTPUT_HALTED:
693 break;
694 default:
695 BUG();
696 }
697 return q->first_to_check;
698}
699
700/* all buffers processed? */
701static inline int qdio_outbound_q_done(struct qdio_q *q)
702{
703 return atomic_read(&q->nr_buf_used) == 0;
704}
705
706static inline int qdio_outbound_q_moved(struct qdio_q *q)
707{
708 int bufnr;
709
710 bufnr = get_outbound_buffer_frontier(q);
711
712 if ((bufnr != q->last_move_ftc) || q->qdio_error) {
713 q->last_move_ftc = bufnr;
714 QDIO_DBF_TEXT4(0, trace, "oqhasmvd");
715 QDIO_DBF_HEX4(0, trace, &q, sizeof(void *));
716 return 1;
717 } else
718 return 0;
719}
720
721/*
722 * VM could present us cc=2 and busy bit set on SIGA-write
723 * during reconfiguration of their Guest LAN (only in iqdio mode,
724 * otherwise qdio is asynchronous and cc=2 and busy bit there will take
725 * the queues down immediately).
726 *
727 * Therefore qdio_siga_output will try for a short time constantly,
728 * if such a condition occurs. If it doesn't change, it will
729 * increase the busy_siga_counter and save the timestamp, and
730 * schedule the queue for later processing. qdio_outbound_processing
731 * will check out the counter. If non-zero, it will call qdio_kick_outbound_q
732 * as often as the value of the counter. This will attempt further SIGA
733 * instructions. For each successful SIGA, the counter is
734 * decreased, for failing SIGAs the counter remains the same, after
735 * all. After some time of no movement, qdio_kick_outbound_q will
736 * finally fail and reflect corresponding error codes to call
737 * the upper layer module and have it take the queues down.
738 *
739 * Note that this is a change from the original HiperSockets design
740 * (saying cc=2 and busy bit means take the queues down), but in
741 * these days Guest LAN didn't exist... excessive cc=2 with busy bit
742 * conditions will still take the queues down, but the threshold is
743 * higher due to the Guest LAN environment.
744 *
745 * Called from outbound tasklet and do_QDIO handler.
746 */
747static void qdio_kick_outbound_q(struct qdio_q *q)
748{
749 int rc;
750#ifdef CONFIG_QDIO_DEBUG
751 char dbf_text[15];
752
753 QDIO_DBF_TEXT5(0, trace, "kickoutq");
754 QDIO_DBF_HEX5(0, trace, &q, sizeof(void *));
755#endif /* CONFIG_QDIO_DEBUG */
756
757 if (!need_siga_out(q))
758 return;
759
760 rc = qdio_siga_output(q);
761 switch (rc) {
762 case 0:
Jan Glauber779e6e12008-07-17 17:16:48 +0200763 /* TODO: improve error handling for CC=0 case */
764#ifdef CONFIG_QDIO_DEBUG
Jan Glauber58eb27c2008-08-21 19:46:34 +0200765 if (q->u.out.timestamp) {
766 QDIO_DBF_TEXT3(0, trace, "cc2reslv");
767 sprintf(dbf_text, "%4x%2x%2x", q->irq_ptr->schid.sch_no,
768 q->nr,
769 atomic_read(&q->u.out.busy_siga_counter));
770 QDIO_DBF_TEXT3(0, trace, dbf_text);
771 }
Jan Glauber779e6e12008-07-17 17:16:48 +0200772#endif /* CONFIG_QDIO_DEBUG */
Jan Glauber58eb27c2008-08-21 19:46:34 +0200773 /* went smooth this time, reset timestamp */
774 q->u.out.timestamp = 0;
Jan Glauber779e6e12008-07-17 17:16:48 +0200775 break;
776 /* cc=2 and busy bit */
777 case (2 | QDIO_ERROR_SIGA_BUSY):
778 atomic_inc(&q->u.out.busy_siga_counter);
779
780 /* if the last siga was successful, save timestamp here */
781 if (!q->u.out.timestamp)
782 q->u.out.timestamp = get_usecs();
783
784 /* if we're in time, don't touch qdio_error */
785 if (get_usecs() - q->u.out.timestamp < QDIO_BUSY_BIT_GIVE_UP) {
786 tasklet_schedule(&q->tasklet);
787 break;
788 }
789 QDIO_DBF_TEXT2(0, trace, "cc2REPRT");
790#ifdef CONFIG_QDIO_DEBUG
791 sprintf(dbf_text, "%4x%2x%2x", q->irq_ptr->schid.sch_no, q->nr,
792 atomic_read(&q->u.out.busy_siga_counter));
793 QDIO_DBF_TEXT3(0, trace, dbf_text);
794#endif /* CONFIG_QDIO_DEBUG */
795 default:
796 /* for plain cc=1, 2 or 3 */
797 q->qdio_error = rc;
798 }
799}
800
801static void qdio_kick_outbound_handler(struct qdio_q *q)
802{
803 int start, end, count;
804#ifdef CONFIG_QDIO_DEBUG
805 char dbf_text[15];
806#endif
807
808 start = q->first_to_kick;
809 end = q->last_move_ftc;
810 if (end >= start)
811 count = end - start;
812 else
813 count = end + QDIO_MAX_BUFFERS_PER_Q - start;
814
815#ifdef CONFIG_QDIO_DEBUG
816 QDIO_DBF_TEXT4(0, trace, "kickouth");
817 QDIO_DBF_HEX4(0, trace, &q, sizeof(void *));
818
819 sprintf(dbf_text, "s=%2xc=%2x", start, count);
820 QDIO_DBF_TEXT4(0, trace, dbf_text);
821#endif /* CONFIG_QDIO_DEBUG */
822
823 if (unlikely(q->irq_ptr->state != QDIO_IRQ_STATE_ACTIVE))
824 return;
825
826 q->handler(q->irq_ptr->cdev, q->qdio_error, q->nr, start, count,
827 q->irq_ptr->int_parm);
828
829 /* for the next time: */
830 q->first_to_kick = q->last_move_ftc;
831 q->qdio_error = 0;
832}
833
834static void __qdio_outbound_processing(struct qdio_q *q)
835{
836 int siga_attempts;
837
838 qdio_perf_stat_inc(&perf_stats.tasklet_outbound);
839
840 /* see comment in qdio_kick_outbound_q */
841 siga_attempts = atomic_read(&q->u.out.busy_siga_counter);
842 while (siga_attempts--) {
843 atomic_dec(&q->u.out.busy_siga_counter);
844 qdio_kick_outbound_q(q);
845 }
846
847 BUG_ON(atomic_read(&q->nr_buf_used) < 0);
848
849 if (qdio_outbound_q_moved(q))
850 qdio_kick_outbound_handler(q);
851
852 if (queue_type(q) == QDIO_ZFCP_QFMT) {
853 if (!pci_out_supported(q) && !qdio_outbound_q_done(q))
854 tasklet_schedule(&q->tasklet);
855 return;
856 }
857
858 /* bail out for HiperSockets unicast queues */
859 if (queue_type(q) == QDIO_IQDIO_QFMT && !multicast_outbound(q))
860 return;
861
Ursula Braun4bcb3a32008-10-10 21:33:04 +0200862 if ((queue_type(q) == QDIO_IQDIO_QFMT) &&
863 (atomic_read(&q->nr_buf_used)) > QDIO_IQDIO_POLL_LVL) {
864 tasklet_schedule(&q->tasklet);
865 return;
866 }
867
Jan Glauber779e6e12008-07-17 17:16:48 +0200868 if (q->u.out.pci_out_enabled)
869 return;
870
871 /*
872 * Now we know that queue type is either qeth without pci enabled
873 * or HiperSockets multicast. Make sure buffer switch from PRIMED to
874 * EMPTY is noticed and outbound_handler is called after some time.
875 */
876 if (qdio_outbound_q_done(q))
877 del_timer(&q->u.out.timer);
878 else {
879 if (!timer_pending(&q->u.out.timer)) {
880 mod_timer(&q->u.out.timer, jiffies + 10 * HZ);
881 qdio_perf_stat_inc(&perf_stats.debug_tl_out_timer);
882 }
883 }
884}
885
886/* outbound tasklet */
887void qdio_outbound_processing(unsigned long data)
888{
889 struct qdio_q *q = (struct qdio_q *)data;
890 __qdio_outbound_processing(q);
891}
892
893void qdio_outbound_timer(unsigned long data)
894{
895 struct qdio_q *q = (struct qdio_q *)data;
896 tasklet_schedule(&q->tasklet);
897}
898
899/* called from thinint inbound tasklet */
900void qdio_check_outbound_after_thinint(struct qdio_q *q)
901{
902 struct qdio_q *out;
903 int i;
904
905 if (!pci_out_supported(q))
906 return;
907
908 for_each_output_queue(q->irq_ptr, out, i)
909 if (!qdio_outbound_q_done(out))
910 tasklet_schedule(&out->tasklet);
911}
912
913static inline void qdio_set_state(struct qdio_irq *irq_ptr,
914 enum qdio_irq_states state)
915{
916#ifdef CONFIG_QDIO_DEBUG
917 char dbf_text[15];
918
919 QDIO_DBF_TEXT5(0, trace, "newstate");
920 sprintf(dbf_text, "%4x%4x", irq_ptr->schid.sch_no, state);
921 QDIO_DBF_TEXT5(0, trace, dbf_text);
922#endif /* CONFIG_QDIO_DEBUG */
923
924 irq_ptr->state = state;
925 mb();
926}
927
928static void qdio_irq_check_sense(struct subchannel_id schid, struct irb *irb)
929{
930 char dbf_text[15];
931
932 if (irb->esw.esw0.erw.cons) {
933 sprintf(dbf_text, "sens%4x", schid.sch_no);
934 QDIO_DBF_TEXT2(1, trace, dbf_text);
935 QDIO_DBF_HEX0(0, trace, irb, 64);
936 QDIO_DBF_HEX0(0, trace, irb->ecw, 64);
937 }
938}
939
940/* PCI interrupt handler */
941static void qdio_int_handler_pci(struct qdio_irq *irq_ptr)
942{
943 int i;
944 struct qdio_q *q;
945
946 qdio_perf_stat_inc(&perf_stats.pci_int);
947
948 for_each_input_queue(irq_ptr, q, i)
949 tasklet_schedule(&q->tasklet);
950
951 if (!(irq_ptr->qib.ac & QIB_AC_OUTBOUND_PCI_SUPPORTED))
952 return;
953
954 for_each_output_queue(irq_ptr, q, i) {
955 if (qdio_outbound_q_done(q))
956 continue;
957
958 if (!siga_syncs_out_pci(q))
959 qdio_siga_sync_q(q);
960
961 tasklet_schedule(&q->tasklet);
962 }
963}
964
965static void qdio_handle_activate_check(struct ccw_device *cdev,
966 unsigned long intparm, int cstat, int dstat)
967{
968 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
969 struct qdio_q *q;
970 char dbf_text[15];
971
972 QDIO_DBF_TEXT2(1, trace, "ick2");
Martin Schwidefsky9286b7e2008-10-10 21:33:13 +0200973 sprintf(dbf_text, "%s", dev_name(&cdev->dev));
Jan Glauber779e6e12008-07-17 17:16:48 +0200974 QDIO_DBF_TEXT2(1, trace, dbf_text);
975 QDIO_DBF_HEX2(0, trace, &intparm, sizeof(int));
976 QDIO_DBF_HEX2(0, trace, &dstat, sizeof(int));
977 QDIO_DBF_HEX2(0, trace, &cstat, sizeof(int));
978
979 if (irq_ptr->nr_input_qs) {
980 q = irq_ptr->input_qs[0];
981 } else if (irq_ptr->nr_output_qs) {
982 q = irq_ptr->output_qs[0];
983 } else {
984 dump_stack();
985 goto no_handler;
986 }
987 q->handler(q->irq_ptr->cdev, QDIO_ERROR_ACTIVATE_CHECK_CONDITION,
988 0, -1, -1, irq_ptr->int_parm);
989no_handler:
990 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_STOPPED);
991}
992
993static void qdio_call_shutdown(struct work_struct *work)
994{
995 struct ccw_device_private *priv;
996 struct ccw_device *cdev;
997
998 priv = container_of(work, struct ccw_device_private, kick_work);
999 cdev = priv->cdev;
1000 qdio_shutdown(cdev, QDIO_FLAG_CLEANUP_USING_CLEAR);
1001 put_device(&cdev->dev);
1002}
1003
1004static void qdio_int_error(struct ccw_device *cdev)
1005{
1006 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
1007
1008 switch (irq_ptr->state) {
1009 case QDIO_IRQ_STATE_INACTIVE:
1010 case QDIO_IRQ_STATE_CLEANUP:
1011 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_ERR);
1012 break;
1013 case QDIO_IRQ_STATE_ESTABLISHED:
1014 case QDIO_IRQ_STATE_ACTIVE:
1015 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_STOPPED);
1016 if (get_device(&cdev->dev)) {
1017 /* Can't call shutdown from interrupt context. */
1018 PREPARE_WORK(&cdev->private->kick_work,
1019 qdio_call_shutdown);
1020 queue_work(ccw_device_work, &cdev->private->kick_work);
1021 }
1022 break;
1023 default:
1024 WARN_ON(1);
1025 }
1026 wake_up(&cdev->private->wait_q);
1027}
1028
1029static int qdio_establish_check_errors(struct ccw_device *cdev, int cstat,
1030 int dstat)
1031{
1032 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
1033
1034 if (cstat || (dstat & ~(DEV_STAT_CHN_END | DEV_STAT_DEV_END))) {
1035 QDIO_DBF_TEXT2(1, setup, "eq:ckcon");
1036 goto error;
1037 }
1038
1039 if (!(dstat & DEV_STAT_DEV_END)) {
1040 QDIO_DBF_TEXT2(1, setup, "eq:no de");
1041 goto error;
1042 }
1043
1044 if (dstat & ~(DEV_STAT_CHN_END | DEV_STAT_DEV_END)) {
1045 QDIO_DBF_TEXT2(1, setup, "eq:badio");
1046 goto error;
1047 }
1048 return 0;
1049error:
1050 QDIO_DBF_HEX2(0, trace, &cstat, sizeof(int));
1051 QDIO_DBF_HEX2(0, trace, &dstat, sizeof(int));
1052 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_ERR);
1053 return 1;
1054}
1055
1056static void qdio_establish_handle_irq(struct ccw_device *cdev, int cstat,
1057 int dstat)
1058{
1059 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
1060 char dbf_text[15];
1061
1062 sprintf(dbf_text, "qehi%4x", cdev->private->schid.sch_no);
1063 QDIO_DBF_TEXT0(0, setup, dbf_text);
1064 QDIO_DBF_TEXT0(0, trace, dbf_text);
1065
1066 if (!qdio_establish_check_errors(cdev, cstat, dstat))
1067 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_ESTABLISHED);
1068}
1069
1070/* qdio interrupt handler */
1071void qdio_int_handler(struct ccw_device *cdev, unsigned long intparm,
1072 struct irb *irb)
1073{
1074 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
1075 int cstat, dstat;
1076 char dbf_text[15];
1077
1078 qdio_perf_stat_inc(&perf_stats.qdio_int);
1079
1080 if (!intparm || !irq_ptr) {
1081 sprintf(dbf_text, "qihd%4x", cdev->private->schid.sch_no);
1082 QDIO_DBF_TEXT2(1, setup, dbf_text);
1083 return;
1084 }
1085
1086 if (IS_ERR(irb)) {
1087 switch (PTR_ERR(irb)) {
1088 case -EIO:
Jan Glauber58eb27c2008-08-21 19:46:34 +02001089 sprintf(dbf_text, "ierr%4x", irq_ptr->schid.sch_no);
Jan Glauber779e6e12008-07-17 17:16:48 +02001090 QDIO_DBF_TEXT2(1, setup, dbf_text);
Jan Glauber779e6e12008-07-17 17:16:48 +02001091 return;
1092 case -ETIMEDOUT:
Jan Glauber58eb27c2008-08-21 19:46:34 +02001093 sprintf(dbf_text, "qtoh%4x", irq_ptr->schid.sch_no);
Jan Glauber779e6e12008-07-17 17:16:48 +02001094 QDIO_DBF_TEXT2(1, setup, dbf_text);
1095 qdio_int_error(cdev);
1096 return;
1097 default:
1098 WARN_ON(1);
1099 return;
1100 }
1101 }
1102 qdio_irq_check_sense(irq_ptr->schid, irb);
1103
1104 cstat = irb->scsw.cmd.cstat;
1105 dstat = irb->scsw.cmd.dstat;
1106
1107 switch (irq_ptr->state) {
1108 case QDIO_IRQ_STATE_INACTIVE:
1109 qdio_establish_handle_irq(cdev, cstat, dstat);
1110 break;
1111
1112 case QDIO_IRQ_STATE_CLEANUP:
1113 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_INACTIVE);
1114 break;
1115
1116 case QDIO_IRQ_STATE_ESTABLISHED:
1117 case QDIO_IRQ_STATE_ACTIVE:
1118 if (cstat & SCHN_STAT_PCI) {
1119 qdio_int_handler_pci(irq_ptr);
1120 /* no state change so no need to wake up wait_q */
1121 return;
1122 }
1123 if ((cstat & ~SCHN_STAT_PCI) || dstat) {
1124 qdio_handle_activate_check(cdev, intparm, cstat,
1125 dstat);
1126 break;
1127 }
1128 default:
1129 WARN_ON(1);
1130 }
1131 wake_up(&cdev->private->wait_q);
1132}
1133
1134/**
1135 * qdio_get_ssqd_desc - get qdio subchannel description
1136 * @cdev: ccw device to get description for
Jan Glauberbbd50e12008-12-25 13:38:43 +01001137 * @data: where to store the ssqd
Jan Glauber779e6e12008-07-17 17:16:48 +02001138 *
Jan Glauberbbd50e12008-12-25 13:38:43 +01001139 * Returns 0 or an error code. The results of the chsc are stored in the
1140 * specified structure.
Jan Glauber779e6e12008-07-17 17:16:48 +02001141 */
Jan Glauberbbd50e12008-12-25 13:38:43 +01001142int qdio_get_ssqd_desc(struct ccw_device *cdev,
1143 struct qdio_ssqd_desc *data)
Jan Glauber779e6e12008-07-17 17:16:48 +02001144{
Jan Glauber58eb27c2008-08-21 19:46:34 +02001145 char dbf_text[15];
Jan Glauber779e6e12008-07-17 17:16:48 +02001146
Jan Glauberbbd50e12008-12-25 13:38:43 +01001147 if (!cdev || !cdev->private)
1148 return -EINVAL;
1149
Jan Glauber58eb27c2008-08-21 19:46:34 +02001150 sprintf(dbf_text, "qssq%4x", cdev->private->schid.sch_no);
1151 QDIO_DBF_TEXT0(0, setup, dbf_text);
Jan Glauber779e6e12008-07-17 17:16:48 +02001152
Jan Glauberbbd50e12008-12-25 13:38:43 +01001153 return qdio_setup_get_ssqd(NULL, &cdev->private->schid, data);
Jan Glauber779e6e12008-07-17 17:16:48 +02001154}
1155EXPORT_SYMBOL_GPL(qdio_get_ssqd_desc);
1156
1157/**
1158 * qdio_cleanup - shutdown queues and free data structures
1159 * @cdev: associated ccw device
1160 * @how: use halt or clear to shutdown
1161 *
1162 * This function calls qdio_shutdown() for @cdev with method @how
1163 * and on success qdio_free() for @cdev.
1164 */
1165int qdio_cleanup(struct ccw_device *cdev, int how)
1166{
1167 struct qdio_irq *irq_ptr;
1168 char dbf_text[15];
1169 int rc;
1170
Jan Glauber58eb27c2008-08-21 19:46:34 +02001171 sprintf(dbf_text, "qcln%4x", cdev->private->schid.sch_no);
1172 QDIO_DBF_TEXT0(0, setup, dbf_text);
1173
Jan Glauber779e6e12008-07-17 17:16:48 +02001174 irq_ptr = cdev->private->qdio_data;
1175 if (!irq_ptr)
1176 return -ENODEV;
1177
Jan Glauber779e6e12008-07-17 17:16:48 +02001178 rc = qdio_shutdown(cdev, how);
1179 if (rc == 0)
1180 rc = qdio_free(cdev);
1181 return rc;
1182}
1183EXPORT_SYMBOL_GPL(qdio_cleanup);
1184
1185static void qdio_shutdown_queues(struct ccw_device *cdev)
1186{
1187 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
1188 struct qdio_q *q;
1189 int i;
1190
1191 for_each_input_queue(irq_ptr, q, i)
1192 tasklet_disable(&q->tasklet);
1193
1194 for_each_output_queue(irq_ptr, q, i) {
1195 tasklet_disable(&q->tasklet);
1196 del_timer(&q->u.out.timer);
1197 }
1198}
1199
1200/**
1201 * qdio_shutdown - shut down a qdio subchannel
1202 * @cdev: associated ccw device
1203 * @how: use halt or clear to shutdown
1204 */
1205int qdio_shutdown(struct ccw_device *cdev, int how)
1206{
1207 struct qdio_irq *irq_ptr;
1208 int rc;
1209 unsigned long flags;
1210 char dbf_text[15];
1211
Jan Glauber58eb27c2008-08-21 19:46:34 +02001212 sprintf(dbf_text, "qshu%4x", cdev->private->schid.sch_no);
1213 QDIO_DBF_TEXT0(0, setup, dbf_text);
1214
Jan Glauber779e6e12008-07-17 17:16:48 +02001215 irq_ptr = cdev->private->qdio_data;
1216 if (!irq_ptr)
1217 return -ENODEV;
1218
1219 mutex_lock(&irq_ptr->setup_mutex);
1220 /*
1221 * Subchannel was already shot down. We cannot prevent being called
1222 * twice since cio may trigger a shutdown asynchronously.
1223 */
1224 if (irq_ptr->state == QDIO_IRQ_STATE_INACTIVE) {
1225 mutex_unlock(&irq_ptr->setup_mutex);
1226 return 0;
1227 }
1228
Jan Glauber779e6e12008-07-17 17:16:48 +02001229 tiqdio_remove_input_queues(irq_ptr);
1230 qdio_shutdown_queues(cdev);
1231 qdio_shutdown_debug_entries(irq_ptr, cdev);
1232
1233 /* cleanup subchannel */
1234 spin_lock_irqsave(get_ccwdev_lock(cdev), flags);
1235
1236 if (how & QDIO_FLAG_CLEANUP_USING_CLEAR)
1237 rc = ccw_device_clear(cdev, QDIO_DOING_CLEANUP);
1238 else
1239 /* default behaviour is halt */
1240 rc = ccw_device_halt(cdev, QDIO_DOING_CLEANUP);
1241 if (rc) {
1242 sprintf(dbf_text, "sher%4x", irq_ptr->schid.sch_no);
1243 QDIO_DBF_TEXT0(0, setup, dbf_text);
1244 sprintf(dbf_text, "rc=%d", rc);
1245 QDIO_DBF_TEXT0(0, setup, dbf_text);
1246 goto no_cleanup;
1247 }
1248
1249 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_CLEANUP);
1250 spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);
1251 wait_event_interruptible_timeout(cdev->private->wait_q,
1252 irq_ptr->state == QDIO_IRQ_STATE_INACTIVE ||
1253 irq_ptr->state == QDIO_IRQ_STATE_ERR,
1254 10 * HZ);
1255 spin_lock_irqsave(get_ccwdev_lock(cdev), flags);
1256
1257no_cleanup:
1258 qdio_shutdown_thinint(irq_ptr);
1259
1260 /* restore interrupt handler */
1261 if ((void *)cdev->handler == (void *)qdio_int_handler)
1262 cdev->handler = irq_ptr->orig_handler;
1263 spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);
1264
1265 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_INACTIVE);
1266 mutex_unlock(&irq_ptr->setup_mutex);
Jan Glauber779e6e12008-07-17 17:16:48 +02001267 if (rc)
1268 return rc;
1269 return 0;
1270}
1271EXPORT_SYMBOL_GPL(qdio_shutdown);
1272
1273/**
1274 * qdio_free - free data structures for a qdio subchannel
1275 * @cdev: associated ccw device
1276 */
1277int qdio_free(struct ccw_device *cdev)
1278{
1279 struct qdio_irq *irq_ptr;
1280 char dbf_text[15];
1281
Jan Glauber58eb27c2008-08-21 19:46:34 +02001282 sprintf(dbf_text, "qfre%4x", cdev->private->schid.sch_no);
1283 QDIO_DBF_TEXT0(0, setup, dbf_text);
1284
Jan Glauber779e6e12008-07-17 17:16:48 +02001285 irq_ptr = cdev->private->qdio_data;
1286 if (!irq_ptr)
1287 return -ENODEV;
1288
1289 mutex_lock(&irq_ptr->setup_mutex);
Jan Glauber779e6e12008-07-17 17:16:48 +02001290 cdev->private->qdio_data = NULL;
1291 mutex_unlock(&irq_ptr->setup_mutex);
1292
1293 qdio_release_memory(irq_ptr);
1294 return 0;
1295}
1296EXPORT_SYMBOL_GPL(qdio_free);
1297
1298/**
1299 * qdio_initialize - allocate and establish queues for a qdio subchannel
1300 * @init_data: initialization data
1301 *
1302 * This function first allocates queues via qdio_allocate() and on success
1303 * establishes them via qdio_establish().
1304 */
1305int qdio_initialize(struct qdio_initialize *init_data)
1306{
1307 int rc;
1308 char dbf_text[15];
1309
1310 sprintf(dbf_text, "qini%4x", init_data->cdev->private->schid.sch_no);
1311 QDIO_DBF_TEXT0(0, setup, dbf_text);
Jan Glauber779e6e12008-07-17 17:16:48 +02001312
1313 rc = qdio_allocate(init_data);
1314 if (rc)
1315 return rc;
1316
1317 rc = qdio_establish(init_data);
1318 if (rc)
1319 qdio_free(init_data->cdev);
1320 return rc;
1321}
1322EXPORT_SYMBOL_GPL(qdio_initialize);
1323
1324/**
1325 * qdio_allocate - allocate qdio queues and associated data
1326 * @init_data: initialization data
1327 */
1328int qdio_allocate(struct qdio_initialize *init_data)
1329{
1330 struct qdio_irq *irq_ptr;
1331 char dbf_text[15];
1332
1333 sprintf(dbf_text, "qalc%4x", init_data->cdev->private->schid.sch_no);
1334 QDIO_DBF_TEXT0(0, setup, dbf_text);
Jan Glauber779e6e12008-07-17 17:16:48 +02001335
1336 if ((init_data->no_input_qs && !init_data->input_handler) ||
1337 (init_data->no_output_qs && !init_data->output_handler))
1338 return -EINVAL;
1339
1340 if ((init_data->no_input_qs > QDIO_MAX_QUEUES_PER_IRQ) ||
1341 (init_data->no_output_qs > QDIO_MAX_QUEUES_PER_IRQ))
1342 return -EINVAL;
1343
1344 if ((!init_data->input_sbal_addr_array) ||
1345 (!init_data->output_sbal_addr_array))
1346 return -EINVAL;
1347
1348 qdio_allocate_do_dbf(init_data);
1349
1350 /* irq_ptr must be in GFP_DMA since it contains ccw1.cda */
1351 irq_ptr = (void *) get_zeroed_page(GFP_KERNEL | GFP_DMA);
1352 if (!irq_ptr)
1353 goto out_err;
1354 QDIO_DBF_TEXT0(0, setup, "irq_ptr:");
1355 QDIO_DBF_HEX0(0, setup, &irq_ptr, sizeof(void *));
1356
1357 mutex_init(&irq_ptr->setup_mutex);
1358
1359 /*
1360 * Allocate a page for the chsc calls in qdio_establish.
1361 * Must be pre-allocated since a zfcp recovery will call
1362 * qdio_establish. In case of low memory and swap on a zfcp disk
1363 * we may not be able to allocate memory otherwise.
1364 */
1365 irq_ptr->chsc_page = get_zeroed_page(GFP_KERNEL);
1366 if (!irq_ptr->chsc_page)
1367 goto out_rel;
1368
1369 /* qdr is used in ccw1.cda which is u32 */
Jan Glauber3b8e3002008-08-01 16:39:17 +02001370 irq_ptr->qdr = (struct qdr *) get_zeroed_page(GFP_KERNEL | GFP_DMA);
Jan Glauber779e6e12008-07-17 17:16:48 +02001371 if (!irq_ptr->qdr)
1372 goto out_rel;
1373 WARN_ON((unsigned long)irq_ptr->qdr & 0xfff);
1374
1375 QDIO_DBF_TEXT0(0, setup, "qdr:");
1376 QDIO_DBF_HEX0(0, setup, &irq_ptr->qdr, sizeof(void *));
1377
1378 if (qdio_allocate_qs(irq_ptr, init_data->no_input_qs,
1379 init_data->no_output_qs))
1380 goto out_rel;
1381
1382 init_data->cdev->private->qdio_data = irq_ptr;
1383 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_INACTIVE);
1384 return 0;
1385out_rel:
1386 qdio_release_memory(irq_ptr);
1387out_err:
1388 return -ENOMEM;
1389}
1390EXPORT_SYMBOL_GPL(qdio_allocate);
1391
1392/**
1393 * qdio_establish - establish queues on a qdio subchannel
1394 * @init_data: initialization data
1395 */
1396int qdio_establish(struct qdio_initialize *init_data)
1397{
1398 char dbf_text[20];
1399 struct qdio_irq *irq_ptr;
1400 struct ccw_device *cdev = init_data->cdev;
1401 unsigned long saveflags;
1402 int rc;
1403
Jan Glauber58eb27c2008-08-21 19:46:34 +02001404 sprintf(dbf_text, "qest%4x", cdev->private->schid.sch_no);
1405 QDIO_DBF_TEXT0(0, setup, dbf_text);
1406
Jan Glauber779e6e12008-07-17 17:16:48 +02001407 irq_ptr = cdev->private->qdio_data;
1408 if (!irq_ptr)
1409 return -ENODEV;
1410
1411 if (cdev->private->state != DEV_STATE_ONLINE)
1412 return -EINVAL;
1413
Jan Glauber779e6e12008-07-17 17:16:48 +02001414 mutex_lock(&irq_ptr->setup_mutex);
1415 qdio_setup_irq(init_data);
1416
1417 rc = qdio_establish_thinint(irq_ptr);
1418 if (rc) {
1419 mutex_unlock(&irq_ptr->setup_mutex);
1420 qdio_shutdown(cdev, QDIO_FLAG_CLEANUP_USING_CLEAR);
1421 return rc;
1422 }
1423
1424 /* establish q */
1425 irq_ptr->ccw.cmd_code = irq_ptr->equeue.cmd;
1426 irq_ptr->ccw.flags = CCW_FLAG_SLI;
1427 irq_ptr->ccw.count = irq_ptr->equeue.count;
1428 irq_ptr->ccw.cda = (u32)((addr_t)irq_ptr->qdr);
1429
1430 spin_lock_irqsave(get_ccwdev_lock(cdev), saveflags);
1431 ccw_device_set_options_mask(cdev, 0);
1432
1433 rc = ccw_device_start(cdev, &irq_ptr->ccw, QDIO_DOING_ESTABLISH, 0, 0);
1434 if (rc) {
1435 sprintf(dbf_text, "eq:io%4x", irq_ptr->schid.sch_no);
1436 QDIO_DBF_TEXT2(1, setup, dbf_text);
1437 sprintf(dbf_text, "eq:rc%4x", rc);
1438 QDIO_DBF_TEXT2(1, setup, dbf_text);
1439 }
1440 spin_unlock_irqrestore(get_ccwdev_lock(cdev), saveflags);
1441
1442 if (rc) {
1443 mutex_unlock(&irq_ptr->setup_mutex);
1444 qdio_shutdown(cdev, QDIO_FLAG_CLEANUP_USING_CLEAR);
1445 return rc;
1446 }
1447
1448 wait_event_interruptible_timeout(cdev->private->wait_q,
1449 irq_ptr->state == QDIO_IRQ_STATE_ESTABLISHED ||
1450 irq_ptr->state == QDIO_IRQ_STATE_ERR, HZ);
1451
1452 if (irq_ptr->state != QDIO_IRQ_STATE_ESTABLISHED) {
1453 mutex_unlock(&irq_ptr->setup_mutex);
1454 qdio_shutdown(cdev, QDIO_FLAG_CLEANUP_USING_CLEAR);
1455 return -EIO;
1456 }
1457
1458 qdio_setup_ssqd_info(irq_ptr);
Klaus-Dieter Wacker7a0f4752008-10-10 21:33:18 +02001459 sprintf(dbf_text, "qDmmwc%2x", irq_ptr->ssqd_desc.mmwc);
1460 QDIO_DBF_TEXT2(0, setup, dbf_text);
Jan Glauber779e6e12008-07-17 17:16:48 +02001461 sprintf(dbf_text, "qib ac%2x", irq_ptr->qib.ac);
1462 QDIO_DBF_TEXT2(0, setup, dbf_text);
1463
1464 /* qebsm is now setup if available, initialize buffer states */
1465 qdio_init_buf_states(irq_ptr);
1466
1467 mutex_unlock(&irq_ptr->setup_mutex);
1468 qdio_print_subchannel_info(irq_ptr, cdev);
1469 qdio_setup_debug_entries(irq_ptr, cdev);
1470 return 0;
1471}
1472EXPORT_SYMBOL_GPL(qdio_establish);
1473
1474/**
1475 * qdio_activate - activate queues on a qdio subchannel
1476 * @cdev: associated cdev
1477 */
1478int qdio_activate(struct ccw_device *cdev)
1479{
1480 struct qdio_irq *irq_ptr;
1481 int rc;
1482 unsigned long saveflags;
1483 char dbf_text[20];
1484
Jan Glauber58eb27c2008-08-21 19:46:34 +02001485 sprintf(dbf_text, "qact%4x", cdev->private->schid.sch_no);
1486 QDIO_DBF_TEXT0(0, setup, dbf_text);
1487
Jan Glauber779e6e12008-07-17 17:16:48 +02001488 irq_ptr = cdev->private->qdio_data;
1489 if (!irq_ptr)
1490 return -ENODEV;
1491
1492 if (cdev->private->state != DEV_STATE_ONLINE)
1493 return -EINVAL;
1494
1495 mutex_lock(&irq_ptr->setup_mutex);
1496 if (irq_ptr->state == QDIO_IRQ_STATE_INACTIVE) {
1497 rc = -EBUSY;
1498 goto out;
1499 }
1500
Jan Glauber779e6e12008-07-17 17:16:48 +02001501 irq_ptr->ccw.cmd_code = irq_ptr->aqueue.cmd;
1502 irq_ptr->ccw.flags = CCW_FLAG_SLI;
1503 irq_ptr->ccw.count = irq_ptr->aqueue.count;
1504 irq_ptr->ccw.cda = 0;
1505
1506 spin_lock_irqsave(get_ccwdev_lock(cdev), saveflags);
1507 ccw_device_set_options(cdev, CCWDEV_REPORT_ALL);
1508
1509 rc = ccw_device_start(cdev, &irq_ptr->ccw, QDIO_DOING_ACTIVATE,
1510 0, DOIO_DENY_PREFETCH);
1511 if (rc) {
1512 sprintf(dbf_text, "aq:io%4x", irq_ptr->schid.sch_no);
1513 QDIO_DBF_TEXT2(1, setup, dbf_text);
1514 sprintf(dbf_text, "aq:rc%4x", rc);
1515 QDIO_DBF_TEXT2(1, setup, dbf_text);
1516 }
1517 spin_unlock_irqrestore(get_ccwdev_lock(cdev), saveflags);
1518
1519 if (rc)
1520 goto out;
1521
1522 if (is_thinint_irq(irq_ptr))
1523 tiqdio_add_input_queues(irq_ptr);
1524
1525 /* wait for subchannel to become active */
1526 msleep(5);
1527
1528 switch (irq_ptr->state) {
1529 case QDIO_IRQ_STATE_STOPPED:
1530 case QDIO_IRQ_STATE_ERR:
1531 mutex_unlock(&irq_ptr->setup_mutex);
1532 qdio_shutdown(cdev, QDIO_FLAG_CLEANUP_USING_CLEAR);
1533 return -EIO;
1534 default:
1535 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_ACTIVE);
1536 rc = 0;
1537 }
1538out:
1539 mutex_unlock(&irq_ptr->setup_mutex);
1540 return rc;
1541}
1542EXPORT_SYMBOL_GPL(qdio_activate);
1543
1544static inline int buf_in_between(int bufnr, int start, int count)
1545{
1546 int end = add_buf(start, count);
1547
1548 if (end > start) {
1549 if (bufnr >= start && bufnr < end)
1550 return 1;
1551 else
1552 return 0;
1553 }
1554
1555 /* wrap-around case */
1556 if ((bufnr >= start && bufnr <= QDIO_MAX_BUFFERS_PER_Q) ||
1557 (bufnr < end))
1558 return 1;
1559 else
1560 return 0;
1561}
1562
1563/**
1564 * handle_inbound - reset processed input buffers
1565 * @q: queue containing the buffers
1566 * @callflags: flags
1567 * @bufnr: first buffer to process
1568 * @count: how many buffers are emptied
1569 */
1570static void handle_inbound(struct qdio_q *q, unsigned int callflags,
1571 int bufnr, int count)
1572{
1573 unsigned long flags;
1574 int used, rc;
1575
1576 /*
1577 * do_QDIO could run in parallel with the queue tasklet so the
1578 * upper-layer programm could empty the ACK'ed buffer here.
1579 * If that happens we must clear the polling flag, otherwise
1580 * qdio_stop_polling() could set the buffer to NOT_INIT after
1581 * it was set to EMPTY which would kill us.
1582 */
1583 spin_lock_irqsave(&q->u.in.lock, flags);
1584 if (q->u.in.polling)
1585 if (buf_in_between(q->last_move_ftc, bufnr, count))
1586 q->u.in.polling = 0;
1587
1588 count = set_buf_states(q, bufnr, SLSB_CU_INPUT_EMPTY, count);
1589 spin_unlock_irqrestore(&q->u.in.lock, flags);
1590
1591 used = atomic_add_return(count, &q->nr_buf_used) - count;
1592 BUG_ON(used + count > QDIO_MAX_BUFFERS_PER_Q);
1593
1594 /* no need to signal as long as the adapter had free buffers */
1595 if (used)
1596 return;
1597
1598 if (need_siga_in(q)) {
1599 rc = qdio_siga_input(q);
1600 if (rc)
1601 q->qdio_error = rc;
1602 }
1603}
1604
1605/**
1606 * handle_outbound - process filled outbound buffers
1607 * @q: queue containing the buffers
1608 * @callflags: flags
1609 * @bufnr: first buffer to process
1610 * @count: how many buffers are filled
1611 */
1612static void handle_outbound(struct qdio_q *q, unsigned int callflags,
1613 int bufnr, int count)
1614{
1615 unsigned char state;
1616 int used;
1617
1618 qdio_perf_stat_inc(&perf_stats.outbound_handler);
1619
1620 count = set_buf_states(q, bufnr, SLSB_CU_OUTPUT_PRIMED, count);
1621 used = atomic_add_return(count, &q->nr_buf_used);
1622 BUG_ON(used > QDIO_MAX_BUFFERS_PER_Q);
1623
1624 if (callflags & QDIO_FLAG_PCI_OUT)
1625 q->u.out.pci_out_enabled = 1;
1626 else
1627 q->u.out.pci_out_enabled = 0;
1628
1629 if (queue_type(q) == QDIO_IQDIO_QFMT) {
1630 if (multicast_outbound(q))
1631 qdio_kick_outbound_q(q);
1632 else
Klaus-Dieter Wacker7a0f4752008-10-10 21:33:18 +02001633 if ((q->irq_ptr->ssqd_desc.mmwc > 1) &&
1634 (count > 1) &&
1635 (count <= q->irq_ptr->ssqd_desc.mmwc)) {
1636 /* exploit enhanced SIGA */
1637 q->u.out.use_enh_siga = 1;
Jan Glauber779e6e12008-07-17 17:16:48 +02001638 qdio_kick_outbound_q(q);
Klaus-Dieter Wacker7a0f4752008-10-10 21:33:18 +02001639 } else {
1640 /*
1641 * One siga-w per buffer required for unicast
1642 * HiperSockets.
1643 */
1644 q->u.out.use_enh_siga = 0;
1645 while (count--)
1646 qdio_kick_outbound_q(q);
1647 }
Jan Glauber779e6e12008-07-17 17:16:48 +02001648 goto out;
1649 }
1650
1651 if (need_siga_sync(q)) {
1652 qdio_siga_sync_q(q);
1653 goto out;
1654 }
1655
1656 /* try to fast requeue buffers */
1657 get_buf_state(q, prev_buf(bufnr), &state);
1658 if (state != SLSB_CU_OUTPUT_PRIMED)
1659 qdio_kick_outbound_q(q);
1660 else {
1661 QDIO_DBF_TEXT5(0, trace, "fast-req");
1662 qdio_perf_stat_inc(&perf_stats.fast_requeue);
1663 }
1664out:
1665 /* Fixme: could wait forever if called from process context */
1666 tasklet_schedule(&q->tasklet);
1667}
1668
1669/**
1670 * do_QDIO - process input or output buffers
1671 * @cdev: associated ccw_device for the qdio subchannel
1672 * @callflags: input or output and special flags from the program
1673 * @q_nr: queue number
1674 * @bufnr: buffer number
1675 * @count: how many buffers to process
1676 */
1677int do_QDIO(struct ccw_device *cdev, unsigned int callflags,
1678 int q_nr, int bufnr, int count)
1679{
1680 struct qdio_irq *irq_ptr;
1681#ifdef CONFIG_QDIO_DEBUG
1682 char dbf_text[20];
1683
Jan Glauber58eb27c2008-08-21 19:46:34 +02001684 sprintf(dbf_text, "doQD%4x", cdev->private->schid.sch_no);
Jan Glauber779e6e12008-07-17 17:16:48 +02001685 QDIO_DBF_TEXT3(0, trace, dbf_text);
1686#endif /* CONFIG_QDIO_DEBUG */
1687
1688 if ((bufnr > QDIO_MAX_BUFFERS_PER_Q) ||
1689 (count > QDIO_MAX_BUFFERS_PER_Q) ||
1690 (q_nr > QDIO_MAX_QUEUES_PER_IRQ))
1691 return -EINVAL;
1692
1693 if (!count)
1694 return 0;
1695
1696 irq_ptr = cdev->private->qdio_data;
1697 if (!irq_ptr)
1698 return -ENODEV;
1699
1700#ifdef CONFIG_QDIO_DEBUG
1701 if (callflags & QDIO_FLAG_SYNC_INPUT)
1702 QDIO_DBF_HEX3(0, trace, &irq_ptr->input_qs[q_nr],
1703 sizeof(void *));
1704 else
1705 QDIO_DBF_HEX3(0, trace, &irq_ptr->output_qs[q_nr],
1706 sizeof(void *));
1707
1708 sprintf(dbf_text, "flag%04x", callflags);
1709 QDIO_DBF_TEXT3(0, trace, dbf_text);
1710 sprintf(dbf_text, "qi%02xct%02x", bufnr, count);
1711 QDIO_DBF_TEXT3(0, trace, dbf_text);
1712#endif /* CONFIG_QDIO_DEBUG */
1713
1714 if (irq_ptr->state != QDIO_IRQ_STATE_ACTIVE)
1715 return -EBUSY;
1716
1717 if (callflags & QDIO_FLAG_SYNC_INPUT)
1718 handle_inbound(irq_ptr->input_qs[q_nr],
1719 callflags, bufnr, count);
1720 else if (callflags & QDIO_FLAG_SYNC_OUTPUT)
1721 handle_outbound(irq_ptr->output_qs[q_nr],
1722 callflags, bufnr, count);
1723 else {
1724 QDIO_DBF_TEXT3(1, trace, "doQD:inv");
1725 return -EINVAL;
1726 }
1727 return 0;
1728}
1729EXPORT_SYMBOL_GPL(do_QDIO);
1730
1731static int __init init_QDIO(void)
1732{
1733 int rc;
1734
1735 rc = qdio_setup_init();
1736 if (rc)
1737 return rc;
1738 rc = tiqdio_allocate_memory();
1739 if (rc)
1740 goto out_cache;
1741 rc = qdio_debug_init();
1742 if (rc)
1743 goto out_ti;
1744 rc = qdio_setup_perf_stats();
1745 if (rc)
1746 goto out_debug;
1747 rc = tiqdio_register_thinints();
1748 if (rc)
1749 goto out_perf;
1750 return 0;
1751
1752out_perf:
1753 qdio_remove_perf_stats();
1754out_debug:
1755 qdio_debug_exit();
1756out_ti:
1757 tiqdio_free_memory();
1758out_cache:
1759 qdio_setup_exit();
1760 return rc;
1761}
1762
1763static void __exit exit_QDIO(void)
1764{
1765 tiqdio_unregister_thinints();
1766 tiqdio_free_memory();
1767 qdio_remove_perf_stats();
1768 qdio_debug_exit();
1769 qdio_setup_exit();
1770}
1771
1772module_init(init_QDIO);
1773module_exit(exit_QDIO);