blob: fd3ba22467e85bf9144cbf3bd8b980210d1a4344 [file] [log] [blame]
Heiko J Schickfab97222006-09-22 15:22:22 -07001/*
2 * IBM eServer eHCA Infiniband device driver for Linux on POWER
3 *
4 * post_send/recv, poll_cq, req_notify
5 *
Joachim Fenkesa6a12942007-07-09 15:25:10 +02006 * Authors: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
7 * Waleri Fomin <fomin@de.ibm.com>
8 * Joachim Fenkes <fenkes@de.ibm.com>
Heiko J Schickfab97222006-09-22 15:22:22 -07009 * Reinhard Ernst <rernst@de.ibm.com>
10 *
11 * Copyright (c) 2005 IBM Corporation
12 *
13 * All rights reserved.
14 *
15 * This source code is distributed under a dual license of GPL v2.0 and OpenIB
16 * BSD.
17 *
18 * OpenIB BSD License
19 *
20 * Redistribution and use in source and binary forms, with or without
21 * modification, are permitted provided that the following conditions are met:
22 *
23 * Redistributions of source code must retain the above copyright notice, this
24 * list of conditions and the following disclaimer.
25 *
26 * Redistributions in binary form must reproduce the above copyright notice,
27 * this list of conditions and the following disclaimer in the documentation
28 * and/or other materials
29 * provided with the distribution.
30 *
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
32 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
33 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
34 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
35 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
36 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
37 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
38 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
39 * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
40 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 * POSSIBILITY OF SUCH DAMAGE.
42 */
43
44
45#include <asm-powerpc/system.h>
46#include "ehca_classes.h"
47#include "ehca_tools.h"
48#include "ehca_qes.h"
49#include "ehca_iverbs.h"
50#include "hcp_if.h"
51#include "hipz_fns.h"
52
53static inline int ehca_write_rwqe(struct ipz_queue *ipz_rqueue,
54 struct ehca_wqe *wqe_p,
55 struct ib_recv_wr *recv_wr)
56{
57 u8 cnt_ds;
58 if (unlikely((recv_wr->num_sge < 0) ||
59 (recv_wr->num_sge > ipz_rqueue->act_nr_of_sg))) {
60 ehca_gen_err("Invalid number of WQE SGE. "
61 "num_sqe=%x max_nr_of_sg=%x",
62 recv_wr->num_sge, ipz_rqueue->act_nr_of_sg);
63 return -EINVAL; /* invalid SG list length */
64 }
65
66 /* clear wqe header until sglist */
67 memset(wqe_p, 0, offsetof(struct ehca_wqe, u.ud_av.sg_list));
68
69 wqe_p->work_request_id = recv_wr->wr_id;
70 wqe_p->nr_of_data_seg = recv_wr->num_sge;
71
72 for (cnt_ds = 0; cnt_ds < recv_wr->num_sge; cnt_ds++) {
73 wqe_p->u.all_rcv.sg_list[cnt_ds].vaddr =
74 recv_wr->sg_list[cnt_ds].addr;
75 wqe_p->u.all_rcv.sg_list[cnt_ds].lkey =
76 recv_wr->sg_list[cnt_ds].lkey;
77 wqe_p->u.all_rcv.sg_list[cnt_ds].length =
78 recv_wr->sg_list[cnt_ds].length;
79 }
80
81 if (ehca_debug_level) {
82 ehca_gen_dbg("RECEIVE WQE written into ipz_rqueue=%p", ipz_rqueue);
83 ehca_dmp( wqe_p, 16*(6 + wqe_p->nr_of_data_seg), "recv wqe");
84 }
85
86 return 0;
87}
88
89#if defined(DEBUG_GSI_SEND_WR)
90
91/* need ib_mad struct */
92#include <rdma/ib_mad.h>
93
94static void trace_send_wr_ud(const struct ib_send_wr *send_wr)
95{
96 int idx;
97 int j;
98 while (send_wr) {
99 struct ib_mad_hdr *mad_hdr = send_wr->wr.ud.mad_hdr;
100 struct ib_sge *sge = send_wr->sg_list;
101 ehca_gen_dbg("send_wr#%x wr_id=%lx num_sge=%x "
102 "send_flags=%x opcode=%x",idx, send_wr->wr_id,
103 send_wr->num_sge, send_wr->send_flags,
104 send_wr->opcode);
105 if (mad_hdr) {
106 ehca_gen_dbg("send_wr#%x mad_hdr base_version=%x "
107 "mgmt_class=%x class_version=%x method=%x "
108 "status=%x class_specific=%x tid=%lx "
109 "attr_id=%x resv=%x attr_mod=%x",
110 idx, mad_hdr->base_version,
111 mad_hdr->mgmt_class,
112 mad_hdr->class_version, mad_hdr->method,
113 mad_hdr->status, mad_hdr->class_specific,
114 mad_hdr->tid, mad_hdr->attr_id,
115 mad_hdr->resv,
116 mad_hdr->attr_mod);
117 }
118 for (j = 0; j < send_wr->num_sge; j++) {
119 u8 *data = (u8 *) abs_to_virt(sge->addr);
120 ehca_gen_dbg("send_wr#%x sge#%x addr=%p length=%x "
121 "lkey=%x",
122 idx, j, data, sge->length, sge->lkey);
123 /* assume length is n*16 */
124 ehca_dmp(data, sge->length, "send_wr#%x sge#%x",
125 idx, j);
126 sge++;
127 } /* eof for j */
128 idx++;
129 send_wr = send_wr->next;
130 } /* eof while send_wr */
131}
132
133#endif /* DEBUG_GSI_SEND_WR */
134
135static inline int ehca_write_swqe(struct ehca_qp *qp,
136 struct ehca_wqe *wqe_p,
137 const struct ib_send_wr *send_wr)
138{
139 u32 idx;
140 u64 dma_length;
141 struct ehca_av *my_av;
142 u32 remote_qkey = send_wr->wr.ud.remote_qkey;
143
144 if (unlikely((send_wr->num_sge < 0) ||
145 (send_wr->num_sge > qp->ipz_squeue.act_nr_of_sg))) {
146 ehca_gen_err("Invalid number of WQE SGE. "
147 "num_sqe=%x max_nr_of_sg=%x",
148 send_wr->num_sge, qp->ipz_squeue.act_nr_of_sg);
149 return -EINVAL; /* invalid SG list length */
150 }
151
152 /* clear wqe header until sglist */
153 memset(wqe_p, 0, offsetof(struct ehca_wqe, u.ud_av.sg_list));
154
155 wqe_p->work_request_id = send_wr->wr_id;
156
157 switch (send_wr->opcode) {
158 case IB_WR_SEND:
159 case IB_WR_SEND_WITH_IMM:
160 wqe_p->optype = WQE_OPTYPE_SEND;
161 break;
162 case IB_WR_RDMA_WRITE:
163 case IB_WR_RDMA_WRITE_WITH_IMM:
164 wqe_p->optype = WQE_OPTYPE_RDMAWRITE;
165 break;
166 case IB_WR_RDMA_READ:
167 wqe_p->optype = WQE_OPTYPE_RDMAREAD;
168 break;
169 default:
170 ehca_gen_err("Invalid opcode=%x", send_wr->opcode);
171 return -EINVAL; /* invalid opcode */
172 }
173
174 wqe_p->wqef = (send_wr->opcode) & WQEF_HIGH_NIBBLE;
175
176 wqe_p->wr_flag = 0;
177
178 if (send_wr->send_flags & IB_SEND_SIGNALED)
179 wqe_p->wr_flag |= WQE_WRFLAG_REQ_SIGNAL_COM;
180
181 if (send_wr->opcode == IB_WR_SEND_WITH_IMM ||
182 send_wr->opcode == IB_WR_RDMA_WRITE_WITH_IMM) {
183 /* this might not work as long as HW does not support it */
184 wqe_p->immediate_data = be32_to_cpu(send_wr->imm_data);
185 wqe_p->wr_flag |= WQE_WRFLAG_IMM_DATA_PRESENT;
186 }
187
188 wqe_p->nr_of_data_seg = send_wr->num_sge;
189
190 switch (qp->qp_type) {
191 case IB_QPT_SMI:
192 case IB_QPT_GSI:
193 /* no break is intential here */
194 case IB_QPT_UD:
195 /* IB 1.2 spec C10-15 compliance */
196 if (send_wr->wr.ud.remote_qkey & 0x80000000)
197 remote_qkey = qp->qkey;
198
199 wqe_p->destination_qp_number = send_wr->wr.ud.remote_qpn << 8;
200 wqe_p->local_ee_context_qkey = remote_qkey;
201 if (!send_wr->wr.ud.ah) {
202 ehca_gen_err("wr.ud.ah is NULL. qp=%p", qp);
203 return -EINVAL;
204 }
205 my_av = container_of(send_wr->wr.ud.ah, struct ehca_av, ib_ah);
206 wqe_p->u.ud_av.ud_av = my_av->av;
207
208 /*
209 * omitted check of IB_SEND_INLINE
210 * since HW does not support it
211 */
212 for (idx = 0; idx < send_wr->num_sge; idx++) {
213 wqe_p->u.ud_av.sg_list[idx].vaddr =
214 send_wr->sg_list[idx].addr;
215 wqe_p->u.ud_av.sg_list[idx].lkey =
216 send_wr->sg_list[idx].lkey;
217 wqe_p->u.ud_av.sg_list[idx].length =
218 send_wr->sg_list[idx].length;
219 } /* eof for idx */
220 if (qp->qp_type == IB_QPT_SMI ||
221 qp->qp_type == IB_QPT_GSI)
222 wqe_p->u.ud_av.ud_av.pmtu = 1;
223 if (qp->qp_type == IB_QPT_GSI) {
224 wqe_p->pkeyi = send_wr->wr.ud.pkey_index;
225#ifdef DEBUG_GSI_SEND_WR
226 trace_send_wr_ud(send_wr);
227#endif /* DEBUG_GSI_SEND_WR */
228 }
229 break;
230
231 case IB_QPT_UC:
232 if (send_wr->send_flags & IB_SEND_FENCE)
233 wqe_p->wr_flag |= WQE_WRFLAG_FENCE;
234 /* no break is intentional here */
235 case IB_QPT_RC:
236 /* TODO: atomic not implemented */
237 wqe_p->u.nud.remote_virtual_adress =
238 send_wr->wr.rdma.remote_addr;
239 wqe_p->u.nud.rkey = send_wr->wr.rdma.rkey;
240
241 /*
242 * omitted checking of IB_SEND_INLINE
243 * since HW does not support it
244 */
245 dma_length = 0;
246 for (idx = 0; idx < send_wr->num_sge; idx++) {
247 wqe_p->u.nud.sg_list[idx].vaddr =
248 send_wr->sg_list[idx].addr;
249 wqe_p->u.nud.sg_list[idx].lkey =
250 send_wr->sg_list[idx].lkey;
251 wqe_p->u.nud.sg_list[idx].length =
252 send_wr->sg_list[idx].length;
253 dma_length += send_wr->sg_list[idx].length;
254 } /* eof idx */
255 wqe_p->u.nud.atomic_1st_op_dma_len = dma_length;
256
257 break;
258
259 default:
260 ehca_gen_err("Invalid qptype=%x", qp->qp_type);
261 return -EINVAL;
262 }
263
264 if (ehca_debug_level) {
265 ehca_gen_dbg("SEND WQE written into queue qp=%p ", qp);
266 ehca_dmp( wqe_p, 16*(6 + wqe_p->nr_of_data_seg), "send wqe");
267 }
268 return 0;
269}
270
271/* map_ib_wc_status converts raw cqe_status to ib_wc_status */
272static inline void map_ib_wc_status(u32 cqe_status,
273 enum ib_wc_status *wc_status)
274{
275 if (unlikely(cqe_status & WC_STATUS_ERROR_BIT)) {
276 switch (cqe_status & 0x3F) {
277 case 0x01:
278 case 0x21:
279 *wc_status = IB_WC_LOC_LEN_ERR;
280 break;
281 case 0x02:
282 case 0x22:
283 *wc_status = IB_WC_LOC_QP_OP_ERR;
284 break;
285 case 0x03:
286 case 0x23:
287 *wc_status = IB_WC_LOC_EEC_OP_ERR;
288 break;
289 case 0x04:
290 case 0x24:
291 *wc_status = IB_WC_LOC_PROT_ERR;
292 break;
293 case 0x05:
294 case 0x25:
295 *wc_status = IB_WC_WR_FLUSH_ERR;
296 break;
297 case 0x06:
298 *wc_status = IB_WC_MW_BIND_ERR;
299 break;
300 case 0x07: /* remote error - look into bits 20:24 */
301 switch ((cqe_status
302 & WC_STATUS_REMOTE_ERROR_FLAGS) >> 11) {
303 case 0x0:
304 /*
305 * PSN Sequence Error!
306 * couldn't find a matching status!
307 */
308 *wc_status = IB_WC_GENERAL_ERR;
309 break;
310 case 0x1:
311 *wc_status = IB_WC_REM_INV_REQ_ERR;
312 break;
313 case 0x2:
314 *wc_status = IB_WC_REM_ACCESS_ERR;
315 break;
316 case 0x3:
317 *wc_status = IB_WC_REM_OP_ERR;
318 break;
319 case 0x4:
320 *wc_status = IB_WC_REM_INV_RD_REQ_ERR;
321 break;
322 }
323 break;
324 case 0x08:
325 *wc_status = IB_WC_RETRY_EXC_ERR;
326 break;
327 case 0x09:
328 *wc_status = IB_WC_RNR_RETRY_EXC_ERR;
329 break;
330 case 0x0A:
331 case 0x2D:
332 *wc_status = IB_WC_REM_ABORT_ERR;
333 break;
334 case 0x0B:
335 case 0x2E:
336 *wc_status = IB_WC_INV_EECN_ERR;
337 break;
338 case 0x0C:
339 case 0x2F:
340 *wc_status = IB_WC_INV_EEC_STATE_ERR;
341 break;
342 case 0x0D:
343 *wc_status = IB_WC_BAD_RESP_ERR;
344 break;
345 case 0x10:
346 /* WQE purged */
347 *wc_status = IB_WC_WR_FLUSH_ERR;
348 break;
349 default:
350 *wc_status = IB_WC_FATAL_ERR;
351
352 }
353 } else
354 *wc_status = IB_WC_SUCCESS;
355}
356
357int ehca_post_send(struct ib_qp *qp,
358 struct ib_send_wr *send_wr,
359 struct ib_send_wr **bad_send_wr)
360{
361 struct ehca_qp *my_qp = container_of(qp, struct ehca_qp, ib_qp);
362 struct ib_send_wr *cur_send_wr;
363 struct ehca_wqe *wqe_p;
364 int wqe_cnt = 0;
365 int ret = 0;
Joachim Fenkes9844b712007-07-09 15:29:03 +0200366 unsigned long flags;
Heiko J Schickfab97222006-09-22 15:22:22 -0700367
368 /* LOCK the QUEUE */
Joachim Fenkes9844b712007-07-09 15:29:03 +0200369 spin_lock_irqsave(&my_qp->spinlock_s, flags);
Heiko J Schickfab97222006-09-22 15:22:22 -0700370
371 /* loop processes list of send reqs */
372 for (cur_send_wr = send_wr; cur_send_wr != NULL;
373 cur_send_wr = cur_send_wr->next) {
374 u64 start_offset = my_qp->ipz_squeue.current_q_offset;
375 /* get pointer next to free WQE */
376 wqe_p = ipz_qeit_get_inc(&my_qp->ipz_squeue);
377 if (unlikely(!wqe_p)) {
378 /* too many posted work requests: queue overflow */
379 if (bad_send_wr)
380 *bad_send_wr = cur_send_wr;
381 if (wqe_cnt == 0) {
382 ret = -ENOMEM;
383 ehca_err(qp->device, "Too many posted WQEs "
384 "qp_num=%x", qp->qp_num);
385 }
386 goto post_send_exit0;
387 }
388 /* write a SEND WQE into the QUEUE */
389 ret = ehca_write_swqe(my_qp, wqe_p, cur_send_wr);
390 /*
391 * if something failed,
392 * reset the free entry pointer to the start value
393 */
394 if (unlikely(ret)) {
395 my_qp->ipz_squeue.current_q_offset = start_offset;
396 *bad_send_wr = cur_send_wr;
397 if (wqe_cnt == 0) {
398 ret = -EINVAL;
399 ehca_err(qp->device, "Could not write WQE "
400 "qp_num=%x", qp->qp_num);
401 }
402 goto post_send_exit0;
403 }
404 wqe_cnt++;
405 ehca_dbg(qp->device, "ehca_qp=%p qp_num=%x wqe_cnt=%d",
406 my_qp, qp->qp_num, wqe_cnt);
407 } /* eof for cur_send_wr */
408
409post_send_exit0:
410 /* UNLOCK the QUEUE */
Joachim Fenkes9844b712007-07-09 15:29:03 +0200411 spin_unlock_irqrestore(&my_qp->spinlock_s, flags);
Heiko J Schickfab97222006-09-22 15:22:22 -0700412 iosync(); /* serialize GAL register access */
413 hipz_update_sqa(my_qp, wqe_cnt);
414 return ret;
415}
416
Joachim Fenkesa6a12942007-07-09 15:25:10 +0200417static int internal_post_recv(struct ehca_qp *my_qp,
418 struct ib_device *dev,
419 struct ib_recv_wr *recv_wr,
420 struct ib_recv_wr **bad_recv_wr)
Heiko J Schickfab97222006-09-22 15:22:22 -0700421{
Heiko J Schickfab97222006-09-22 15:22:22 -0700422 struct ib_recv_wr *cur_recv_wr;
423 struct ehca_wqe *wqe_p;
424 int wqe_cnt = 0;
425 int ret = 0;
Joachim Fenkes9844b712007-07-09 15:29:03 +0200426 unsigned long flags;
Heiko J Schickfab97222006-09-22 15:22:22 -0700427
Joachim Fenkesa6a12942007-07-09 15:25:10 +0200428 if (unlikely(!HAS_RQ(my_qp))) {
429 ehca_err(dev, "QP has no RQ ehca_qp=%p qp_num=%x ext_type=%d",
430 my_qp, my_qp->real_qp_num, my_qp->ext_type);
431 return -ENODEV;
432 }
433
Heiko J Schickfab97222006-09-22 15:22:22 -0700434 /* LOCK the QUEUE */
Joachim Fenkes9844b712007-07-09 15:29:03 +0200435 spin_lock_irqsave(&my_qp->spinlock_r, flags);
Heiko J Schickfab97222006-09-22 15:22:22 -0700436
437 /* loop processes list of send reqs */
438 for (cur_recv_wr = recv_wr; cur_recv_wr != NULL;
439 cur_recv_wr = cur_recv_wr->next) {
440 u64 start_offset = my_qp->ipz_rqueue.current_q_offset;
441 /* get pointer next to free WQE */
442 wqe_p = ipz_qeit_get_inc(&my_qp->ipz_rqueue);
443 if (unlikely(!wqe_p)) {
444 /* too many posted work requests: queue overflow */
445 if (bad_recv_wr)
446 *bad_recv_wr = cur_recv_wr;
447 if (wqe_cnt == 0) {
448 ret = -ENOMEM;
Joachim Fenkesa6a12942007-07-09 15:25:10 +0200449 ehca_err(dev, "Too many posted WQEs "
450 "qp_num=%x", my_qp->real_qp_num);
Heiko J Schickfab97222006-09-22 15:22:22 -0700451 }
452 goto post_recv_exit0;
453 }
454 /* write a RECV WQE into the QUEUE */
455 ret = ehca_write_rwqe(&my_qp->ipz_rqueue, wqe_p, cur_recv_wr);
456 /*
457 * if something failed,
458 * reset the free entry pointer to the start value
459 */
460 if (unlikely(ret)) {
461 my_qp->ipz_rqueue.current_q_offset = start_offset;
462 *bad_recv_wr = cur_recv_wr;
463 if (wqe_cnt == 0) {
464 ret = -EINVAL;
Joachim Fenkesa6a12942007-07-09 15:25:10 +0200465 ehca_err(dev, "Could not write WQE "
466 "qp_num=%x", my_qp->real_qp_num);
Heiko J Schickfab97222006-09-22 15:22:22 -0700467 }
468 goto post_recv_exit0;
469 }
470 wqe_cnt++;
Joachim Fenkesa6a12942007-07-09 15:25:10 +0200471 ehca_dbg(dev, "ehca_qp=%p qp_num=%x wqe_cnt=%d",
472 my_qp, my_qp->real_qp_num, wqe_cnt);
Heiko J Schickfab97222006-09-22 15:22:22 -0700473 } /* eof for cur_recv_wr */
474
475post_recv_exit0:
Joachim Fenkes9844b712007-07-09 15:29:03 +0200476 spin_unlock_irqrestore(&my_qp->spinlock_r, flags);
Heiko J Schickfab97222006-09-22 15:22:22 -0700477 iosync(); /* serialize GAL register access */
478 hipz_update_rqa(my_qp, wqe_cnt);
479 return ret;
480}
481
Joachim Fenkesa6a12942007-07-09 15:25:10 +0200482int ehca_post_recv(struct ib_qp *qp,
483 struct ib_recv_wr *recv_wr,
484 struct ib_recv_wr **bad_recv_wr)
485{
486 return internal_post_recv(container_of(qp, struct ehca_qp, ib_qp),
487 qp->device, recv_wr, bad_recv_wr);
488}
489
490int ehca_post_srq_recv(struct ib_srq *srq,
491 struct ib_recv_wr *recv_wr,
492 struct ib_recv_wr **bad_recv_wr)
493{
494 return internal_post_recv(container_of(srq, struct ehca_qp, ib_srq),
495 srq->device, recv_wr, bad_recv_wr);
496}
497
Heiko J Schickfab97222006-09-22 15:22:22 -0700498/*
499 * ib_wc_opcode table converts ehca wc opcode to ib
500 * Since we use zero to indicate invalid opcode, the actual ib opcode must
501 * be decremented!!!
502 */
503static const u8 ib_wc_opcode[255] = {
504 [0x01] = IB_WC_RECV+1,
505 [0x02] = IB_WC_RECV_RDMA_WITH_IMM+1,
506 [0x04] = IB_WC_BIND_MW+1,
507 [0x08] = IB_WC_FETCH_ADD+1,
508 [0x10] = IB_WC_COMP_SWAP+1,
509 [0x20] = IB_WC_RDMA_WRITE+1,
510 [0x40] = IB_WC_RDMA_READ+1,
511 [0x80] = IB_WC_SEND+1
512};
513
514/* internal function to poll one entry of cq */
515static inline int ehca_poll_cq_one(struct ib_cq *cq, struct ib_wc *wc)
516{
517 int ret = 0;
518 struct ehca_cq *my_cq = container_of(cq, struct ehca_cq, ib_cq);
519 struct ehca_cqe *cqe;
Joachim Fenkesb1cfe432007-07-09 15:31:53 +0200520 struct ehca_qp *my_qp;
Heiko J Schickfab97222006-09-22 15:22:22 -0700521 int cqe_count = 0;
522
523poll_cq_one_read_cqe:
524 cqe = (struct ehca_cqe *)
525 ipz_qeit_get_inc_valid(&my_cq->ipz_queue);
526 if (!cqe) {
527 ret = -EAGAIN;
528 ehca_dbg(cq->device, "Completion queue is empty ehca_cq=%p "
529 "cq_num=%x ret=%x", my_cq, my_cq->cq_number, ret);
530 goto poll_cq_one_exit0;
531 }
532
533 /* prevents loads being reordered across this point */
534 rmb();
535
536 cqe_count++;
537 if (unlikely(cqe->status & WC_STATUS_PURGE_BIT)) {
538 struct ehca_qp *qp=ehca_cq_get_qp(my_cq, cqe->local_qp_number);
539 int purgeflag;
Joachim Fenkes9844b712007-07-09 15:29:03 +0200540 unsigned long flags;
Heiko J Schickfab97222006-09-22 15:22:22 -0700541 if (!qp) {
542 ehca_err(cq->device, "cq_num=%x qp_num=%x "
543 "could not find qp -> ignore cqe",
544 my_cq->cq_number, cqe->local_qp_number);
545 ehca_dmp(cqe, 64, "cq_num=%x qp_num=%x",
546 my_cq->cq_number, cqe->local_qp_number);
547 /* ignore this purged cqe */
548 goto poll_cq_one_read_cqe;
549 }
Joachim Fenkes9844b712007-07-09 15:29:03 +0200550 spin_lock_irqsave(&qp->spinlock_s, flags);
Heiko J Schickfab97222006-09-22 15:22:22 -0700551 purgeflag = qp->sqerr_purgeflag;
Joachim Fenkes9844b712007-07-09 15:29:03 +0200552 spin_unlock_irqrestore(&qp->spinlock_s, flags);
Heiko J Schickfab97222006-09-22 15:22:22 -0700553
554 if (purgeflag) {
555 ehca_dbg(cq->device, "Got CQE with purged bit qp_num=%x "
556 "src_qp=%x",
557 cqe->local_qp_number, cqe->remote_qp_number);
558 if (ehca_debug_level)
559 ehca_dmp(cqe, 64, "qp_num=%x src_qp=%x",
560 cqe->local_qp_number,
561 cqe->remote_qp_number);
562 /*
563 * ignore this to avoid double cqes of bad wqe
564 * that caused sqe and turn off purge flag
565 */
566 qp->sqerr_purgeflag = 0;
567 goto poll_cq_one_read_cqe;
568 }
569 }
570
571 /* tracing cqe */
Joachim Fenkesb1cfe432007-07-09 15:31:53 +0200572 if (unlikely(ehca_debug_level)) {
Heiko J Schickfab97222006-09-22 15:22:22 -0700573 ehca_dbg(cq->device,
574 "Received COMPLETION ehca_cq=%p cq_num=%x -----",
575 my_cq, my_cq->cq_number);
576 ehca_dmp(cqe, 64, "ehca_cq=%p cq_num=%x",
577 my_cq, my_cq->cq_number);
578 ehca_dbg(cq->device,
579 "ehca_cq=%p cq_num=%x -------------------------",
580 my_cq, my_cq->cq_number);
581 }
582
583 /* we got a completion! */
584 wc->wr_id = cqe->work_request_id;
585
586 /* eval ib_wc_opcode */
587 wc->opcode = ib_wc_opcode[cqe->optype]-1;
588 if (unlikely(wc->opcode == -1)) {
589 ehca_err(cq->device, "Invalid cqe->OPType=%x cqe->status=%x "
590 "ehca_cq=%p cq_num=%x",
591 cqe->optype, cqe->status, my_cq, my_cq->cq_number);
592 /* dump cqe for other infos */
593 ehca_dmp(cqe, 64, "ehca_cq=%p cq_num=%x",
594 my_cq, my_cq->cq_number);
595 /* update also queue adder to throw away this entry!!! */
596 goto poll_cq_one_exit0;
597 }
598 /* eval ib_wc_status */
599 if (unlikely(cqe->status & WC_STATUS_ERROR_BIT)) {
600 /* complete with errors */
601 map_ib_wc_status(cqe->status, &wc->status);
602 wc->vendor_err = wc->status;
603 } else
604 wc->status = IB_WC_SUCCESS;
605
Joachim Fenkesb1cfe432007-07-09 15:31:53 +0200606 read_lock(&ehca_qp_idr_lock);
607 my_qp = idr_find(&ehca_qp_idr, cqe->qp_token);
608 wc->qp = &my_qp->ib_qp;
609 read_unlock(&ehca_qp_idr_lock);
610
Heiko J Schickfab97222006-09-22 15:22:22 -0700611 wc->byte_len = cqe->nr_bytes_transferred;
612 wc->pkey_index = cqe->pkey_index;
613 wc->slid = cqe->rlid;
614 wc->dlid_path_bits = cqe->dlid;
615 wc->src_qp = cqe->remote_qp_number;
616 wc->wc_flags = cqe->w_completion_flags;
617 wc->imm_data = cpu_to_be32(cqe->immediate_data);
618 wc->sl = cqe->service_level;
619
Joachim Fenkesb1cfe432007-07-09 15:31:53 +0200620 if (unlikely(wc->status != IB_WC_SUCCESS))
Heiko J Schickfab97222006-09-22 15:22:22 -0700621 ehca_dbg(cq->device,
622 "ehca_cq=%p cq_num=%x WARNING unsuccessful cqe "
623 "OPType=%x status=%x qp_num=%x src_qp=%x wr_id=%lx "
624 "cqe=%p", my_cq, my_cq->cq_number, cqe->optype,
625 cqe->status, cqe->local_qp_number,
626 cqe->remote_qp_number, cqe->work_request_id, cqe);
627
628poll_cq_one_exit0:
629 if (cqe_count > 0)
630 hipz_update_feca(my_cq, cqe_count);
631
632 return ret;
633}
634
635int ehca_poll_cq(struct ib_cq *cq, int num_entries, struct ib_wc *wc)
636{
637 struct ehca_cq *my_cq = container_of(cq, struct ehca_cq, ib_cq);
638 int nr;
639 struct ib_wc *current_wc = wc;
640 int ret = 0;
Joachim Fenkes9844b712007-07-09 15:29:03 +0200641 unsigned long flags;
Heiko J Schickfab97222006-09-22 15:22:22 -0700642
643 if (num_entries < 1) {
644 ehca_err(cq->device, "Invalid num_entries=%d ehca_cq=%p "
645 "cq_num=%x", num_entries, my_cq, my_cq->cq_number);
646 ret = -EINVAL;
647 goto poll_cq_exit0;
648 }
649
Joachim Fenkes9844b712007-07-09 15:29:03 +0200650 spin_lock_irqsave(&my_cq->spinlock, flags);
Heiko J Schickfab97222006-09-22 15:22:22 -0700651 for (nr = 0; nr < num_entries; nr++) {
652 ret = ehca_poll_cq_one(cq, current_wc);
653 if (ret)
654 break;
655 current_wc++;
656 } /* eof for nr */
Joachim Fenkes9844b712007-07-09 15:29:03 +0200657 spin_unlock_irqrestore(&my_cq->spinlock, flags);
Heiko J Schickfab97222006-09-22 15:22:22 -0700658 if (ret == -EAGAIN || !ret)
659 ret = nr;
660
661poll_cq_exit0:
662 return ret;
663}
664
Roland Dreiered23a722007-05-06 21:02:48 -0700665int ehca_req_notify_cq(struct ib_cq *cq, enum ib_cq_notify_flags notify_flags)
Heiko J Schickfab97222006-09-22 15:22:22 -0700666{
667 struct ehca_cq *my_cq = container_of(cq, struct ehca_cq, ib_cq);
Roland Dreiered23a722007-05-06 21:02:48 -0700668 int ret = 0;
Heiko J Schickfab97222006-09-22 15:22:22 -0700669
Roland Dreiered23a722007-05-06 21:02:48 -0700670 switch (notify_flags & IB_CQ_SOLICITED_MASK) {
Heiko J Schickfab97222006-09-22 15:22:22 -0700671 case IB_CQ_SOLICITED:
672 hipz_set_cqx_n0(my_cq, 1);
673 break;
674 case IB_CQ_NEXT_COMP:
675 hipz_set_cqx_n1(my_cq, 1);
676 break;
677 default:
678 return -EINVAL;
679 }
680
Roland Dreiered23a722007-05-06 21:02:48 -0700681 if (notify_flags & IB_CQ_REPORT_MISSED_EVENTS) {
Joachim Fenkesfffba372007-05-24 16:51:05 +0200682 unsigned long spl_flags;
Roland Dreiered23a722007-05-06 21:02:48 -0700683 spin_lock_irqsave(&my_cq->spinlock, spl_flags);
684 ret = ipz_qeit_is_valid(&my_cq->ipz_queue);
685 spin_unlock_irqrestore(&my_cq->spinlock, spl_flags);
686 }
687
688 return ret;
Heiko J Schickfab97222006-09-22 15:22:22 -0700689}