]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - drivers/infiniband/hw/ehca/ehca_qp.c
Merge branch 'linus' into x86/defconfig
[linux-2.6-omap-h63xx.git] / drivers / infiniband / hw / ehca / ehca_qp.c
1 /*
2  *  IBM eServer eHCA Infiniband device driver for Linux on POWER
3  *
4  *  QP functions
5  *
6  *  Authors: Joachim Fenkes <fenkes@de.ibm.com>
7  *           Stefan Roscher <stefan.roscher@de.ibm.com>
8  *           Waleri Fomin <fomin@de.ibm.com>
9  *           Hoang-Nam Nguyen <hnguyen@de.ibm.com>
10  *           Reinhard Ernst <rernst@de.ibm.com>
11  *           Heiko J Schick <schickhj@de.ibm.com>
12  *
13  *  Copyright (c) 2005 IBM Corporation
14  *
15  *  All rights reserved.
16  *
17  *  This source code is distributed under a dual license of GPL v2.0 and OpenIB
18  *  BSD.
19  *
20  * OpenIB BSD License
21  *
22  * Redistribution and use in source and binary forms, with or without
23  * modification, are permitted provided that the following conditions are met:
24  *
25  * Redistributions of source code must retain the above copyright notice, this
26  * list of conditions and the following disclaimer.
27  *
28  * Redistributions in binary form must reproduce the above copyright notice,
29  * this list of conditions and the following disclaimer in the documentation
30  * and/or other materials
31  * provided with the distribution.
32  *
33  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
34  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
35  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
36  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
37  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
38  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
39  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
40  * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
41  * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
42  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
43  * POSSIBILITY OF SUCH DAMAGE.
44  */
45
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
53 static struct kmem_cache *qp_cache;
54
55 /*
56  * attributes not supported by query qp
57  */
58 #define QP_ATTR_QUERY_NOT_SUPPORTED (IB_QP_MAX_DEST_RD_ATOMIC | \
59                                      IB_QP_MAX_QP_RD_ATOMIC   | \
60                                      IB_QP_ACCESS_FLAGS       | \
61                                      IB_QP_EN_SQD_ASYNC_NOTIFY)
62
63 /*
64  * ehca (internal) qp state values
65  */
66 enum ehca_qp_state {
67         EHCA_QPS_RESET = 1,
68         EHCA_QPS_INIT = 2,
69         EHCA_QPS_RTR = 3,
70         EHCA_QPS_RTS = 5,
71         EHCA_QPS_SQD = 6,
72         EHCA_QPS_SQE = 8,
73         EHCA_QPS_ERR = 128
74 };
75
76 /*
77  * qp state transitions as defined by IB Arch Rel 1.1 page 431
78  */
79 enum ib_qp_statetrans {
80         IB_QPST_ANY2RESET,
81         IB_QPST_ANY2ERR,
82         IB_QPST_RESET2INIT,
83         IB_QPST_INIT2RTR,
84         IB_QPST_INIT2INIT,
85         IB_QPST_RTR2RTS,
86         IB_QPST_RTS2SQD,
87         IB_QPST_RTS2RTS,
88         IB_QPST_SQD2RTS,
89         IB_QPST_SQE2RTS,
90         IB_QPST_SQD2SQD,
91         IB_QPST_MAX     /* nr of transitions, this must be last!!! */
92 };
93
94 /*
95  * ib2ehca_qp_state maps IB to ehca qp_state
96  * returns ehca qp state corresponding to given ib qp state
97  */
98 static inline enum ehca_qp_state ib2ehca_qp_state(enum ib_qp_state ib_qp_state)
99 {
100         switch (ib_qp_state) {
101         case IB_QPS_RESET:
102                 return EHCA_QPS_RESET;
103         case IB_QPS_INIT:
104                 return EHCA_QPS_INIT;
105         case IB_QPS_RTR:
106                 return EHCA_QPS_RTR;
107         case IB_QPS_RTS:
108                 return EHCA_QPS_RTS;
109         case IB_QPS_SQD:
110                 return EHCA_QPS_SQD;
111         case IB_QPS_SQE:
112                 return EHCA_QPS_SQE;
113         case IB_QPS_ERR:
114                 return EHCA_QPS_ERR;
115         default:
116                 ehca_gen_err("invalid ib_qp_state=%x", ib_qp_state);
117                 return -EINVAL;
118         }
119 }
120
121 /*
122  * ehca2ib_qp_state maps ehca to IB qp_state
123  * returns ib qp state corresponding to given ehca qp state
124  */
125 static inline enum ib_qp_state ehca2ib_qp_state(enum ehca_qp_state
126                                                 ehca_qp_state)
127 {
128         switch (ehca_qp_state) {
129         case EHCA_QPS_RESET:
130                 return IB_QPS_RESET;
131         case EHCA_QPS_INIT:
132                 return IB_QPS_INIT;
133         case EHCA_QPS_RTR:
134                 return IB_QPS_RTR;
135         case EHCA_QPS_RTS:
136                 return IB_QPS_RTS;
137         case EHCA_QPS_SQD:
138                 return IB_QPS_SQD;
139         case EHCA_QPS_SQE:
140                 return IB_QPS_SQE;
141         case EHCA_QPS_ERR:
142                 return IB_QPS_ERR;
143         default:
144                 ehca_gen_err("invalid ehca_qp_state=%x", ehca_qp_state);
145                 return -EINVAL;
146         }
147 }
148
149 /*
150  * ehca_qp_type used as index for req_attr and opt_attr of
151  * struct ehca_modqp_statetrans
152  */
153 enum ehca_qp_type {
154         QPT_RC = 0,
155         QPT_UC = 1,
156         QPT_UD = 2,
157         QPT_SQP = 3,
158         QPT_MAX
159 };
160
161 /*
162  * ib2ehcaqptype maps Ib to ehca qp_type
163  * returns ehca qp type corresponding to ib qp type
164  */
165 static inline enum ehca_qp_type ib2ehcaqptype(enum ib_qp_type ibqptype)
166 {
167         switch (ibqptype) {
168         case IB_QPT_SMI:
169         case IB_QPT_GSI:
170                 return QPT_SQP;
171         case IB_QPT_RC:
172                 return QPT_RC;
173         case IB_QPT_UC:
174                 return QPT_UC;
175         case IB_QPT_UD:
176                 return QPT_UD;
177         default:
178                 ehca_gen_err("Invalid ibqptype=%x", ibqptype);
179                 return -EINVAL;
180         }
181 }
182
183 static inline enum ib_qp_statetrans get_modqp_statetrans(int ib_fromstate,
184                                                          int ib_tostate)
185 {
186         int index = -EINVAL;
187         switch (ib_tostate) {
188         case IB_QPS_RESET:
189                 index = IB_QPST_ANY2RESET;
190                 break;
191         case IB_QPS_INIT:
192                 switch (ib_fromstate) {
193                 case IB_QPS_RESET:
194                         index = IB_QPST_RESET2INIT;
195                         break;
196                 case IB_QPS_INIT:
197                         index = IB_QPST_INIT2INIT;
198                         break;
199                 }
200                 break;
201         case IB_QPS_RTR:
202                 if (ib_fromstate == IB_QPS_INIT)
203                         index = IB_QPST_INIT2RTR;
204                 break;
205         case IB_QPS_RTS:
206                 switch (ib_fromstate) {
207                 case IB_QPS_RTR:
208                         index = IB_QPST_RTR2RTS;
209                         break;
210                 case IB_QPS_RTS:
211                         index = IB_QPST_RTS2RTS;
212                         break;
213                 case IB_QPS_SQD:
214                         index = IB_QPST_SQD2RTS;
215                         break;
216                 case IB_QPS_SQE:
217                         index = IB_QPST_SQE2RTS;
218                         break;
219                 }
220                 break;
221         case IB_QPS_SQD:
222                 if (ib_fromstate == IB_QPS_RTS)
223                         index = IB_QPST_RTS2SQD;
224                 break;
225         case IB_QPS_SQE:
226                 break;
227         case IB_QPS_ERR:
228                 index = IB_QPST_ANY2ERR;
229                 break;
230         default:
231                 break;
232         }
233         return index;
234 }
235
236 /*
237  * ibqptype2servicetype returns hcp service type corresponding to given
238  * ib qp type used by create_qp()
239  */
240 static inline int ibqptype2servicetype(enum ib_qp_type ibqptype)
241 {
242         switch (ibqptype) {
243         case IB_QPT_SMI:
244         case IB_QPT_GSI:
245                 return ST_UD;
246         case IB_QPT_RC:
247                 return ST_RC;
248         case IB_QPT_UC:
249                 return ST_UC;
250         case IB_QPT_UD:
251                 return ST_UD;
252         case IB_QPT_RAW_IPV6:
253                 return -EINVAL;
254         case IB_QPT_RAW_ETY:
255                 return -EINVAL;
256         default:
257                 ehca_gen_err("Invalid ibqptype=%x", ibqptype);
258                 return -EINVAL;
259         }
260 }
261
262 /*
263  * init userspace queue info from ipz_queue data
264  */
265 static inline void queue2resp(struct ipzu_queue_resp *resp,
266                               struct ipz_queue *queue)
267 {
268         resp->qe_size = queue->qe_size;
269         resp->act_nr_of_sg = queue->act_nr_of_sg;
270         resp->queue_length = queue->queue_length;
271         resp->pagesize = queue->pagesize;
272         resp->toggle_state = queue->toggle_state;
273         resp->offset = queue->offset;
274 }
275
276 /*
277  * init_qp_queue initializes/constructs r/squeue and registers queue pages.
278  */
279 static inline int init_qp_queue(struct ehca_shca *shca,
280                                 struct ehca_pd *pd,
281                                 struct ehca_qp *my_qp,
282                                 struct ipz_queue *queue,
283                                 int q_type,
284                                 u64 expected_hret,
285                                 struct ehca_alloc_queue_parms *parms,
286                                 int wqe_size)
287 {
288         int ret, cnt, ipz_rc, nr_q_pages;
289         void *vpage;
290         u64 rpage, h_ret;
291         struct ib_device *ib_dev = &shca->ib_device;
292         struct ipz_adapter_handle ipz_hca_handle = shca->ipz_hca_handle;
293
294         if (!parms->queue_size)
295                 return 0;
296
297         if (parms->is_small) {
298                 nr_q_pages = 1;
299                 ipz_rc = ipz_queue_ctor(pd, queue, nr_q_pages,
300                                         128 << parms->page_size,
301                                         wqe_size, parms->act_nr_sges, 1);
302         } else {
303                 nr_q_pages = parms->queue_size;
304                 ipz_rc = ipz_queue_ctor(pd, queue, nr_q_pages,
305                                         EHCA_PAGESIZE, wqe_size,
306                                         parms->act_nr_sges, 0);
307         }
308
309         if (!ipz_rc) {
310                 ehca_err(ib_dev, "Cannot allocate page for queue. ipz_rc=%i",
311                          ipz_rc);
312                 return -EBUSY;
313         }
314
315         /* register queue pages */
316         for (cnt = 0; cnt < nr_q_pages; cnt++) {
317                 vpage = ipz_qpageit_get_inc(queue);
318                 if (!vpage) {
319                         ehca_err(ib_dev, "ipz_qpageit_get_inc() "
320                                  "failed p_vpage= %p", vpage);
321                         ret = -EINVAL;
322                         goto init_qp_queue1;
323                 }
324                 rpage = virt_to_abs(vpage);
325
326                 h_ret = hipz_h_register_rpage_qp(ipz_hca_handle,
327                                                  my_qp->ipz_qp_handle,
328                                                  NULL, 0, q_type,
329                                                  rpage, parms->is_small ? 0 : 1,
330                                                  my_qp->galpas.kernel);
331                 if (cnt == (nr_q_pages - 1)) {  /* last page! */
332                         if (h_ret != expected_hret) {
333                                 ehca_err(ib_dev, "hipz_qp_register_rpage() "
334                                          "h_ret=%li", h_ret);
335                                 ret = ehca2ib_return_code(h_ret);
336                                 goto init_qp_queue1;
337                         }
338                         vpage = ipz_qpageit_get_inc(&my_qp->ipz_rqueue);
339                         if (vpage) {
340                                 ehca_err(ib_dev, "ipz_qpageit_get_inc() "
341                                          "should not succeed vpage=%p", vpage);
342                                 ret = -EINVAL;
343                                 goto init_qp_queue1;
344                         }
345                 } else {
346                         if (h_ret != H_PAGE_REGISTERED) {
347                                 ehca_err(ib_dev, "hipz_qp_register_rpage() "
348                                          "h_ret=%li", h_ret);
349                                 ret = ehca2ib_return_code(h_ret);
350                                 goto init_qp_queue1;
351                         }
352                 }
353         }
354
355         ipz_qeit_reset(queue);
356
357         return 0;
358
359 init_qp_queue1:
360         ipz_queue_dtor(pd, queue);
361         return ret;
362 }
363
364 static inline int ehca_calc_wqe_size(int act_nr_sge, int is_llqp)
365 {
366         if (is_llqp)
367                 return 128 << act_nr_sge;
368         else
369                 return offsetof(struct ehca_wqe,
370                                 u.nud.sg_list[act_nr_sge]);
371 }
372
373 static void ehca_determine_small_queue(struct ehca_alloc_queue_parms *queue,
374                                        int req_nr_sge, int is_llqp)
375 {
376         u32 wqe_size, q_size;
377         int act_nr_sge = req_nr_sge;
378
379         if (!is_llqp)
380                 /* round up #SGEs so WQE size is a power of 2 */
381                 for (act_nr_sge = 4; act_nr_sge <= 252;
382                      act_nr_sge = 4 + 2 * act_nr_sge)
383                         if (act_nr_sge >= req_nr_sge)
384                                 break;
385
386         wqe_size = ehca_calc_wqe_size(act_nr_sge, is_llqp);
387         q_size = wqe_size * (queue->max_wr + 1);
388
389         if (q_size <= 512)
390                 queue->page_size = 2;
391         else if (q_size <= 1024)
392                 queue->page_size = 3;
393         else
394                 queue->page_size = 0;
395
396         queue->is_small = (queue->page_size != 0);
397 }
398
399 /*
400  * Create an ib_qp struct that is either a QP or an SRQ, depending on
401  * the value of the is_srq parameter. If init_attr and srq_init_attr share
402  * fields, the field out of init_attr is used.
403  */
404 static struct ehca_qp *internal_create_qp(
405         struct ib_pd *pd,
406         struct ib_qp_init_attr *init_attr,
407         struct ib_srq_init_attr *srq_init_attr,
408         struct ib_udata *udata, int is_srq)
409 {
410         struct ehca_qp *my_qp;
411         struct ehca_pd *my_pd = container_of(pd, struct ehca_pd, ib_pd);
412         struct ehca_shca *shca = container_of(pd->device, struct ehca_shca,
413                                               ib_device);
414         struct ib_ucontext *context = NULL;
415         u32 nr_qes;
416         u64 h_ret;
417         int is_llqp = 0, has_srq = 0;
418         int qp_type, max_send_sge, max_recv_sge, ret;
419
420         /* h_call's out parameters */
421         struct ehca_alloc_qp_parms parms;
422         u32 swqe_size = 0, rwqe_size = 0, ib_qp_num;
423         unsigned long flags;
424
425         if (!atomic_add_unless(&shca->num_qps, 1, ehca_max_qp)) {
426                 ehca_err(pd->device, "Unable to create QP, max number of %i "
427                          "QPs reached.", ehca_max_qp);
428                 ehca_err(pd->device, "To increase the maximum number of QPs "
429                          "use the number_of_qps module parameter.\n");
430                 return ERR_PTR(-ENOSPC);
431         }
432
433         if (init_attr->create_flags) {
434                 atomic_dec(&shca->num_qps);
435                 return ERR_PTR(-EINVAL);
436         }
437
438         memset(&parms, 0, sizeof(parms));
439         qp_type = init_attr->qp_type;
440
441         if (init_attr->sq_sig_type != IB_SIGNAL_REQ_WR &&
442                 init_attr->sq_sig_type != IB_SIGNAL_ALL_WR) {
443                 ehca_err(pd->device, "init_attr->sg_sig_type=%x not allowed",
444                          init_attr->sq_sig_type);
445                 atomic_dec(&shca->num_qps);
446                 return ERR_PTR(-EINVAL);
447         }
448
449         /* save LLQP info */
450         if (qp_type & 0x80) {
451                 is_llqp = 1;
452                 parms.ext_type = EQPT_LLQP;
453                 parms.ll_comp_flags = qp_type & LLQP_COMP_MASK;
454         }
455         qp_type &= 0x1F;
456         init_attr->qp_type &= 0x1F;
457
458         /* handle SRQ base QPs */
459         if (init_attr->srq) {
460                 struct ehca_qp *my_srq =
461                         container_of(init_attr->srq, struct ehca_qp, ib_srq);
462
463                 has_srq = 1;
464                 parms.ext_type = EQPT_SRQBASE;
465                 parms.srq_qpn = my_srq->real_qp_num;
466         }
467
468         if (is_llqp && has_srq) {
469                 ehca_err(pd->device, "LLQPs can't have an SRQ");
470                 atomic_dec(&shca->num_qps);
471                 return ERR_PTR(-EINVAL);
472         }
473
474         /* handle SRQs */
475         if (is_srq) {
476                 parms.ext_type = EQPT_SRQ;
477                 parms.srq_limit = srq_init_attr->attr.srq_limit;
478                 if (init_attr->cap.max_recv_sge > 3) {
479                         ehca_err(pd->device, "no more than three SGEs "
480                                  "supported for SRQ  pd=%p  max_sge=%x",
481                                  pd, init_attr->cap.max_recv_sge);
482                         atomic_dec(&shca->num_qps);
483                         return ERR_PTR(-EINVAL);
484                 }
485         }
486
487         /* check QP type */
488         if (qp_type != IB_QPT_UD &&
489             qp_type != IB_QPT_UC &&
490             qp_type != IB_QPT_RC &&
491             qp_type != IB_QPT_SMI &&
492             qp_type != IB_QPT_GSI) {
493                 ehca_err(pd->device, "wrong QP Type=%x", qp_type);
494                 atomic_dec(&shca->num_qps);
495                 return ERR_PTR(-EINVAL);
496         }
497
498         if (is_llqp) {
499                 switch (qp_type) {
500                 case IB_QPT_RC:
501                         if ((init_attr->cap.max_send_wr > 255) ||
502                             (init_attr->cap.max_recv_wr > 255)) {
503                                 ehca_err(pd->device,
504                                          "Invalid Number of max_sq_wr=%x "
505                                          "or max_rq_wr=%x for RC LLQP",
506                                          init_attr->cap.max_send_wr,
507                                          init_attr->cap.max_recv_wr);
508                                 atomic_dec(&shca->num_qps);
509                                 return ERR_PTR(-EINVAL);
510                         }
511                         break;
512                 case IB_QPT_UD:
513                         if (!EHCA_BMASK_GET(HCA_CAP_UD_LL_QP, shca->hca_cap)) {
514                                 ehca_err(pd->device, "UD LLQP not supported "
515                                          "by this adapter");
516                                 atomic_dec(&shca->num_qps);
517                                 return ERR_PTR(-ENOSYS);
518                         }
519                         if (!(init_attr->cap.max_send_sge <= 5
520                             && init_attr->cap.max_send_sge >= 1
521                             && init_attr->cap.max_recv_sge <= 5
522                             && init_attr->cap.max_recv_sge >= 1)) {
523                                 ehca_err(pd->device,
524                                          "Invalid Number of max_send_sge=%x "
525                                          "or max_recv_sge=%x for UD LLQP",
526                                          init_attr->cap.max_send_sge,
527                                          init_attr->cap.max_recv_sge);
528                                 atomic_dec(&shca->num_qps);
529                                 return ERR_PTR(-EINVAL);
530                         } else if (init_attr->cap.max_send_wr > 255) {
531                                 ehca_err(pd->device,
532                                          "Invalid Number of "
533                                          "max_send_wr=%x for UD QP_TYPE=%x",
534                                          init_attr->cap.max_send_wr, qp_type);
535                                 atomic_dec(&shca->num_qps);
536                                 return ERR_PTR(-EINVAL);
537                         }
538                         break;
539                 default:
540                         ehca_err(pd->device, "unsupported LL QP Type=%x",
541                                  qp_type);
542                         atomic_dec(&shca->num_qps);
543                         return ERR_PTR(-EINVAL);
544                 }
545         } else {
546                 int max_sge = (qp_type == IB_QPT_UD || qp_type == IB_QPT_SMI
547                                || qp_type == IB_QPT_GSI) ? 250 : 252;
548
549                 if (init_attr->cap.max_send_sge > max_sge
550                     || init_attr->cap.max_recv_sge > max_sge) {
551                         ehca_err(pd->device, "Invalid number of SGEs requested "
552                                  "send_sge=%x recv_sge=%x max_sge=%x",
553                                  init_attr->cap.max_send_sge,
554                                  init_attr->cap.max_recv_sge, max_sge);
555                         atomic_dec(&shca->num_qps);
556                         return ERR_PTR(-EINVAL);
557                 }
558         }
559
560         if (pd->uobject && udata)
561                 context = pd->uobject->context;
562
563         my_qp = kmem_cache_zalloc(qp_cache, GFP_KERNEL);
564         if (!my_qp) {
565                 ehca_err(pd->device, "pd=%p not enough memory to alloc qp", pd);
566                 atomic_dec(&shca->num_qps);
567                 return ERR_PTR(-ENOMEM);
568         }
569
570         atomic_set(&my_qp->nr_events, 0);
571         init_waitqueue_head(&my_qp->wait_completion);
572         spin_lock_init(&my_qp->spinlock_s);
573         spin_lock_init(&my_qp->spinlock_r);
574         my_qp->qp_type = qp_type;
575         my_qp->ext_type = parms.ext_type;
576         my_qp->state = IB_QPS_RESET;
577
578         if (init_attr->recv_cq)
579                 my_qp->recv_cq =
580                         container_of(init_attr->recv_cq, struct ehca_cq, ib_cq);
581         if (init_attr->send_cq)
582                 my_qp->send_cq =
583                         container_of(init_attr->send_cq, struct ehca_cq, ib_cq);
584
585         do {
586                 if (!idr_pre_get(&ehca_qp_idr, GFP_KERNEL)) {
587                         ret = -ENOMEM;
588                         ehca_err(pd->device, "Can't reserve idr resources.");
589                         goto create_qp_exit0;
590                 }
591
592                 write_lock_irqsave(&ehca_qp_idr_lock, flags);
593                 ret = idr_get_new(&ehca_qp_idr, my_qp, &my_qp->token);
594                 write_unlock_irqrestore(&ehca_qp_idr_lock, flags);
595         } while (ret == -EAGAIN);
596
597         if (ret) {
598                 ret = -ENOMEM;
599                 ehca_err(pd->device, "Can't allocate new idr entry.");
600                 goto create_qp_exit0;
601         }
602
603         if (my_qp->token > 0x1FFFFFF) {
604                 ret = -EINVAL;
605                 ehca_err(pd->device, "Invalid number of qp");
606                 goto create_qp_exit1;
607         }
608
609         if (has_srq)
610                 parms.srq_token = my_qp->token;
611
612         parms.servicetype = ibqptype2servicetype(qp_type);
613         if (parms.servicetype < 0) {
614                 ret = -EINVAL;
615                 ehca_err(pd->device, "Invalid qp_type=%x", qp_type);
616                 goto create_qp_exit1;
617         }
618
619         /* Always signal by WQE so we can hide circ. WQEs */
620         parms.sigtype = HCALL_SIGT_BY_WQE;
621
622         /* UD_AV CIRCUMVENTION */
623         max_send_sge = init_attr->cap.max_send_sge;
624         max_recv_sge = init_attr->cap.max_recv_sge;
625         if (parms.servicetype == ST_UD && !is_llqp) {
626                 max_send_sge += 2;
627                 max_recv_sge += 2;
628         }
629
630         parms.token = my_qp->token;
631         parms.eq_handle = shca->eq.ipz_eq_handle;
632         parms.pd = my_pd->fw_pd;
633         if (my_qp->send_cq)
634                 parms.send_cq_handle = my_qp->send_cq->ipz_cq_handle;
635         if (my_qp->recv_cq)
636                 parms.recv_cq_handle = my_qp->recv_cq->ipz_cq_handle;
637
638         parms.squeue.max_wr = init_attr->cap.max_send_wr;
639         parms.rqueue.max_wr = init_attr->cap.max_recv_wr;
640         parms.squeue.max_sge = max_send_sge;
641         parms.rqueue.max_sge = max_recv_sge;
642
643         /* RC QPs need one more SWQE for unsolicited ack circumvention */
644         if (qp_type == IB_QPT_RC)
645                 parms.squeue.max_wr++;
646
647         if (EHCA_BMASK_GET(HCA_CAP_MINI_QP, shca->hca_cap)) {
648                 if (HAS_SQ(my_qp))
649                         ehca_determine_small_queue(
650                                 &parms.squeue, max_send_sge, is_llqp);
651                 if (HAS_RQ(my_qp))
652                         ehca_determine_small_queue(
653                                 &parms.rqueue, max_recv_sge, is_llqp);
654                 parms.qp_storage =
655                         (parms.squeue.is_small || parms.rqueue.is_small);
656         }
657
658         h_ret = hipz_h_alloc_resource_qp(shca->ipz_hca_handle, &parms);
659         if (h_ret != H_SUCCESS) {
660                 ehca_err(pd->device, "h_alloc_resource_qp() failed h_ret=%li",
661                          h_ret);
662                 ret = ehca2ib_return_code(h_ret);
663                 goto create_qp_exit1;
664         }
665
666         ib_qp_num = my_qp->real_qp_num = parms.real_qp_num;
667         my_qp->ipz_qp_handle = parms.qp_handle;
668         my_qp->galpas = parms.galpas;
669
670         swqe_size = ehca_calc_wqe_size(parms.squeue.act_nr_sges, is_llqp);
671         rwqe_size = ehca_calc_wqe_size(parms.rqueue.act_nr_sges, is_llqp);
672
673         switch (qp_type) {
674         case IB_QPT_RC:
675                 if (is_llqp) {
676                         parms.squeue.act_nr_sges = 1;
677                         parms.rqueue.act_nr_sges = 1;
678                 }
679                 /* hide the extra WQE */
680                 parms.squeue.act_nr_wqes--;
681                 break;
682         case IB_QPT_UD:
683         case IB_QPT_GSI:
684         case IB_QPT_SMI:
685                 /* UD circumvention */
686                 if (is_llqp) {
687                         parms.squeue.act_nr_sges = 1;
688                         parms.rqueue.act_nr_sges = 1;
689                 } else {
690                         parms.squeue.act_nr_sges -= 2;
691                         parms.rqueue.act_nr_sges -= 2;
692                 }
693
694                 if (IB_QPT_GSI == qp_type || IB_QPT_SMI == qp_type) {
695                         parms.squeue.act_nr_wqes = init_attr->cap.max_send_wr;
696                         parms.rqueue.act_nr_wqes = init_attr->cap.max_recv_wr;
697                         parms.squeue.act_nr_sges = init_attr->cap.max_send_sge;
698                         parms.rqueue.act_nr_sges = init_attr->cap.max_recv_sge;
699                         ib_qp_num = (qp_type == IB_QPT_SMI) ? 0 : 1;
700                 }
701
702                 break;
703
704         default:
705                 break;
706         }
707
708         /* initialize r/squeue and register queue pages */
709         if (HAS_SQ(my_qp)) {
710                 ret = init_qp_queue(
711                         shca, my_pd, my_qp, &my_qp->ipz_squeue, 0,
712                         HAS_RQ(my_qp) ? H_PAGE_REGISTERED : H_SUCCESS,
713                         &parms.squeue, swqe_size);
714                 if (ret) {
715                         ehca_err(pd->device, "Couldn't initialize squeue "
716                                  "and pages ret=%i", ret);
717                         goto create_qp_exit2;
718                 }
719                 nr_qes = my_qp->ipz_squeue.queue_length /
720                          my_qp->ipz_squeue.qe_size;
721                 my_qp->sq_map = vmalloc(nr_qes *
722                                         sizeof(struct ehca_qmap_entry));
723                 if (!my_qp->sq_map) {
724                         ehca_err(pd->device, "Couldn't allocate squeue "
725                                  "map ret=%i", ret);
726                         goto create_qp_exit3;
727                 }
728         }
729
730         if (HAS_RQ(my_qp)) {
731                 ret = init_qp_queue(
732                         shca, my_pd, my_qp, &my_qp->ipz_rqueue, 1,
733                         H_SUCCESS, &parms.rqueue, rwqe_size);
734                 if (ret) {
735                         ehca_err(pd->device, "Couldn't initialize rqueue "
736                                  "and pages ret=%i", ret);
737                         goto create_qp_exit4;
738                 }
739         }
740
741         if (is_srq) {
742                 my_qp->ib_srq.pd = &my_pd->ib_pd;
743                 my_qp->ib_srq.device = my_pd->ib_pd.device;
744
745                 my_qp->ib_srq.srq_context = init_attr->qp_context;
746                 my_qp->ib_srq.event_handler = init_attr->event_handler;
747         } else {
748                 my_qp->ib_qp.qp_num = ib_qp_num;
749                 my_qp->ib_qp.pd = &my_pd->ib_pd;
750                 my_qp->ib_qp.device = my_pd->ib_pd.device;
751
752                 my_qp->ib_qp.recv_cq = init_attr->recv_cq;
753                 my_qp->ib_qp.send_cq = init_attr->send_cq;
754
755                 my_qp->ib_qp.qp_type = qp_type;
756                 my_qp->ib_qp.srq = init_attr->srq;
757
758                 my_qp->ib_qp.qp_context = init_attr->qp_context;
759                 my_qp->ib_qp.event_handler = init_attr->event_handler;
760         }
761
762         init_attr->cap.max_inline_data = 0; /* not supported yet */
763         init_attr->cap.max_recv_sge = parms.rqueue.act_nr_sges;
764         init_attr->cap.max_recv_wr = parms.rqueue.act_nr_wqes;
765         init_attr->cap.max_send_sge = parms.squeue.act_nr_sges;
766         init_attr->cap.max_send_wr = parms.squeue.act_nr_wqes;
767         my_qp->init_attr = *init_attr;
768
769         if (qp_type == IB_QPT_SMI || qp_type == IB_QPT_GSI) {
770                 shca->sport[init_attr->port_num - 1].ibqp_sqp[qp_type] =
771                         &my_qp->ib_qp;
772                 if (ehca_nr_ports < 0) {
773                         /* alloc array to cache subsequent modify qp parms
774                          * for autodetect mode
775                          */
776                         my_qp->mod_qp_parm =
777                                 kzalloc(EHCA_MOD_QP_PARM_MAX *
778                                         sizeof(*my_qp->mod_qp_parm),
779                                         GFP_KERNEL);
780                         if (!my_qp->mod_qp_parm) {
781                                 ehca_err(pd->device,
782                                          "Could not alloc mod_qp_parm");
783                                 goto create_qp_exit5;
784                         }
785                 }
786         }
787
788         /* NOTE: define_apq0() not supported yet */
789         if (qp_type == IB_QPT_GSI) {
790                 h_ret = ehca_define_sqp(shca, my_qp, init_attr);
791                 if (h_ret != H_SUCCESS) {
792                         ret = ehca2ib_return_code(h_ret);
793                         goto create_qp_exit6;
794                 }
795         }
796
797         if (my_qp->send_cq) {
798                 ret = ehca_cq_assign_qp(my_qp->send_cq, my_qp);
799                 if (ret) {
800                         ehca_err(pd->device,
801                                  "Couldn't assign qp to send_cq ret=%i", ret);
802                         goto create_qp_exit6;
803                 }
804         }
805
806         /* copy queues, galpa data to user space */
807         if (context && udata) {
808                 struct ehca_create_qp_resp resp;
809                 memset(&resp, 0, sizeof(resp));
810
811                 resp.qp_num = my_qp->real_qp_num;
812                 resp.token = my_qp->token;
813                 resp.qp_type = my_qp->qp_type;
814                 resp.ext_type = my_qp->ext_type;
815                 resp.qkey = my_qp->qkey;
816                 resp.real_qp_num = my_qp->real_qp_num;
817
818                 if (HAS_SQ(my_qp))
819                         queue2resp(&resp.ipz_squeue, &my_qp->ipz_squeue);
820                 if (HAS_RQ(my_qp))
821                         queue2resp(&resp.ipz_rqueue, &my_qp->ipz_rqueue);
822                 resp.fw_handle_ofs = (u32)
823                         (my_qp->galpas.user.fw_handle & (PAGE_SIZE - 1));
824
825                 if (ib_copy_to_udata(udata, &resp, sizeof resp)) {
826                         ehca_err(pd->device, "Copy to udata failed");
827                         ret = -EINVAL;
828                         goto create_qp_exit7;
829                 }
830         }
831
832         return my_qp;
833
834 create_qp_exit7:
835         ehca_cq_unassign_qp(my_qp->send_cq, my_qp->real_qp_num);
836
837 create_qp_exit6:
838         kfree(my_qp->mod_qp_parm);
839
840 create_qp_exit5:
841         if (HAS_RQ(my_qp))
842                 ipz_queue_dtor(my_pd, &my_qp->ipz_rqueue);
843
844 create_qp_exit4:
845         if (HAS_SQ(my_qp))
846                 vfree(my_qp->sq_map);
847
848 create_qp_exit3:
849         if (HAS_SQ(my_qp))
850                 ipz_queue_dtor(my_pd, &my_qp->ipz_squeue);
851
852 create_qp_exit2:
853         hipz_h_destroy_qp(shca->ipz_hca_handle, my_qp);
854
855 create_qp_exit1:
856         write_lock_irqsave(&ehca_qp_idr_lock, flags);
857         idr_remove(&ehca_qp_idr, my_qp->token);
858         write_unlock_irqrestore(&ehca_qp_idr_lock, flags);
859
860 create_qp_exit0:
861         kmem_cache_free(qp_cache, my_qp);
862         atomic_dec(&shca->num_qps);
863         return ERR_PTR(ret);
864 }
865
866 struct ib_qp *ehca_create_qp(struct ib_pd *pd,
867                              struct ib_qp_init_attr *qp_init_attr,
868                              struct ib_udata *udata)
869 {
870         struct ehca_qp *ret;
871
872         ret = internal_create_qp(pd, qp_init_attr, NULL, udata, 0);
873         return IS_ERR(ret) ? (struct ib_qp *)ret : &ret->ib_qp;
874 }
875
876 static int internal_destroy_qp(struct ib_device *dev, struct ehca_qp *my_qp,
877                                struct ib_uobject *uobject);
878
879 struct ib_srq *ehca_create_srq(struct ib_pd *pd,
880                                struct ib_srq_init_attr *srq_init_attr,
881                                struct ib_udata *udata)
882 {
883         struct ib_qp_init_attr qp_init_attr;
884         struct ehca_qp *my_qp;
885         struct ib_srq *ret;
886         struct ehca_shca *shca = container_of(pd->device, struct ehca_shca,
887                                               ib_device);
888         struct hcp_modify_qp_control_block *mqpcb;
889         u64 hret, update_mask;
890
891         /* For common attributes, internal_create_qp() takes its info
892          * out of qp_init_attr, so copy all common attrs there.
893          */
894         memset(&qp_init_attr, 0, sizeof(qp_init_attr));
895         qp_init_attr.event_handler = srq_init_attr->event_handler;
896         qp_init_attr.qp_context = srq_init_attr->srq_context;
897         qp_init_attr.sq_sig_type = IB_SIGNAL_ALL_WR;
898         qp_init_attr.qp_type = IB_QPT_RC;
899         qp_init_attr.cap.max_recv_wr = srq_init_attr->attr.max_wr;
900         qp_init_attr.cap.max_recv_sge = srq_init_attr->attr.max_sge;
901
902         my_qp = internal_create_qp(pd, &qp_init_attr, srq_init_attr, udata, 1);
903         if (IS_ERR(my_qp))
904                 return (struct ib_srq *)my_qp;
905
906         /* copy back return values */
907         srq_init_attr->attr.max_wr = qp_init_attr.cap.max_recv_wr;
908         srq_init_attr->attr.max_sge = 3;
909
910         /* drive SRQ into RTR state */
911         mqpcb = ehca_alloc_fw_ctrlblock(GFP_KERNEL);
912         if (!mqpcb) {
913                 ehca_err(pd->device, "Could not get zeroed page for mqpcb "
914                          "ehca_qp=%p qp_num=%x ", my_qp, my_qp->real_qp_num);
915                 ret = ERR_PTR(-ENOMEM);
916                 goto create_srq1;
917         }
918
919         mqpcb->qp_state = EHCA_QPS_INIT;
920         mqpcb->prim_phys_port = 1;
921         update_mask = EHCA_BMASK_SET(MQPCB_MASK_QP_STATE, 1);
922         hret = hipz_h_modify_qp(shca->ipz_hca_handle,
923                                 my_qp->ipz_qp_handle,
924                                 &my_qp->pf,
925                                 update_mask,
926                                 mqpcb, my_qp->galpas.kernel);
927         if (hret != H_SUCCESS) {
928                 ehca_err(pd->device, "Could not modify SRQ to INIT "
929                          "ehca_qp=%p qp_num=%x h_ret=%li",
930                          my_qp, my_qp->real_qp_num, hret);
931                 goto create_srq2;
932         }
933
934         mqpcb->qp_enable = 1;
935         update_mask = EHCA_BMASK_SET(MQPCB_MASK_QP_ENABLE, 1);
936         hret = hipz_h_modify_qp(shca->ipz_hca_handle,
937                                 my_qp->ipz_qp_handle,
938                                 &my_qp->pf,
939                                 update_mask,
940                                 mqpcb, my_qp->galpas.kernel);
941         if (hret != H_SUCCESS) {
942                 ehca_err(pd->device, "Could not enable SRQ "
943                          "ehca_qp=%p qp_num=%x h_ret=%li",
944                          my_qp, my_qp->real_qp_num, hret);
945                 goto create_srq2;
946         }
947
948         mqpcb->qp_state  = EHCA_QPS_RTR;
949         update_mask = EHCA_BMASK_SET(MQPCB_MASK_QP_STATE, 1);
950         hret = hipz_h_modify_qp(shca->ipz_hca_handle,
951                                 my_qp->ipz_qp_handle,
952                                 &my_qp->pf,
953                                 update_mask,
954                                 mqpcb, my_qp->galpas.kernel);
955         if (hret != H_SUCCESS) {
956                 ehca_err(pd->device, "Could not modify SRQ to RTR "
957                          "ehca_qp=%p qp_num=%x h_ret=%li",
958                          my_qp, my_qp->real_qp_num, hret);
959                 goto create_srq2;
960         }
961
962         ehca_free_fw_ctrlblock(mqpcb);
963
964         return &my_qp->ib_srq;
965
966 create_srq2:
967         ret = ERR_PTR(ehca2ib_return_code(hret));
968         ehca_free_fw_ctrlblock(mqpcb);
969
970 create_srq1:
971         internal_destroy_qp(pd->device, my_qp, my_qp->ib_srq.uobject);
972
973         return ret;
974 }
975
976 /*
977  * prepare_sqe_rts called by internal_modify_qp() at trans sqe -> rts
978  * set purge bit of bad wqe and subsequent wqes to avoid reentering sqe
979  * returns total number of bad wqes in bad_wqe_cnt
980  */
981 static int prepare_sqe_rts(struct ehca_qp *my_qp, struct ehca_shca *shca,
982                            int *bad_wqe_cnt)
983 {
984         u64 h_ret;
985         struct ipz_queue *squeue;
986         void *bad_send_wqe_p, *bad_send_wqe_v;
987         u64 q_ofs;
988         struct ehca_wqe *wqe;
989         int qp_num = my_qp->ib_qp.qp_num;
990
991         /* get send wqe pointer */
992         h_ret = hipz_h_disable_and_get_wqe(shca->ipz_hca_handle,
993                                            my_qp->ipz_qp_handle, &my_qp->pf,
994                                            &bad_send_wqe_p, NULL, 2);
995         if (h_ret != H_SUCCESS) {
996                 ehca_err(&shca->ib_device, "hipz_h_disable_and_get_wqe() failed"
997                          " ehca_qp=%p qp_num=%x h_ret=%li",
998                          my_qp, qp_num, h_ret);
999                 return ehca2ib_return_code(h_ret);
1000         }
1001         bad_send_wqe_p = (void *)((u64)bad_send_wqe_p & (~(1L << 63)));
1002         ehca_dbg(&shca->ib_device, "qp_num=%x bad_send_wqe_p=%p",
1003                  qp_num, bad_send_wqe_p);
1004         /* convert wqe pointer to vadr */
1005         bad_send_wqe_v = abs_to_virt((u64)bad_send_wqe_p);
1006         if (ehca_debug_level >= 2)
1007                 ehca_dmp(bad_send_wqe_v, 32, "qp_num=%x bad_wqe", qp_num);
1008         squeue = &my_qp->ipz_squeue;
1009         if (ipz_queue_abs_to_offset(squeue, (u64)bad_send_wqe_p, &q_ofs)) {
1010                 ehca_err(&shca->ib_device, "failed to get wqe offset qp_num=%x"
1011                          " bad_send_wqe_p=%p", qp_num, bad_send_wqe_p);
1012                 return -EFAULT;
1013         }
1014
1015         /* loop sets wqe's purge bit */
1016         wqe = (struct ehca_wqe *)ipz_qeit_calc(squeue, q_ofs);
1017         *bad_wqe_cnt = 0;
1018         while (wqe->optype != 0xff && wqe->wqef != 0xff) {
1019                 if (ehca_debug_level >= 2)
1020                         ehca_dmp(wqe, 32, "qp_num=%x wqe", qp_num);
1021                 wqe->nr_of_data_seg = 0; /* suppress data access */
1022                 wqe->wqef = WQEF_PURGE; /* WQE to be purged */
1023                 q_ofs = ipz_queue_advance_offset(squeue, q_ofs);
1024                 wqe = (struct ehca_wqe *)ipz_qeit_calc(squeue, q_ofs);
1025                 *bad_wqe_cnt = (*bad_wqe_cnt)+1;
1026         }
1027         /*
1028          * bad wqe will be reprocessed and ignored when pol_cq() is called,
1029          *  i.e. nr of wqes with flush error status is one less
1030          */
1031         ehca_dbg(&shca->ib_device, "qp_num=%x flusherr_wqe_cnt=%x",
1032                  qp_num, (*bad_wqe_cnt)-1);
1033         wqe->wqef = 0;
1034
1035         return 0;
1036 }
1037
1038 /*
1039  * internal_modify_qp with circumvention to handle aqp0 properly
1040  * smi_reset2init indicates if this is an internal reset-to-init-call for
1041  * smi. This flag must always be zero if called from ehca_modify_qp()!
1042  * This internal func was intorduced to avoid recursion of ehca_modify_qp()!
1043  */
1044 static int internal_modify_qp(struct ib_qp *ibqp,
1045                               struct ib_qp_attr *attr,
1046                               int attr_mask, int smi_reset2init)
1047 {
1048         enum ib_qp_state qp_cur_state, qp_new_state;
1049         int cnt, qp_attr_idx, ret = 0;
1050         enum ib_qp_statetrans statetrans;
1051         struct hcp_modify_qp_control_block *mqpcb;
1052         struct ehca_qp *my_qp = container_of(ibqp, struct ehca_qp, ib_qp);
1053         struct ehca_shca *shca =
1054                 container_of(ibqp->pd->device, struct ehca_shca, ib_device);
1055         u64 update_mask;
1056         u64 h_ret;
1057         int bad_wqe_cnt = 0;
1058         int squeue_locked = 0;
1059         unsigned long flags = 0;
1060
1061         /* do query_qp to obtain current attr values */
1062         mqpcb = ehca_alloc_fw_ctrlblock(GFP_ATOMIC);
1063         if (!mqpcb) {
1064                 ehca_err(ibqp->device, "Could not get zeroed page for mqpcb "
1065                          "ehca_qp=%p qp_num=%x ", my_qp, ibqp->qp_num);
1066                 return -ENOMEM;
1067         }
1068
1069         h_ret = hipz_h_query_qp(shca->ipz_hca_handle,
1070                                 my_qp->ipz_qp_handle,
1071                                 &my_qp->pf,
1072                                 mqpcb, my_qp->galpas.kernel);
1073         if (h_ret != H_SUCCESS) {
1074                 ehca_err(ibqp->device, "hipz_h_query_qp() failed "
1075                          "ehca_qp=%p qp_num=%x h_ret=%li",
1076                          my_qp, ibqp->qp_num, h_ret);
1077                 ret = ehca2ib_return_code(h_ret);
1078                 goto modify_qp_exit1;
1079         }
1080
1081         qp_cur_state = ehca2ib_qp_state(mqpcb->qp_state);
1082
1083         if (qp_cur_state == -EINVAL) {  /* invalid qp state */
1084                 ret = -EINVAL;
1085                 ehca_err(ibqp->device, "Invalid current ehca_qp_state=%x "
1086                          "ehca_qp=%p qp_num=%x",
1087                          mqpcb->qp_state, my_qp, ibqp->qp_num);
1088                 goto modify_qp_exit1;
1089         }
1090         /*
1091          * circumvention to set aqp0 initial state to init
1092          * as expected by IB spec
1093          */
1094         if (smi_reset2init == 0 &&
1095             ibqp->qp_type == IB_QPT_SMI &&
1096             qp_cur_state == IB_QPS_RESET &&
1097             (attr_mask & IB_QP_STATE) &&
1098             attr->qp_state == IB_QPS_INIT) { /* RESET -> INIT */
1099                 struct ib_qp_attr smiqp_attr = {
1100                         .qp_state = IB_QPS_INIT,
1101                         .port_num = my_qp->init_attr.port_num,
1102                         .pkey_index = 0,
1103                         .qkey = 0
1104                 };
1105                 int smiqp_attr_mask = IB_QP_STATE | IB_QP_PORT |
1106                         IB_QP_PKEY_INDEX | IB_QP_QKEY;
1107                 int smirc = internal_modify_qp(
1108                         ibqp, &smiqp_attr, smiqp_attr_mask, 1);
1109                 if (smirc) {
1110                         ehca_err(ibqp->device, "SMI RESET -> INIT failed. "
1111                                  "ehca_modify_qp() rc=%i", smirc);
1112                         ret = H_PARAMETER;
1113                         goto modify_qp_exit1;
1114                 }
1115                 qp_cur_state = IB_QPS_INIT;
1116                 ehca_dbg(ibqp->device, "SMI RESET -> INIT succeeded");
1117         }
1118         /* is transmitted current state  equal to "real" current state */
1119         if ((attr_mask & IB_QP_CUR_STATE) &&
1120             qp_cur_state != attr->cur_qp_state) {
1121                 ret = -EINVAL;
1122                 ehca_err(ibqp->device,
1123                          "Invalid IB_QP_CUR_STATE attr->curr_qp_state=%x <>"
1124                          " actual cur_qp_state=%x. ehca_qp=%p qp_num=%x",
1125                          attr->cur_qp_state, qp_cur_state, my_qp, ibqp->qp_num);
1126                 goto modify_qp_exit1;
1127         }
1128
1129         ehca_dbg(ibqp->device, "ehca_qp=%p qp_num=%x current qp_state=%x "
1130                  "new qp_state=%x attribute_mask=%x",
1131                  my_qp, ibqp->qp_num, qp_cur_state, attr->qp_state, attr_mask);
1132
1133         qp_new_state = attr_mask & IB_QP_STATE ? attr->qp_state : qp_cur_state;
1134         if (!smi_reset2init &&
1135             !ib_modify_qp_is_ok(qp_cur_state, qp_new_state, ibqp->qp_type,
1136                                 attr_mask)) {
1137                 ret = -EINVAL;
1138                 ehca_err(ibqp->device,
1139                          "Invalid qp transition new_state=%x cur_state=%x "
1140                          "ehca_qp=%p qp_num=%x attr_mask=%x", qp_new_state,
1141                          qp_cur_state, my_qp, ibqp->qp_num, attr_mask);
1142                 goto modify_qp_exit1;
1143         }
1144
1145         mqpcb->qp_state = ib2ehca_qp_state(qp_new_state);
1146         if (mqpcb->qp_state)
1147                 update_mask = EHCA_BMASK_SET(MQPCB_MASK_QP_STATE, 1);
1148         else {
1149                 ret = -EINVAL;
1150                 ehca_err(ibqp->device, "Invalid new qp state=%x "
1151                          "ehca_qp=%p qp_num=%x",
1152                          qp_new_state, my_qp, ibqp->qp_num);
1153                 goto modify_qp_exit1;
1154         }
1155
1156         /* retrieve state transition struct to get req and opt attrs */
1157         statetrans = get_modqp_statetrans(qp_cur_state, qp_new_state);
1158         if (statetrans < 0) {
1159                 ret = -EINVAL;
1160                 ehca_err(ibqp->device, "<INVALID STATE CHANGE> qp_cur_state=%x "
1161                          "new_qp_state=%x State_xsition=%x ehca_qp=%p "
1162                          "qp_num=%x", qp_cur_state, qp_new_state,
1163                          statetrans, my_qp, ibqp->qp_num);
1164                 goto modify_qp_exit1;
1165         }
1166
1167         qp_attr_idx = ib2ehcaqptype(ibqp->qp_type);
1168
1169         if (qp_attr_idx < 0) {
1170                 ret = qp_attr_idx;
1171                 ehca_err(ibqp->device,
1172                          "Invalid QP type=%x ehca_qp=%p qp_num=%x",
1173                          ibqp->qp_type, my_qp, ibqp->qp_num);
1174                 goto modify_qp_exit1;
1175         }
1176
1177         ehca_dbg(ibqp->device,
1178                  "ehca_qp=%p qp_num=%x <VALID STATE CHANGE> qp_state_xsit=%x",
1179                  my_qp, ibqp->qp_num, statetrans);
1180
1181         /* eHCA2 rev2 and higher require the SEND_GRH_FLAG to be set
1182          * in non-LL UD QPs.
1183          */
1184         if ((my_qp->qp_type == IB_QPT_UD) &&
1185             (my_qp->ext_type != EQPT_LLQP) &&
1186             (statetrans == IB_QPST_INIT2RTR) &&
1187             (shca->hw_level >= 0x22)) {
1188                 update_mask |= EHCA_BMASK_SET(MQPCB_MASK_SEND_GRH_FLAG, 1);
1189                 mqpcb->send_grh_flag = 1;
1190         }
1191
1192         /* sqe -> rts: set purge bit of bad wqe before actual trans */
1193         if ((my_qp->qp_type == IB_QPT_UD ||
1194              my_qp->qp_type == IB_QPT_GSI ||
1195              my_qp->qp_type == IB_QPT_SMI) &&
1196             statetrans == IB_QPST_SQE2RTS) {
1197                 /* mark next free wqe if kernel */
1198                 if (!ibqp->uobject) {
1199                         struct ehca_wqe *wqe;
1200                         /* lock send queue */
1201                         spin_lock_irqsave(&my_qp->spinlock_s, flags);
1202                         squeue_locked = 1;
1203                         /* mark next free wqe */
1204                         wqe = (struct ehca_wqe *)
1205                                 ipz_qeit_get(&my_qp->ipz_squeue);
1206                         wqe->optype = wqe->wqef = 0xff;
1207                         ehca_dbg(ibqp->device, "qp_num=%x next_free_wqe=%p",
1208                                  ibqp->qp_num, wqe);
1209                 }
1210                 ret = prepare_sqe_rts(my_qp, shca, &bad_wqe_cnt);
1211                 if (ret) {
1212                         ehca_err(ibqp->device, "prepare_sqe_rts() failed "
1213                                  "ehca_qp=%p qp_num=%x ret=%i",
1214                                  my_qp, ibqp->qp_num, ret);
1215                         goto modify_qp_exit2;
1216                 }
1217         }
1218
1219         /*
1220          * enable RDMA_Atomic_Control if reset->init und reliable con
1221          * this is necessary since gen2 does not provide that flag,
1222          * but pHyp requires it
1223          */
1224         if (statetrans == IB_QPST_RESET2INIT &&
1225             (ibqp->qp_type == IB_QPT_RC || ibqp->qp_type == IB_QPT_UC)) {
1226                 mqpcb->rdma_atomic_ctrl = 3;
1227                 update_mask |= EHCA_BMASK_SET(MQPCB_MASK_RDMA_ATOMIC_CTRL, 1);
1228         }
1229         /* circ. pHyp requires #RDMA/Atomic Resp Res for UC INIT -> RTR */
1230         if (statetrans == IB_QPST_INIT2RTR &&
1231             (ibqp->qp_type == IB_QPT_UC) &&
1232             !(attr_mask & IB_QP_MAX_DEST_RD_ATOMIC)) {
1233                 mqpcb->rdma_nr_atomic_resp_res = 1; /* default to 1 */
1234                 update_mask |=
1235                         EHCA_BMASK_SET(MQPCB_MASK_RDMA_NR_ATOMIC_RESP_RES, 1);
1236         }
1237
1238         if (attr_mask & IB_QP_PKEY_INDEX) {
1239                 if (attr->pkey_index >= 16) {
1240                         ret = -EINVAL;
1241                         ehca_err(ibqp->device, "Invalid pkey_index=%x. "
1242                                  "ehca_qp=%p qp_num=%x max_pkey_index=f",
1243                                  attr->pkey_index, my_qp, ibqp->qp_num);
1244                         goto modify_qp_exit2;
1245                 }
1246                 mqpcb->prim_p_key_idx = attr->pkey_index;
1247                 update_mask |= EHCA_BMASK_SET(MQPCB_MASK_PRIM_P_KEY_IDX, 1);
1248         }
1249         if (attr_mask & IB_QP_PORT) {
1250                 struct ehca_sport *sport;
1251                 struct ehca_qp *aqp1;
1252                 if (attr->port_num < 1 || attr->port_num > shca->num_ports) {
1253                         ret = -EINVAL;
1254                         ehca_err(ibqp->device, "Invalid port=%x. "
1255                                  "ehca_qp=%p qp_num=%x num_ports=%x",
1256                                  attr->port_num, my_qp, ibqp->qp_num,
1257                                  shca->num_ports);
1258                         goto modify_qp_exit2;
1259                 }
1260                 sport = &shca->sport[attr->port_num - 1];
1261                 if (!sport->ibqp_sqp[IB_QPT_GSI]) {
1262                         /* should not occur */
1263                         ret = -EFAULT;
1264                         ehca_err(ibqp->device, "AQP1 was not created for "
1265                                  "port=%x", attr->port_num);
1266                         goto modify_qp_exit2;
1267                 }
1268                 aqp1 = container_of(sport->ibqp_sqp[IB_QPT_GSI],
1269                                     struct ehca_qp, ib_qp);
1270                 if (ibqp->qp_type != IB_QPT_GSI &&
1271                     ibqp->qp_type != IB_QPT_SMI &&
1272                     aqp1->mod_qp_parm) {
1273                         /*
1274                          * firmware will reject this modify_qp() because
1275                          * port is not activated/initialized fully
1276                          */
1277                         ret = -EFAULT;
1278                         ehca_warn(ibqp->device, "Couldn't modify qp port=%x: "
1279                                   "either port is being activated (try again) "
1280                                   "or cabling issue", attr->port_num);
1281                         goto modify_qp_exit2;
1282                 }
1283                 mqpcb->prim_phys_port = attr->port_num;
1284                 update_mask |= EHCA_BMASK_SET(MQPCB_MASK_PRIM_PHYS_PORT, 1);
1285         }
1286         if (attr_mask & IB_QP_QKEY) {
1287                 mqpcb->qkey = attr->qkey;
1288                 update_mask |= EHCA_BMASK_SET(MQPCB_MASK_QKEY, 1);
1289         }
1290         if (attr_mask & IB_QP_AV) {
1291                 mqpcb->dlid = attr->ah_attr.dlid;
1292                 update_mask |= EHCA_BMASK_SET(MQPCB_MASK_DLID, 1);
1293                 mqpcb->source_path_bits = attr->ah_attr.src_path_bits;
1294                 update_mask |= EHCA_BMASK_SET(MQPCB_MASK_SOURCE_PATH_BITS, 1);
1295                 mqpcb->service_level = attr->ah_attr.sl;
1296                 update_mask |= EHCA_BMASK_SET(MQPCB_MASK_SERVICE_LEVEL, 1);
1297
1298                 if (ehca_calc_ipd(shca, mqpcb->prim_phys_port,
1299                                   attr->ah_attr.static_rate,
1300                                   &mqpcb->max_static_rate)) {
1301                         ret = -EINVAL;
1302                         goto modify_qp_exit2;
1303                 }
1304                 update_mask |= EHCA_BMASK_SET(MQPCB_MASK_MAX_STATIC_RATE, 1);
1305
1306                 /*
1307                  * Always supply the GRH flag, even if it's zero, to give the
1308                  * hypervisor a clear "yes" or "no" instead of a "perhaps"
1309                  */
1310                 update_mask |= EHCA_BMASK_SET(MQPCB_MASK_SEND_GRH_FLAG, 1);
1311
1312                 /*
1313                  * only if GRH is TRUE we might consider SOURCE_GID_IDX
1314                  * and DEST_GID otherwise phype will return H_ATTR_PARM!!!
1315                  */
1316                 if (attr->ah_attr.ah_flags == IB_AH_GRH) {
1317                         mqpcb->send_grh_flag = 1;
1318
1319                         mqpcb->source_gid_idx = attr->ah_attr.grh.sgid_index;
1320                         update_mask |=
1321                                 EHCA_BMASK_SET(MQPCB_MASK_SOURCE_GID_IDX, 1);
1322
1323                         for (cnt = 0; cnt < 16; cnt++)
1324                                 mqpcb->dest_gid.byte[cnt] =
1325                                         attr->ah_attr.grh.dgid.raw[cnt];
1326
1327                         update_mask |= EHCA_BMASK_SET(MQPCB_MASK_DEST_GID, 1);
1328                         mqpcb->flow_label = attr->ah_attr.grh.flow_label;
1329                         update_mask |= EHCA_BMASK_SET(MQPCB_MASK_FLOW_LABEL, 1);
1330                         mqpcb->hop_limit = attr->ah_attr.grh.hop_limit;
1331                         update_mask |= EHCA_BMASK_SET(MQPCB_MASK_HOP_LIMIT, 1);
1332                         mqpcb->traffic_class = attr->ah_attr.grh.traffic_class;
1333                         update_mask |=
1334                                 EHCA_BMASK_SET(MQPCB_MASK_TRAFFIC_CLASS, 1);
1335                 }
1336         }
1337
1338         if (attr_mask & IB_QP_PATH_MTU) {
1339                 /* store ld(MTU) */
1340                 my_qp->mtu_shift = attr->path_mtu + 7;
1341                 mqpcb->path_mtu = attr->path_mtu;
1342                 update_mask |= EHCA_BMASK_SET(MQPCB_MASK_PATH_MTU, 1);
1343         }
1344         if (attr_mask & IB_QP_TIMEOUT) {
1345                 mqpcb->timeout = attr->timeout;
1346                 update_mask |= EHCA_BMASK_SET(MQPCB_MASK_TIMEOUT, 1);
1347         }
1348         if (attr_mask & IB_QP_RETRY_CNT) {
1349                 mqpcb->retry_count = attr->retry_cnt;
1350                 update_mask |= EHCA_BMASK_SET(MQPCB_MASK_RETRY_COUNT, 1);
1351         }
1352         if (attr_mask & IB_QP_RNR_RETRY) {
1353                 mqpcb->rnr_retry_count = attr->rnr_retry;
1354                 update_mask |= EHCA_BMASK_SET(MQPCB_MASK_RNR_RETRY_COUNT, 1);
1355         }
1356         if (attr_mask & IB_QP_RQ_PSN) {
1357                 mqpcb->receive_psn = attr->rq_psn;
1358                 update_mask |= EHCA_BMASK_SET(MQPCB_MASK_RECEIVE_PSN, 1);
1359         }
1360         if (attr_mask & IB_QP_MAX_DEST_RD_ATOMIC) {
1361                 mqpcb->rdma_nr_atomic_resp_res = attr->max_dest_rd_atomic < 3 ?
1362                         attr->max_dest_rd_atomic : 2;
1363                 update_mask |=
1364                         EHCA_BMASK_SET(MQPCB_MASK_RDMA_NR_ATOMIC_RESP_RES, 1);
1365         }
1366         if (attr_mask & IB_QP_MAX_QP_RD_ATOMIC) {
1367                 mqpcb->rdma_atomic_outst_dest_qp = attr->max_rd_atomic < 3 ?
1368                         attr->max_rd_atomic : 2;
1369                 update_mask |=
1370                         EHCA_BMASK_SET
1371                         (MQPCB_MASK_RDMA_ATOMIC_OUTST_DEST_QP, 1);
1372         }
1373         if (attr_mask & IB_QP_ALT_PATH) {
1374                 if (attr->alt_port_num < 1
1375                     || attr->alt_port_num > shca->num_ports) {
1376                         ret = -EINVAL;
1377                         ehca_err(ibqp->device, "Invalid alt_port=%x. "
1378                                  "ehca_qp=%p qp_num=%x num_ports=%x",
1379                                  attr->alt_port_num, my_qp, ibqp->qp_num,
1380                                  shca->num_ports);
1381                         goto modify_qp_exit2;
1382                 }
1383                 mqpcb->alt_phys_port = attr->alt_port_num;
1384
1385                 if (attr->alt_pkey_index >= 16) {
1386                         ret = -EINVAL;
1387                         ehca_err(ibqp->device, "Invalid alt_pkey_index=%x. "
1388                                  "ehca_qp=%p qp_num=%x max_pkey_index=f",
1389                                  attr->pkey_index, my_qp, ibqp->qp_num);
1390                         goto modify_qp_exit2;
1391                 }
1392                 mqpcb->alt_p_key_idx = attr->alt_pkey_index;
1393
1394                 mqpcb->timeout_al = attr->alt_timeout;
1395                 mqpcb->dlid_al = attr->alt_ah_attr.dlid;
1396                 mqpcb->source_path_bits_al = attr->alt_ah_attr.src_path_bits;
1397                 mqpcb->service_level_al = attr->alt_ah_attr.sl;
1398
1399                 if (ehca_calc_ipd(shca, mqpcb->alt_phys_port,
1400                                   attr->alt_ah_attr.static_rate,
1401                                   &mqpcb->max_static_rate_al)) {
1402                         ret = -EINVAL;
1403                         goto modify_qp_exit2;
1404                 }
1405
1406                 /* OpenIB doesn't support alternate retry counts - copy them */
1407                 mqpcb->retry_count_al = mqpcb->retry_count;
1408                 mqpcb->rnr_retry_count_al = mqpcb->rnr_retry_count;
1409
1410                 update_mask |= EHCA_BMASK_SET(MQPCB_MASK_ALT_PHYS_PORT, 1)
1411                         | EHCA_BMASK_SET(MQPCB_MASK_ALT_P_KEY_IDX, 1)
1412                         | EHCA_BMASK_SET(MQPCB_MASK_TIMEOUT_AL, 1)
1413                         | EHCA_BMASK_SET(MQPCB_MASK_DLID_AL, 1)
1414                         | EHCA_BMASK_SET(MQPCB_MASK_SOURCE_PATH_BITS_AL, 1)
1415                         | EHCA_BMASK_SET(MQPCB_MASK_SERVICE_LEVEL_AL, 1)
1416                         | EHCA_BMASK_SET(MQPCB_MASK_MAX_STATIC_RATE_AL, 1)
1417                         | EHCA_BMASK_SET(MQPCB_MASK_RETRY_COUNT_AL, 1)
1418                         | EHCA_BMASK_SET(MQPCB_MASK_RNR_RETRY_COUNT_AL, 1);
1419
1420                 /*
1421                  * Always supply the GRH flag, even if it's zero, to give the
1422                  * hypervisor a clear "yes" or "no" instead of a "perhaps"
1423                  */
1424                 update_mask |= EHCA_BMASK_SET(MQPCB_MASK_SEND_GRH_FLAG_AL, 1);
1425
1426                 /*
1427                  * only if GRH is TRUE we might consider SOURCE_GID_IDX
1428                  * and DEST_GID otherwise phype will return H_ATTR_PARM!!!
1429                  */
1430                 if (attr->alt_ah_attr.ah_flags == IB_AH_GRH) {
1431                         mqpcb->send_grh_flag_al = 1;
1432
1433                         for (cnt = 0; cnt < 16; cnt++)
1434                                 mqpcb->dest_gid_al.byte[cnt] =
1435                                         attr->alt_ah_attr.grh.dgid.raw[cnt];
1436                         mqpcb->source_gid_idx_al =
1437                                 attr->alt_ah_attr.grh.sgid_index;
1438                         mqpcb->flow_label_al = attr->alt_ah_attr.grh.flow_label;
1439                         mqpcb->hop_limit_al = attr->alt_ah_attr.grh.hop_limit;
1440                         mqpcb->traffic_class_al =
1441                                 attr->alt_ah_attr.grh.traffic_class;
1442
1443                         update_mask |=
1444                                 EHCA_BMASK_SET(MQPCB_MASK_SOURCE_GID_IDX_AL, 1)
1445                                 | EHCA_BMASK_SET(MQPCB_MASK_DEST_GID_AL, 1)
1446                                 | EHCA_BMASK_SET(MQPCB_MASK_FLOW_LABEL_AL, 1)
1447                                 | EHCA_BMASK_SET(MQPCB_MASK_HOP_LIMIT_AL, 1) |
1448                                 EHCA_BMASK_SET(MQPCB_MASK_TRAFFIC_CLASS_AL, 1);
1449                 }
1450         }
1451
1452         if (attr_mask & IB_QP_MIN_RNR_TIMER) {
1453                 mqpcb->min_rnr_nak_timer_field = attr->min_rnr_timer;
1454                 update_mask |=
1455                         EHCA_BMASK_SET(MQPCB_MASK_MIN_RNR_NAK_TIMER_FIELD, 1);
1456         }
1457
1458         if (attr_mask & IB_QP_SQ_PSN) {
1459                 mqpcb->send_psn = attr->sq_psn;
1460                 update_mask |= EHCA_BMASK_SET(MQPCB_MASK_SEND_PSN, 1);
1461         }
1462
1463         if (attr_mask & IB_QP_DEST_QPN) {
1464                 mqpcb->dest_qp_nr = attr->dest_qp_num;
1465                 update_mask |= EHCA_BMASK_SET(MQPCB_MASK_DEST_QP_NR, 1);
1466         }
1467
1468         if (attr_mask & IB_QP_PATH_MIG_STATE) {
1469                 if (attr->path_mig_state != IB_MIG_REARM
1470                     && attr->path_mig_state != IB_MIG_MIGRATED) {
1471                         ret = -EINVAL;
1472                         ehca_err(ibqp->device, "Invalid mig_state=%x",
1473                                  attr->path_mig_state);
1474                         goto modify_qp_exit2;
1475                 }
1476                 mqpcb->path_migration_state = attr->path_mig_state + 1;
1477                 if (attr->path_mig_state == IB_MIG_REARM)
1478                         my_qp->mig_armed = 1;
1479                 update_mask |=
1480                         EHCA_BMASK_SET(MQPCB_MASK_PATH_MIGRATION_STATE, 1);
1481         }
1482
1483         if (attr_mask & IB_QP_CAP) {
1484                 mqpcb->max_nr_outst_send_wr = attr->cap.max_send_wr+1;
1485                 update_mask |=
1486                         EHCA_BMASK_SET(MQPCB_MASK_MAX_NR_OUTST_SEND_WR, 1);
1487                 mqpcb->max_nr_outst_recv_wr = attr->cap.max_recv_wr+1;
1488                 update_mask |=
1489                         EHCA_BMASK_SET(MQPCB_MASK_MAX_NR_OUTST_RECV_WR, 1);
1490                 /* no support for max_send/recv_sge yet */
1491         }
1492
1493         if (ehca_debug_level >= 2)
1494                 ehca_dmp(mqpcb, 4*70, "qp_num=%x", ibqp->qp_num);
1495
1496         h_ret = hipz_h_modify_qp(shca->ipz_hca_handle,
1497                                  my_qp->ipz_qp_handle,
1498                                  &my_qp->pf,
1499                                  update_mask,
1500                                  mqpcb, my_qp->galpas.kernel);
1501
1502         if (h_ret != H_SUCCESS) {
1503                 ret = ehca2ib_return_code(h_ret);
1504                 ehca_err(ibqp->device, "hipz_h_modify_qp() failed h_ret=%li "
1505                          "ehca_qp=%p qp_num=%x", h_ret, my_qp, ibqp->qp_num);
1506                 goto modify_qp_exit2;
1507         }
1508
1509         if ((my_qp->qp_type == IB_QPT_UD ||
1510              my_qp->qp_type == IB_QPT_GSI ||
1511              my_qp->qp_type == IB_QPT_SMI) &&
1512             statetrans == IB_QPST_SQE2RTS) {
1513                 /* doorbell to reprocessing wqes */
1514                 iosync(); /* serialize GAL register access */
1515                 hipz_update_sqa(my_qp, bad_wqe_cnt-1);
1516                 ehca_gen_dbg("doorbell for %x wqes", bad_wqe_cnt);
1517         }
1518
1519         if (statetrans == IB_QPST_RESET2INIT ||
1520             statetrans == IB_QPST_INIT2INIT) {
1521                 mqpcb->qp_enable = 1;
1522                 mqpcb->qp_state = EHCA_QPS_INIT;
1523                 update_mask = 0;
1524                 update_mask = EHCA_BMASK_SET(MQPCB_MASK_QP_ENABLE, 1);
1525
1526                 h_ret = hipz_h_modify_qp(shca->ipz_hca_handle,
1527                                          my_qp->ipz_qp_handle,
1528                                          &my_qp->pf,
1529                                          update_mask,
1530                                          mqpcb,
1531                                          my_qp->galpas.kernel);
1532
1533                 if (h_ret != H_SUCCESS) {
1534                         ret = ehca2ib_return_code(h_ret);
1535                         ehca_err(ibqp->device, "ENABLE in context of "
1536                                  "RESET_2_INIT failed! Maybe you didn't get "
1537                                  "a LID h_ret=%li ehca_qp=%p qp_num=%x",
1538                                  h_ret, my_qp, ibqp->qp_num);
1539                         goto modify_qp_exit2;
1540                 }
1541         }
1542
1543         if (statetrans == IB_QPST_ANY2RESET) {
1544                 ipz_qeit_reset(&my_qp->ipz_rqueue);
1545                 ipz_qeit_reset(&my_qp->ipz_squeue);
1546         }
1547
1548         if (attr_mask & IB_QP_QKEY)
1549                 my_qp->qkey = attr->qkey;
1550
1551 modify_qp_exit2:
1552         if (squeue_locked) { /* this means: sqe -> rts */
1553                 spin_unlock_irqrestore(&my_qp->spinlock_s, flags);
1554                 my_qp->sqerr_purgeflag = 1;
1555         }
1556
1557 modify_qp_exit1:
1558         ehca_free_fw_ctrlblock(mqpcb);
1559
1560         return ret;
1561 }
1562
1563 int ehca_modify_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr, int attr_mask,
1564                    struct ib_udata *udata)
1565 {
1566         int ret = 0;
1567
1568         struct ehca_shca *shca = container_of(ibqp->device, struct ehca_shca,
1569                                               ib_device);
1570         struct ehca_qp *my_qp = container_of(ibqp, struct ehca_qp, ib_qp);
1571
1572         /* The if-block below caches qp_attr to be modified for GSI and SMI
1573          * qps during the initialization by ib_mad. When the respective port
1574          * is activated, ie we got an event PORT_ACTIVE, we'll replay the
1575          * cached modify calls sequence, see ehca_recover_sqs() below.
1576          * Why that is required:
1577          * 1) If one port is connected, older code requires that port one
1578          *    to be connected and module option nr_ports=1 to be given by
1579          *    user, which is very inconvenient for end user.
1580          * 2) Firmware accepts modify_qp() only if respective port has become
1581          *    active. Older code had a wait loop of 30sec create_qp()/
1582          *    define_aqp1(), which is not appropriate in practice. This
1583          *    code now removes that wait loop, see define_aqp1(), and always
1584          *    reports all ports to ib_mad resp. users. Only activated ports
1585          *    will then usable for the users.
1586          */
1587         if (ibqp->qp_type == IB_QPT_GSI || ibqp->qp_type == IB_QPT_SMI) {
1588                 int port = my_qp->init_attr.port_num;
1589                 struct ehca_sport *sport = &shca->sport[port - 1];
1590                 unsigned long flags;
1591                 spin_lock_irqsave(&sport->mod_sqp_lock, flags);
1592                 /* cache qp_attr only during init */
1593                 if (my_qp->mod_qp_parm) {
1594                         struct ehca_mod_qp_parm *p;
1595                         if (my_qp->mod_qp_parm_idx >= EHCA_MOD_QP_PARM_MAX) {
1596                                 ehca_err(&shca->ib_device,
1597                                          "mod_qp_parm overflow state=%x port=%x"
1598                                          " type=%x", attr->qp_state,
1599                                          my_qp->init_attr.port_num,
1600                                          ibqp->qp_type);
1601                                 spin_unlock_irqrestore(&sport->mod_sqp_lock,
1602                                                        flags);
1603                                 return -EINVAL;
1604                         }
1605                         p = &my_qp->mod_qp_parm[my_qp->mod_qp_parm_idx];
1606                         p->mask = attr_mask;
1607                         p->attr = *attr;
1608                         my_qp->mod_qp_parm_idx++;
1609                         ehca_dbg(&shca->ib_device,
1610                                  "Saved qp_attr for state=%x port=%x type=%x",
1611                                  attr->qp_state, my_qp->init_attr.port_num,
1612                                  ibqp->qp_type);
1613                         spin_unlock_irqrestore(&sport->mod_sqp_lock, flags);
1614                         goto out;
1615                 }
1616                 spin_unlock_irqrestore(&sport->mod_sqp_lock, flags);
1617         }
1618
1619         ret = internal_modify_qp(ibqp, attr, attr_mask, 0);
1620
1621 out:
1622         if ((ret == 0) && (attr_mask & IB_QP_STATE))
1623                 my_qp->state = attr->qp_state;
1624
1625         return ret;
1626 }
1627
1628 void ehca_recover_sqp(struct ib_qp *sqp)
1629 {
1630         struct ehca_qp *my_sqp = container_of(sqp, struct ehca_qp, ib_qp);
1631         int port = my_sqp->init_attr.port_num;
1632         struct ib_qp_attr attr;
1633         struct ehca_mod_qp_parm *qp_parm;
1634         int i, qp_parm_idx, ret;
1635         unsigned long flags, wr_cnt;
1636
1637         if (!my_sqp->mod_qp_parm)
1638                 return;
1639         ehca_dbg(sqp->device, "SQP port=%x qp_num=%x", port, sqp->qp_num);
1640
1641         qp_parm = my_sqp->mod_qp_parm;
1642         qp_parm_idx = my_sqp->mod_qp_parm_idx;
1643         for (i = 0; i < qp_parm_idx; i++) {
1644                 attr = qp_parm[i].attr;
1645                 ret = internal_modify_qp(sqp, &attr, qp_parm[i].mask, 0);
1646                 if (ret) {
1647                         ehca_err(sqp->device, "Could not modify SQP port=%x "
1648                                  "qp_num=%x ret=%x", port, sqp->qp_num, ret);
1649                         goto free_qp_parm;
1650                 }
1651                 ehca_dbg(sqp->device, "SQP port=%x qp_num=%x in state=%x",
1652                          port, sqp->qp_num, attr.qp_state);
1653         }
1654
1655         /* re-trigger posted recv wrs */
1656         wr_cnt =  my_sqp->ipz_rqueue.current_q_offset /
1657                 my_sqp->ipz_rqueue.qe_size;
1658         if (wr_cnt) {
1659                 spin_lock_irqsave(&my_sqp->spinlock_r, flags);
1660                 hipz_update_rqa(my_sqp, wr_cnt);
1661                 spin_unlock_irqrestore(&my_sqp->spinlock_r, flags);
1662                 ehca_dbg(sqp->device, "doorbell port=%x qp_num=%x wr_cnt=%lx",
1663                          port, sqp->qp_num, wr_cnt);
1664         }
1665
1666 free_qp_parm:
1667         kfree(qp_parm);
1668         /* this prevents subsequent calls to modify_qp() to cache qp_attr */
1669         my_sqp->mod_qp_parm = NULL;
1670 }
1671
1672 int ehca_query_qp(struct ib_qp *qp,
1673                   struct ib_qp_attr *qp_attr,
1674                   int qp_attr_mask, struct ib_qp_init_attr *qp_init_attr)
1675 {
1676         struct ehca_qp *my_qp = container_of(qp, struct ehca_qp, ib_qp);
1677         struct ehca_shca *shca = container_of(qp->device, struct ehca_shca,
1678                                               ib_device);
1679         struct ipz_adapter_handle adapter_handle = shca->ipz_hca_handle;
1680         struct hcp_modify_qp_control_block *qpcb;
1681         int cnt, ret = 0;
1682         u64 h_ret;
1683
1684         if (qp_attr_mask & QP_ATTR_QUERY_NOT_SUPPORTED) {
1685                 ehca_err(qp->device, "Invalid attribute mask "
1686                          "ehca_qp=%p qp_num=%x qp_attr_mask=%x ",
1687                          my_qp, qp->qp_num, qp_attr_mask);
1688                 return -EINVAL;
1689         }
1690
1691         qpcb = ehca_alloc_fw_ctrlblock(GFP_KERNEL);
1692         if (!qpcb) {
1693                 ehca_err(qp->device, "Out of memory for qpcb "
1694                          "ehca_qp=%p qp_num=%x", my_qp, qp->qp_num);
1695                 return -ENOMEM;
1696         }
1697
1698         h_ret = hipz_h_query_qp(adapter_handle,
1699                                 my_qp->ipz_qp_handle,
1700                                 &my_qp->pf,
1701                                 qpcb, my_qp->galpas.kernel);
1702
1703         if (h_ret != H_SUCCESS) {
1704                 ret = ehca2ib_return_code(h_ret);
1705                 ehca_err(qp->device, "hipz_h_query_qp() failed "
1706                          "ehca_qp=%p qp_num=%x h_ret=%li",
1707                          my_qp, qp->qp_num, h_ret);
1708                 goto query_qp_exit1;
1709         }
1710
1711         qp_attr->cur_qp_state = ehca2ib_qp_state(qpcb->qp_state);
1712         qp_attr->qp_state = qp_attr->cur_qp_state;
1713
1714         if (qp_attr->cur_qp_state == -EINVAL) {
1715                 ret = -EINVAL;
1716                 ehca_err(qp->device, "Got invalid ehca_qp_state=%x "
1717                          "ehca_qp=%p qp_num=%x",
1718                          qpcb->qp_state, my_qp, qp->qp_num);
1719                 goto query_qp_exit1;
1720         }
1721
1722         if (qp_attr->qp_state == IB_QPS_SQD)
1723                 qp_attr->sq_draining = 1;
1724
1725         qp_attr->qkey = qpcb->qkey;
1726         qp_attr->path_mtu = qpcb->path_mtu;
1727         qp_attr->path_mig_state = qpcb->path_migration_state - 1;
1728         qp_attr->rq_psn = qpcb->receive_psn;
1729         qp_attr->sq_psn = qpcb->send_psn;
1730         qp_attr->min_rnr_timer = qpcb->min_rnr_nak_timer_field;
1731         qp_attr->cap.max_send_wr = qpcb->max_nr_outst_send_wr-1;
1732         qp_attr->cap.max_recv_wr = qpcb->max_nr_outst_recv_wr-1;
1733         /* UD_AV CIRCUMVENTION */
1734         if (my_qp->qp_type == IB_QPT_UD) {
1735                 qp_attr->cap.max_send_sge =
1736                         qpcb->actual_nr_sges_in_sq_wqe - 2;
1737                 qp_attr->cap.max_recv_sge =
1738                         qpcb->actual_nr_sges_in_rq_wqe - 2;
1739         } else {
1740                 qp_attr->cap.max_send_sge =
1741                         qpcb->actual_nr_sges_in_sq_wqe;
1742                 qp_attr->cap.max_recv_sge =
1743                         qpcb->actual_nr_sges_in_rq_wqe;
1744         }
1745
1746         qp_attr->cap.max_inline_data = my_qp->sq_max_inline_data_size;
1747         qp_attr->dest_qp_num = qpcb->dest_qp_nr;
1748
1749         qp_attr->pkey_index =
1750                 EHCA_BMASK_GET(MQPCB_PRIM_P_KEY_IDX, qpcb->prim_p_key_idx);
1751
1752         qp_attr->port_num =
1753                 EHCA_BMASK_GET(MQPCB_PRIM_PHYS_PORT, qpcb->prim_phys_port);
1754
1755         qp_attr->timeout = qpcb->timeout;
1756         qp_attr->retry_cnt = qpcb->retry_count;
1757         qp_attr->rnr_retry = qpcb->rnr_retry_count;
1758
1759         qp_attr->alt_pkey_index =
1760                 EHCA_BMASK_GET(MQPCB_PRIM_P_KEY_IDX, qpcb->alt_p_key_idx);
1761
1762         qp_attr->alt_port_num = qpcb->alt_phys_port;
1763         qp_attr->alt_timeout = qpcb->timeout_al;
1764
1765         qp_attr->max_dest_rd_atomic = qpcb->rdma_nr_atomic_resp_res;
1766         qp_attr->max_rd_atomic = qpcb->rdma_atomic_outst_dest_qp;
1767
1768         /* primary av */
1769         qp_attr->ah_attr.sl = qpcb->service_level;
1770
1771         if (qpcb->send_grh_flag) {
1772                 qp_attr->ah_attr.ah_flags = IB_AH_GRH;
1773         }
1774
1775         qp_attr->ah_attr.static_rate = qpcb->max_static_rate;
1776         qp_attr->ah_attr.dlid = qpcb->dlid;
1777         qp_attr->ah_attr.src_path_bits = qpcb->source_path_bits;
1778         qp_attr->ah_attr.port_num = qp_attr->port_num;
1779
1780         /* primary GRH */
1781         qp_attr->ah_attr.grh.traffic_class = qpcb->traffic_class;
1782         qp_attr->ah_attr.grh.hop_limit = qpcb->hop_limit;
1783         qp_attr->ah_attr.grh.sgid_index = qpcb->source_gid_idx;
1784         qp_attr->ah_attr.grh.flow_label = qpcb->flow_label;
1785
1786         for (cnt = 0; cnt < 16; cnt++)
1787                 qp_attr->ah_attr.grh.dgid.raw[cnt] =
1788                         qpcb->dest_gid.byte[cnt];
1789
1790         /* alternate AV */
1791         qp_attr->alt_ah_attr.sl = qpcb->service_level_al;
1792         if (qpcb->send_grh_flag_al) {
1793                 qp_attr->alt_ah_attr.ah_flags = IB_AH_GRH;
1794         }
1795
1796         qp_attr->alt_ah_attr.static_rate = qpcb->max_static_rate_al;
1797         qp_attr->alt_ah_attr.dlid = qpcb->dlid_al;
1798         qp_attr->alt_ah_attr.src_path_bits = qpcb->source_path_bits_al;
1799
1800         /* alternate GRH */
1801         qp_attr->alt_ah_attr.grh.traffic_class = qpcb->traffic_class_al;
1802         qp_attr->alt_ah_attr.grh.hop_limit = qpcb->hop_limit_al;
1803         qp_attr->alt_ah_attr.grh.sgid_index = qpcb->source_gid_idx_al;
1804         qp_attr->alt_ah_attr.grh.flow_label = qpcb->flow_label_al;
1805
1806         for (cnt = 0; cnt < 16; cnt++)
1807                 qp_attr->alt_ah_attr.grh.dgid.raw[cnt] =
1808                         qpcb->dest_gid_al.byte[cnt];
1809
1810         /* return init attributes given in ehca_create_qp */
1811         if (qp_init_attr)
1812                 *qp_init_attr = my_qp->init_attr;
1813
1814         if (ehca_debug_level >= 2)
1815                 ehca_dmp(qpcb, 4*70, "qp_num=%x", qp->qp_num);
1816
1817 query_qp_exit1:
1818         ehca_free_fw_ctrlblock(qpcb);
1819
1820         return ret;
1821 }
1822
1823 int ehca_modify_srq(struct ib_srq *ibsrq, struct ib_srq_attr *attr,
1824                     enum ib_srq_attr_mask attr_mask, struct ib_udata *udata)
1825 {
1826         struct ehca_qp *my_qp =
1827                 container_of(ibsrq, struct ehca_qp, ib_srq);
1828         struct ehca_shca *shca =
1829                 container_of(ibsrq->pd->device, struct ehca_shca, ib_device);
1830         struct hcp_modify_qp_control_block *mqpcb;
1831         u64 update_mask;
1832         u64 h_ret;
1833         int ret = 0;
1834
1835         mqpcb = ehca_alloc_fw_ctrlblock(GFP_KERNEL);
1836         if (!mqpcb) {
1837                 ehca_err(ibsrq->device, "Could not get zeroed page for mqpcb "
1838                          "ehca_qp=%p qp_num=%x ", my_qp, my_qp->real_qp_num);
1839                 return -ENOMEM;
1840         }
1841
1842         update_mask = 0;
1843         if (attr_mask & IB_SRQ_LIMIT) {
1844                 attr_mask &= ~IB_SRQ_LIMIT;
1845                 update_mask |=
1846                         EHCA_BMASK_SET(MQPCB_MASK_CURR_SRQ_LIMIT, 1)
1847                         | EHCA_BMASK_SET(MQPCB_MASK_QP_AFF_ASYN_EV_LOG_REG, 1);
1848                 mqpcb->curr_srq_limit =
1849                         EHCA_BMASK_SET(MQPCB_CURR_SRQ_LIMIT, attr->srq_limit);
1850                 mqpcb->qp_aff_asyn_ev_log_reg =
1851                         EHCA_BMASK_SET(QPX_AAELOG_RESET_SRQ_LIMIT, 1);
1852         }
1853
1854         /* by now, all bits in attr_mask should have been cleared */
1855         if (attr_mask) {
1856                 ehca_err(ibsrq->device, "invalid attribute mask bits set  "
1857                          "attr_mask=%x", attr_mask);
1858                 ret = -EINVAL;
1859                 goto modify_srq_exit0;
1860         }
1861
1862         if (ehca_debug_level >= 2)
1863                 ehca_dmp(mqpcb, 4*70, "qp_num=%x", my_qp->real_qp_num);
1864
1865         h_ret = hipz_h_modify_qp(shca->ipz_hca_handle, my_qp->ipz_qp_handle,
1866                                  NULL, update_mask, mqpcb,
1867                                  my_qp->galpas.kernel);
1868
1869         if (h_ret != H_SUCCESS) {
1870                 ret = ehca2ib_return_code(h_ret);
1871                 ehca_err(ibsrq->device, "hipz_h_modify_qp() failed h_ret=%li "
1872                          "ehca_qp=%p qp_num=%x",
1873                          h_ret, my_qp, my_qp->real_qp_num);
1874         }
1875
1876 modify_srq_exit0:
1877         ehca_free_fw_ctrlblock(mqpcb);
1878
1879         return ret;
1880 }
1881
1882 int ehca_query_srq(struct ib_srq *srq, struct ib_srq_attr *srq_attr)
1883 {
1884         struct ehca_qp *my_qp = container_of(srq, struct ehca_qp, ib_srq);
1885         struct ehca_shca *shca = container_of(srq->device, struct ehca_shca,
1886                                               ib_device);
1887         struct ipz_adapter_handle adapter_handle = shca->ipz_hca_handle;
1888         struct hcp_modify_qp_control_block *qpcb;
1889         int ret = 0;
1890         u64 h_ret;
1891
1892         qpcb = ehca_alloc_fw_ctrlblock(GFP_KERNEL);
1893         if (!qpcb) {
1894                 ehca_err(srq->device, "Out of memory for qpcb "
1895                          "ehca_qp=%p qp_num=%x", my_qp, my_qp->real_qp_num);
1896                 return -ENOMEM;
1897         }
1898
1899         h_ret = hipz_h_query_qp(adapter_handle, my_qp->ipz_qp_handle,
1900                                 NULL, qpcb, my_qp->galpas.kernel);
1901
1902         if (h_ret != H_SUCCESS) {
1903                 ret = ehca2ib_return_code(h_ret);
1904                 ehca_err(srq->device, "hipz_h_query_qp() failed "
1905                          "ehca_qp=%p qp_num=%x h_ret=%li",
1906                          my_qp, my_qp->real_qp_num, h_ret);
1907                 goto query_srq_exit1;
1908         }
1909
1910         srq_attr->max_wr = qpcb->max_nr_outst_recv_wr - 1;
1911         srq_attr->max_sge = 3;
1912         srq_attr->srq_limit = EHCA_BMASK_GET(
1913                 MQPCB_CURR_SRQ_LIMIT, qpcb->curr_srq_limit);
1914
1915         if (ehca_debug_level >= 2)
1916                 ehca_dmp(qpcb, 4*70, "qp_num=%x", my_qp->real_qp_num);
1917
1918 query_srq_exit1:
1919         ehca_free_fw_ctrlblock(qpcb);
1920
1921         return ret;
1922 }
1923
1924 static int internal_destroy_qp(struct ib_device *dev, struct ehca_qp *my_qp,
1925                                struct ib_uobject *uobject)
1926 {
1927         struct ehca_shca *shca = container_of(dev, struct ehca_shca, ib_device);
1928         struct ehca_pd *my_pd = container_of(my_qp->ib_qp.pd, struct ehca_pd,
1929                                              ib_pd);
1930         struct ehca_sport *sport = &shca->sport[my_qp->init_attr.port_num - 1];
1931         u32 qp_num = my_qp->real_qp_num;
1932         int ret;
1933         u64 h_ret;
1934         u8 port_num;
1935         enum ib_qp_type qp_type;
1936         unsigned long flags;
1937
1938         if (uobject) {
1939                 if (my_qp->mm_count_galpa ||
1940                     my_qp->mm_count_rqueue || my_qp->mm_count_squeue) {
1941                         ehca_err(dev, "Resources still referenced in "
1942                                  "user space qp_num=%x", qp_num);
1943                         return -EINVAL;
1944                 }
1945         }
1946
1947         if (my_qp->send_cq) {
1948                 ret = ehca_cq_unassign_qp(my_qp->send_cq, qp_num);
1949                 if (ret) {
1950                         ehca_err(dev, "Couldn't unassign qp from "
1951                                  "send_cq ret=%i qp_num=%x cq_num=%x", ret,
1952                                  qp_num, my_qp->send_cq->cq_number);
1953                         return ret;
1954                 }
1955         }
1956
1957         write_lock_irqsave(&ehca_qp_idr_lock, flags);
1958         idr_remove(&ehca_qp_idr, my_qp->token);
1959         write_unlock_irqrestore(&ehca_qp_idr_lock, flags);
1960
1961         /* now wait until all pending events have completed */
1962         wait_event(my_qp->wait_completion, !atomic_read(&my_qp->nr_events));
1963
1964         h_ret = hipz_h_destroy_qp(shca->ipz_hca_handle, my_qp);
1965         if (h_ret != H_SUCCESS) {
1966                 ehca_err(dev, "hipz_h_destroy_qp() failed h_ret=%li "
1967                          "ehca_qp=%p qp_num=%x", h_ret, my_qp, qp_num);
1968                 return ehca2ib_return_code(h_ret);
1969         }
1970
1971         port_num = my_qp->init_attr.port_num;
1972         qp_type  = my_qp->init_attr.qp_type;
1973
1974         if (qp_type == IB_QPT_SMI || qp_type == IB_QPT_GSI) {
1975                 spin_lock_irqsave(&sport->mod_sqp_lock, flags);
1976                 kfree(my_qp->mod_qp_parm);
1977                 my_qp->mod_qp_parm = NULL;
1978                 shca->sport[port_num - 1].ibqp_sqp[qp_type] = NULL;
1979                 spin_unlock_irqrestore(&sport->mod_sqp_lock, flags);
1980         }
1981
1982         /* no support for IB_QPT_SMI yet */
1983         if (qp_type == IB_QPT_GSI) {
1984                 struct ib_event event;
1985                 ehca_info(dev, "device %s: port %x is inactive.",
1986                           shca->ib_device.name, port_num);
1987                 event.device = &shca->ib_device;
1988                 event.event = IB_EVENT_PORT_ERR;
1989                 event.element.port_num = port_num;
1990                 shca->sport[port_num - 1].port_state = IB_PORT_DOWN;
1991                 ib_dispatch_event(&event);
1992         }
1993
1994         if (HAS_RQ(my_qp))
1995                 ipz_queue_dtor(my_pd, &my_qp->ipz_rqueue);
1996         if (HAS_SQ(my_qp)) {
1997                 ipz_queue_dtor(my_pd, &my_qp->ipz_squeue);
1998                 vfree(my_qp->sq_map);
1999         }
2000         kmem_cache_free(qp_cache, my_qp);
2001         atomic_dec(&shca->num_qps);
2002         return 0;
2003 }
2004
2005 int ehca_destroy_qp(struct ib_qp *qp)
2006 {
2007         return internal_destroy_qp(qp->device,
2008                                    container_of(qp, struct ehca_qp, ib_qp),
2009                                    qp->uobject);
2010 }
2011
2012 int ehca_destroy_srq(struct ib_srq *srq)
2013 {
2014         return internal_destroy_qp(srq->device,
2015                                    container_of(srq, struct ehca_qp, ib_srq),
2016                                    srq->uobject);
2017 }
2018
2019 int ehca_init_qp_cache(void)
2020 {
2021         qp_cache = kmem_cache_create("ehca_cache_qp",
2022                                      sizeof(struct ehca_qp), 0,
2023                                      SLAB_HWCACHE_ALIGN,
2024                                      NULL);
2025         if (!qp_cache)
2026                 return -ENOMEM;
2027         return 0;
2028 }
2029
2030 void ehca_cleanup_qp_cache(void)
2031 {
2032         if (qp_cache)
2033                 kmem_cache_destroy(qp_cache);
2034 }