blob: 7b7620de2acdfd83b63d1d885c3037a42b278ab1 [file] [log] [blame]
Greg Kroah-Hartman724117b2017-11-14 18:38:02 +01001// SPDX-License-Identifier: GPL-2.0
Jan Glauber779e6e12008-07-17 17:16:48 +02002/*
Jan Glauber779e6e12008-07-17 17:16:48 +02003 * Linux for s390 qdio support, buffer handling, qdio API and module support.
4 *
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02005 * Copyright IBM Corp. 2000, 2008
Jan Glauber779e6e12008-07-17 17:16:48 +02006 * 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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/gfp.h>
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +000016#include <linux/io.h>
Arun Sharma600634972011-07-26 16:09:06 -070017#include <linux/atomic.h>
Jan Glauber779e6e12008-07-17 17:16:48 +020018#include <asm/debug.h>
19#include <asm/qdio.h>
Michael Holzheu3ab121a2012-03-11 11:59:32 -040020#include <asm/ipl.h>
Jan Glauber779e6e12008-07-17 17:16:48 +020021
22#include "cio.h"
23#include "css.h"
24#include "device.h"
25#include "qdio.h"
26#include "qdio_debug.h"
Jan Glauber779e6e12008-07-17 17:16:48 +020027
28MODULE_AUTHOR("Utz Bacher <utz.bacher@de.ibm.com>,"\
29 "Jan Glauber <jang@linux.vnet.ibm.com>");
30MODULE_DESCRIPTION("QDIO base support");
31MODULE_LICENSE("GPL");
32
Jan Glauber958c0ba2011-01-05 12:47:52 +010033static inline int do_siga_sync(unsigned long schid,
34 unsigned int out_mask, unsigned int in_mask,
35 unsigned int fc)
Jan Glauber779e6e12008-07-17 17:16:48 +020036{
Jan Glauber958c0ba2011-01-05 12:47:52 +010037 register unsigned long __fc asm ("0") = fc;
38 register unsigned long __schid asm ("1") = schid;
Jan Glauber779e6e12008-07-17 17:16:48 +020039 register unsigned long out asm ("2") = out_mask;
40 register unsigned long in asm ("3") = in_mask;
41 int cc;
42
43 asm volatile(
44 " siga 0\n"
45 " ipm %0\n"
46 " srl %0,28\n"
47 : "=d" (cc)
48 : "d" (__fc), "d" (__schid), "d" (out), "d" (in) : "cc");
49 return cc;
50}
51
Jan Glauber958c0ba2011-01-05 12:47:52 +010052static inline int do_siga_input(unsigned long schid, unsigned int mask,
53 unsigned int fc)
Jan Glauber779e6e12008-07-17 17:16:48 +020054{
Jan Glauber958c0ba2011-01-05 12:47:52 +010055 register unsigned long __fc asm ("0") = fc;
56 register unsigned long __schid asm ("1") = schid;
Jan Glauber779e6e12008-07-17 17:16:48 +020057 register unsigned long __mask asm ("2") = mask;
58 int cc;
59
60 asm volatile(
61 " siga 0\n"
62 " ipm %0\n"
63 " srl %0,28\n"
64 : "=d" (cc)
Jan Glauber1549d132012-05-09 16:27:34 +020065 : "d" (__fc), "d" (__schid), "d" (__mask) : "cc");
Jan Glauber779e6e12008-07-17 17:16:48 +020066 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
Sebastian Ott364e3f92018-01-29 12:55:29 +010075 * @aob: asynchronous operation block
Jan Glauber779e6e12008-07-17 17:16:48 +020076 *
Jan Glauber1549d132012-05-09 16:27:34 +020077 * Returns condition code.
Jan Glauber779e6e12008-07-17 17:16:48 +020078 * Note: For IQDC unicast queues only the highest priority queue is processed.
79 */
80static inline int do_siga_output(unsigned long schid, unsigned long mask,
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +000081 unsigned int *bb, unsigned int fc,
82 unsigned long aob)
Jan Glauber779e6e12008-07-17 17:16:48 +020083{
84 register unsigned long __fc asm("0") = fc;
85 register unsigned long __schid asm("1") = schid;
86 register unsigned long __mask asm("2") = mask;
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +000087 register unsigned long __aob asm("3") = aob;
Jan Glauber1549d132012-05-09 16:27:34 +020088 int cc;
Jan Glauber779e6e12008-07-17 17:16:48 +020089
90 asm volatile(
91 " siga 0\n"
Jan Glauber1549d132012-05-09 16:27:34 +020092 " ipm %0\n"
Jan Glauber779e6e12008-07-17 17:16:48 +020093 " srl %0,28\n"
Jan Glauber1549d132012-05-09 16:27:34 +020094 : "=d" (cc), "+d" (__fc), "+d" (__aob)
95 : "d" (__schid), "d" (__mask)
96 : "cc");
97 *bb = __fc >> 31;
Jan Glauber779e6e12008-07-17 17:16:48 +020098 return cc;
99}
100
Jan Glauber779e6e12008-07-17 17:16:48 +0200101/**
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
Jan Glauber50f769d2008-12-25 13:38:47 +0100107 * @auto_ack: automatically acknowledge buffers
Jan Glauber779e6e12008-07-17 17:16:48 +0200108 *
Coly Li73ac36e2009-01-07 18:09:16 -0800109 * Returns the number of successfully extracted equal buffer states.
Jan Glauber779e6e12008-07-17 17:16:48 +0200110 * Stops processing if a state is different from the last buffers state.
111 */
112static int qdio_do_eqbs(struct qdio_q *q, unsigned char *state,
Jan Glauber50f769d2008-12-25 13:38:47 +0100113 int start, int count, int auto_ack)
Jan Glauber779e6e12008-07-17 17:16:48 +0200114{
Julian Wiedmann88bf3192018-03-06 17:58:49 +0100115 int tmp_count = count, tmp_start = start, nr = q->nr;
Jan Glauber779e6e12008-07-17 17:16:48 +0200116 unsigned int ccq = 0;
Jan Glauber779e6e12008-07-17 17:16:48 +0200117
Jan Glauber6486cda2010-01-04 09:05:42 +0100118 qperf_inc(q, eqbs);
Jan Glauber779e6e12008-07-17 17:16:48 +0200119
120 if (!q->is_input_q)
121 nr += q->irq_ptr->nr_input_qs;
122again:
Jan Glauber50f769d2008-12-25 13:38:47 +0100123 ccq = do_eqbs(q->irq_ptr->sch_token, state, nr, &tmp_start, &tmp_count,
124 auto_ack);
Julian Wiedmann88bf3192018-03-06 17:58:49 +0100125
126 switch (ccq) {
127 case 0:
128 case 32:
129 /* all done, or next buffer state different */
Jan Glauber25f269f2011-10-30 15:17:06 +0100130 return count - tmp_count;
Julian Wiedmann88bf3192018-03-06 17:58:49 +0100131 case 96:
132 /* not all buffers processed */
Jan Glauber25f269f2011-10-30 15:17:06 +0100133 qperf_inc(q, eqbs_partial);
134 DBF_DEV_EVENT(DBF_WARN, q->irq_ptr, "EQBS part:%02x",
135 tmp_count);
Julian Wiedmanndae55b62018-03-05 09:39:38 +0100136 return count - tmp_count;
Julian Wiedmann88bf3192018-03-06 17:58:49 +0100137 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;
Jan Glauber779e6e12008-07-17 17:16:48 +0200148 }
Jan Glauber779e6e12008-07-17 17:16:48 +0200149}
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 */
162static 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;
Jan Glauber779e6e12008-07-17 17:16:48 +0200168
Jan Glauber50f769d2008-12-25 13:38:47 +0100169 if (!count)
170 return 0;
Jan Glauber6486cda2010-01-04 09:05:42 +0100171 qperf_inc(q, sqbs);
Jan Glauber779e6e12008-07-17 17:16:48 +0200172
173 if (!q->is_input_q)
174 nr += q->irq_ptr->nr_input_qs;
175again:
176 ccq = do_sqbs(q->irq_ptr->sch_token, state, nr, &tmp_start, &tmp_count);
Julian Wiedmann88bf3192018-03-06 17:58:49 +0100177
178 switch (ccq) {
179 case 0:
180 case 32:
181 /* all done, or active buffer adapter-owned */
Jan Glauberce1d8012012-10-24 12:38:35 +0200182 WARN_ON_ONCE(tmp_count);
Jan Glauber25f269f2011-10-30 15:17:06 +0100183 return count - tmp_count;
Julian Wiedmann88bf3192018-03-06 17:58:49 +0100184 case 96:
185 /* not all buffers processed */
Jan Glauber22f99342008-12-25 13:38:46 +0100186 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "SQBS again:%2d", ccq);
Jan Glauber6486cda2010-01-04 09:05:42 +0100187 qperf_inc(q, sqbs_partial);
Jan Glauber779e6e12008-07-17 17:16:48 +0200188 goto again;
Julian Wiedmann88bf3192018-03-06 17:58:49 +0100189 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;
Jan Glauber779e6e12008-07-17 17:16:48 +0200196 }
Jan Glauber779e6e12008-07-17 17:16:48 +0200197}
198
Julian Wiedmann0cf1e052018-03-07 14:01:01 +0100199/*
200 * Returns number of examined buffers and their common state in *state.
201 * Requested number of buffers-to-examine must be > 0.
202 */
Jan Glauber779e6e12008-07-17 17:16:48 +0200203static inline int get_buf_states(struct qdio_q *q, unsigned int bufnr,
Jan Glauber50f769d2008-12-25 13:38:47 +0100204 unsigned char *state, unsigned int count,
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +0000205 int auto_ack, int merge_pending)
Jan Glauber779e6e12008-07-17 17:16:48 +0200206{
207 unsigned char __state = 0;
Julian Wiedmanna698e132019-04-26 09:37:41 +0200208 int i = 1;
Jan Glauber779e6e12008-07-17 17:16:48 +0200209
Jan Glauber779e6e12008-07-17 17:16:48 +0200210 if (is_qebsm(q))
Jan Glauber50f769d2008-12-25 13:38:47 +0100211 return qdio_do_eqbs(q, state, bufnr, count, auto_ack);
Jan Glauber779e6e12008-07-17 17:16:48 +0200212
Julian Wiedmann0cf1e052018-03-07 14:01:01 +0100213 /* get initial state: */
214 __state = q->slsb.val[bufnr];
Julian Wiedmanna698e132019-04-26 09:37:41 +0200215
216 /* Bail out early if there is no work on the queue: */
217 if (__state & SLSB_OWNER_CU)
218 goto out;
219
Julian Wiedmann0cf1e052018-03-07 14:01:01 +0100220 if (merge_pending && __state == SLSB_P_OUTPUT_PENDING)
221 __state = SLSB_P_OUTPUT_EMPTY;
222
Julian Wiedmanna698e132019-04-26 09:37:41 +0200223 for (; i < count; i++) {
Jan Glauber779e6e12008-07-17 17:16:48 +0200224 bufnr = next_buf(bufnr);
Julian Wiedmann0cf1e052018-03-07 14:01:01 +0100225
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;
Jan Glauber779e6e12008-07-17 17:16:48 +0200235 }
Julian Wiedmanna698e132019-04-26 09:37:41 +0200236
237out:
Jan Glauber779e6e12008-07-17 17:16:48 +0200238 *state = __state;
239 return i;
240}
241
Jan Glauber60b5df22009-06-22 12:08:10 +0200242static inline int get_buf_state(struct qdio_q *q, unsigned int bufnr,
243 unsigned char *state, int auto_ack)
Jan Glauber779e6e12008-07-17 17:16:48 +0200244{
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +0000245 return get_buf_states(q, bufnr, state, 1, auto_ack, 0);
Jan Glauber779e6e12008-07-17 17:16:48 +0200246}
247
248/* wrap-around safe setting of slsb states, returns number of changed buffers */
249static inline int set_buf_states(struct qdio_q *q, int bufnr,
250 unsigned char state, int count)
251{
252 int i;
253
Jan Glauber779e6e12008-07-17 17:16:48 +0200254 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
264static 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 */
Martin Schwidefskyc4736d92011-10-30 15:17:11 +0100271static void qdio_init_buf_states(struct qdio_irq *irq_ptr)
Jan Glauber779e6e12008-07-17 17:16:48 +0200272{
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
Jan Glauber60b5df22009-06-22 12:08:10 +0200284static inline int qdio_siga_sync(struct qdio_q *q, unsigned int output,
Jan Glauber779e6e12008-07-17 17:16:48 +0200285 unsigned int input)
286{
Jan Glauber958c0ba2011-01-05 12:47:52 +0100287 unsigned long schid = *((u32 *) &q->irq_ptr->schid);
288 unsigned int fc = QDIO_SIGA_SYNC;
Jan Glauber779e6e12008-07-17 17:16:48 +0200289 int cc;
290
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100291 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "siga-s:%1d", q->nr);
Jan Glauber6486cda2010-01-04 09:05:42 +0100292 qperf_inc(q, siga_sync);
Jan Glauber779e6e12008-07-17 17:16:48 +0200293
Jan Glauber958c0ba2011-01-05 12:47:52 +0100294 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);
Jan Glauber110da312011-01-05 12:47:53 +0100300 if (unlikely(cc))
Jan Glauber22f99342008-12-25 13:38:46 +0100301 DBF_ERROR("%4x SIGA-S:%2d", SCH_NO(q), cc);
Jan Glauber1549d132012-05-09 16:27:34 +0200302 return (cc) ? -EIO : 0;
Jan Glauber779e6e12008-07-17 17:16:48 +0200303}
304
Jan Glauber60b5df22009-06-22 12:08:10 +0200305static inline int qdio_siga_sync_q(struct qdio_q *q)
Jan Glauber779e6e12008-07-17 17:16:48 +0200306{
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
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +0000313static int qdio_siga_output(struct qdio_q *q, unsigned int *busy_bit,
314 unsigned long aob)
Jan Glauber779e6e12008-07-17 17:16:48 +0200315{
Jan Glauber958c0ba2011-01-05 12:47:52 +0100316 unsigned long schid = *((u32 *) &q->irq_ptr->schid);
317 unsigned int fc = QDIO_SIGA_WRITE;
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100318 u64 start_time = 0;
Jan Glauberbe8d97a2011-08-03 16:44:17 +0200319 int retries = 0, cc;
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +0000320 unsigned long laob = 0;
321
Eugene Crosserec6674c2015-10-06 15:12:29 +0200322 WARN_ON_ONCE(aob && ((queue_type(q) != QDIO_IQDIO_QFMT) ||
323 !q->u.out.use_cq));
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +0000324 if (q->u.out.use_cq && aob != 0) {
325 fc = QDIO_SIGA_WRITEQ;
326 laob = aob;
327 }
Jan Glauber779e6e12008-07-17 17:16:48 +0200328
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100329 if (is_qebsm(q)) {
Jan Glauber779e6e12008-07-17 17:16:48 +0200330 schid = q->irq_ptr->sch_token;
Jan Glauber958c0ba2011-01-05 12:47:52 +0100331 fc |= QDIO_SIGA_QEBSM_FLAG;
Jan Glauber779e6e12008-07-17 17:16:48 +0200332 }
Jan Glauber779e6e12008-07-17 17:16:48 +0200333again:
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +0000334 cc = do_siga_output(schid, q->mask, busy_bit, fc, laob);
Jan Glauber58eb27c2008-08-21 19:46:34 +0200335
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100336 /* hipersocket busy condition */
Jan Glauber110da312011-01-05 12:47:53 +0100337 if (unlikely(*busy_bit)) {
Jan Glauberbe8d97a2011-08-03 16:44:17 +0200338 retries++;
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100339
340 if (!start_time) {
Martin Schwidefsky8c071b02013-10-17 12:38:17 +0200341 start_time = get_tod_clock_fast();
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100342 goto again;
343 }
Martin Schwidefsky8c071b02013-10-17 12:38:17 +0200344 if (get_tod_clock_fast() - start_time < QDIO_BUSY_BIT_PATIENCE)
Jan Glauber779e6e12008-07-17 17:16:48 +0200345 goto again;
346 }
Jan Glauberbe8d97a2011-08-03 16:44:17 +0200347 if (retries) {
348 DBF_DEV_EVENT(DBF_WARN, q->irq_ptr,
349 "%4x cc2 BB1:%1d", SCH_NO(q), q->nr);
350 DBF_DEV_EVENT(DBF_WARN, q->irq_ptr, "count:%u", retries);
351 }
Jan Glauber779e6e12008-07-17 17:16:48 +0200352 return cc;
353}
354
355static inline int qdio_siga_input(struct qdio_q *q)
356{
Jan Glauber958c0ba2011-01-05 12:47:52 +0100357 unsigned long schid = *((u32 *) &q->irq_ptr->schid);
358 unsigned int fc = QDIO_SIGA_READ;
Jan Glauber779e6e12008-07-17 17:16:48 +0200359 int cc;
360
Jan Glauber22f99342008-12-25 13:38:46 +0100361 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "siga-r:%1d", q->nr);
Jan Glauber6486cda2010-01-04 09:05:42 +0100362 qperf_inc(q, siga_read);
Jan Glauber779e6e12008-07-17 17:16:48 +0200363
Jan Glauber958c0ba2011-01-05 12:47:52 +0100364 if (is_qebsm(q)) {
365 schid = q->irq_ptr->sch_token;
366 fc |= QDIO_SIGA_QEBSM_FLAG;
367 }
368
369 cc = do_siga_input(schid, q->mask, fc);
Jan Glauber110da312011-01-05 12:47:53 +0100370 if (unlikely(cc))
Jan Glauber22f99342008-12-25 13:38:46 +0100371 DBF_ERROR("%4x SIGA-R:%2d", SCH_NO(q), cc);
Jan Glauber1549d132012-05-09 16:27:34 +0200372 return (cc) ? -EIO : 0;
Jan Glauber779e6e12008-07-17 17:16:48 +0200373}
374
Jan Glauber90adac52011-01-05 12:47:54 +0100375#define qdio_siga_sync_out(q) qdio_siga_sync(q, ~0U, 0)
376#define qdio_siga_sync_all(q) qdio_siga_sync(q, ~0U, ~0U)
377
378static inline void qdio_sync_queues(struct qdio_q *q)
Jan Glauber779e6e12008-07-17 17:16:48 +0200379{
Jan Glauber90adac52011-01-05 12:47:54 +0100380 /* PCI capable outbound queues will also be scanned so sync them too */
Julian Wiedmannf85b2b22018-10-30 08:19:54 +0100381 if (pci_out_supported(q->irq_ptr))
Jan Glauber90adac52011-01-05 12:47:54 +0100382 qdio_siga_sync_all(q);
383 else
Jan Glauber779e6e12008-07-17 17:16:48 +0200384 qdio_siga_sync_q(q);
385}
386
Jan Glauber60b5df22009-06-22 12:08:10 +0200387int debug_get_buf_state(struct qdio_q *q, unsigned int bufnr,
388 unsigned char *state)
389{
Jan Glauber90adac52011-01-05 12:47:54 +0100390 if (need_siga_sync(q))
391 qdio_siga_sync_q(q);
Julian Wiedmann5a19d672019-04-26 09:30:11 +0200392 return get_buf_state(q, bufnr, state, 0);
Jan Glauber60b5df22009-06-22 12:08:10 +0200393}
394
395static inline void qdio_stop_polling(struct qdio_q *q)
Jan Glauber779e6e12008-07-17 17:16:48 +0200396{
Jan Glauber50f769d2008-12-25 13:38:47 +0100397 if (!q->u.in.polling)
Jan Glauber779e6e12008-07-17 17:16:48 +0200398 return;
Jan Glauber50f769d2008-12-25 13:38:47 +0100399
Jan Glauber779e6e12008-07-17 17:16:48 +0200400 q->u.in.polling = 0;
Jan Glauber6486cda2010-01-04 09:05:42 +0100401 qperf_inc(q, stop_polling);
Jan Glauber779e6e12008-07-17 17:16:48 +0200402
403 /* show the card that we are not polling anymore */
Jan Glauber50f769d2008-12-25 13:38:47 +0100404 if (is_qebsm(q)) {
Jan Glaubere85dea02009-03-26 15:24:29 +0100405 set_buf_states(q, q->u.in.ack_start, SLSB_P_INPUT_NOT_INIT,
Jan Glauber50f769d2008-12-25 13:38:47 +0100406 q->u.in.ack_count);
407 q->u.in.ack_count = 0;
408 } else
Jan Glaubere85dea02009-03-26 15:24:29 +0100409 set_buf_state(q, q->u.in.ack_start, SLSB_P_INPUT_NOT_INIT);
Jan Glauber779e6e12008-07-17 17:16:48 +0200410}
411
Fabian Frederick92bdae52014-06-03 21:55:15 +0200412static inline void account_sbals(struct qdio_q *q, unsigned int count)
Jan Glauberd3072972010-02-26 22:37:36 +0100413{
Fabian Frederick92bdae52014-06-03 21:55:15 +0200414 int pos;
Jan Glauberd3072972010-02-26 22:37:36 +0100415
416 q->q_stats.nr_sbal_total += count;
417 if (count == QDIO_MAX_BUFFERS_MASK) {
418 q->q_stats.nr_sbals[7]++;
419 return;
420 }
Fabian Frederick92bdae52014-06-03 21:55:15 +0200421 pos = ilog2(count);
Jan Glauberd3072972010-02-26 22:37:36 +0100422 q->q_stats.nr_sbals[pos]++;
423}
424
Julian Wiedmann5b2ad272019-04-08 11:19:54 +0200425static void process_buffer_error(struct qdio_q *q, unsigned int start,
426 int count)
Jan Glauber779e6e12008-07-17 17:16:48 +0200427{
Jan Glauberbffbbd22011-04-20 10:15:33 +0200428 unsigned char state = (q->is_input_q) ? SLSB_P_INPUT_NOT_INIT :
429 SLSB_P_OUTPUT_NOT_INIT;
430
Jan Glauber1549d132012-05-09 16:27:34 +0200431 q->qdio_error = QDIO_ERROR_SLSB_STATE;
Jan Glauber50f769d2008-12-25 13:38:47 +0100432
433 /* special handling for no target buffer empty */
Julian Wiedmannb23481f2017-10-23 09:38:18 +0200434 if (queue_type(q) == QDIO_IQDIO_QFMT && !q->is_input_q &&
Julian Wiedmann5b2ad272019-04-08 11:19:54 +0200435 q->sbal[start]->element[15].sflags == 0x10) {
Jan Glauber6486cda2010-01-04 09:05:42 +0100436 qperf_inc(q, target_full);
Julian Wiedmann5b2ad272019-04-08 11:19:54 +0200437 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "OUTFULL FTC:%02x", start);
Jan Glauber2768b2d2011-10-30 15:17:07 +0100438 goto set;
Jan Glauber50f769d2008-12-25 13:38:47 +0100439 }
440
Jan Glauber22f99342008-12-25 13:38:46 +0100441 DBF_ERROR("%4x BUF ERROR", SCH_NO(q));
442 DBF_ERROR((q->is_input_q) ? "IN:%2d" : "OUT:%2d", q->nr);
Julian Wiedmann5b2ad272019-04-08 11:19:54 +0200443 DBF_ERROR("FTC:%3d C:%3d", start, count);
Jan Glauber22f99342008-12-25 13:38:46 +0100444 DBF_ERROR("F14:%2x F15:%2x",
Julian Wiedmann5b2ad272019-04-08 11:19:54 +0200445 q->sbal[start]->element[14].sflags,
446 q->sbal[start]->element[15].sflags);
Jan Glauberbffbbd22011-04-20 10:15:33 +0200447
Jan Glauber2768b2d2011-10-30 15:17:07 +0100448set:
Jan Glauberbffbbd22011-04-20 10:15:33 +0200449 /*
450 * Interrupts may be avoided as long as the error is present
451 * so change the buffer state immediately to avoid starvation.
452 */
Julian Wiedmann5b2ad272019-04-08 11:19:54 +0200453 set_buf_states(q, start, state, count);
Jan Glauber50f769d2008-12-25 13:38:47 +0100454}
Jan Glauber779e6e12008-07-17 17:16:48 +0200455
Julian Wiedmann5b2ad272019-04-08 11:19:54 +0200456static inline void inbound_primed(struct qdio_q *q, unsigned int start,
457 int count)
Jan Glauber50f769d2008-12-25 13:38:47 +0100458{
459 int new;
460
Julian Wiedmannf83435c2016-11-21 11:34:25 +0100461 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "in prim:%1d %02x", q->nr, count);
Jan Glauber50f769d2008-12-25 13:38:47 +0100462
463 /* for QEBSM the ACK was already set by EQBS */
464 if (is_qebsm(q)) {
465 if (!q->u.in.polling) {
466 q->u.in.polling = 1;
467 q->u.in.ack_count = count;
Julian Wiedmann5b2ad272019-04-08 11:19:54 +0200468 q->u.in.ack_start = start;
Jan Glauber50f769d2008-12-25 13:38:47 +0100469 return;
470 }
471
472 /* delete the previous ACK's */
Jan Glaubere85dea02009-03-26 15:24:29 +0100473 set_buf_states(q, q->u.in.ack_start, SLSB_P_INPUT_NOT_INIT,
Jan Glauber50f769d2008-12-25 13:38:47 +0100474 q->u.in.ack_count);
475 q->u.in.ack_count = count;
Julian Wiedmann5b2ad272019-04-08 11:19:54 +0200476 q->u.in.ack_start = start;
Jan Glauber50f769d2008-12-25 13:38:47 +0100477 return;
478 }
479
480 /*
481 * ACK the newest buffer. The ACK will be removed in qdio_stop_polling
482 * or by the next inbound run.
483 */
Julian Wiedmann5b2ad272019-04-08 11:19:54 +0200484 new = add_buf(start, count - 1);
Jan Glauber50f769d2008-12-25 13:38:47 +0100485 if (q->u.in.polling) {
486 /* reset the previous ACK but first set the new one */
487 set_buf_state(q, new, SLSB_P_INPUT_ACK);
Jan Glaubere85dea02009-03-26 15:24:29 +0100488 set_buf_state(q, q->u.in.ack_start, SLSB_P_INPUT_NOT_INIT);
Jan Glauber3fdf1e12009-03-26 15:24:28 +0100489 } else {
Jan Glauber50f769d2008-12-25 13:38:47 +0100490 q->u.in.polling = 1;
Jan Glauber3fdf1e12009-03-26 15:24:28 +0100491 set_buf_state(q, new, SLSB_P_INPUT_ACK);
Jan Glauber50f769d2008-12-25 13:38:47 +0100492 }
493
Jan Glaubere85dea02009-03-26 15:24:29 +0100494 q->u.in.ack_start = new;
Jan Glauber50f769d2008-12-25 13:38:47 +0100495 count--;
496 if (!count)
497 return;
Jan Glauber6541f7b2009-09-22 22:58:40 +0200498 /* need to change ALL buffers to get more interrupts */
Julian Wiedmann5b2ad272019-04-08 11:19:54 +0200499 set_buf_states(q, start, SLSB_P_INPUT_NOT_INIT, count);
Jan Glauber779e6e12008-07-17 17:16:48 +0200500}
501
Julian Wiedmann6bcf74e2019-04-08 13:32:12 +0200502static int get_inbound_buffer_frontier(struct qdio_q *q, unsigned int start)
Jan Glauber779e6e12008-07-17 17:16:48 +0200503{
Jan Glauber6fa10982011-01-31 11:30:08 +0100504 unsigned char state = 0;
Julian Wiedmann152485b2017-12-06 08:53:33 +0100505 int count;
Jan Glauber779e6e12008-07-17 17:16:48 +0200506
Martin Schwidefsky8c071b02013-10-17 12:38:17 +0200507 q->timestamp = get_tod_clock_fast();
Jan Glaubera2b86012011-10-30 15:17:05 +0100508
Jan Glauber779e6e12008-07-17 17:16:48 +0200509 /*
Jan Glauber779e6e12008-07-17 17:16:48 +0200510 * Don't check 128 buffers, as otherwise qdio_inbound_q_moved
511 * would return 0.
512 */
513 count = min(atomic_read(&q->nr_buf_used), QDIO_MAX_BUFFERS_MASK);
Julian Wiedmann152485b2017-12-06 08:53:33 +0100514 if (!count)
Julian Wiedmannb39544c2019-03-28 10:39:25 +0100515 return 0;
Jan Glauber779e6e12008-07-17 17:16:48 +0200516
Jan Glauber36e3e722009-06-22 12:08:12 +0200517 /*
518 * No siga sync here, as a PCI or we after a thin interrupt
519 * already sync'ed the queues.
520 */
Julian Wiedmann5b2ad272019-04-08 11:19:54 +0200521 count = get_buf_states(q, start, &state, count, 1, 0);
Jan Glauber779e6e12008-07-17 17:16:48 +0200522 if (!count)
Julian Wiedmannb39544c2019-03-28 10:39:25 +0100523 return 0;
Jan Glauber779e6e12008-07-17 17:16:48 +0200524
525 switch (state) {
526 case SLSB_P_INPUT_PRIMED:
Julian Wiedmann5b2ad272019-04-08 11:19:54 +0200527 inbound_primed(q, start, count);
Heiko Carstenseddf0d52013-09-16 06:59:50 +0200528 if (atomic_sub_return(count, &q->nr_buf_used) == 0)
Jan Glauber6486cda2010-01-04 09:05:42 +0100529 qperf_inc(q, inbound_queue_full);
Jan Glauberd3072972010-02-26 22:37:36 +0100530 if (q->irq_ptr->perf_stat_enabled)
531 account_sbals(q, count);
Julian Wiedmannb39544c2019-03-28 10:39:25 +0100532 return count;
Jan Glauber779e6e12008-07-17 17:16:48 +0200533 case SLSB_P_INPUT_ERROR:
Julian Wiedmann5b2ad272019-04-08 11:19:54 +0200534 process_buffer_error(q, start, count);
Julian Wiedmann0b926ac2017-10-23 09:40:16 +0200535 if (atomic_sub_return(count, &q->nr_buf_used) == 0)
536 qperf_inc(q, inbound_queue_full);
Jan Glauberd3072972010-02-26 22:37:36 +0100537 if (q->irq_ptr->perf_stat_enabled)
538 account_sbals_error(q, count);
Julian Wiedmannb39544c2019-03-28 10:39:25 +0100539 return count;
Jan Glauber779e6e12008-07-17 17:16:48 +0200540 case SLSB_CU_INPUT_EMPTY:
541 case SLSB_P_INPUT_NOT_INIT:
542 case SLSB_P_INPUT_ACK:
Jan Glauberd3072972010-02-26 22:37:36 +0100543 if (q->irq_ptr->perf_stat_enabled)
544 q->q_stats.nr_sbal_nop++;
Julian Wiedmannf83435c2016-11-21 11:34:25 +0100545 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "in nop:%1d %#02x",
Julian Wiedmann5b2ad272019-04-08 11:19:54 +0200546 q->nr, start);
Julian Wiedmannb39544c2019-03-28 10:39:25 +0100547 return 0;
Jan Glauber779e6e12008-07-17 17:16:48 +0200548 default:
Jan Glauberce1d8012012-10-24 12:38:35 +0200549 WARN_ON_ONCE(1);
Julian Wiedmannb39544c2019-03-28 10:39:25 +0100550 return 0;
Jan Glauber779e6e12008-07-17 17:16:48 +0200551 }
Jan Glauber779e6e12008-07-17 17:16:48 +0200552}
553
Julian Wiedmann6bcf74e2019-04-08 13:32:12 +0200554static int qdio_inbound_q_moved(struct qdio_q *q, unsigned int start)
Jan Glauber779e6e12008-07-17 17:16:48 +0200555{
Julian Wiedmannb39544c2019-03-28 10:39:25 +0100556 int count;
Jan Glauber779e6e12008-07-17 17:16:48 +0200557
Julian Wiedmann6bcf74e2019-04-08 13:32:12 +0200558 count = get_inbound_buffer_frontier(q, start);
Jan Glauber779e6e12008-07-17 17:16:48 +0200559
Julian Wiedmanndccbbaf2019-03-28 10:45:11 +0100560 if (count && !is_thinint_irq(q->irq_ptr) && MACHINE_IS_LPAR)
561 q->u.in.timestamp = get_tod_clock();
Julian Wiedmannb39544c2019-03-28 10:39:25 +0100562
563 return count;
Jan Glauber779e6e12008-07-17 17:16:48 +0200564}
565
Julian Wiedmann6bcf74e2019-04-08 13:32:12 +0200566static inline int qdio_inbound_q_done(struct qdio_q *q, unsigned int start)
Jan Glauber60b5df22009-06-22 12:08:10 +0200567{
568 unsigned char state = 0;
569
570 if (!atomic_read(&q->nr_buf_used))
571 return 1;
572
Jan Glauber90adac52011-01-05 12:47:54 +0100573 if (need_siga_sync(q))
574 qdio_siga_sync_q(q);
Julian Wiedmann5b2ad272019-04-08 11:19:54 +0200575 get_buf_state(q, start, &state, 0);
Jan Glauber60b5df22009-06-22 12:08:10 +0200576
Ursula Braun4c522282010-02-09 09:46:07 +0100577 if (state == SLSB_P_INPUT_PRIMED || state == SLSB_P_INPUT_ERROR)
Jan Glauber60b5df22009-06-22 12:08:10 +0200578 /* more work coming */
579 return 0;
Jan Glauber9a2c1602009-06-22 12:08:11 +0200580
581 if (is_thinint_irq(q->irq_ptr))
582 return 1;
583
584 /* don't poll under z/VM */
585 if (MACHINE_IS_VM)
586 return 1;
587
588 /*
589 * At this point we know, that inbound first_to_check
590 * has (probably) not moved (see qdio_inbound_processing).
591 */
Martin Schwidefsky8c071b02013-10-17 12:38:17 +0200592 if (get_tod_clock_fast() > q->u.in.timestamp + QDIO_INPUT_THRESHOLD) {
Julian Wiedmann5b2ad272019-04-08 11:19:54 +0200593 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "in done:%02x", start);
Jan Glauber9a2c1602009-06-22 12:08:11 +0200594 return 1;
595 } else
596 return 0;
Jan Glauber60b5df22009-06-22 12:08:10 +0200597}
598
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +0000599static inline void qdio_handle_aobs(struct qdio_q *q, int start, int count)
600{
601 unsigned char state = 0;
602 int j, b = start;
603
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +0000604 for (j = 0; j < count; ++j) {
605 get_buf_state(q, b, &state, 0);
606 if (state == SLSB_P_OUTPUT_PENDING) {
607 struct qaob *aob = q->u.out.aobs[b];
608 if (aob == NULL)
609 continue;
610
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +0000611 q->u.out.sbal_state[b].flags |=
612 QDIO_OUTBUF_STATE_FLAG_PENDING;
613 q->u.out.aobs[b] = NULL;
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +0000614 }
615 b = next_buf(b);
616 }
617}
618
619static inline unsigned long qdio_aob_for_buffer(struct qdio_output_q *q,
620 int bufnr)
621{
622 unsigned long phys_aob = 0;
623
624 if (!q->use_cq)
Julian Wiedmann64e03ff2018-05-16 09:37:25 +0200625 return 0;
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +0000626
627 if (!q->aobs[bufnr]) {
628 struct qaob *aob = qdio_allocate_aob();
629 q->aobs[bufnr] = aob;
630 }
631 if (q->aobs[bufnr]) {
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +0000632 q->aobs[bufnr]->user1 = (u64) q->sbal_state[bufnr].user;
633 phys_aob = virt_to_phys(q->aobs[bufnr]);
Jan Glauberce1d8012012-10-24 12:38:35 +0200634 WARN_ON_ONCE(phys_aob & 0xFF);
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +0000635 }
636
Julian Wiedmann64e03ff2018-05-16 09:37:25 +0200637 q->sbal_state[bufnr].flags = 0;
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +0000638 return phys_aob;
639}
640
Julian Wiedmann65e4f772019-03-28 10:43:46 +0100641static void qdio_kick_handler(struct qdio_q *q, unsigned int count)
Jan Glauber779e6e12008-07-17 17:16:48 +0200642{
Jan Glauber9c8a08d2009-03-26 15:24:32 +0100643 int start = q->first_to_kick;
Jan Glauber779e6e12008-07-17 17:16:48 +0200644
645 if (unlikely(q->irq_ptr->state != QDIO_IRQ_STATE_ACTIVE))
646 return;
647
Jan Glauber9c8a08d2009-03-26 15:24:32 +0100648 if (q->is_input_q) {
Jan Glauber6486cda2010-01-04 09:05:42 +0100649 qperf_inc(q, inbound_handler);
Jan Glauber1d7e1502009-09-22 22:58:39 +0200650 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "kih s:%02x c:%02x", start, count);
Ursula Braunbd6e8a12010-03-08 12:25:18 +0100651 } else {
Jan Glauber6486cda2010-01-04 09:05:42 +0100652 qperf_inc(q, outbound_handler);
Jan Glauber1d7e1502009-09-22 22:58:39 +0200653 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "koh: s:%02x c:%02x",
654 start, count);
Julian Wiedmannccc413f2018-05-15 21:17:38 +0200655 if (q->u.out.use_cq)
656 qdio_handle_aobs(q, start, count);
Ursula Braunbd6e8a12010-03-08 12:25:18 +0100657 }
Jan Glauber9c8a08d2009-03-26 15:24:32 +0100658
659 q->handler(q->irq_ptr->cdev, q->qdio_error, q->nr, start, count,
660 q->irq_ptr->int_parm);
Jan Glauber779e6e12008-07-17 17:16:48 +0200661
662 /* for the next time */
Julian Wiedmann65e4f772019-03-28 10:43:46 +0100663 q->first_to_kick = add_buf(start, count);
Jan Glauber779e6e12008-07-17 17:16:48 +0200664 q->qdio_error = 0;
665}
666
Ursula Braun9bce8b22016-08-05 12:33:10 +0200667static inline int qdio_tasklet_schedule(struct qdio_q *q)
668{
669 if (likely(q->irq_ptr->state == QDIO_IRQ_STATE_ACTIVE)) {
670 tasklet_schedule(&q->tasklet);
671 return 0;
672 }
673 return -EPERM;
674}
675
Jan Glauber779e6e12008-07-17 17:16:48 +0200676static void __qdio_inbound_processing(struct qdio_q *q)
677{
Julian Wiedmann6bcf74e2019-04-08 13:32:12 +0200678 unsigned int start = q->first_to_check;
Julian Wiedmannb39544c2019-03-28 10:39:25 +0100679 int count;
680
Jan Glauber6486cda2010-01-04 09:05:42 +0100681 qperf_inc(q, tasklet_inbound);
Jan Glauberf3eb20f2010-05-17 10:00:15 +0200682
Julian Wiedmann6bcf74e2019-04-08 13:32:12 +0200683 count = qdio_inbound_q_moved(q, start);
Julian Wiedmannb39544c2019-03-28 10:39:25 +0100684 if (count == 0)
Jan Glauber779e6e12008-07-17 17:16:48 +0200685 return;
686
Julian Wiedmann6bcf74e2019-04-08 13:32:12 +0200687 start = add_buf(start, count);
688 q->first_to_check = start;
Julian Wiedmann65e4f772019-03-28 10:43:46 +0100689 qdio_kick_handler(q, count);
Jan Glauber779e6e12008-07-17 17:16:48 +0200690
Julian Wiedmann6bcf74e2019-04-08 13:32:12 +0200691 if (!qdio_inbound_q_done(q, start)) {
Jan Glauber779e6e12008-07-17 17:16:48 +0200692 /* means poll time is not yet over */
Jan Glauber6486cda2010-01-04 09:05:42 +0100693 qperf_inc(q, tasklet_inbound_resched);
Ursula Braun9bce8b22016-08-05 12:33:10 +0200694 if (!qdio_tasklet_schedule(q))
Jan Glauberf3eb20f2010-05-17 10:00:15 +0200695 return;
Jan Glauber6486cda2010-01-04 09:05:42 +0100696 }
Jan Glauber779e6e12008-07-17 17:16:48 +0200697
698 qdio_stop_polling(q);
699 /*
700 * We need to check again to not lose initiative after
701 * resetting the ACK state.
702 */
Julian Wiedmann6bcf74e2019-04-08 13:32:12 +0200703 if (!qdio_inbound_q_done(q, start)) {
Jan Glauber6486cda2010-01-04 09:05:42 +0100704 qperf_inc(q, tasklet_inbound_resched2);
Ursula Braun9bce8b22016-08-05 12:33:10 +0200705 qdio_tasklet_schedule(q);
Jan Glauber6486cda2010-01-04 09:05:42 +0100706 }
Jan Glauber779e6e12008-07-17 17:16:48 +0200707}
708
Jan Glauber779e6e12008-07-17 17:16:48 +0200709void qdio_inbound_processing(unsigned long data)
710{
711 struct qdio_q *q = (struct qdio_q *)data;
712 __qdio_inbound_processing(q);
713}
714
Julian Wiedmann6bcf74e2019-04-08 13:32:12 +0200715static int get_outbound_buffer_frontier(struct qdio_q *q, unsigned int start)
Jan Glauber779e6e12008-07-17 17:16:48 +0200716{
Jan Glauber6fa10982011-01-31 11:30:08 +0100717 unsigned char state = 0;
Julian Wiedmann152485b2017-12-06 08:53:33 +0100718 int count;
Jan Glauber779e6e12008-07-17 17:16:48 +0200719
Martin Schwidefsky8c071b02013-10-17 12:38:17 +0200720 q->timestamp = get_tod_clock_fast();
Jan Glaubera2b86012011-10-30 15:17:05 +0100721
Jan Glauber90adac52011-01-05 12:47:54 +0100722 if (need_siga_sync(q))
723 if (((queue_type(q) != QDIO_IQDIO_QFMT) &&
Julian Wiedmannf85b2b22018-10-30 08:19:54 +0100724 !pci_out_supported(q->irq_ptr)) ||
Jan Glauber90adac52011-01-05 12:47:54 +0100725 (queue_type(q) == QDIO_IQDIO_QFMT &&
726 multicast_outbound(q)))
727 qdio_siga_sync_q(q);
Jan Glauber779e6e12008-07-17 17:16:48 +0200728
Julian Wiedmann30607812019-04-01 10:08:08 +0200729 count = atomic_read(&q->nr_buf_used);
Julian Wiedmann152485b2017-12-06 08:53:33 +0100730 if (!count)
Julian Wiedmannb39544c2019-03-28 10:39:25 +0100731 return 0;
Jan Glauber779e6e12008-07-17 17:16:48 +0200732
Julian Wiedmann5b2ad272019-04-08 11:19:54 +0200733 count = get_buf_states(q, start, &state, count, 0, q->u.out.use_cq);
Jan Glauber779e6e12008-07-17 17:16:48 +0200734 if (!count)
Julian Wiedmannb39544c2019-03-28 10:39:25 +0100735 return 0;
Jan Glauber779e6e12008-07-17 17:16:48 +0200736
737 switch (state) {
738 case SLSB_P_OUTPUT_EMPTY:
739 /* the adapter got it */
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +0000740 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr,
741 "out empty:%1d %02x", q->nr, count);
Jan Glauber779e6e12008-07-17 17:16:48 +0200742
743 atomic_sub(count, &q->nr_buf_used);
Jan Glauberd3072972010-02-26 22:37:36 +0100744 if (q->irq_ptr->perf_stat_enabled)
745 account_sbals(q, count);
Julian Wiedmannb39544c2019-03-28 10:39:25 +0100746 return count;
Jan Glauber779e6e12008-07-17 17:16:48 +0200747 case SLSB_P_OUTPUT_ERROR:
Julian Wiedmann5b2ad272019-04-08 11:19:54 +0200748 process_buffer_error(q, start, count);
Jan Glauber779e6e12008-07-17 17:16:48 +0200749 atomic_sub(count, &q->nr_buf_used);
Jan Glauberd3072972010-02-26 22:37:36 +0100750 if (q->irq_ptr->perf_stat_enabled)
751 account_sbals_error(q, count);
Julian Wiedmannb39544c2019-03-28 10:39:25 +0100752 return count;
Jan Glauber779e6e12008-07-17 17:16:48 +0200753 case SLSB_CU_OUTPUT_PRIMED:
754 /* the adapter has not fetched the output yet */
Jan Glauberd3072972010-02-26 22:37:36 +0100755 if (q->irq_ptr->perf_stat_enabled)
756 q->q_stats.nr_sbal_nop++;
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +0000757 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "out primed:%1d",
758 q->nr);
Julian Wiedmannb39544c2019-03-28 10:39:25 +0100759 return 0;
Jan Glauber779e6e12008-07-17 17:16:48 +0200760 case SLSB_P_OUTPUT_NOT_INIT:
761 case SLSB_P_OUTPUT_HALTED:
Julian Wiedmannb39544c2019-03-28 10:39:25 +0100762 return 0;
Jan Glauber779e6e12008-07-17 17:16:48 +0200763 default:
Jan Glauberce1d8012012-10-24 12:38:35 +0200764 WARN_ON_ONCE(1);
Julian Wiedmannb39544c2019-03-28 10:39:25 +0100765 return 0;
Jan Glauber779e6e12008-07-17 17:16:48 +0200766 }
Jan Glauber779e6e12008-07-17 17:16:48 +0200767}
768
769/* all buffers processed? */
770static inline int qdio_outbound_q_done(struct qdio_q *q)
771{
772 return atomic_read(&q->nr_buf_used) == 0;
773}
774
Julian Wiedmann6bcf74e2019-04-08 13:32:12 +0200775static inline int qdio_outbound_q_moved(struct qdio_q *q, unsigned int start)
Jan Glauber779e6e12008-07-17 17:16:48 +0200776{
Julian Wiedmannb39544c2019-03-28 10:39:25 +0100777 int count;
Jan Glauber779e6e12008-07-17 17:16:48 +0200778
Julian Wiedmann6bcf74e2019-04-08 13:32:12 +0200779 count = get_outbound_buffer_frontier(q, start);
Jan Glauber779e6e12008-07-17 17:16:48 +0200780
Julian Wiedmanndccbbaf2019-03-28 10:45:11 +0100781 if (count)
Jan Glauber22f99342008-12-25 13:38:46 +0100782 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "out moved:%1d", q->nr);
Julian Wiedmannb39544c2019-03-28 10:39:25 +0100783
784 return count;
Jan Glauber779e6e12008-07-17 17:16:48 +0200785}
786
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +0000787static int qdio_kick_outbound_q(struct qdio_q *q, unsigned long aob)
Jan Glauber779e6e12008-07-17 17:16:48 +0200788{
Jan Glauberbe8d97a2011-08-03 16:44:17 +0200789 int retries = 0, cc;
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100790 unsigned int busy_bit;
Jan Glauber779e6e12008-07-17 17:16:48 +0200791
792 if (!need_siga_out(q))
Jan Glauberd303b6f2009-03-26 15:24:31 +0100793 return 0;
Jan Glauber779e6e12008-07-17 17:16:48 +0200794
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100795 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "siga-w:%1d", q->nr);
Jan Glauberbe8d97a2011-08-03 16:44:17 +0200796retry:
Jan Glauber6486cda2010-01-04 09:05:42 +0100797 qperf_inc(q, siga_write);
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100798
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +0000799 cc = qdio_siga_output(q, &busy_bit, aob);
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100800 switch (cc) {
Jan Glauber779e6e12008-07-17 17:16:48 +0200801 case 0:
Jan Glauber779e6e12008-07-17 17:16:48 +0200802 break;
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100803 case 2:
804 if (busy_bit) {
Jan Glauberbe8d97a2011-08-03 16:44:17 +0200805 while (++retries < QDIO_BUSY_BIT_RETRIES) {
806 mdelay(QDIO_BUSY_BIT_RETRY_DELAY);
807 goto retry;
808 }
809 DBF_ERROR("%4x cc2 BBC:%1d", SCH_NO(q), q->nr);
Jan Glauber1549d132012-05-09 16:27:34 +0200810 cc = -EBUSY;
811 } else {
Jan Glauberd303b6f2009-03-26 15:24:31 +0100812 DBF_DEV_EVENT(DBF_INFO, q->irq_ptr, "siga-w cc2:%1d", q->nr);
Jan Glauber1549d132012-05-09 16:27:34 +0200813 cc = -ENOBUFS;
814 }
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100815 break;
816 case 1:
817 case 3:
818 DBF_ERROR("%4x SIGA-W:%1d", SCH_NO(q), cc);
Jan Glauber1549d132012-05-09 16:27:34 +0200819 cc = -EIO;
Jan Glauber7a0b4cb2008-12-25 13:38:48 +0100820 break;
Jan Glauber779e6e12008-07-17 17:16:48 +0200821 }
Jan Glauberbe8d97a2011-08-03 16:44:17 +0200822 if (retries) {
823 DBF_ERROR("%4x cc2 BB2:%1d", SCH_NO(q), q->nr);
824 DBF_ERROR("count:%u", retries);
825 }
Jan Glauberd303b6f2009-03-26 15:24:31 +0100826 return cc;
Jan Glauber779e6e12008-07-17 17:16:48 +0200827}
828
Jan Glauber779e6e12008-07-17 17:16:48 +0200829static void __qdio_outbound_processing(struct qdio_q *q)
830{
Julian Wiedmann6bcf74e2019-04-08 13:32:12 +0200831 unsigned int start = q->first_to_check;
Julian Wiedmannb39544c2019-03-28 10:39:25 +0100832 int count;
833
Jan Glauber6486cda2010-01-04 09:05:42 +0100834 qperf_inc(q, tasklet_outbound);
Jan Glauberce1d8012012-10-24 12:38:35 +0200835 WARN_ON_ONCE(atomic_read(&q->nr_buf_used) < 0);
Jan Glauber779e6e12008-07-17 17:16:48 +0200836
Julian Wiedmann6bcf74e2019-04-08 13:32:12 +0200837 count = qdio_outbound_q_moved(q, start);
838 if (count) {
839 q->first_to_check = add_buf(start, count);
Julian Wiedmann65e4f772019-03-28 10:43:46 +0100840 qdio_kick_handler(q, count);
Julian Wiedmann6bcf74e2019-04-08 13:32:12 +0200841 }
Jan Glauber779e6e12008-07-17 17:16:48 +0200842
Julian Wiedmannf85b2b22018-10-30 08:19:54 +0100843 if (queue_type(q) == QDIO_ZFCP_QFMT && !pci_out_supported(q->irq_ptr) &&
844 !qdio_outbound_q_done(q))
845 goto sched;
Jan Glauber779e6e12008-07-17 17:16:48 +0200846
Jan Glauber779e6e12008-07-17 17:16:48 +0200847 if (q->u.out.pci_out_enabled)
848 return;
849
850 /*
851 * Now we know that queue type is either qeth without pci enabled
Jan Glauber25f269f2011-10-30 15:17:06 +0100852 * or HiperSockets. Make sure buffer switch from PRIMED to EMPTY
853 * is noticed and outbound_handler is called after some time.
Jan Glauber779e6e12008-07-17 17:16:48 +0200854 */
855 if (qdio_outbound_q_done(q))
Ursula Braun9bce8b22016-08-05 12:33:10 +0200856 del_timer_sync(&q->u.out.timer);
Jan Glauber6486cda2010-01-04 09:05:42 +0100857 else
Ursula Braun9bce8b22016-08-05 12:33:10 +0200858 if (!timer_pending(&q->u.out.timer) &&
859 likely(q->irq_ptr->state == QDIO_IRQ_STATE_ACTIVE))
Jan Glauber779e6e12008-07-17 17:16:48 +0200860 mod_timer(&q->u.out.timer, jiffies + 10 * HZ);
Jan Glauberc38f9602009-03-26 15:24:26 +0100861 return;
862
863sched:
Ursula Braun9bce8b22016-08-05 12:33:10 +0200864 qdio_tasklet_schedule(q);
Jan Glauber779e6e12008-07-17 17:16:48 +0200865}
866
867/* outbound tasklet */
868void qdio_outbound_processing(unsigned long data)
869{
870 struct qdio_q *q = (struct qdio_q *)data;
871 __qdio_outbound_processing(q);
872}
873
Kees Cookcb9f7802017-10-04 17:54:35 -0700874void qdio_outbound_timer(struct timer_list *t)
Jan Glauber779e6e12008-07-17 17:16:48 +0200875{
Kees Cookcb9f7802017-10-04 17:54:35 -0700876 struct qdio_q *q = from_timer(q, t, u.out.timer);
Jan Glauberc38f9602009-03-26 15:24:26 +0100877
Ursula Braun9bce8b22016-08-05 12:33:10 +0200878 qdio_tasklet_schedule(q);
Jan Glauber779e6e12008-07-17 17:16:48 +0200879}
880
Julian Wiedmann2f2f3832018-10-30 08:21:27 +0100881static inline void qdio_check_outbound_pci_queues(struct qdio_irq *irq)
Jan Glauber779e6e12008-07-17 17:16:48 +0200882{
883 struct qdio_q *out;
884 int i;
885
Julian Wiedmannf85b2b22018-10-30 08:19:54 +0100886 if (!pci_out_supported(irq))
Jan Glauber779e6e12008-07-17 17:16:48 +0200887 return;
888
Julian Wiedmannf85b2b22018-10-30 08:19:54 +0100889 for_each_output_queue(irq, out, i)
Jan Glauber779e6e12008-07-17 17:16:48 +0200890 if (!qdio_outbound_q_done(out))
Ursula Braun9bce8b22016-08-05 12:33:10 +0200891 qdio_tasklet_schedule(out);
Jan Glauber779e6e12008-07-17 17:16:48 +0200892}
893
Jan Glauber60b5df22009-06-22 12:08:10 +0200894static void __tiqdio_inbound_processing(struct qdio_q *q)
895{
Julian Wiedmann6bcf74e2019-04-08 13:32:12 +0200896 unsigned int start = q->first_to_check;
Julian Wiedmannb39544c2019-03-28 10:39:25 +0100897 int count;
898
Jan Glauber6486cda2010-01-04 09:05:42 +0100899 qperf_inc(q, tasklet_inbound);
Jan Glauber90adac52011-01-05 12:47:54 +0100900 if (need_siga_sync(q) && need_siga_sync_after_ai(q))
901 qdio_sync_queues(q);
Jan Glauber60b5df22009-06-22 12:08:10 +0200902
Julian Wiedmann2f2f3832018-10-30 08:21:27 +0100903 /* The interrupt could be caused by a PCI request: */
904 qdio_check_outbound_pci_queues(q->irq_ptr);
Jan Glauber60b5df22009-06-22 12:08:10 +0200905
Julian Wiedmann6bcf74e2019-04-08 13:32:12 +0200906 count = qdio_inbound_q_moved(q, start);
Julian Wiedmannb39544c2019-03-28 10:39:25 +0100907 if (count == 0)
Jan Glauber60b5df22009-06-22 12:08:10 +0200908 return;
909
Julian Wiedmann6bcf74e2019-04-08 13:32:12 +0200910 start = add_buf(start, count);
911 q->first_to_check = start;
Julian Wiedmann65e4f772019-03-28 10:43:46 +0100912 qdio_kick_handler(q, count);
Jan Glauber60b5df22009-06-22 12:08:10 +0200913
Julian Wiedmann6bcf74e2019-04-08 13:32:12 +0200914 if (!qdio_inbound_q_done(q, start)) {
Jan Glauber6486cda2010-01-04 09:05:42 +0100915 qperf_inc(q, tasklet_inbound_resched);
Ursula Braun9bce8b22016-08-05 12:33:10 +0200916 if (!qdio_tasklet_schedule(q))
Jan Glaubere2910bc2009-09-11 10:28:19 +0200917 return;
Jan Glauber60b5df22009-06-22 12:08:10 +0200918 }
919
920 qdio_stop_polling(q);
921 /*
922 * We need to check again to not lose initiative after
923 * resetting the ACK state.
924 */
Julian Wiedmann6bcf74e2019-04-08 13:32:12 +0200925 if (!qdio_inbound_q_done(q, start)) {
Jan Glauber6486cda2010-01-04 09:05:42 +0100926 qperf_inc(q, tasklet_inbound_resched2);
Ursula Braun9bce8b22016-08-05 12:33:10 +0200927 qdio_tasklet_schedule(q);
Jan Glauber60b5df22009-06-22 12:08:10 +0200928 }
929}
930
931void tiqdio_inbound_processing(unsigned long data)
932{
933 struct qdio_q *q = (struct qdio_q *)data;
934 __tiqdio_inbound_processing(q);
935}
936
Jan Glauber779e6e12008-07-17 17:16:48 +0200937static inline void qdio_set_state(struct qdio_irq *irq_ptr,
938 enum qdio_irq_states state)
939{
Jan Glauber22f99342008-12-25 13:38:46 +0100940 DBF_DEV_EVENT(DBF_INFO, irq_ptr, "newstate: %1d", state);
Jan Glauber779e6e12008-07-17 17:16:48 +0200941
942 irq_ptr->state = state;
943 mb();
944}
945
Jan Glauber22f99342008-12-25 13:38:46 +0100946static void qdio_irq_check_sense(struct qdio_irq *irq_ptr, struct irb *irb)
Jan Glauber779e6e12008-07-17 17:16:48 +0200947{
Jan Glauber779e6e12008-07-17 17:16:48 +0200948 if (irb->esw.esw0.erw.cons) {
Jan Glauber22f99342008-12-25 13:38:46 +0100949 DBF_ERROR("%4x sense:", irq_ptr->schid.sch_no);
950 DBF_ERROR_HEX(irb, 64);
951 DBF_ERROR_HEX(irb->ecw, 64);
Jan Glauber779e6e12008-07-17 17:16:48 +0200952 }
953}
954
955/* PCI interrupt handler */
956static void qdio_int_handler_pci(struct qdio_irq *irq_ptr)
957{
958 int i;
959 struct qdio_q *q;
960
Ursula Braun9bce8b22016-08-05 12:33:10 +0200961 if (unlikely(irq_ptr->state != QDIO_IRQ_STATE_ACTIVE))
Jan Glauberc38f9602009-03-26 15:24:26 +0100962 return;
963
Jan Glauberd36deae2010-09-07 21:14:39 +0000964 for_each_input_queue(irq_ptr, q, i) {
965 if (q->u.in.queue_start_poll) {
966 /* skip if polling is enabled or already in work */
967 if (test_and_set_bit(QDIO_QUEUE_IRQS_DISABLED,
968 &q->u.in.queue_irq_state)) {
969 qperf_inc(q, int_discarded);
970 continue;
971 }
972 q->u.in.queue_start_poll(q->irq_ptr->cdev, q->nr,
973 q->irq_ptr->int_parm);
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +0000974 } else {
Jan Glauberd36deae2010-09-07 21:14:39 +0000975 tasklet_schedule(&q->tasklet);
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +0000976 }
Jan Glauberd36deae2010-09-07 21:14:39 +0000977 }
Jan Glauber779e6e12008-07-17 17:16:48 +0200978
Julian Wiedmannf85b2b22018-10-30 08:19:54 +0100979 if (!pci_out_supported(irq_ptr))
Jan Glauber779e6e12008-07-17 17:16:48 +0200980 return;
981
982 for_each_output_queue(irq_ptr, q, i) {
983 if (qdio_outbound_q_done(q))
984 continue;
Jan Glauber90adac52011-01-05 12:47:54 +0100985 if (need_siga_sync(q) && need_siga_sync_out_after_pci(q))
Jan Glauber779e6e12008-07-17 17:16:48 +0200986 qdio_siga_sync_q(q);
Ursula Braun9bce8b22016-08-05 12:33:10 +0200987 qdio_tasklet_schedule(q);
Jan Glauber779e6e12008-07-17 17:16:48 +0200988 }
989}
990
991static void qdio_handle_activate_check(struct ccw_device *cdev,
992 unsigned long intparm, int cstat, int dstat)
993{
994 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
995 struct qdio_q *q;
Swen Schilligdfe5bb52011-08-15 14:40:31 +0200996 int count;
Jan Glauber779e6e12008-07-17 17:16:48 +0200997
Jan Glauber22f99342008-12-25 13:38:46 +0100998 DBF_ERROR("%4x ACT CHECK", irq_ptr->schid.sch_no);
999 DBF_ERROR("intp :%lx", intparm);
1000 DBF_ERROR("ds: %2x cs:%2x", dstat, cstat);
Jan Glauber779e6e12008-07-17 17:16:48 +02001001
1002 if (irq_ptr->nr_input_qs) {
1003 q = irq_ptr->input_qs[0];
1004 } else if (irq_ptr->nr_output_qs) {
1005 q = irq_ptr->output_qs[0];
1006 } else {
1007 dump_stack();
1008 goto no_handler;
1009 }
Swen Schilligdfe5bb52011-08-15 14:40:31 +02001010
1011 count = sub_buf(q->first_to_check, q->first_to_kick);
Jan Glauber1549d132012-05-09 16:27:34 +02001012 q->handler(q->irq_ptr->cdev, QDIO_ERROR_ACTIVATE,
Swen Schilligdfe5bb52011-08-15 14:40:31 +02001013 q->nr, q->first_to_kick, count, irq_ptr->int_parm);
Jan Glauber779e6e12008-07-17 17:16:48 +02001014no_handler:
1015 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_STOPPED);
Michael Holzheu3ab121a2012-03-11 11:59:32 -04001016 /*
1017 * In case of z/VM LGR (Live Guest Migration) QDIO recovery will happen.
1018 * Therefore we call the LGR detection function here.
1019 */
1020 lgr_info_log();
Jan Glauber779e6e12008-07-17 17:16:48 +02001021}
1022
Jan Glauber779e6e12008-07-17 17:16:48 +02001023static void qdio_establish_handle_irq(struct ccw_device *cdev, int cstat,
1024 int dstat)
1025{
1026 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
Jan Glauber779e6e12008-07-17 17:16:48 +02001027
Jan Glauber22f99342008-12-25 13:38:46 +01001028 DBF_DEV_EVENT(DBF_INFO, irq_ptr, "qest irq");
Jan Glauber4c575422009-06-12 10:26:28 +02001029
1030 if (cstat)
1031 goto error;
1032 if (dstat & ~(DEV_STAT_DEV_END | DEV_STAT_CHN_END))
1033 goto error;
1034 if (!(dstat & DEV_STAT_DEV_END))
1035 goto error;
1036 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_ESTABLISHED);
1037 return;
1038
1039error:
1040 DBF_ERROR("%4x EQ:error", irq_ptr->schid.sch_no);
1041 DBF_ERROR("ds: %2x cs:%2x", dstat, cstat);
1042 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_ERR);
Jan Glauber779e6e12008-07-17 17:16:48 +02001043}
1044
1045/* qdio interrupt handler */
1046void qdio_int_handler(struct ccw_device *cdev, unsigned long intparm,
1047 struct irb *irb)
1048{
1049 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
Sebastian Ott9080c922016-07-28 20:30:31 +02001050 struct subchannel_id schid;
Jan Glauber779e6e12008-07-17 17:16:48 +02001051 int cstat, dstat;
Jan Glauber779e6e12008-07-17 17:16:48 +02001052
Jan Glauber779e6e12008-07-17 17:16:48 +02001053 if (!intparm || !irq_ptr) {
Sebastian Ott9080c922016-07-28 20:30:31 +02001054 ccw_device_get_schid(cdev, &schid);
1055 DBF_ERROR("qint:%4x", schid.sch_no);
Jan Glauber779e6e12008-07-17 17:16:48 +02001056 return;
1057 }
1058
Jan Glauber09a308f2010-05-17 10:00:14 +02001059 if (irq_ptr->perf_stat_enabled)
1060 irq_ptr->perf_stat.qdio_int++;
1061
Jan Glauber779e6e12008-07-17 17:16:48 +02001062 if (IS_ERR(irb)) {
Jan Glauberce1d8012012-10-24 12:38:35 +02001063 DBF_ERROR("%4x IO error", irq_ptr->schid.sch_no);
1064 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_ERR);
1065 wake_up(&cdev->private->wait_q);
1066 return;
Jan Glauber779e6e12008-07-17 17:16:48 +02001067 }
Jan Glauber22f99342008-12-25 13:38:46 +01001068 qdio_irq_check_sense(irq_ptr, irb);
Jan Glauber779e6e12008-07-17 17:16:48 +02001069 cstat = irb->scsw.cmd.cstat;
1070 dstat = irb->scsw.cmd.dstat;
1071
1072 switch (irq_ptr->state) {
1073 case QDIO_IRQ_STATE_INACTIVE:
1074 qdio_establish_handle_irq(cdev, cstat, dstat);
1075 break;
Jan Glauber779e6e12008-07-17 17:16:48 +02001076 case QDIO_IRQ_STATE_CLEANUP:
1077 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_INACTIVE);
1078 break;
Jan Glauber779e6e12008-07-17 17:16:48 +02001079 case QDIO_IRQ_STATE_ESTABLISHED:
1080 case QDIO_IRQ_STATE_ACTIVE:
1081 if (cstat & SCHN_STAT_PCI) {
1082 qdio_int_handler_pci(irq_ptr);
Jan Glauber779e6e12008-07-17 17:16:48 +02001083 return;
1084 }
Jan Glauber4c575422009-06-12 10:26:28 +02001085 if (cstat || dstat)
Jan Glauber779e6e12008-07-17 17:16:48 +02001086 qdio_handle_activate_check(cdev, intparm, cstat,
1087 dstat);
Jan Glauber4c575422009-06-12 10:26:28 +02001088 break;
Jan Glauber959153d2010-02-09 09:46:08 +01001089 case QDIO_IRQ_STATE_STOPPED:
1090 break;
Jan Glauber779e6e12008-07-17 17:16:48 +02001091 default:
Jan Glauberce1d8012012-10-24 12:38:35 +02001092 WARN_ON_ONCE(1);
Jan Glauber779e6e12008-07-17 17:16:48 +02001093 }
1094 wake_up(&cdev->private->wait_q);
1095}
1096
1097/**
1098 * qdio_get_ssqd_desc - get qdio subchannel description
1099 * @cdev: ccw device to get description for
Jan Glauberbbd50e12008-12-25 13:38:43 +01001100 * @data: where to store the ssqd
Jan Glauber779e6e12008-07-17 17:16:48 +02001101 *
Jan Glauberbbd50e12008-12-25 13:38:43 +01001102 * Returns 0 or an error code. The results of the chsc are stored in the
1103 * specified structure.
Jan Glauber779e6e12008-07-17 17:16:48 +02001104 */
Jan Glauberbbd50e12008-12-25 13:38:43 +01001105int qdio_get_ssqd_desc(struct ccw_device *cdev,
1106 struct qdio_ssqd_desc *data)
Jan Glauber779e6e12008-07-17 17:16:48 +02001107{
Sebastian Ott9080c922016-07-28 20:30:31 +02001108 struct subchannel_id schid;
Jan Glauber779e6e12008-07-17 17:16:48 +02001109
Jan Glauberbbd50e12008-12-25 13:38:43 +01001110 if (!cdev || !cdev->private)
1111 return -EINVAL;
1112
Sebastian Ott9080c922016-07-28 20:30:31 +02001113 ccw_device_get_schid(cdev, &schid);
1114 DBF_EVENT("get ssqd:%4x", schid.sch_no);
1115 return qdio_setup_get_ssqd(NULL, &schid, data);
Jan Glauber779e6e12008-07-17 17:16:48 +02001116}
1117EXPORT_SYMBOL_GPL(qdio_get_ssqd_desc);
1118
Jan Glauber779e6e12008-07-17 17:16:48 +02001119static void qdio_shutdown_queues(struct ccw_device *cdev)
1120{
1121 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
1122 struct qdio_q *q;
1123 int i;
1124
1125 for_each_input_queue(irq_ptr, q, i)
Jan Glauberc38f9602009-03-26 15:24:26 +01001126 tasklet_kill(&q->tasklet);
Jan Glauber779e6e12008-07-17 17:16:48 +02001127
1128 for_each_output_queue(irq_ptr, q, i) {
Ursula Braun9bce8b22016-08-05 12:33:10 +02001129 del_timer_sync(&q->u.out.timer);
Jan Glauberc38f9602009-03-26 15:24:26 +01001130 tasklet_kill(&q->tasklet);
Jan Glauber779e6e12008-07-17 17:16:48 +02001131 }
1132}
1133
1134/**
1135 * qdio_shutdown - shut down a qdio subchannel
1136 * @cdev: associated ccw device
1137 * @how: use halt or clear to shutdown
1138 */
1139int qdio_shutdown(struct ccw_device *cdev, int how)
1140{
Jan Glauber22f99342008-12-25 13:38:46 +01001141 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
Sebastian Ott9080c922016-07-28 20:30:31 +02001142 struct subchannel_id schid;
Jan Glauber779e6e12008-07-17 17:16:48 +02001143 int rc;
Jan Glauber779e6e12008-07-17 17:16:48 +02001144
Jan Glauber779e6e12008-07-17 17:16:48 +02001145 if (!irq_ptr)
1146 return -ENODEV;
1147
Jan Glauberce1d8012012-10-24 12:38:35 +02001148 WARN_ON_ONCE(irqs_disabled());
Sebastian Ott9080c922016-07-28 20:30:31 +02001149 ccw_device_get_schid(cdev, &schid);
1150 DBF_EVENT("qshutdown:%4x", schid.sch_no);
Jan Glauber22f99342008-12-25 13:38:46 +01001151
Jan Glauber779e6e12008-07-17 17:16:48 +02001152 mutex_lock(&irq_ptr->setup_mutex);
1153 /*
1154 * Subchannel was already shot down. We cannot prevent being called
1155 * twice since cio may trigger a shutdown asynchronously.
1156 */
1157 if (irq_ptr->state == QDIO_IRQ_STATE_INACTIVE) {
1158 mutex_unlock(&irq_ptr->setup_mutex);
1159 return 0;
1160 }
1161
Jan Glauberc38f9602009-03-26 15:24:26 +01001162 /*
1163 * Indicate that the device is going down. Scheduling the queue
1164 * tasklets is forbidden from here on.
1165 */
1166 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_STOPPED);
1167
Jan Glauber779e6e12008-07-17 17:16:48 +02001168 tiqdio_remove_input_queues(irq_ptr);
1169 qdio_shutdown_queues(cdev);
Stefan Rasplaa2383f2013-02-26 13:08:34 +01001170 qdio_shutdown_debug_entries(irq_ptr);
Jan Glauber779e6e12008-07-17 17:16:48 +02001171
1172 /* cleanup subchannel */
Sebastian Otta48ed862016-07-29 13:41:20 +02001173 spin_lock_irq(get_ccwdev_lock(cdev));
Jan Glauber779e6e12008-07-17 17:16:48 +02001174
1175 if (how & QDIO_FLAG_CLEANUP_USING_CLEAR)
1176 rc = ccw_device_clear(cdev, QDIO_DOING_CLEANUP);
1177 else
1178 /* default behaviour is halt */
1179 rc = ccw_device_halt(cdev, QDIO_DOING_CLEANUP);
1180 if (rc) {
Jan Glauber22f99342008-12-25 13:38:46 +01001181 DBF_ERROR("%4x SHUTD ERR", irq_ptr->schid.sch_no);
1182 DBF_ERROR("rc:%4d", rc);
Jan Glauber779e6e12008-07-17 17:16:48 +02001183 goto no_cleanup;
1184 }
1185
1186 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_CLEANUP);
Sebastian Otta48ed862016-07-29 13:41:20 +02001187 spin_unlock_irq(get_ccwdev_lock(cdev));
Jan Glauber779e6e12008-07-17 17:16:48 +02001188 wait_event_interruptible_timeout(cdev->private->wait_q,
1189 irq_ptr->state == QDIO_IRQ_STATE_INACTIVE ||
1190 irq_ptr->state == QDIO_IRQ_STATE_ERR,
1191 10 * HZ);
Sebastian Otta48ed862016-07-29 13:41:20 +02001192 spin_lock_irq(get_ccwdev_lock(cdev));
Jan Glauber779e6e12008-07-17 17:16:48 +02001193
1194no_cleanup:
1195 qdio_shutdown_thinint(irq_ptr);
1196
1197 /* restore interrupt handler */
Julian Wiedmann89286322018-03-21 17:14:00 +01001198 if ((void *)cdev->handler == (void *)qdio_int_handler) {
Jan Glauber779e6e12008-07-17 17:16:48 +02001199 cdev->handler = irq_ptr->orig_handler;
Julian Wiedmann89286322018-03-21 17:14:00 +01001200 cdev->private->intparm = 0;
1201 }
Sebastian Otta48ed862016-07-29 13:41:20 +02001202 spin_unlock_irq(get_ccwdev_lock(cdev));
Jan Glauber779e6e12008-07-17 17:16:48 +02001203
1204 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_INACTIVE);
1205 mutex_unlock(&irq_ptr->setup_mutex);
Jan Glauber779e6e12008-07-17 17:16:48 +02001206 if (rc)
1207 return rc;
1208 return 0;
1209}
1210EXPORT_SYMBOL_GPL(qdio_shutdown);
1211
1212/**
1213 * qdio_free - free data structures for a qdio subchannel
1214 * @cdev: associated ccw device
1215 */
1216int qdio_free(struct ccw_device *cdev)
1217{
Jan Glauber22f99342008-12-25 13:38:46 +01001218 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
Sebastian Ott9080c922016-07-28 20:30:31 +02001219 struct subchannel_id schid;
Jan Glauber779e6e12008-07-17 17:16:48 +02001220
Jan Glauber779e6e12008-07-17 17:16:48 +02001221 if (!irq_ptr)
1222 return -ENODEV;
1223
Sebastian Ott9080c922016-07-28 20:30:31 +02001224 ccw_device_get_schid(cdev, &schid);
1225 DBF_EVENT("qfree:%4x", schid.sch_no);
Stefan Raspl613c4e02014-06-12 14:24:45 +02001226 DBF_DEV_EVENT(DBF_ERR, irq_ptr, "dbf abandoned");
Jan Glauber779e6e12008-07-17 17:16:48 +02001227 mutex_lock(&irq_ptr->setup_mutex);
Jan Glauber22f99342008-12-25 13:38:46 +01001228
Stefan Raspl613c4e02014-06-12 14:24:45 +02001229 irq_ptr->debug_area = NULL;
Jan Glauber779e6e12008-07-17 17:16:48 +02001230 cdev->private->qdio_data = NULL;
1231 mutex_unlock(&irq_ptr->setup_mutex);
1232
1233 qdio_release_memory(irq_ptr);
1234 return 0;
1235}
1236EXPORT_SYMBOL_GPL(qdio_free);
1237
1238/**
Jan Glauber779e6e12008-07-17 17:16:48 +02001239 * qdio_allocate - allocate qdio queues and associated data
1240 * @init_data: initialization data
1241 */
1242int qdio_allocate(struct qdio_initialize *init_data)
1243{
Sebastian Ott9080c922016-07-28 20:30:31 +02001244 struct subchannel_id schid;
Jan Glauber779e6e12008-07-17 17:16:48 +02001245 struct qdio_irq *irq_ptr;
Jan Glauber779e6e12008-07-17 17:16:48 +02001246
Sebastian Ott9080c922016-07-28 20:30:31 +02001247 ccw_device_get_schid(init_data->cdev, &schid);
1248 DBF_EVENT("qallocate:%4x", schid.sch_no);
Jan Glauber779e6e12008-07-17 17:16:48 +02001249
1250 if ((init_data->no_input_qs && !init_data->input_handler) ||
1251 (init_data->no_output_qs && !init_data->output_handler))
1252 return -EINVAL;
1253
1254 if ((init_data->no_input_qs > QDIO_MAX_QUEUES_PER_IRQ) ||
1255 (init_data->no_output_qs > QDIO_MAX_QUEUES_PER_IRQ))
1256 return -EINVAL;
1257
1258 if ((!init_data->input_sbal_addr_array) ||
1259 (!init_data->output_sbal_addr_array))
1260 return -EINVAL;
1261
Jan Glauber779e6e12008-07-17 17:16:48 +02001262 /* irq_ptr must be in GFP_DMA since it contains ccw1.cda */
1263 irq_ptr = (void *) get_zeroed_page(GFP_KERNEL | GFP_DMA);
1264 if (!irq_ptr)
1265 goto out_err;
Jan Glauber779e6e12008-07-17 17:16:48 +02001266
1267 mutex_init(&irq_ptr->setup_mutex);
Stefan Raspl613c4e02014-06-12 14:24:45 +02001268 if (qdio_allocate_dbf(init_data, irq_ptr))
1269 goto out_rel;
Jan Glauber779e6e12008-07-17 17:16:48 +02001270
1271 /*
1272 * Allocate a page for the chsc calls in qdio_establish.
1273 * Must be pre-allocated since a zfcp recovery will call
1274 * qdio_establish. In case of low memory and swap on a zfcp disk
1275 * we may not be able to allocate memory otherwise.
1276 */
1277 irq_ptr->chsc_page = get_zeroed_page(GFP_KERNEL);
1278 if (!irq_ptr->chsc_page)
1279 goto out_rel;
1280
1281 /* qdr is used in ccw1.cda which is u32 */
Jan Glauber3b8e3002008-08-01 16:39:17 +02001282 irq_ptr->qdr = (struct qdr *) get_zeroed_page(GFP_KERNEL | GFP_DMA);
Jan Glauber779e6e12008-07-17 17:16:48 +02001283 if (!irq_ptr->qdr)
1284 goto out_rel;
Jan Glauber779e6e12008-07-17 17:16:48 +02001285
Jan Glauber779e6e12008-07-17 17:16:48 +02001286 if (qdio_allocate_qs(irq_ptr, init_data->no_input_qs,
1287 init_data->no_output_qs))
1288 goto out_rel;
1289
1290 init_data->cdev->private->qdio_data = irq_ptr;
1291 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_INACTIVE);
1292 return 0;
1293out_rel:
1294 qdio_release_memory(irq_ptr);
1295out_err:
1296 return -ENOMEM;
1297}
1298EXPORT_SYMBOL_GPL(qdio_allocate);
1299
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +00001300static void qdio_detect_hsicq(struct qdio_irq *irq_ptr)
1301{
1302 struct qdio_q *q = irq_ptr->input_qs[0];
1303 int i, use_cq = 0;
1304
1305 if (irq_ptr->nr_input_qs > 1 && queue_type(q) == QDIO_IQDIO_QFMT)
1306 use_cq = 1;
1307
1308 for_each_output_queue(irq_ptr, q, i) {
1309 if (use_cq) {
1310 if (qdio_enable_async_operation(&q->u.out) < 0) {
1311 use_cq = 0;
1312 continue;
1313 }
1314 } else
1315 qdio_disable_async_operation(&q->u.out);
1316 }
1317 DBF_EVENT("use_cq:%d", use_cq);
1318}
1319
Jan Glauber779e6e12008-07-17 17:16:48 +02001320/**
1321 * qdio_establish - establish queues on a qdio subchannel
1322 * @init_data: initialization data
1323 */
1324int qdio_establish(struct qdio_initialize *init_data)
1325{
Jan Glauber779e6e12008-07-17 17:16:48 +02001326 struct ccw_device *cdev = init_data->cdev;
Sebastian Ott9080c922016-07-28 20:30:31 +02001327 struct subchannel_id schid;
1328 struct qdio_irq *irq_ptr;
Jan Glauber779e6e12008-07-17 17:16:48 +02001329 int rc;
1330
Sebastian Ott9080c922016-07-28 20:30:31 +02001331 ccw_device_get_schid(cdev, &schid);
1332 DBF_EVENT("qestablish:%4x", schid.sch_no);
Jan Glauber58eb27c2008-08-21 19:46:34 +02001333
Jan Glauber779e6e12008-07-17 17:16:48 +02001334 irq_ptr = cdev->private->qdio_data;
1335 if (!irq_ptr)
1336 return -ENODEV;
1337
Jan Glauber779e6e12008-07-17 17:16:48 +02001338 mutex_lock(&irq_ptr->setup_mutex);
1339 qdio_setup_irq(init_data);
1340
1341 rc = qdio_establish_thinint(irq_ptr);
1342 if (rc) {
1343 mutex_unlock(&irq_ptr->setup_mutex);
1344 qdio_shutdown(cdev, QDIO_FLAG_CLEANUP_USING_CLEAR);
1345 return rc;
1346 }
1347
1348 /* establish q */
1349 irq_ptr->ccw.cmd_code = irq_ptr->equeue.cmd;
1350 irq_ptr->ccw.flags = CCW_FLAG_SLI;
1351 irq_ptr->ccw.count = irq_ptr->equeue.count;
1352 irq_ptr->ccw.cda = (u32)((addr_t)irq_ptr->qdr);
1353
Sebastian Otta48ed862016-07-29 13:41:20 +02001354 spin_lock_irq(get_ccwdev_lock(cdev));
Jan Glauber779e6e12008-07-17 17:16:48 +02001355 ccw_device_set_options_mask(cdev, 0);
1356
1357 rc = ccw_device_start(cdev, &irq_ptr->ccw, QDIO_DOING_ESTABLISH, 0, 0);
Sebastian Ottddebf662016-07-29 14:00:27 +02001358 spin_unlock_irq(get_ccwdev_lock(cdev));
Jan Glauber779e6e12008-07-17 17:16:48 +02001359 if (rc) {
Jan Glauber22f99342008-12-25 13:38:46 +01001360 DBF_ERROR("%4x est IO ERR", irq_ptr->schid.sch_no);
1361 DBF_ERROR("rc:%4x", rc);
Jan Glauber779e6e12008-07-17 17:16:48 +02001362 mutex_unlock(&irq_ptr->setup_mutex);
1363 qdio_shutdown(cdev, QDIO_FLAG_CLEANUP_USING_CLEAR);
1364 return rc;
1365 }
1366
1367 wait_event_interruptible_timeout(cdev->private->wait_q,
1368 irq_ptr->state == QDIO_IRQ_STATE_ESTABLISHED ||
1369 irq_ptr->state == QDIO_IRQ_STATE_ERR, HZ);
1370
1371 if (irq_ptr->state != QDIO_IRQ_STATE_ESTABLISHED) {
1372 mutex_unlock(&irq_ptr->setup_mutex);
1373 qdio_shutdown(cdev, QDIO_FLAG_CLEANUP_USING_CLEAR);
1374 return -EIO;
1375 }
1376
1377 qdio_setup_ssqd_info(irq_ptr);
Jan Glauber779e6e12008-07-17 17:16:48 +02001378
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +00001379 qdio_detect_hsicq(irq_ptr);
1380
Jan Glauber779e6e12008-07-17 17:16:48 +02001381 /* qebsm is now setup if available, initialize buffer states */
1382 qdio_init_buf_states(irq_ptr);
1383
1384 mutex_unlock(&irq_ptr->setup_mutex);
1385 qdio_print_subchannel_info(irq_ptr, cdev);
1386 qdio_setup_debug_entries(irq_ptr, cdev);
1387 return 0;
1388}
1389EXPORT_SYMBOL_GPL(qdio_establish);
1390
1391/**
1392 * qdio_activate - activate queues on a qdio subchannel
1393 * @cdev: associated cdev
1394 */
1395int qdio_activate(struct ccw_device *cdev)
1396{
Sebastian Ott9080c922016-07-28 20:30:31 +02001397 struct subchannel_id schid;
Jan Glauber779e6e12008-07-17 17:16:48 +02001398 struct qdio_irq *irq_ptr;
1399 int rc;
Jan Glauber779e6e12008-07-17 17:16:48 +02001400
Sebastian Ott9080c922016-07-28 20:30:31 +02001401 ccw_device_get_schid(cdev, &schid);
1402 DBF_EVENT("qactivate:%4x", schid.sch_no);
Jan Glauber58eb27c2008-08-21 19:46:34 +02001403
Jan Glauber779e6e12008-07-17 17:16:48 +02001404 irq_ptr = cdev->private->qdio_data;
1405 if (!irq_ptr)
1406 return -ENODEV;
1407
Jan Glauber779e6e12008-07-17 17:16:48 +02001408 mutex_lock(&irq_ptr->setup_mutex);
1409 if (irq_ptr->state == QDIO_IRQ_STATE_INACTIVE) {
1410 rc = -EBUSY;
1411 goto out;
1412 }
1413
Jan Glauber779e6e12008-07-17 17:16:48 +02001414 irq_ptr->ccw.cmd_code = irq_ptr->aqueue.cmd;
1415 irq_ptr->ccw.flags = CCW_FLAG_SLI;
1416 irq_ptr->ccw.count = irq_ptr->aqueue.count;
1417 irq_ptr->ccw.cda = 0;
1418
Sebastian Otta48ed862016-07-29 13:41:20 +02001419 spin_lock_irq(get_ccwdev_lock(cdev));
Jan Glauber779e6e12008-07-17 17:16:48 +02001420 ccw_device_set_options(cdev, CCWDEV_REPORT_ALL);
1421
1422 rc = ccw_device_start(cdev, &irq_ptr->ccw, QDIO_DOING_ACTIVATE,
1423 0, DOIO_DENY_PREFETCH);
Sebastian Ottddebf662016-07-29 14:00:27 +02001424 spin_unlock_irq(get_ccwdev_lock(cdev));
Jan Glauber779e6e12008-07-17 17:16:48 +02001425 if (rc) {
Jan Glauber22f99342008-12-25 13:38:46 +01001426 DBF_ERROR("%4x act IO ERR", irq_ptr->schid.sch_no);
1427 DBF_ERROR("rc:%4x", rc);
Jan Glauber779e6e12008-07-17 17:16:48 +02001428 goto out;
Sebastian Ottddebf662016-07-29 14:00:27 +02001429 }
Jan Glauber779e6e12008-07-17 17:16:48 +02001430
1431 if (is_thinint_irq(irq_ptr))
1432 tiqdio_add_input_queues(irq_ptr);
1433
1434 /* wait for subchannel to become active */
1435 msleep(5);
1436
1437 switch (irq_ptr->state) {
1438 case QDIO_IRQ_STATE_STOPPED:
1439 case QDIO_IRQ_STATE_ERR:
Jan Glaubere4c14e22009-03-26 15:24:25 +01001440 rc = -EIO;
1441 break;
Jan Glauber779e6e12008-07-17 17:16:48 +02001442 default:
1443 qdio_set_state(irq_ptr, QDIO_IRQ_STATE_ACTIVE);
1444 rc = 0;
1445 }
1446out:
1447 mutex_unlock(&irq_ptr->setup_mutex);
1448 return rc;
1449}
1450EXPORT_SYMBOL_GPL(qdio_activate);
1451
1452static inline int buf_in_between(int bufnr, int start, int count)
1453{
1454 int end = add_buf(start, count);
1455
1456 if (end > start) {
1457 if (bufnr >= start && bufnr < end)
1458 return 1;
1459 else
1460 return 0;
1461 }
1462
1463 /* wrap-around case */
1464 if ((bufnr >= start && bufnr <= QDIO_MAX_BUFFERS_PER_Q) ||
1465 (bufnr < end))
1466 return 1;
1467 else
1468 return 0;
1469}
1470
1471/**
1472 * handle_inbound - reset processed input buffers
1473 * @q: queue containing the buffers
1474 * @callflags: flags
1475 * @bufnr: first buffer to process
1476 * @count: how many buffers are emptied
1477 */
Jan Glauberd303b6f2009-03-26 15:24:31 +01001478static int handle_inbound(struct qdio_q *q, unsigned int callflags,
1479 int bufnr, int count)
Jan Glauber779e6e12008-07-17 17:16:48 +02001480{
Sebastian Ottdae7fd42013-07-05 09:22:11 +02001481 int diff;
Jan Glauber779e6e12008-07-17 17:16:48 +02001482
Jan Glauber6486cda2010-01-04 09:05:42 +01001483 qperf_inc(q, inbound_call);
1484
Jan Glauber50f769d2008-12-25 13:38:47 +01001485 if (!q->u.in.polling)
1486 goto set;
1487
1488 /* protect against stop polling setting an ACK for an emptied slsb */
1489 if (count == QDIO_MAX_BUFFERS_PER_Q) {
1490 /* overwriting everything, just delete polling status */
1491 q->u.in.polling = 0;
1492 q->u.in.ack_count = 0;
1493 goto set;
Jan Glaubere85dea02009-03-26 15:24:29 +01001494 } else if (buf_in_between(q->u.in.ack_start, bufnr, count)) {
Jan Glauber50f769d2008-12-25 13:38:47 +01001495 if (is_qebsm(q)) {
Jan Glaubere85dea02009-03-26 15:24:29 +01001496 /* partial overwrite, just update ack_start */
Jan Glauber50f769d2008-12-25 13:38:47 +01001497 diff = add_buf(bufnr, count);
Jan Glaubere85dea02009-03-26 15:24:29 +01001498 diff = sub_buf(diff, q->u.in.ack_start);
Jan Glauber50f769d2008-12-25 13:38:47 +01001499 q->u.in.ack_count -= diff;
1500 if (q->u.in.ack_count <= 0) {
1501 q->u.in.polling = 0;
1502 q->u.in.ack_count = 0;
Jan Glauber50f769d2008-12-25 13:38:47 +01001503 goto set;
1504 }
Jan Glaubere85dea02009-03-26 15:24:29 +01001505 q->u.in.ack_start = add_buf(q->u.in.ack_start, diff);
Jan Glauber50f769d2008-12-25 13:38:47 +01001506 }
1507 else
1508 /* the only ACK will be deleted, so stop polling */
Jan Glauber779e6e12008-07-17 17:16:48 +02001509 q->u.in.polling = 0;
Jan Glauber50f769d2008-12-25 13:38:47 +01001510 }
Jan Glauber779e6e12008-07-17 17:16:48 +02001511
Jan Glauber50f769d2008-12-25 13:38:47 +01001512set:
Jan Glauber779e6e12008-07-17 17:16:48 +02001513 count = set_buf_states(q, bufnr, SLSB_CU_INPUT_EMPTY, count);
Sebastian Ottdae7fd42013-07-05 09:22:11 +02001514 atomic_add(count, &q->nr_buf_used);
Jan Glauber779e6e12008-07-17 17:16:48 +02001515
Jan Glauberd303b6f2009-03-26 15:24:31 +01001516 if (need_siga_in(q))
1517 return qdio_siga_input(q);
frank.blaschka@de.ibm.com9cb72842011-08-08 01:33:56 +00001518
Jan Glauberd303b6f2009-03-26 15:24:31 +01001519 return 0;
Jan Glauber779e6e12008-07-17 17:16:48 +02001520}
1521
1522/**
1523 * handle_outbound - process filled outbound buffers
1524 * @q: queue containing the buffers
1525 * @callflags: flags
1526 * @bufnr: first buffer to process
1527 * @count: how many buffers are filled
1528 */
Jan Glauberd303b6f2009-03-26 15:24:31 +01001529static int handle_outbound(struct qdio_q *q, unsigned int callflags,
1530 int bufnr, int count)
Jan Glauber779e6e12008-07-17 17:16:48 +02001531{
Jan Glauberc26001d2011-05-23 10:24:38 +02001532 unsigned char state = 0;
Jan Glauberd303b6f2009-03-26 15:24:31 +01001533 int used, rc = 0;
Jan Glauber779e6e12008-07-17 17:16:48 +02001534
Jan Glauber6486cda2010-01-04 09:05:42 +01001535 qperf_inc(q, outbound_call);
Jan Glauber779e6e12008-07-17 17:16:48 +02001536
1537 count = set_buf_states(q, bufnr, SLSB_CU_OUTPUT_PRIMED, count);
1538 used = atomic_add_return(count, &q->nr_buf_used);
Jan Glauber779e6e12008-07-17 17:16:48 +02001539
Jan Glauber01958432011-01-05 12:47:51 +01001540 if (used == QDIO_MAX_BUFFERS_PER_Q)
1541 qperf_inc(q, outbound_queue_full);
1542
Jan Glauber6486cda2010-01-04 09:05:42 +01001543 if (callflags & QDIO_FLAG_PCI_OUT) {
Jan Glauber779e6e12008-07-17 17:16:48 +02001544 q->u.out.pci_out_enabled = 1;
Jan Glauber6486cda2010-01-04 09:05:42 +01001545 qperf_inc(q, pci_request_int);
Jan Glauber110da312011-01-05 12:47:53 +01001546 } else
Jan Glauber779e6e12008-07-17 17:16:48 +02001547 q->u.out.pci_out_enabled = 0;
1548
1549 if (queue_type(q) == QDIO_IQDIO_QFMT) {
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +00001550 unsigned long phys_aob = 0;
1551
1552 /* One SIGA-W per buffer required for unicast HSI */
Jan Glauber110da312011-01-05 12:47:53 +01001553 WARN_ON_ONCE(count > 1 && !multicast_outbound(q));
1554
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +00001555 phys_aob = qdio_aob_for_buffer(&q->u.out, bufnr);
1556
1557 rc = qdio_kick_outbound_q(q, phys_aob);
Jan Glauber90adac52011-01-05 12:47:54 +01001558 } else if (need_siga_sync(q)) {
Jan Glauber110da312011-01-05 12:47:53 +01001559 rc = qdio_siga_sync_q(q);
1560 } else {
1561 /* try to fast requeue buffers */
1562 get_buf_state(q, prev_buf(bufnr), &state, 0);
1563 if (state != SLSB_CU_OUTPUT_PRIMED)
frank.blaschka@de.ibm.com104ea552011-08-08 01:33:55 +00001564 rc = qdio_kick_outbound_q(q, 0);
Jan Glauber779e6e12008-07-17 17:16:48 +02001565 else
Jan Glauber110da312011-01-05 12:47:53 +01001566 qperf_inc(q, fast_requeue);
Jan Glauber779e6e12008-07-17 17:16:48 +02001567 }
1568
Jan Glauber3d6c76f2011-01-05 12:47:50 +01001569 /* in case of SIGA errors we must process the error immediately */
1570 if (used >= q->u.out.scan_threshold || rc)
Ursula Braun9bce8b22016-08-05 12:33:10 +02001571 qdio_tasklet_schedule(q);
Jan Glauber3d6c76f2011-01-05 12:47:50 +01001572 else
1573 /* free the SBALs in case of no further traffic */
Ursula Braun9bce8b22016-08-05 12:33:10 +02001574 if (!timer_pending(&q->u.out.timer) &&
1575 likely(q->irq_ptr->state == QDIO_IRQ_STATE_ACTIVE))
Jan Glauber3d6c76f2011-01-05 12:47:50 +01001576 mod_timer(&q->u.out.timer, jiffies + HZ);
Jan Glauberd303b6f2009-03-26 15:24:31 +01001577 return rc;
Jan Glauber779e6e12008-07-17 17:16:48 +02001578}
1579
1580/**
1581 * do_QDIO - process input or output buffers
1582 * @cdev: associated ccw_device for the qdio subchannel
1583 * @callflags: input or output and special flags from the program
1584 * @q_nr: queue number
1585 * @bufnr: buffer number
1586 * @count: how many buffers to process
1587 */
1588int do_QDIO(struct ccw_device *cdev, unsigned int callflags,
Jan Glauber66182412009-06-22 12:08:15 +02001589 int q_nr, unsigned int bufnr, unsigned int count)
Jan Glauber779e6e12008-07-17 17:16:48 +02001590{
1591 struct qdio_irq *irq_ptr;
Jan Glauber779e6e12008-07-17 17:16:48 +02001592
Jan Glauber66182412009-06-22 12:08:15 +02001593 if (bufnr >= QDIO_MAX_BUFFERS_PER_Q || count > QDIO_MAX_BUFFERS_PER_Q)
Jan Glauber779e6e12008-07-17 17:16:48 +02001594 return -EINVAL;
1595
Jan Glauber779e6e12008-07-17 17:16:48 +02001596 irq_ptr = cdev->private->qdio_data;
1597 if (!irq_ptr)
1598 return -ENODEV;
1599
Jan Glauber1d7e1502009-09-22 22:58:39 +02001600 DBF_DEV_EVENT(DBF_INFO, irq_ptr,
1601 "do%02x b:%02x c:%02x", callflags, bufnr, count);
Jan Glauber779e6e12008-07-17 17:16:48 +02001602
1603 if (irq_ptr->state != QDIO_IRQ_STATE_ACTIVE)
Jan Glauber1549d132012-05-09 16:27:34 +02001604 return -EIO;
Jan Glauber9a265132011-03-23 10:16:01 +01001605 if (!count)
1606 return 0;
Jan Glauber779e6e12008-07-17 17:16:48 +02001607 if (callflags & QDIO_FLAG_SYNC_INPUT)
Jan Glauberd303b6f2009-03-26 15:24:31 +01001608 return handle_inbound(irq_ptr->input_qs[q_nr],
1609 callflags, bufnr, count);
Jan Glauber779e6e12008-07-17 17:16:48 +02001610 else if (callflags & QDIO_FLAG_SYNC_OUTPUT)
Jan Glauberd303b6f2009-03-26 15:24:31 +01001611 return handle_outbound(irq_ptr->output_qs[q_nr],
1612 callflags, bufnr, count);
1613 return -EINVAL;
Jan Glauber779e6e12008-07-17 17:16:48 +02001614}
1615EXPORT_SYMBOL_GPL(do_QDIO);
1616
Jan Glauberd36deae2010-09-07 21:14:39 +00001617/**
1618 * qdio_start_irq - process input buffers
1619 * @cdev: associated ccw_device for the qdio subchannel
1620 * @nr: input queue number
1621 *
1622 * Return codes
1623 * 0 - success
1624 * 1 - irqs not started since new data is available
1625 */
1626int qdio_start_irq(struct ccw_device *cdev, int nr)
1627{
1628 struct qdio_q *q;
1629 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
1630
1631 if (!irq_ptr)
1632 return -ENODEV;
1633 q = irq_ptr->input_qs[nr];
1634
Jan Glauber5f4026f2011-10-30 15:17:20 +01001635 clear_nonshared_ind(irq_ptr);
Jan Glauberd36deae2010-09-07 21:14:39 +00001636 qdio_stop_polling(q);
1637 clear_bit(QDIO_QUEUE_IRQS_DISABLED, &q->u.in.queue_irq_state);
1638
1639 /*
1640 * We need to check again to not lose initiative after
1641 * resetting the ACK state.
1642 */
Jan Glauber5f4026f2011-10-30 15:17:20 +01001643 if (test_nonshared_ind(irq_ptr))
Jan Glauberd36deae2010-09-07 21:14:39 +00001644 goto rescan;
Julian Wiedmann6bcf74e2019-04-08 13:32:12 +02001645 if (!qdio_inbound_q_done(q, q->first_to_check))
Jan Glauberd36deae2010-09-07 21:14:39 +00001646 goto rescan;
1647 return 0;
1648
1649rescan:
1650 if (test_and_set_bit(QDIO_QUEUE_IRQS_DISABLED,
1651 &q->u.in.queue_irq_state))
1652 return 0;
1653 else
1654 return 1;
1655
1656}
1657EXPORT_SYMBOL(qdio_start_irq);
1658
1659/**
1660 * qdio_get_next_buffers - process input buffers
1661 * @cdev: associated ccw_device for the qdio subchannel
1662 * @nr: input queue number
1663 * @bufnr: first filled buffer number
1664 * @error: buffers are in error state
1665 *
1666 * Return codes
1667 * < 0 - error
1668 * = 0 - no new buffers found
1669 * > 0 - number of processed buffers
1670 */
1671int qdio_get_next_buffers(struct ccw_device *cdev, int nr, int *bufnr,
1672 int *error)
1673{
1674 struct qdio_q *q;
Jan Glauberd36deae2010-09-07 21:14:39 +00001675 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
Julian Wiedmann6bcf74e2019-04-08 13:32:12 +02001676 unsigned int start;
Julian Wiedmannb39544c2019-03-28 10:39:25 +01001677 int count;
Jan Glauberd36deae2010-09-07 21:14:39 +00001678
1679 if (!irq_ptr)
1680 return -ENODEV;
1681 q = irq_ptr->input_qs[nr];
Julian Wiedmann6bcf74e2019-04-08 13:32:12 +02001682 start = q->first_to_check;
Jan Glauberd36deae2010-09-07 21:14:39 +00001683
Jan Glauberd36deae2010-09-07 21:14:39 +00001684 /*
Jan Glauber90adac52011-01-05 12:47:54 +01001685 * Cannot rely on automatic sync after interrupt since queues may
1686 * also be examined without interrupt.
Jan Glauberd36deae2010-09-07 21:14:39 +00001687 */
Jan Glauber90adac52011-01-05 12:47:54 +01001688 if (need_siga_sync(q))
1689 qdio_sync_queues(q);
1690
Julian Wiedmann2f2f3832018-10-30 08:21:27 +01001691 qdio_check_outbound_pci_queues(irq_ptr);
Jan Glauberd36deae2010-09-07 21:14:39 +00001692
Julian Wiedmann6bcf74e2019-04-08 13:32:12 +02001693 count = qdio_inbound_q_moved(q, start);
Julian Wiedmannb39544c2019-03-28 10:39:25 +01001694 if (count == 0)
Jan Glauberd36deae2010-09-07 21:14:39 +00001695 return 0;
1696
Julian Wiedmann6bcf74e2019-04-08 13:32:12 +02001697 start = add_buf(start, count);
1698 q->first_to_check = start;
1699
Jan Glauberd36deae2010-09-07 21:14:39 +00001700 /* Note: upper-layer MUST stop processing immediately here ... */
1701 if (unlikely(q->irq_ptr->state != QDIO_IRQ_STATE_ACTIVE))
1702 return -EIO;
1703
Julian Wiedmann65e4f772019-03-28 10:43:46 +01001704 *bufnr = q->first_to_kick;
Jan Glauberd36deae2010-09-07 21:14:39 +00001705 *error = q->qdio_error;
1706
1707 /* for the next time */
Julian Wiedmann65e4f772019-03-28 10:43:46 +01001708 q->first_to_kick = add_buf(q->first_to_kick, count);
Jan Glauberd36deae2010-09-07 21:14:39 +00001709 q->qdio_error = 0;
Julian Wiedmann65e4f772019-03-28 10:43:46 +01001710
1711 return count;
Jan Glauberd36deae2010-09-07 21:14:39 +00001712}
1713EXPORT_SYMBOL(qdio_get_next_buffers);
1714
1715/**
1716 * qdio_stop_irq - disable interrupt processing for the device
1717 * @cdev: associated ccw_device for the qdio subchannel
1718 * @nr: input queue number
1719 *
1720 * Return codes
1721 * 0 - interrupts were already disabled
1722 * 1 - interrupts successfully disabled
1723 */
1724int qdio_stop_irq(struct ccw_device *cdev, int nr)
1725{
1726 struct qdio_q *q;
1727 struct qdio_irq *irq_ptr = cdev->private->qdio_data;
1728
1729 if (!irq_ptr)
1730 return -ENODEV;
1731 q = irq_ptr->input_qs[nr];
1732
1733 if (test_and_set_bit(QDIO_QUEUE_IRQS_DISABLED,
1734 &q->u.in.queue_irq_state))
1735 return 0;
1736 else
1737 return 1;
1738}
1739EXPORT_SYMBOL(qdio_stop_irq);
1740
Eugene Crosser1c59a862013-04-24 12:00:23 +02001741/**
1742 * qdio_pnso_brinfo() - perform network subchannel op #0 - bridge info.
1743 * @schid: Subchannel ID.
1744 * @cnc: Boolean Change-Notification Control
1745 * @response: Response code will be stored at this address
1746 * @cb: Callback function will be executed for each element
1747 * of the address list
Eugene Crosser1c59a862013-04-24 12:00:23 +02001748 * @priv: Pointer to pass to the callback function.
1749 *
1750 * Performs "Store-network-bridging-information list" operation and calls
1751 * the callback function for every entry in the list. If "change-
1752 * notification-control" is set, further changes in the address list
1753 * will be reported via the IPA command.
1754 */
1755int qdio_pnso_brinfo(struct subchannel_id schid,
1756 int cnc, u16 *response,
1757 void (*cb)(void *priv, enum qdio_brinfo_entry_type type,
1758 void *entry),
1759 void *priv)
1760{
1761 struct chsc_pnso_area *rr;
1762 int rc;
1763 u32 prev_instance = 0;
1764 int isfirstblock = 1;
1765 int i, size, elems;
1766
1767 rr = (struct chsc_pnso_area *)get_zeroed_page(GFP_KERNEL);
1768 if (rr == NULL)
1769 return -ENOMEM;
1770 do {
1771 /* on the first iteration, naihdr.resume_token will be zero */
1772 rc = chsc_pnso_brinfo(schid, rr, rr->naihdr.resume_token, cnc);
1773 if (rc != 0 && rc != -EBUSY)
1774 goto out;
1775 if (rr->response.code != 1) {
1776 rc = -EIO;
1777 continue;
1778 } else
1779 rc = 0;
1780
1781 if (cb == NULL)
1782 continue;
1783
1784 size = rr->naihdr.naids;
1785 elems = (rr->response.length -
1786 sizeof(struct chsc_header) -
1787 sizeof(struct chsc_brinfo_naihdr)) /
1788 size;
1789
1790 if (!isfirstblock && (rr->naihdr.instance != prev_instance)) {
1791 /* Inform the caller that they need to scrap */
1792 /* the data that was already reported via cb */
1793 rc = -EAGAIN;
1794 break;
1795 }
1796 isfirstblock = 0;
1797 prev_instance = rr->naihdr.instance;
1798 for (i = 0; i < elems; i++)
1799 switch (size) {
1800 case sizeof(struct qdio_brinfo_entry_l3_ipv6):
1801 (*cb)(priv, l3_ipv6_addr,
1802 &rr->entries.l3_ipv6[i]);
1803 break;
1804 case sizeof(struct qdio_brinfo_entry_l3_ipv4):
1805 (*cb)(priv, l3_ipv4_addr,
1806 &rr->entries.l3_ipv4[i]);
1807 break;
1808 case sizeof(struct qdio_brinfo_entry_l2):
1809 (*cb)(priv, l2_addr_lnid,
1810 &rr->entries.l2[i]);
1811 break;
1812 default:
1813 WARN_ON_ONCE(1);
1814 rc = -EIO;
1815 goto out;
1816 }
1817 } while (rr->response.code == 0x0107 || /* channel busy */
1818 (rr->response.code == 1 && /* list stored */
1819 /* resume token is non-zero => list incomplete */
1820 (rr->naihdr.resume_token.t1 || rr->naihdr.resume_token.t2)));
1821 (*response) = rr->response.code;
1822
1823out:
1824 free_page((unsigned long)rr);
1825 return rc;
1826}
1827EXPORT_SYMBOL_GPL(qdio_pnso_brinfo);
1828
Jan Glauber779e6e12008-07-17 17:16:48 +02001829static int __init init_QDIO(void)
1830{
1831 int rc;
1832
Sebastian Ottaa5c8df2011-04-04 09:43:31 +02001833 rc = qdio_debug_init();
Jan Glauber779e6e12008-07-17 17:16:48 +02001834 if (rc)
1835 return rc;
Sebastian Ottaa5c8df2011-04-04 09:43:31 +02001836 rc = qdio_setup_init();
1837 if (rc)
1838 goto out_debug;
Jan Glauber779e6e12008-07-17 17:16:48 +02001839 rc = tiqdio_allocate_memory();
1840 if (rc)
1841 goto out_cache;
Jan Glauber779e6e12008-07-17 17:16:48 +02001842 rc = tiqdio_register_thinints();
1843 if (rc)
Sebastian Ottaa5c8df2011-04-04 09:43:31 +02001844 goto out_ti;
Jan Glauber779e6e12008-07-17 17:16:48 +02001845 return 0;
1846
Jan Glauber779e6e12008-07-17 17:16:48 +02001847out_ti:
1848 tiqdio_free_memory();
1849out_cache:
1850 qdio_setup_exit();
Sebastian Ottaa5c8df2011-04-04 09:43:31 +02001851out_debug:
1852 qdio_debug_exit();
Jan Glauber779e6e12008-07-17 17:16:48 +02001853 return rc;
1854}
1855
1856static void __exit exit_QDIO(void)
1857{
1858 tiqdio_unregister_thinints();
1859 tiqdio_free_memory();
Jan Glauber779e6e12008-07-17 17:16:48 +02001860 qdio_setup_exit();
Sebastian Ottaa5c8df2011-04-04 09:43:31 +02001861 qdio_debug_exit();
Jan Glauber779e6e12008-07-17 17:16:48 +02001862}
1863
1864module_init(init_QDIO);
1865module_exit(exit_QDIO);