Merge tag 'for-linus-hmm' of git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma
[platform/kernel/linux-starfive.git] / drivers / s390 / cio / qdio_main.c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Linux for s390 qdio support, buffer handling, qdio API and module support.
4  *
5  * Copyright IBM Corp. 2000, 2008
6  * Author(s): Utz Bacher <utz.bacher@de.ibm.com>
7  *            Jan Glauber <jang@linux.vnet.ibm.com>
8  * 2.6 cio integration by Cornelia Huck <cornelia.huck@de.ibm.com>
9  */
10 #include <linux/module.h>
11 #include <linux/init.h>
12 #include <linux/kernel.h>
13 #include <linux/timer.h>
14 #include <linux/delay.h>
15 #include <linux/gfp.h>
16 #include <linux/io.h>
17 #include <linux/atomic.h>
18 #include <asm/debug.h>
19 #include <asm/qdio.h>
20 #include <asm/ipl.h>
21
22 #include "cio.h"
23 #include "css.h"
24 #include "device.h"
25 #include "qdio.h"
26 #include "qdio_debug.h"
27
28 MODULE_AUTHOR("Utz Bacher <utz.bacher@de.ibm.com>,"\
29         "Jan Glauber <jang@linux.vnet.ibm.com>");
30 MODULE_DESCRIPTION("QDIO base support");
31 MODULE_LICENSE("GPL");
32
33 static inline int do_siga_sync(unsigned long schid,
34                                unsigned int out_mask, unsigned int in_mask,
35                                unsigned int fc)
36 {
37         register unsigned long __fc asm ("0") = fc;
38         register unsigned long __schid asm ("1") = schid;
39         register unsigned long out asm ("2") = out_mask;
40         register unsigned long in asm ("3") = in_mask;
41         int cc;
42
43         asm volatile(
44                 "       siga    0\n"
45                 "       ipm     %0\n"
46                 "       srl     %0,28\n"
47                 : "=d" (cc)
48                 : "d" (__fc), "d" (__schid), "d" (out), "d" (in) : "cc");
49         return cc;
50 }
51
52 static inline int do_siga_input(unsigned long schid, unsigned int mask,
53                                 unsigned int fc)
54 {
55         register unsigned long __fc asm ("0") = fc;
56         register unsigned long __schid asm ("1") = schid;
57         register unsigned long __mask asm ("2") = mask;
58         int cc;
59
60         asm volatile(
61                 "       siga    0\n"
62                 "       ipm     %0\n"
63                 "       srl     %0,28\n"
64                 : "=d" (cc)
65                 : "d" (__fc), "d" (__schid), "d" (__mask) : "cc");
66         return cc;
67 }
68
69 /**
70  * do_siga_output - perform SIGA-w/wt function
71  * @schid: subchannel id or in case of QEBSM the subchannel token
72  * @mask: which output queues to process
73  * @bb: busy bit indicator, set only if SIGA-w/wt could not access a buffer
74  * @fc: function code to perform
75  * @aob: asynchronous operation block
76  *
77  * Returns condition code.
78  * Note: For IQDC unicast queues only the highest priority queue is processed.
79  */
80 static inline int do_siga_output(unsigned long schid, unsigned long mask,
81                                  unsigned int *bb, unsigned int fc,
82                                  unsigned long aob)
83 {
84         register unsigned long __fc asm("0") = fc;
85         register unsigned long __schid asm("1") = schid;
86         register unsigned long __mask asm("2") = mask;
87         register unsigned long __aob asm("3") = aob;
88         int cc;
89
90         asm volatile(
91                 "       siga    0\n"
92                 "       ipm     %0\n"
93                 "       srl     %0,28\n"
94                 : "=d" (cc), "+d" (__fc), "+d" (__aob)
95                 : "d" (__schid), "d" (__mask)
96                 : "cc");
97         *bb = __fc >> 31;
98         return cc;
99 }
100
101 /**
102  * qdio_do_eqbs - extract buffer states for QEBSM
103  * @q: queue to manipulate
104  * @state: state of the extracted buffers
105  * @start: buffer number to start at
106  * @count: count of buffers to examine
107  * @auto_ack: automatically acknowledge buffers
108  *
109  * Returns the number of successfully extracted equal buffer states.
110  * Stops processing if a state is different from the last buffers state.
111  */
112 static int qdio_do_eqbs(struct qdio_q *q, unsigned char *state,
113                         int start, int count, int auto_ack)
114 {
115         int tmp_count = count, tmp_start = start, nr = q->nr;
116         unsigned int ccq = 0;
117
118         qperf_inc(q, eqbs);
119
120         if (!q->is_input_q)
121                 nr += q->irq_ptr->nr_input_qs;
122 again:
123         ccq = do_eqbs(q->irq_ptr->sch_token, state, nr, &tmp_start, &tmp_count,
124                       auto_ack);
125
126         switch (ccq) {
127         case 0:
128         case 32:
129                 /* all done, or next buffer state different */
130                 return count - tmp_count;
131         case 96:
132                 /* not all buffers processed */
133                 qperf_inc(q, eqbs_partial);
134                 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "EQBS part:%02x",
135                         tmp_count);
136                 return count - tmp_count;
137         case 97:
138                 /* no buffer processed */
139                 DBF_DEV_EVENT(DBF_WARN, q->irq_ptr, "EQBS again:%2d", ccq);
140                 goto again;
141         default:
142                 DBF_ERROR("%4x ccq:%3d", SCH_NO(q), ccq);
143                 DBF_ERROR("%4x EQBS ERROR", SCH_NO(q));
144                 DBF_ERROR("%3d%3d%2d", count, tmp_count, nr);
145                 q->handler(q->irq_ptr->cdev, QDIO_ERROR_GET_BUF_STATE, q->nr,
146                            q->first_to_kick, count, q->irq_ptr->int_parm);
147                 return 0;
148         }
149 }
150
151 /**
152  * qdio_do_sqbs - set buffer states for QEBSM
153  * @q: queue to manipulate
154  * @state: new state of the buffers
155  * @start: first buffer number to change
156  * @count: how many buffers to change
157  *
158  * Returns the number of successfully changed buffers.
159  * Does retrying until the specified count of buffer states is set or an
160  * error occurs.
161  */
162 static int qdio_do_sqbs(struct qdio_q *q, unsigned char state, int start,
163                         int count)
164 {
165         unsigned int ccq = 0;
166         int tmp_count = count, tmp_start = start;
167         int nr = q->nr;
168
169         if (!count)
170                 return 0;
171         qperf_inc(q, sqbs);
172
173         if (!q->is_input_q)
174                 nr += q->irq_ptr->nr_input_qs;
175 again:
176         ccq = do_sqbs(q->irq_ptr->sch_token, state, nr, &tmp_start, &tmp_count);
177
178         switch (ccq) {
179         case 0:
180         case 32:
181                 /* all done, or active buffer adapter-owned */
182                 WARN_ON_ONCE(tmp_count);
183                 return count - tmp_count;
184         case 96:
185                 /* not all buffers processed */
186                 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "SQBS again:%2d", ccq);
187                 qperf_inc(q, sqbs_partial);
188                 goto again;
189         default:
190                 DBF_ERROR("%4x ccq:%3d", SCH_NO(q), ccq);
191                 DBF_ERROR("%4x SQBS ERROR", SCH_NO(q));
192                 DBF_ERROR("%3d%3d%2d", count, tmp_count, nr);
193                 q->handler(q->irq_ptr->cdev, QDIO_ERROR_SET_BUF_STATE, q->nr,
194                            q->first_to_kick, count, q->irq_ptr->int_parm);
195                 return 0;
196         }
197 }
198
199 /*
200  * Returns number of examined buffers and their common state in *state.
201  * Requested number of buffers-to-examine must be > 0.
202  */
203 static inline int get_buf_states(struct qdio_q *q, unsigned int bufnr,
204                                  unsigned char *state, unsigned int count,
205                                  int auto_ack, int merge_pending)
206 {
207         unsigned char __state = 0;
208         int i = 1;
209
210         if (is_qebsm(q))
211                 return qdio_do_eqbs(q, state, bufnr, count, auto_ack);
212
213         /* get initial state: */
214         __state = q->slsb.val[bufnr];
215
216         /* Bail out early if there is no work on the queue: */
217         if (__state & SLSB_OWNER_CU)
218                 goto out;
219
220         if (merge_pending && __state == SLSB_P_OUTPUT_PENDING)
221                 __state = SLSB_P_OUTPUT_EMPTY;
222
223         for (; i < count; i++) {
224                 bufnr = next_buf(bufnr);
225
226                 /* merge PENDING into EMPTY: */
227                 if (merge_pending &&
228                     q->slsb.val[bufnr] == SLSB_P_OUTPUT_PENDING &&
229                     __state == SLSB_P_OUTPUT_EMPTY)
230                         continue;
231
232                 /* stop if next state differs from initial state: */
233                 if (q->slsb.val[bufnr] != __state)
234                         break;
235         }
236
237 out:
238         *state = __state;
239         return i;
240 }
241
242 static inline int get_buf_state(struct qdio_q *q, unsigned int bufnr,
243                                 unsigned char *state, int auto_ack)
244 {
245         return get_buf_states(q, bufnr, state, 1, auto_ack, 0);
246 }
247
248 /* wrap-around safe setting of slsb states, returns number of changed buffers */
249 static inline int set_buf_states(struct qdio_q *q, int bufnr,
250                                  unsigned char state, int count)
251 {
252         int i;
253
254         if (is_qebsm(q))
255                 return qdio_do_sqbs(q, state, bufnr, count);
256
257         for (i = 0; i < count; i++) {
258                 xchg(&q->slsb.val[bufnr], state);
259                 bufnr = next_buf(bufnr);
260         }
261         return count;
262 }
263
264 static inline int set_buf_state(struct qdio_q *q, int bufnr,
265                                 unsigned char state)
266 {
267         return set_buf_states(q, bufnr, state, 1);
268 }
269
270 /* set slsb states to initial state */
271 static void qdio_init_buf_states(struct qdio_irq *irq_ptr)
272 {
273         struct qdio_q *q;
274         int i;
275
276         for_each_input_queue(irq_ptr, q, i)
277                 set_buf_states(q, 0, SLSB_P_INPUT_NOT_INIT,
278                                QDIO_MAX_BUFFERS_PER_Q);
279         for_each_output_queue(irq_ptr, q, i)
280                 set_buf_states(q, 0, SLSB_P_OUTPUT_NOT_INIT,
281                                QDIO_MAX_BUFFERS_PER_Q);
282 }
283
284 static inline int qdio_siga_sync(struct qdio_q *q, unsigned int output,
285                           unsigned int input)
286 {
287         unsigned long schid = *((u32 *) &q->irq_ptr->schid);
288         unsigned int fc = QDIO_SIGA_SYNC;
289         int cc;
290
291         DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "siga-s:%1d", q->nr);
292         qperf_inc(q, siga_sync);
293
294         if (is_qebsm(q)) {
295                 schid = q->irq_ptr->sch_token;
296                 fc |= QDIO_SIGA_QEBSM_FLAG;
297         }
298
299         cc = do_siga_sync(schid, output, input, fc);
300         if (unlikely(cc))
301                 DBF_ERROR("%4x SIGA-S:%2d", SCH_NO(q), cc);
302         return (cc) ? -EIO : 0;
303 }
304
305 static inline int qdio_siga_sync_q(struct qdio_q *q)
306 {
307         if (q->is_input_q)
308                 return qdio_siga_sync(q, 0, q->mask);
309         else
310                 return qdio_siga_sync(q, q->mask, 0);
311 }
312
313 static int qdio_siga_output(struct qdio_q *q, unsigned int count,
314                             unsigned int *busy_bit, unsigned long aob)
315 {
316         unsigned long schid = *((u32 *) &q->irq_ptr->schid);
317         unsigned int fc = QDIO_SIGA_WRITE;
318         u64 start_time = 0;
319         int retries = 0, cc;
320
321         if (queue_type(q) == QDIO_IQDIO_QFMT && !multicast_outbound(q)) {
322                 if (count > 1)
323                         fc = QDIO_SIGA_WRITEM;
324                 else if (aob)
325                         fc = QDIO_SIGA_WRITEQ;
326         }
327
328         if (is_qebsm(q)) {
329                 schid = q->irq_ptr->sch_token;
330                 fc |= QDIO_SIGA_QEBSM_FLAG;
331         }
332 again:
333         cc = do_siga_output(schid, q->mask, busy_bit, fc, aob);
334
335         /* hipersocket busy condition */
336         if (unlikely(*busy_bit)) {
337                 retries++;
338
339                 if (!start_time) {
340                         start_time = get_tod_clock_fast();
341                         goto again;
342                 }
343                 if (get_tod_clock_fast() - start_time < QDIO_BUSY_BIT_PATIENCE)
344                         goto again;
345         }
346         if (retries) {
347                 DBF_DEV_EVENT(DBF_WARN, q->irq_ptr,
348                               "%4x cc2 BB1:%1d", SCH_NO(q), q->nr);
349                 DBF_DEV_EVENT(DBF_WARN, q->irq_ptr, "count:%u", retries);
350         }
351         return cc;
352 }
353
354 static inline int qdio_siga_input(struct qdio_q *q)
355 {
356         unsigned long schid = *((u32 *) &q->irq_ptr->schid);
357         unsigned int fc = QDIO_SIGA_READ;
358         int cc;
359
360         DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "siga-r:%1d", q->nr);
361         qperf_inc(q, siga_read);
362
363         if (is_qebsm(q)) {
364                 schid = q->irq_ptr->sch_token;
365                 fc |= QDIO_SIGA_QEBSM_FLAG;
366         }
367
368         cc = do_siga_input(schid, q->mask, fc);
369         if (unlikely(cc))
370                 DBF_ERROR("%4x SIGA-R:%2d", SCH_NO(q), cc);
371         return (cc) ? -EIO : 0;
372 }
373
374 #define qdio_siga_sync_out(q) qdio_siga_sync(q, ~0U, 0)
375 #define qdio_siga_sync_all(q) qdio_siga_sync(q, ~0U, ~0U)
376
377 static inline void qdio_sync_queues(struct qdio_q *q)
378 {
379         /* PCI capable outbound queues will also be scanned so sync them too */
380         if (pci_out_supported(q->irq_ptr))
381                 qdio_siga_sync_all(q);
382         else
383                 qdio_siga_sync_q(q);
384 }
385
386 int debug_get_buf_state(struct qdio_q *q, unsigned int bufnr,
387                         unsigned char *state)
388 {
389         if (need_siga_sync(q))
390                 qdio_siga_sync_q(q);
391         return get_buf_state(q, bufnr, state, 0);
392 }
393
394 static inline void qdio_stop_polling(struct qdio_q *q)
395 {
396         if (!q->u.in.ack_count)
397                 return;
398
399         qperf_inc(q, stop_polling);
400
401         /* show the card that we are not polling anymore */
402         set_buf_states(q, q->u.in.ack_start, SLSB_P_INPUT_NOT_INIT,
403                        q->u.in.ack_count);
404         q->u.in.ack_count = 0;
405 }
406
407 static inline void account_sbals(struct qdio_q *q, unsigned int count)
408 {
409         int pos;
410
411         q->q_stats.nr_sbal_total += count;
412         if (count == QDIO_MAX_BUFFERS_MASK) {
413                 q->q_stats.nr_sbals[7]++;
414                 return;
415         }
416         pos = ilog2(count);
417         q->q_stats.nr_sbals[pos]++;
418 }
419
420 static void process_buffer_error(struct qdio_q *q, unsigned int start,
421                                  int count)
422 {
423         q->qdio_error = QDIO_ERROR_SLSB_STATE;
424
425         /* special handling for no target buffer empty */
426         if (queue_type(q) == QDIO_IQDIO_QFMT && !q->is_input_q &&
427             q->sbal[start]->element[15].sflags == 0x10) {
428                 qperf_inc(q, target_full);
429                 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "OUTFULL FTC:%02x", start);
430                 return;
431         }
432
433         DBF_ERROR("%4x BUF ERROR", SCH_NO(q));
434         DBF_ERROR((q->is_input_q) ? "IN:%2d" : "OUT:%2d", q->nr);
435         DBF_ERROR("FTC:%3d C:%3d", start, count);
436         DBF_ERROR("F14:%2x F15:%2x",
437                   q->sbal[start]->element[14].sflags,
438                   q->sbal[start]->element[15].sflags);
439 }
440
441 static inline void inbound_primed(struct qdio_q *q, unsigned int start,
442                                   int count)
443 {
444         int new;
445
446         DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "in prim:%1d %02x", q->nr, count);
447
448         /* for QEBSM the ACK was already set by EQBS */
449         if (is_qebsm(q)) {
450                 if (!q->u.in.ack_count) {
451                         q->u.in.ack_count = count;
452                         q->u.in.ack_start = start;
453                         return;
454                 }
455
456                 /* delete the previous ACK's */
457                 set_buf_states(q, q->u.in.ack_start, SLSB_P_INPUT_NOT_INIT,
458                                q->u.in.ack_count);
459                 q->u.in.ack_count = count;
460                 q->u.in.ack_start = start;
461                 return;
462         }
463
464         /*
465          * ACK the newest buffer. The ACK will be removed in qdio_stop_polling
466          * or by the next inbound run.
467          */
468         new = add_buf(start, count - 1);
469         if (q->u.in.ack_count) {
470                 /* reset the previous ACK but first set the new one */
471                 set_buf_state(q, new, SLSB_P_INPUT_ACK);
472                 set_buf_state(q, q->u.in.ack_start, SLSB_P_INPUT_NOT_INIT);
473         } else {
474                 q->u.in.ack_count = 1;
475                 set_buf_state(q, new, SLSB_P_INPUT_ACK);
476         }
477
478         q->u.in.ack_start = new;
479         count--;
480         if (!count)
481                 return;
482         /* need to change ALL buffers to get more interrupts */
483         set_buf_states(q, start, SLSB_P_INPUT_NOT_INIT, count);
484 }
485
486 static int get_inbound_buffer_frontier(struct qdio_q *q, unsigned int start)
487 {
488         unsigned char state = 0;
489         int count;
490
491         q->timestamp = get_tod_clock_fast();
492
493         /*
494          * Don't check 128 buffers, as otherwise qdio_inbound_q_moved
495          * would return 0.
496          */
497         count = min(atomic_read(&q->nr_buf_used), QDIO_MAX_BUFFERS_MASK);
498         if (!count)
499                 return 0;
500
501         /*
502          * No siga sync here, as a PCI or we after a thin interrupt
503          * already sync'ed the queues.
504          */
505         count = get_buf_states(q, start, &state, count, 1, 0);
506         if (!count)
507                 return 0;
508
509         switch (state) {
510         case SLSB_P_INPUT_PRIMED:
511                 inbound_primed(q, start, count);
512                 if (atomic_sub_return(count, &q->nr_buf_used) == 0)
513                         qperf_inc(q, inbound_queue_full);
514                 if (q->irq_ptr->perf_stat_enabled)
515                         account_sbals(q, count);
516                 return count;
517         case SLSB_P_INPUT_ERROR:
518                 process_buffer_error(q, start, count);
519                 /*
520                  * Interrupts may be avoided as long as the error is present
521                  * so change the buffer state immediately to avoid starvation.
522                  */
523                 set_buf_states(q, start, SLSB_P_INPUT_NOT_INIT, count);
524                 if (atomic_sub_return(count, &q->nr_buf_used) == 0)
525                         qperf_inc(q, inbound_queue_full);
526                 if (q->irq_ptr->perf_stat_enabled)
527                         account_sbals_error(q, count);
528                 return count;
529         case SLSB_CU_INPUT_EMPTY:
530         case SLSB_P_INPUT_NOT_INIT:
531         case SLSB_P_INPUT_ACK:
532                 if (q->irq_ptr->perf_stat_enabled)
533                         q->q_stats.nr_sbal_nop++;
534                 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "in nop:%1d %#02x",
535                               q->nr, start);
536                 return 0;
537         default:
538                 WARN_ON_ONCE(1);
539                 return 0;
540         }
541 }
542
543 static int qdio_inbound_q_moved(struct qdio_q *q, unsigned int start)
544 {
545         int count;
546
547         count = get_inbound_buffer_frontier(q, start);
548
549         if (count && !is_thinint_irq(q->irq_ptr) && MACHINE_IS_LPAR)
550                 q->u.in.timestamp = get_tod_clock();
551
552         return count;
553 }
554
555 static inline int qdio_inbound_q_done(struct qdio_q *q, unsigned int start)
556 {
557         unsigned char state = 0;
558
559         if (!atomic_read(&q->nr_buf_used))
560                 return 1;
561
562         if (need_siga_sync(q))
563                 qdio_siga_sync_q(q);
564         get_buf_state(q, start, &state, 0);
565
566         if (state == SLSB_P_INPUT_PRIMED || state == SLSB_P_INPUT_ERROR)
567                 /* more work coming */
568                 return 0;
569
570         if (is_thinint_irq(q->irq_ptr))
571                 return 1;
572
573         /* don't poll under z/VM */
574         if (MACHINE_IS_VM)
575                 return 1;
576
577         /*
578          * At this point we know, that inbound first_to_check
579          * has (probably) not moved (see qdio_inbound_processing).
580          */
581         if (get_tod_clock_fast() > q->u.in.timestamp + QDIO_INPUT_THRESHOLD) {
582                 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "in done:%02x", start);
583                 return 1;
584         } else
585                 return 0;
586 }
587
588 static inline void qdio_handle_aobs(struct qdio_q *q, int start, int count)
589 {
590         unsigned char state = 0;
591         int j, b = start;
592
593         for (j = 0; j < count; ++j) {
594                 get_buf_state(q, b, &state, 0);
595                 if (state == SLSB_P_OUTPUT_PENDING) {
596                         struct qaob *aob = q->u.out.aobs[b];
597                         if (aob == NULL)
598                                 continue;
599
600                         q->u.out.sbal_state[b].flags |=
601                                 QDIO_OUTBUF_STATE_FLAG_PENDING;
602                         q->u.out.aobs[b] = NULL;
603                 }
604                 b = next_buf(b);
605         }
606 }
607
608 static inline unsigned long qdio_aob_for_buffer(struct qdio_output_q *q,
609                                         int bufnr)
610 {
611         unsigned long phys_aob = 0;
612
613         if (!q->aobs[bufnr]) {
614                 struct qaob *aob = qdio_allocate_aob();
615                 q->aobs[bufnr] = aob;
616         }
617         if (q->aobs[bufnr]) {
618                 q->aobs[bufnr]->user1 = (u64) q->sbal_state[bufnr].user;
619                 phys_aob = virt_to_phys(q->aobs[bufnr]);
620                 WARN_ON_ONCE(phys_aob & 0xFF);
621         }
622
623         q->sbal_state[bufnr].flags = 0;
624         return phys_aob;
625 }
626
627 static void qdio_kick_handler(struct qdio_q *q, unsigned int count)
628 {
629         int start = q->first_to_kick;
630
631         if (unlikely(q->irq_ptr->state != QDIO_IRQ_STATE_ACTIVE))
632                 return;
633
634         if (q->is_input_q) {
635                 qperf_inc(q, inbound_handler);
636                 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "kih s:%02x c:%02x", start, count);
637         } else {
638                 qperf_inc(q, outbound_handler);
639                 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "koh: s:%02x c:%02x",
640                               start, count);
641         }
642
643         q->handler(q->irq_ptr->cdev, q->qdio_error, q->nr, start, count,
644                    q->irq_ptr->int_parm);
645
646         /* for the next time */
647         q->first_to_kick = add_buf(start, count);
648         q->qdio_error = 0;
649 }
650
651 static inline int qdio_tasklet_schedule(struct qdio_q *q)
652 {
653         if (likely(q->irq_ptr->state == QDIO_IRQ_STATE_ACTIVE)) {
654                 tasklet_schedule(&q->tasklet);
655                 return 0;
656         }
657         return -EPERM;
658 }
659
660 static void __qdio_inbound_processing(struct qdio_q *q)
661 {
662         unsigned int start = q->first_to_check;
663         int count;
664
665         qperf_inc(q, tasklet_inbound);
666
667         count = qdio_inbound_q_moved(q, start);
668         if (count == 0)
669                 return;
670
671         start = add_buf(start, count);
672         q->first_to_check = start;
673         qdio_kick_handler(q, count);
674
675         if (!qdio_inbound_q_done(q, start)) {
676                 /* means poll time is not yet over */
677                 qperf_inc(q, tasklet_inbound_resched);
678                 if (!qdio_tasklet_schedule(q))
679                         return;
680         }
681
682         qdio_stop_polling(q);
683         /*
684          * We need to check again to not lose initiative after
685          * resetting the ACK state.
686          */
687         if (!qdio_inbound_q_done(q, start)) {
688                 qperf_inc(q, tasklet_inbound_resched2);
689                 qdio_tasklet_schedule(q);
690         }
691 }
692
693 void qdio_inbound_processing(unsigned long data)
694 {
695         struct qdio_q *q = (struct qdio_q *)data;
696         __qdio_inbound_processing(q);
697 }
698
699 static int get_outbound_buffer_frontier(struct qdio_q *q, unsigned int start)
700 {
701         unsigned char state = 0;
702         int count;
703
704         q->timestamp = get_tod_clock_fast();
705
706         if (need_siga_sync(q))
707                 if (((queue_type(q) != QDIO_IQDIO_QFMT) &&
708                     !pci_out_supported(q->irq_ptr)) ||
709                     (queue_type(q) == QDIO_IQDIO_QFMT &&
710                     multicast_outbound(q)))
711                         qdio_siga_sync_q(q);
712
713         count = atomic_read(&q->nr_buf_used);
714         if (!count)
715                 return 0;
716
717         count = get_buf_states(q, start, &state, count, 0, q->u.out.use_cq);
718         if (!count)
719                 return 0;
720
721         switch (state) {
722         case SLSB_P_OUTPUT_EMPTY:
723         case SLSB_P_OUTPUT_PENDING:
724                 /* the adapter got it */
725                 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr,
726                         "out empty:%1d %02x", q->nr, count);
727
728                 atomic_sub(count, &q->nr_buf_used);
729                 if (q->irq_ptr->perf_stat_enabled)
730                         account_sbals(q, count);
731                 return count;
732         case SLSB_P_OUTPUT_ERROR:
733                 process_buffer_error(q, start, count);
734                 atomic_sub(count, &q->nr_buf_used);
735                 if (q->irq_ptr->perf_stat_enabled)
736                         account_sbals_error(q, count);
737                 return count;
738         case SLSB_CU_OUTPUT_PRIMED:
739                 /* the adapter has not fetched the output yet */
740                 if (q->irq_ptr->perf_stat_enabled)
741                         q->q_stats.nr_sbal_nop++;
742                 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "out primed:%1d",
743                               q->nr);
744                 return 0;
745         case SLSB_P_OUTPUT_NOT_INIT:
746         case SLSB_P_OUTPUT_HALTED:
747                 return 0;
748         default:
749                 WARN_ON_ONCE(1);
750                 return 0;
751         }
752 }
753
754 /* all buffers processed? */
755 static inline int qdio_outbound_q_done(struct qdio_q *q)
756 {
757         return atomic_read(&q->nr_buf_used) == 0;
758 }
759
760 static inline int qdio_outbound_q_moved(struct qdio_q *q, unsigned int start)
761 {
762         int count;
763
764         count = get_outbound_buffer_frontier(q, start);
765
766         if (count) {
767                 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "out moved:%1d", q->nr);
768                 if (q->u.out.use_cq)
769                         qdio_handle_aobs(q, start, count);
770         }
771
772         return count;
773 }
774
775 static int qdio_kick_outbound_q(struct qdio_q *q, unsigned int count,
776                                 unsigned long aob)
777 {
778         int retries = 0, cc;
779         unsigned int busy_bit;
780
781         if (!need_siga_out(q))
782                 return 0;
783
784         DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "siga-w:%1d", q->nr);
785 retry:
786         qperf_inc(q, siga_write);
787
788         cc = qdio_siga_output(q, count, &busy_bit, aob);
789         switch (cc) {
790         case 0:
791                 break;
792         case 2:
793                 if (busy_bit) {
794                         while (++retries < QDIO_BUSY_BIT_RETRIES) {
795                                 mdelay(QDIO_BUSY_BIT_RETRY_DELAY);
796                                 goto retry;
797                         }
798                         DBF_ERROR("%4x cc2 BBC:%1d", SCH_NO(q), q->nr);
799                         cc = -EBUSY;
800                 } else {
801                         DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "siga-w cc2:%1d", q->nr);
802                         cc = -ENOBUFS;
803                 }
804                 break;
805         case 1:
806         case 3:
807                 DBF_ERROR("%4x SIGA-W:%1d", SCH_NO(q), cc);
808                 cc = -EIO;
809                 break;
810         }
811         if (retries) {
812                 DBF_ERROR("%4x cc2 BB2:%1d", SCH_NO(q), q->nr);
813                 DBF_ERROR("count:%u", retries);
814         }
815         return cc;
816 }
817
818 static void __qdio_outbound_processing(struct qdio_q *q)
819 {
820         unsigned int start = q->first_to_check;
821         int count;
822
823         qperf_inc(q, tasklet_outbound);
824         WARN_ON_ONCE(atomic_read(&q->nr_buf_used) < 0);
825
826         count = qdio_outbound_q_moved(q, start);
827         if (count) {
828                 q->first_to_check = add_buf(start, count);
829                 qdio_kick_handler(q, count);
830         }
831
832         if (queue_type(q) == QDIO_ZFCP_QFMT && !pci_out_supported(q->irq_ptr) &&
833             !qdio_outbound_q_done(q))
834                 goto sched;
835
836         if (q->u.out.pci_out_enabled)
837                 return;
838
839         /*
840          * Now we know that queue type is either qeth without pci enabled
841          * or HiperSockets. Make sure buffer switch from PRIMED to EMPTY
842          * is noticed and outbound_handler is called after some time.
843          */
844         if (qdio_outbound_q_done(q))
845                 del_timer_sync(&q->u.out.timer);
846         else
847                 if (!timer_pending(&q->u.out.timer) &&
848                     likely(q->irq_ptr->state == QDIO_IRQ_STATE_ACTIVE))
849                         mod_timer(&q->u.out.timer, jiffies + 10 * HZ);
850         return;
851
852 sched:
853         qdio_tasklet_schedule(q);
854 }
855
856 /* outbound tasklet */
857 void qdio_outbound_processing(unsigned long data)
858 {
859         struct qdio_q *q = (struct qdio_q *)data;
860         __qdio_outbound_processing(q);
861 }
862
863 void qdio_outbound_timer(struct timer_list *t)
864 {
865         struct qdio_q *q = from_timer(q, t, u.out.timer);
866
867         qdio_tasklet_schedule(q);
868 }
869
870 static inline void qdio_check_outbound_pci_queues(struct qdio_irq *irq)
871 {
872         struct qdio_q *out;
873         int i;
874
875         if (!pci_out_supported(irq) || !irq->scan_threshold)
876                 return;
877
878         for_each_output_queue(irq, out, i)
879                 if (!qdio_outbound_q_done(out))
880                         qdio_tasklet_schedule(out);
881 }
882
883 static void __tiqdio_inbound_processing(struct qdio_q *q)
884 {
885         unsigned int start = q->first_to_check;
886         int count;
887
888         qperf_inc(q, tasklet_inbound);
889         if (need_siga_sync(q) && need_siga_sync_after_ai(q))
890                 qdio_sync_queues(q);
891
892         /* The interrupt could be caused by a PCI request: */
893         qdio_check_outbound_pci_queues(q->irq_ptr);
894
895         count = qdio_inbound_q_moved(q, start);
896         if (count == 0)
897                 return;
898
899         start = add_buf(start, count);
900         q->first_to_check = start;
901         qdio_kick_handler(q, count);
902
903         if (!qdio_inbound_q_done(q, start)) {
904                 qperf_inc(q, tasklet_inbound_resched);
905                 if (!qdio_tasklet_schedule(q))
906                         return;
907         }
908
909         qdio_stop_polling(q);
910         /*
911          * We need to check again to not lose initiative after
912          * resetting the ACK state.
913          */
914         if (!qdio_inbound_q_done(q, start)) {
915                 qperf_inc(q, tasklet_inbound_resched2);
916                 qdio_tasklet_schedule(q);
917         }
918 }
919
920 void tiqdio_inbound_processing(unsigned long data)
921 {
922         struct qdio_q *q = (struct qdio_q *)data;
923         __tiqdio_inbound_processing(q);
924 }
925
926 static inline void qdio_set_state(struct qdio_irq *irq_ptr,
927                                   enum qdio_irq_states state)
928 {
929         DBF_DEV_EVENT(DBF_INFO, irq_ptr, "newstate: %1d", state);
930
931         irq_ptr->state = state;
932         mb();
933 }
934
935 static void qdio_irq_check_sense(struct qdio_irq *irq_ptr, struct irb *irb)
936 {
937         if (irb->esw.esw0.erw.cons) {
938                 DBF_ERROR("%4x sense:", irq_ptr->schid.sch_no);
939                 DBF_ERROR_HEX(irb, 64);
940                 DBF_ERROR_HEX(irb->ecw, 64);
941         }
942 }
943
944 /* PCI interrupt handler */
945 static void qdio_int_handler_pci(struct qdio_irq *irq_ptr)
946 {
947         int i;
948         struct qdio_q *q;
949
950         if (unlikely(irq_ptr->state != QDIO_IRQ_STATE_ACTIVE))
951                 return;
952
953         if (irq_ptr->irq_poll) {
954                 if (!test_and_set_bit(QDIO_IRQ_DISABLED, &irq_ptr->poll_state))
955                         irq_ptr->irq_poll(irq_ptr->cdev, irq_ptr->int_parm);
956                 else
957                         QDIO_PERF_STAT_INC(irq_ptr, int_discarded);
958         } else {
959                 for_each_input_queue(irq_ptr, q, i)
960                         tasklet_schedule(&q->tasklet);
961         }
962
963         if (!pci_out_supported(irq_ptr) || !irq_ptr->scan_threshold)
964                 return;
965
966         for_each_output_queue(irq_ptr, q, i) {
967                 if (qdio_outbound_q_done(q))
968                         continue;
969                 if (need_siga_sync(q) && need_siga_sync_out_after_pci(q))
970                         qdio_siga_sync_q(q);
971                 qdio_tasklet_schedule(q);
972         }
973 }
974
975 static void qdio_handle_activate_check(struct ccw_device *cdev,
976                                 unsigned long intparm, int cstat, int dstat)
977 {
978         struct qdio_irq *irq_ptr = cdev->private->qdio_data;
979         struct qdio_q *q;
980         int count;
981
982         DBF_ERROR("%4x ACT CHECK", irq_ptr->schid.sch_no);
983         DBF_ERROR("intp :%lx", intparm);
984         DBF_ERROR("ds: %2x cs:%2x", dstat, cstat);
985
986         if (irq_ptr->nr_input_qs) {
987                 q = irq_ptr->input_qs[0];
988         } else if (irq_ptr->nr_output_qs) {
989                 q = irq_ptr->output_qs[0];
990         } else {
991                 dump_stack();
992                 goto no_handler;
993         }
994
995         count = sub_buf(q->first_to_check, q->first_to_kick);
996         q->handler(q->irq_ptr->cdev, QDIO_ERROR_ACTIVATE,
997                    q->nr, q->first_to_kick, count, irq_ptr->int_parm);
998 no_handler:
999         qdio_set_state(irq_ptr, QDIO_IRQ_STATE_STOPPED);
1000         /*
1001          * In case of z/VM LGR (Live Guest Migration) QDIO recovery will happen.
1002          * Therefore we call the LGR detection function here.
1003          */
1004         lgr_info_log();
1005 }
1006
1007 static void qdio_establish_handle_irq(struct ccw_device *cdev, int cstat,
1008                                       int dstat)
1009 {
1010         struct qdio_irq *irq_ptr = cdev->private->qdio_data;
1011
1012         DBF_DEV_EVENT(DBF_INFO, irq_ptr, "qest irq");
1013
1014         if (cstat)
1015                 goto error;
1016         if (dstat & ~(DEV_STAT_DEV_END | DEV_STAT_CHN_END))
1017                 goto error;
1018         if (!(dstat & DEV_STAT_DEV_END))
1019                 goto error;
1020         qdio_set_state(irq_ptr, QDIO_IRQ_STATE_ESTABLISHED);
1021         return;
1022
1023 error:
1024         DBF_ERROR("%4x EQ:error", irq_ptr->schid.sch_no);
1025         DBF_ERROR("ds: %2x cs:%2x", dstat, cstat);
1026         qdio_set_state(irq_ptr, QDIO_IRQ_STATE_ERR);
1027 }
1028
1029 /* qdio interrupt handler */
1030 void qdio_int_handler(struct ccw_device *cdev, unsigned long intparm,
1031                       struct irb *irb)
1032 {
1033         struct qdio_irq *irq_ptr = cdev->private->qdio_data;
1034         struct subchannel_id schid;
1035         int cstat, dstat;
1036
1037         if (!intparm || !irq_ptr) {
1038                 ccw_device_get_schid(cdev, &schid);
1039                 DBF_ERROR("qint:%4x", schid.sch_no);
1040                 return;
1041         }
1042
1043         if (irq_ptr->perf_stat_enabled)
1044                 irq_ptr->perf_stat.qdio_int++;
1045
1046         if (IS_ERR(irb)) {
1047                 DBF_ERROR("%4x IO error", irq_ptr->schid.sch_no);
1048                 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_ERR);
1049                 wake_up(&cdev->private->wait_q);
1050                 return;
1051         }
1052         qdio_irq_check_sense(irq_ptr, irb);
1053         cstat = irb->scsw.cmd.cstat;
1054         dstat = irb->scsw.cmd.dstat;
1055
1056         switch (irq_ptr->state) {
1057         case QDIO_IRQ_STATE_INACTIVE:
1058                 qdio_establish_handle_irq(cdev, cstat, dstat);
1059                 break;
1060         case QDIO_IRQ_STATE_CLEANUP:
1061                 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_INACTIVE);
1062                 break;
1063         case QDIO_IRQ_STATE_ESTABLISHED:
1064         case QDIO_IRQ_STATE_ACTIVE:
1065                 if (cstat & SCHN_STAT_PCI) {
1066                         qdio_int_handler_pci(irq_ptr);
1067                         return;
1068                 }
1069                 if (cstat || dstat)
1070                         qdio_handle_activate_check(cdev, intparm, cstat,
1071                                                    dstat);
1072                 break;
1073         case QDIO_IRQ_STATE_STOPPED:
1074                 break;
1075         default:
1076                 WARN_ON_ONCE(1);
1077         }
1078         wake_up(&cdev->private->wait_q);
1079 }
1080
1081 /**
1082  * qdio_get_ssqd_desc - get qdio subchannel description
1083  * @cdev: ccw device to get description for
1084  * @data: where to store the ssqd
1085  *
1086  * Returns 0 or an error code. The results of the chsc are stored in the
1087  * specified structure.
1088  */
1089 int qdio_get_ssqd_desc(struct ccw_device *cdev,
1090                        struct qdio_ssqd_desc *data)
1091 {
1092         struct subchannel_id schid;
1093
1094         if (!cdev || !cdev->private)
1095                 return -EINVAL;
1096
1097         ccw_device_get_schid(cdev, &schid);
1098         DBF_EVENT("get ssqd:%4x", schid.sch_no);
1099         return qdio_setup_get_ssqd(NULL, &schid, data);
1100 }
1101 EXPORT_SYMBOL_GPL(qdio_get_ssqd_desc);
1102
1103 static void qdio_shutdown_queues(struct ccw_device *cdev)
1104 {
1105         struct qdio_irq *irq_ptr = cdev->private->qdio_data;
1106         struct qdio_q *q;
1107         int i;
1108
1109         for_each_input_queue(irq_ptr, q, i)
1110                 tasklet_kill(&q->tasklet);
1111
1112         for_each_output_queue(irq_ptr, q, i) {
1113                 del_timer_sync(&q->u.out.timer);
1114                 tasklet_kill(&q->tasklet);
1115         }
1116 }
1117
1118 /**
1119  * qdio_shutdown - shut down a qdio subchannel
1120  * @cdev: associated ccw device
1121  * @how: use halt or clear to shutdown
1122  */
1123 int qdio_shutdown(struct ccw_device *cdev, int how)
1124 {
1125         struct qdio_irq *irq_ptr = cdev->private->qdio_data;
1126         struct subchannel_id schid;
1127         int rc;
1128
1129         if (!irq_ptr)
1130                 return -ENODEV;
1131
1132         WARN_ON_ONCE(irqs_disabled());
1133         ccw_device_get_schid(cdev, &schid);
1134         DBF_EVENT("qshutdown:%4x", schid.sch_no);
1135
1136         mutex_lock(&irq_ptr->setup_mutex);
1137         /*
1138          * Subchannel was already shot down. We cannot prevent being called
1139          * twice since cio may trigger a shutdown asynchronously.
1140          */
1141         if (irq_ptr->state == QDIO_IRQ_STATE_INACTIVE) {
1142                 mutex_unlock(&irq_ptr->setup_mutex);
1143                 return 0;
1144         }
1145
1146         /*
1147          * Indicate that the device is going down. Scheduling the queue
1148          * tasklets is forbidden from here on.
1149          */
1150         qdio_set_state(irq_ptr, QDIO_IRQ_STATE_STOPPED);
1151
1152         tiqdio_remove_device(irq_ptr);
1153         qdio_shutdown_queues(cdev);
1154         qdio_shutdown_debug_entries(irq_ptr);
1155
1156         /* cleanup subchannel */
1157         spin_lock_irq(get_ccwdev_lock(cdev));
1158
1159         if (how & QDIO_FLAG_CLEANUP_USING_CLEAR)
1160                 rc = ccw_device_clear(cdev, QDIO_DOING_CLEANUP);
1161         else
1162                 /* default behaviour is halt */
1163                 rc = ccw_device_halt(cdev, QDIO_DOING_CLEANUP);
1164         if (rc) {
1165                 DBF_ERROR("%4x SHUTD ERR", irq_ptr->schid.sch_no);
1166                 DBF_ERROR("rc:%4d", rc);
1167                 goto no_cleanup;
1168         }
1169
1170         qdio_set_state(irq_ptr, QDIO_IRQ_STATE_CLEANUP);
1171         spin_unlock_irq(get_ccwdev_lock(cdev));
1172         wait_event_interruptible_timeout(cdev->private->wait_q,
1173                 irq_ptr->state == QDIO_IRQ_STATE_INACTIVE ||
1174                 irq_ptr->state == QDIO_IRQ_STATE_ERR,
1175                 10 * HZ);
1176         spin_lock_irq(get_ccwdev_lock(cdev));
1177
1178 no_cleanup:
1179         qdio_shutdown_thinint(irq_ptr);
1180
1181         /* restore interrupt handler */
1182         if ((void *)cdev->handler == (void *)qdio_int_handler) {
1183                 cdev->handler = irq_ptr->orig_handler;
1184                 cdev->private->intparm = 0;
1185         }
1186         spin_unlock_irq(get_ccwdev_lock(cdev));
1187
1188         qdio_set_state(irq_ptr, QDIO_IRQ_STATE_INACTIVE);
1189         mutex_unlock(&irq_ptr->setup_mutex);
1190         if (rc)
1191                 return rc;
1192         return 0;
1193 }
1194 EXPORT_SYMBOL_GPL(qdio_shutdown);
1195
1196 /**
1197  * qdio_free - free data structures for a qdio subchannel
1198  * @cdev: associated ccw device
1199  */
1200 int qdio_free(struct ccw_device *cdev)
1201 {
1202         struct qdio_irq *irq_ptr = cdev->private->qdio_data;
1203         struct subchannel_id schid;
1204
1205         if (!irq_ptr)
1206                 return -ENODEV;
1207
1208         ccw_device_get_schid(cdev, &schid);
1209         DBF_EVENT("qfree:%4x", schid.sch_no);
1210         DBF_DEV_EVENT(DBF_ERR, irq_ptr, "dbf abandoned");
1211         mutex_lock(&irq_ptr->setup_mutex);
1212
1213         irq_ptr->debug_area = NULL;
1214         cdev->private->qdio_data = NULL;
1215         mutex_unlock(&irq_ptr->setup_mutex);
1216
1217         qdio_release_memory(irq_ptr);
1218         return 0;
1219 }
1220 EXPORT_SYMBOL_GPL(qdio_free);
1221
1222 /**
1223  * qdio_allocate - allocate qdio queues and associated data
1224  * @init_data: initialization data
1225  */
1226 int qdio_allocate(struct qdio_initialize *init_data)
1227 {
1228         struct subchannel_id schid;
1229         struct qdio_irq *irq_ptr;
1230
1231         ccw_device_get_schid(init_data->cdev, &schid);
1232         DBF_EVENT("qallocate:%4x", schid.sch_no);
1233
1234         if ((init_data->no_input_qs && !init_data->input_handler) ||
1235             (init_data->no_output_qs && !init_data->output_handler))
1236                 return -EINVAL;
1237
1238         if ((init_data->no_input_qs > QDIO_MAX_QUEUES_PER_IRQ) ||
1239             (init_data->no_output_qs > QDIO_MAX_QUEUES_PER_IRQ))
1240                 return -EINVAL;
1241
1242         if ((!init_data->input_sbal_addr_array) ||
1243             (!init_data->output_sbal_addr_array))
1244                 return -EINVAL;
1245
1246         /* irq_ptr must be in GFP_DMA since it contains ccw1.cda */
1247         irq_ptr = (void *) get_zeroed_page(GFP_KERNEL | GFP_DMA);
1248         if (!irq_ptr)
1249                 goto out_err;
1250
1251         mutex_init(&irq_ptr->setup_mutex);
1252         if (qdio_allocate_dbf(init_data, irq_ptr))
1253                 goto out_rel;
1254
1255         /*
1256          * Allocate a page for the chsc calls in qdio_establish.
1257          * Must be pre-allocated since a zfcp recovery will call
1258          * qdio_establish. In case of low memory and swap on a zfcp disk
1259          * we may not be able to allocate memory otherwise.
1260          */
1261         irq_ptr->chsc_page = get_zeroed_page(GFP_KERNEL);
1262         if (!irq_ptr->chsc_page)
1263                 goto out_rel;
1264
1265         /* qdr is used in ccw1.cda which is u32 */
1266         irq_ptr->qdr = (struct qdr *) get_zeroed_page(GFP_KERNEL | GFP_DMA);
1267         if (!irq_ptr->qdr)
1268                 goto out_rel;
1269
1270         if (qdio_allocate_qs(irq_ptr, init_data->no_input_qs,
1271                              init_data->no_output_qs))
1272                 goto out_rel;
1273
1274         INIT_LIST_HEAD(&irq_ptr->entry);
1275         init_data->cdev->private->qdio_data = irq_ptr;
1276         qdio_set_state(irq_ptr, QDIO_IRQ_STATE_INACTIVE);
1277         return 0;
1278 out_rel:
1279         qdio_release_memory(irq_ptr);
1280 out_err:
1281         return -ENOMEM;
1282 }
1283 EXPORT_SYMBOL_GPL(qdio_allocate);
1284
1285 static void qdio_detect_hsicq(struct qdio_irq *irq_ptr)
1286 {
1287         struct qdio_q *q = irq_ptr->input_qs[0];
1288         int i, use_cq = 0;
1289
1290         if (irq_ptr->nr_input_qs > 1 && queue_type(q) == QDIO_IQDIO_QFMT)
1291                 use_cq = 1;
1292
1293         for_each_output_queue(irq_ptr, q, i) {
1294                 if (use_cq) {
1295                         if (multicast_outbound(q))
1296                                 continue;
1297                         if (qdio_enable_async_operation(&q->u.out) < 0) {
1298                                 use_cq = 0;
1299                                 continue;
1300                         }
1301                 } else
1302                         qdio_disable_async_operation(&q->u.out);
1303         }
1304         DBF_EVENT("use_cq:%d", use_cq);
1305 }
1306
1307 /**
1308  * qdio_establish - establish queues on a qdio subchannel
1309  * @init_data: initialization data
1310  */
1311 int qdio_establish(struct qdio_initialize *init_data)
1312 {
1313         struct ccw_device *cdev = init_data->cdev;
1314         struct subchannel_id schid;
1315         struct qdio_irq *irq_ptr;
1316         int rc;
1317
1318         ccw_device_get_schid(cdev, &schid);
1319         DBF_EVENT("qestablish:%4x", schid.sch_no);
1320
1321         irq_ptr = cdev->private->qdio_data;
1322         if (!irq_ptr)
1323                 return -ENODEV;
1324
1325         mutex_lock(&irq_ptr->setup_mutex);
1326         qdio_setup_irq(init_data);
1327
1328         rc = qdio_establish_thinint(irq_ptr);
1329         if (rc) {
1330                 mutex_unlock(&irq_ptr->setup_mutex);
1331                 qdio_shutdown(cdev, QDIO_FLAG_CLEANUP_USING_CLEAR);
1332                 return rc;
1333         }
1334
1335         /* establish q */
1336         irq_ptr->ccw.cmd_code = irq_ptr->equeue.cmd;
1337         irq_ptr->ccw.flags = CCW_FLAG_SLI;
1338         irq_ptr->ccw.count = irq_ptr->equeue.count;
1339         irq_ptr->ccw.cda = (u32)((addr_t)irq_ptr->qdr);
1340
1341         spin_lock_irq(get_ccwdev_lock(cdev));
1342         ccw_device_set_options_mask(cdev, 0);
1343
1344         rc = ccw_device_start(cdev, &irq_ptr->ccw, QDIO_DOING_ESTABLISH, 0, 0);
1345         spin_unlock_irq(get_ccwdev_lock(cdev));
1346         if (rc) {
1347                 DBF_ERROR("%4x est IO ERR", irq_ptr->schid.sch_no);
1348                 DBF_ERROR("rc:%4x", rc);
1349                 mutex_unlock(&irq_ptr->setup_mutex);
1350                 qdio_shutdown(cdev, QDIO_FLAG_CLEANUP_USING_CLEAR);
1351                 return rc;
1352         }
1353
1354         wait_event_interruptible_timeout(cdev->private->wait_q,
1355                 irq_ptr->state == QDIO_IRQ_STATE_ESTABLISHED ||
1356                 irq_ptr->state == QDIO_IRQ_STATE_ERR, HZ);
1357
1358         if (irq_ptr->state != QDIO_IRQ_STATE_ESTABLISHED) {
1359                 mutex_unlock(&irq_ptr->setup_mutex);
1360                 qdio_shutdown(cdev, QDIO_FLAG_CLEANUP_USING_CLEAR);
1361                 return -EIO;
1362         }
1363
1364         qdio_setup_ssqd_info(irq_ptr);
1365
1366         qdio_detect_hsicq(irq_ptr);
1367
1368         /* qebsm is now setup if available, initialize buffer states */
1369         qdio_init_buf_states(irq_ptr);
1370
1371         mutex_unlock(&irq_ptr->setup_mutex);
1372         qdio_print_subchannel_info(irq_ptr, cdev);
1373         qdio_setup_debug_entries(irq_ptr, cdev);
1374         return 0;
1375 }
1376 EXPORT_SYMBOL_GPL(qdio_establish);
1377
1378 /**
1379  * qdio_activate - activate queues on a qdio subchannel
1380  * @cdev: associated cdev
1381  */
1382 int qdio_activate(struct ccw_device *cdev)
1383 {
1384         struct subchannel_id schid;
1385         struct qdio_irq *irq_ptr;
1386         int rc;
1387
1388         ccw_device_get_schid(cdev, &schid);
1389         DBF_EVENT("qactivate:%4x", schid.sch_no);
1390
1391         irq_ptr = cdev->private->qdio_data;
1392         if (!irq_ptr)
1393                 return -ENODEV;
1394
1395         mutex_lock(&irq_ptr->setup_mutex);
1396         if (irq_ptr->state == QDIO_IRQ_STATE_INACTIVE) {
1397                 rc = -EBUSY;
1398                 goto out;
1399         }
1400
1401         irq_ptr->ccw.cmd_code = irq_ptr->aqueue.cmd;
1402         irq_ptr->ccw.flags = CCW_FLAG_SLI;
1403         irq_ptr->ccw.count = irq_ptr->aqueue.count;
1404         irq_ptr->ccw.cda = 0;
1405
1406         spin_lock_irq(get_ccwdev_lock(cdev));
1407         ccw_device_set_options(cdev, CCWDEV_REPORT_ALL);
1408
1409         rc = ccw_device_start(cdev, &irq_ptr->ccw, QDIO_DOING_ACTIVATE,
1410                               0, DOIO_DENY_PREFETCH);
1411         spin_unlock_irq(get_ccwdev_lock(cdev));
1412         if (rc) {
1413                 DBF_ERROR("%4x act IO ERR", irq_ptr->schid.sch_no);
1414                 DBF_ERROR("rc:%4x", rc);
1415                 goto out;
1416         }
1417
1418         if (is_thinint_irq(irq_ptr))
1419                 tiqdio_add_device(irq_ptr);
1420
1421         /* wait for subchannel to become active */
1422         msleep(5);
1423
1424         switch (irq_ptr->state) {
1425         case QDIO_IRQ_STATE_STOPPED:
1426         case QDIO_IRQ_STATE_ERR:
1427                 rc = -EIO;
1428                 break;
1429         default:
1430                 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_ACTIVE);
1431                 rc = 0;
1432         }
1433 out:
1434         mutex_unlock(&irq_ptr->setup_mutex);
1435         return rc;
1436 }
1437 EXPORT_SYMBOL_GPL(qdio_activate);
1438
1439 static inline int buf_in_between(int bufnr, int start, int count)
1440 {
1441         int end = add_buf(start, count);
1442
1443         if (end > start) {
1444                 if (bufnr >= start && bufnr < end)
1445                         return 1;
1446                 else
1447                         return 0;
1448         }
1449
1450         /* wrap-around case */
1451         if ((bufnr >= start && bufnr <= QDIO_MAX_BUFFERS_PER_Q) ||
1452             (bufnr < end))
1453                 return 1;
1454         else
1455                 return 0;
1456 }
1457
1458 /**
1459  * handle_inbound - reset processed input buffers
1460  * @q: queue containing the buffers
1461  * @callflags: flags
1462  * @bufnr: first buffer to process
1463  * @count: how many buffers are emptied
1464  */
1465 static int handle_inbound(struct qdio_q *q, unsigned int callflags,
1466                           int bufnr, int count)
1467 {
1468         int diff;
1469
1470         qperf_inc(q, inbound_call);
1471
1472         if (!q->u.in.ack_count)
1473                 goto set;
1474
1475         /* protect against stop polling setting an ACK for an emptied slsb */
1476         if (count == QDIO_MAX_BUFFERS_PER_Q) {
1477                 /* overwriting everything, just delete polling status */
1478                 q->u.in.ack_count = 0;
1479                 goto set;
1480         } else if (buf_in_between(q->u.in.ack_start, bufnr, count)) {
1481                 if (is_qebsm(q)) {
1482                         /* partial overwrite, just update ack_start */
1483                         diff = add_buf(bufnr, count);
1484                         diff = sub_buf(diff, q->u.in.ack_start);
1485                         q->u.in.ack_count -= diff;
1486                         if (q->u.in.ack_count <= 0) {
1487                                 q->u.in.ack_count = 0;
1488                                 goto set;
1489                         }
1490                         q->u.in.ack_start = add_buf(q->u.in.ack_start, diff);
1491                 } else {
1492                         /* the only ACK will be deleted */
1493                         q->u.in.ack_count = 0;
1494                 }
1495         }
1496
1497 set:
1498         count = set_buf_states(q, bufnr, SLSB_CU_INPUT_EMPTY, count);
1499         atomic_add(count, &q->nr_buf_used);
1500
1501         if (need_siga_in(q))
1502                 return qdio_siga_input(q);
1503
1504         return 0;
1505 }
1506
1507 /**
1508  * handle_outbound - process filled outbound buffers
1509  * @q: queue containing the buffers
1510  * @callflags: flags
1511  * @bufnr: first buffer to process
1512  * @count: how many buffers are filled
1513  */
1514 static int handle_outbound(struct qdio_q *q, unsigned int callflags,
1515                            unsigned int bufnr, unsigned int count)
1516 {
1517         const unsigned int scan_threshold = q->irq_ptr->scan_threshold;
1518         unsigned char state = 0;
1519         int used, rc = 0;
1520
1521         qperf_inc(q, outbound_call);
1522
1523         count = set_buf_states(q, bufnr, SLSB_CU_OUTPUT_PRIMED, count);
1524         used = atomic_add_return(count, &q->nr_buf_used);
1525
1526         if (used == QDIO_MAX_BUFFERS_PER_Q)
1527                 qperf_inc(q, outbound_queue_full);
1528
1529         if (callflags & QDIO_FLAG_PCI_OUT) {
1530                 q->u.out.pci_out_enabled = 1;
1531                 qperf_inc(q, pci_request_int);
1532         } else
1533                 q->u.out.pci_out_enabled = 0;
1534
1535         if (queue_type(q) == QDIO_IQDIO_QFMT) {
1536                 unsigned long phys_aob = 0;
1537
1538                 if (q->u.out.use_cq && count == 1)
1539                         phys_aob = qdio_aob_for_buffer(&q->u.out, bufnr);
1540
1541                 rc = qdio_kick_outbound_q(q, count, phys_aob);
1542         } else if (need_siga_sync(q)) {
1543                 rc = qdio_siga_sync_q(q);
1544         } else if (count < QDIO_MAX_BUFFERS_PER_Q &&
1545                    get_buf_state(q, prev_buf(bufnr), &state, 0) > 0 &&
1546                    state == SLSB_CU_OUTPUT_PRIMED) {
1547                 /* The previous buffer is not processed yet, tack on. */
1548                 qperf_inc(q, fast_requeue);
1549         } else {
1550                 rc = qdio_kick_outbound_q(q, count, 0);
1551         }
1552
1553         /* Let drivers implement their own completion scanning: */
1554         if (!scan_threshold)
1555                 return rc;
1556
1557         /* in case of SIGA errors we must process the error immediately */
1558         if (used >= scan_threshold || rc)
1559                 qdio_tasklet_schedule(q);
1560         else
1561                 /* free the SBALs in case of no further traffic */
1562                 if (!timer_pending(&q->u.out.timer) &&
1563                     likely(q->irq_ptr->state == QDIO_IRQ_STATE_ACTIVE))
1564                         mod_timer(&q->u.out.timer, jiffies + HZ);
1565         return rc;
1566 }
1567
1568 /**
1569  * do_QDIO - process input or output buffers
1570  * @cdev: associated ccw_device for the qdio subchannel
1571  * @callflags: input or output and special flags from the program
1572  * @q_nr: queue number
1573  * @bufnr: buffer number
1574  * @count: how many buffers to process
1575  */
1576 int do_QDIO(struct ccw_device *cdev, unsigned int callflags,
1577             int q_nr, unsigned int bufnr, unsigned int count)
1578 {
1579         struct qdio_irq *irq_ptr;
1580
1581         if (bufnr >= QDIO_MAX_BUFFERS_PER_Q || count > QDIO_MAX_BUFFERS_PER_Q)
1582                 return -EINVAL;
1583
1584         irq_ptr = cdev->private->qdio_data;
1585         if (!irq_ptr)
1586                 return -ENODEV;
1587
1588         DBF_DEV_EVENT(DBF_INFO, irq_ptr,
1589                       "do%02x b:%02x c:%02x", callflags, bufnr, count);
1590
1591         if (irq_ptr->state != QDIO_IRQ_STATE_ACTIVE)
1592                 return -EIO;
1593         if (!count)
1594                 return 0;
1595         if (callflags & QDIO_FLAG_SYNC_INPUT)
1596                 return handle_inbound(irq_ptr->input_qs[q_nr],
1597                                       callflags, bufnr, count);
1598         else if (callflags & QDIO_FLAG_SYNC_OUTPUT)
1599                 return handle_outbound(irq_ptr->output_qs[q_nr],
1600                                        callflags, bufnr, count);
1601         return -EINVAL;
1602 }
1603 EXPORT_SYMBOL_GPL(do_QDIO);
1604
1605 /**
1606  * qdio_start_irq - process input buffers
1607  * @cdev: associated ccw_device for the qdio subchannel
1608  *
1609  * Return codes
1610  *   0 - success
1611  *   1 - irqs not started since new data is available
1612  */
1613 int qdio_start_irq(struct ccw_device *cdev)
1614 {
1615         struct qdio_q *q;
1616         struct qdio_irq *irq_ptr = cdev->private->qdio_data;
1617         unsigned int i;
1618
1619         if (!irq_ptr)
1620                 return -ENODEV;
1621
1622         clear_nonshared_ind(irq_ptr);
1623
1624         for_each_input_queue(irq_ptr, q, i)
1625                 qdio_stop_polling(q);
1626
1627         clear_bit(QDIO_IRQ_DISABLED, &irq_ptr->poll_state);
1628
1629         /*
1630          * We need to check again to not lose initiative after
1631          * resetting the ACK state.
1632          */
1633         if (test_nonshared_ind(irq_ptr))
1634                 goto rescan;
1635
1636         for_each_input_queue(irq_ptr, q, i) {
1637                 if (!qdio_inbound_q_done(q, q->first_to_check))
1638                         goto rescan;
1639         }
1640
1641         return 0;
1642
1643 rescan:
1644         if (test_and_set_bit(QDIO_IRQ_DISABLED, &irq_ptr->poll_state))
1645                 return 0;
1646         else
1647                 return 1;
1648
1649 }
1650 EXPORT_SYMBOL(qdio_start_irq);
1651
1652 static int __qdio_inspect_queue(struct qdio_q *q, unsigned int *bufnr,
1653                                 unsigned int *error)
1654 {
1655         unsigned int start = q->first_to_check;
1656         int count;
1657
1658         count = q->is_input_q ? qdio_inbound_q_moved(q, start) :
1659                                 qdio_outbound_q_moved(q, start);
1660         if (count == 0)
1661                 return 0;
1662
1663         *bufnr = start;
1664         *error = q->qdio_error;
1665
1666         /* for the next time */
1667         q->first_to_check = add_buf(start, count);
1668         q->qdio_error = 0;
1669
1670         return count;
1671 }
1672
1673 int qdio_inspect_queue(struct ccw_device *cdev, unsigned int nr, bool is_input,
1674                        unsigned int *bufnr, unsigned int *error)
1675 {
1676         struct qdio_irq *irq_ptr = cdev->private->qdio_data;
1677         struct qdio_q *q;
1678
1679         if (!irq_ptr)
1680                 return -ENODEV;
1681         q = is_input ? irq_ptr->input_qs[nr] : irq_ptr->output_qs[nr];
1682
1683         if (need_siga_sync(q))
1684                 qdio_siga_sync_q(q);
1685
1686         return __qdio_inspect_queue(q, bufnr, error);
1687 }
1688 EXPORT_SYMBOL_GPL(qdio_inspect_queue);
1689
1690 /**
1691  * qdio_get_next_buffers - process input buffers
1692  * @cdev: associated ccw_device for the qdio subchannel
1693  * @nr: input queue number
1694  * @bufnr: first filled buffer number
1695  * @error: buffers are in error state
1696  *
1697  * Return codes
1698  *   < 0 - error
1699  *   = 0 - no new buffers found
1700  *   > 0 - number of processed buffers
1701  */
1702 int qdio_get_next_buffers(struct ccw_device *cdev, int nr, int *bufnr,
1703                           int *error)
1704 {
1705         struct qdio_q *q;
1706         struct qdio_irq *irq_ptr = cdev->private->qdio_data;
1707
1708         if (!irq_ptr)
1709                 return -ENODEV;
1710         q = irq_ptr->input_qs[nr];
1711
1712         /*
1713          * Cannot rely on automatic sync after interrupt since queues may
1714          * also be examined without interrupt.
1715          */
1716         if (need_siga_sync(q))
1717                 qdio_sync_queues(q);
1718
1719         qdio_check_outbound_pci_queues(irq_ptr);
1720
1721         /* Note: upper-layer MUST stop processing immediately here ... */
1722         if (unlikely(q->irq_ptr->state != QDIO_IRQ_STATE_ACTIVE))
1723                 return -EIO;
1724
1725         return __qdio_inspect_queue(q, bufnr, error);
1726 }
1727 EXPORT_SYMBOL(qdio_get_next_buffers);
1728
1729 /**
1730  * qdio_stop_irq - disable interrupt processing for the device
1731  * @cdev: associated ccw_device for the qdio subchannel
1732  *
1733  * Return codes
1734  *   0 - interrupts were already disabled
1735  *   1 - interrupts successfully disabled
1736  */
1737 int qdio_stop_irq(struct ccw_device *cdev)
1738 {
1739         struct qdio_irq *irq_ptr = cdev->private->qdio_data;
1740
1741         if (!irq_ptr)
1742                 return -ENODEV;
1743
1744         if (test_and_set_bit(QDIO_IRQ_DISABLED, &irq_ptr->poll_state))
1745                 return 0;
1746         else
1747                 return 1;
1748 }
1749 EXPORT_SYMBOL(qdio_stop_irq);
1750
1751 /**
1752  * qdio_pnso_brinfo() - perform network subchannel op #0 - bridge info.
1753  * @schid:              Subchannel ID.
1754  * @cnc:                Boolean Change-Notification Control
1755  * @response:           Response code will be stored at this address
1756  * @cb:                 Callback function will be executed for each element
1757  *                      of the address list
1758  * @priv:               Pointer to pass to the callback function.
1759  *
1760  * Performs "Store-network-bridging-information list" operation and calls
1761  * the callback function for every entry in the list. If "change-
1762  * notification-control" is set, further changes in the address list
1763  * will be reported via the IPA command.
1764  */
1765 int qdio_pnso_brinfo(struct subchannel_id schid,
1766                 int cnc, u16 *response,
1767                 void (*cb)(void *priv, enum qdio_brinfo_entry_type type,
1768                                 void *entry),
1769                 void *priv)
1770 {
1771         struct chsc_pnso_area *rr;
1772         int rc;
1773         u32 prev_instance = 0;
1774         int isfirstblock = 1;
1775         int i, size, elems;
1776
1777         rr = (struct chsc_pnso_area *)get_zeroed_page(GFP_KERNEL);
1778         if (rr == NULL)
1779                 return -ENOMEM;
1780         do {
1781                 /* on the first iteration, naihdr.resume_token will be zero */
1782                 rc = chsc_pnso_brinfo(schid, rr, rr->naihdr.resume_token, cnc);
1783                 if (rc != 0 && rc != -EBUSY)
1784                         goto out;
1785                 if (rr->response.code != 1) {
1786                         rc = -EIO;
1787                         continue;
1788                 } else
1789                         rc = 0;
1790
1791                 if (cb == NULL)
1792                         continue;
1793
1794                 size = rr->naihdr.naids;
1795                 elems = (rr->response.length -
1796                                 sizeof(struct chsc_header) -
1797                                 sizeof(struct chsc_brinfo_naihdr)) /
1798                                 size;
1799
1800                 if (!isfirstblock && (rr->naihdr.instance != prev_instance)) {
1801                         /* Inform the caller that they need to scrap */
1802                         /* the data that was already reported via cb */
1803                                 rc = -EAGAIN;
1804                                 break;
1805                 }
1806                 isfirstblock = 0;
1807                 prev_instance = rr->naihdr.instance;
1808                 for (i = 0; i < elems; i++)
1809                         switch (size) {
1810                         case sizeof(struct qdio_brinfo_entry_l3_ipv6):
1811                                 (*cb)(priv, l3_ipv6_addr,
1812                                                 &rr->entries.l3_ipv6[i]);
1813                                 break;
1814                         case sizeof(struct qdio_brinfo_entry_l3_ipv4):
1815                                 (*cb)(priv, l3_ipv4_addr,
1816                                                 &rr->entries.l3_ipv4[i]);
1817                                 break;
1818                         case sizeof(struct qdio_brinfo_entry_l2):
1819                                 (*cb)(priv, l2_addr_lnid,
1820                                                 &rr->entries.l2[i]);
1821                                 break;
1822                         default:
1823                                 WARN_ON_ONCE(1);
1824                                 rc = -EIO;
1825                                 goto out;
1826                         }
1827         } while (rr->response.code == 0x0107 ||  /* channel busy */
1828                   (rr->response.code == 1 && /* list stored */
1829                    /* resume token is non-zero => list incomplete */
1830                    (rr->naihdr.resume_token.t1 || rr->naihdr.resume_token.t2)));
1831         (*response) = rr->response.code;
1832
1833 out:
1834         free_page((unsigned long)rr);
1835         return rc;
1836 }
1837 EXPORT_SYMBOL_GPL(qdio_pnso_brinfo);
1838
1839 static int __init init_QDIO(void)
1840 {
1841         int rc;
1842
1843         rc = qdio_debug_init();
1844         if (rc)
1845                 return rc;
1846         rc = qdio_setup_init();
1847         if (rc)
1848                 goto out_debug;
1849         rc = tiqdio_allocate_memory();
1850         if (rc)
1851                 goto out_cache;
1852         rc = tiqdio_register_thinints();
1853         if (rc)
1854                 goto out_ti;
1855         return 0;
1856
1857 out_ti:
1858         tiqdio_free_memory();
1859 out_cache:
1860         qdio_setup_exit();
1861 out_debug:
1862         qdio_debug_exit();
1863         return rc;
1864 }
1865
1866 static void __exit exit_QDIO(void)
1867 {
1868         tiqdio_unregister_thinints();
1869         tiqdio_free_memory();
1870         qdio_setup_exit();
1871         qdio_debug_exit();
1872 }
1873
1874 module_init(init_QDIO);
1875 module_exit(exit_QDIO);