mlx4: Implement IP based gids support for RoCE/SRIOV
[cascardo/linux.git] / drivers / infiniband / hw / mlx4 / mad.c
1 /*
2  * Copyright (c) 2007 Cisco Systems, Inc. All rights reserved.
3  *
4  * This software is available to you under a choice of one of two
5  * licenses.  You may choose to be licensed under the terms of the GNU
6  * General Public License (GPL) Version 2, available from the file
7  * COPYING in the main directory of this source tree, or the
8  * OpenIB.org BSD license below:
9  *
10  *     Redistribution and use in source and binary forms, with or
11  *     without modification, are permitted provided that the following
12  *     conditions are met:
13  *
14  *      - Redistributions of source code must retain the above
15  *        copyright notice, this list of conditions and the following
16  *        disclaimer.
17  *
18  *      - Redistributions in binary form must reproduce the above
19  *        copyright notice, this list of conditions and the following
20  *        disclaimer in the documentation and/or other materials
21  *        provided with the distribution.
22  *
23  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30  * SOFTWARE.
31  */
32
33 #include <rdma/ib_mad.h>
34 #include <rdma/ib_smi.h>
35 #include <rdma/ib_sa.h>
36 #include <rdma/ib_cache.h>
37
38 #include <linux/random.h>
39 #include <linux/mlx4/cmd.h>
40 #include <linux/gfp.h>
41 #include <rdma/ib_pma.h>
42
43 #include "mlx4_ib.h"
44
45 enum {
46         MLX4_IB_VENDOR_CLASS1 = 0x9,
47         MLX4_IB_VENDOR_CLASS2 = 0xa
48 };
49
50 #define MLX4_TUN_SEND_WRID_SHIFT 34
51 #define MLX4_TUN_QPN_SHIFT 32
52 #define MLX4_TUN_WRID_RECV (((u64) 1) << MLX4_TUN_SEND_WRID_SHIFT)
53 #define MLX4_TUN_SET_WRID_QPN(a) (((u64) ((a) & 0x3)) << MLX4_TUN_QPN_SHIFT)
54
55 #define MLX4_TUN_IS_RECV(a)  (((a) >>  MLX4_TUN_SEND_WRID_SHIFT) & 0x1)
56 #define MLX4_TUN_WRID_QPN(a) (((a) >> MLX4_TUN_QPN_SHIFT) & 0x3)
57
58  /* Port mgmt change event handling */
59
60 #define GET_BLK_PTR_FROM_EQE(eqe) be32_to_cpu(eqe->event.port_mgmt_change.params.tbl_change_info.block_ptr)
61 #define GET_MASK_FROM_EQE(eqe) be32_to_cpu(eqe->event.port_mgmt_change.params.tbl_change_info.tbl_entries_mask)
62 #define NUM_IDX_IN_PKEY_TBL_BLK 32
63 #define GUID_TBL_ENTRY_SIZE 8      /* size in bytes */
64 #define GUID_TBL_BLK_NUM_ENTRIES 8
65 #define GUID_TBL_BLK_SIZE (GUID_TBL_ENTRY_SIZE * GUID_TBL_BLK_NUM_ENTRIES)
66
67 struct mlx4_mad_rcv_buf {
68         struct ib_grh grh;
69         u8 payload[256];
70 } __packed;
71
72 struct mlx4_mad_snd_buf {
73         u8 payload[256];
74 } __packed;
75
76 struct mlx4_tunnel_mad {
77         struct ib_grh grh;
78         struct mlx4_ib_tunnel_header hdr;
79         struct ib_mad mad;
80 } __packed;
81
82 struct mlx4_rcv_tunnel_mad {
83         struct mlx4_rcv_tunnel_hdr hdr;
84         struct ib_grh grh;
85         struct ib_mad mad;
86 } __packed;
87
88 static void handle_client_rereg_event(struct mlx4_ib_dev *dev, u8 port_num);
89 static void handle_lid_change_event(struct mlx4_ib_dev *dev, u8 port_num);
90 static void __propagate_pkey_ev(struct mlx4_ib_dev *dev, int port_num,
91                                 int block, u32 change_bitmap);
92
93 __be64 mlx4_ib_gen_node_guid(void)
94 {
95 #define NODE_GUID_HI    ((u64) (((u64)IB_OPENIB_OUI) << 40))
96         return cpu_to_be64(NODE_GUID_HI | prandom_u32());
97 }
98
99 __be64 mlx4_ib_get_new_demux_tid(struct mlx4_ib_demux_ctx *ctx)
100 {
101         return cpu_to_be64(atomic_inc_return(&ctx->tid)) |
102                 cpu_to_be64(0xff00000000000000LL);
103 }
104
105 int mlx4_MAD_IFC(struct mlx4_ib_dev *dev, int mad_ifc_flags,
106                  int port, struct ib_wc *in_wc, struct ib_grh *in_grh,
107                  void *in_mad, void *response_mad)
108 {
109         struct mlx4_cmd_mailbox *inmailbox, *outmailbox;
110         void *inbox;
111         int err;
112         u32 in_modifier = port;
113         u8 op_modifier = 0;
114
115         inmailbox = mlx4_alloc_cmd_mailbox(dev->dev);
116         if (IS_ERR(inmailbox))
117                 return PTR_ERR(inmailbox);
118         inbox = inmailbox->buf;
119
120         outmailbox = mlx4_alloc_cmd_mailbox(dev->dev);
121         if (IS_ERR(outmailbox)) {
122                 mlx4_free_cmd_mailbox(dev->dev, inmailbox);
123                 return PTR_ERR(outmailbox);
124         }
125
126         memcpy(inbox, in_mad, 256);
127
128         /*
129          * Key check traps can't be generated unless we have in_wc to
130          * tell us where to send the trap.
131          */
132         if ((mad_ifc_flags & MLX4_MAD_IFC_IGNORE_MKEY) || !in_wc)
133                 op_modifier |= 0x1;
134         if ((mad_ifc_flags & MLX4_MAD_IFC_IGNORE_BKEY) || !in_wc)
135                 op_modifier |= 0x2;
136         if (mlx4_is_mfunc(dev->dev) &&
137             (mad_ifc_flags & MLX4_MAD_IFC_NET_VIEW || in_wc))
138                 op_modifier |= 0x8;
139
140         if (in_wc) {
141                 struct {
142                         __be32          my_qpn;
143                         u32             reserved1;
144                         __be32          rqpn;
145                         u8              sl;
146                         u8              g_path;
147                         u16             reserved2[2];
148                         __be16          pkey;
149                         u32             reserved3[11];
150                         u8              grh[40];
151                 } *ext_info;
152
153                 memset(inbox + 256, 0, 256);
154                 ext_info = inbox + 256;
155
156                 ext_info->my_qpn = cpu_to_be32(in_wc->qp->qp_num);
157                 ext_info->rqpn   = cpu_to_be32(in_wc->src_qp);
158                 ext_info->sl     = in_wc->sl << 4;
159                 ext_info->g_path = in_wc->dlid_path_bits |
160                         (in_wc->wc_flags & IB_WC_GRH ? 0x80 : 0);
161                 ext_info->pkey   = cpu_to_be16(in_wc->pkey_index);
162
163                 if (in_grh)
164                         memcpy(ext_info->grh, in_grh, 40);
165
166                 op_modifier |= 0x4;
167
168                 in_modifier |= in_wc->slid << 16;
169         }
170
171         err = mlx4_cmd_box(dev->dev, inmailbox->dma, outmailbox->dma, in_modifier,
172                            mlx4_is_master(dev->dev) ? (op_modifier & ~0x8) : op_modifier,
173                            MLX4_CMD_MAD_IFC, MLX4_CMD_TIME_CLASS_C,
174                            (op_modifier & 0x8) ? MLX4_CMD_NATIVE : MLX4_CMD_WRAPPED);
175
176         if (!err)
177                 memcpy(response_mad, outmailbox->buf, 256);
178
179         mlx4_free_cmd_mailbox(dev->dev, inmailbox);
180         mlx4_free_cmd_mailbox(dev->dev, outmailbox);
181
182         return err;
183 }
184
185 static void update_sm_ah(struct mlx4_ib_dev *dev, u8 port_num, u16 lid, u8 sl)
186 {
187         struct ib_ah *new_ah;
188         struct ib_ah_attr ah_attr;
189         unsigned long flags;
190
191         if (!dev->send_agent[port_num - 1][0])
192                 return;
193
194         memset(&ah_attr, 0, sizeof ah_attr);
195         ah_attr.dlid     = lid;
196         ah_attr.sl       = sl;
197         ah_attr.port_num = port_num;
198
199         new_ah = ib_create_ah(dev->send_agent[port_num - 1][0]->qp->pd,
200                               &ah_attr);
201         if (IS_ERR(new_ah))
202                 return;
203
204         spin_lock_irqsave(&dev->sm_lock, flags);
205         if (dev->sm_ah[port_num - 1])
206                 ib_destroy_ah(dev->sm_ah[port_num - 1]);
207         dev->sm_ah[port_num - 1] = new_ah;
208         spin_unlock_irqrestore(&dev->sm_lock, flags);
209 }
210
211 /*
212  * Snoop SM MADs for port info, GUID info, and  P_Key table sets, so we can
213  * synthesize LID change, Client-Rereg, GID change, and P_Key change events.
214  */
215 static void smp_snoop(struct ib_device *ibdev, u8 port_num, struct ib_mad *mad,
216                       u16 prev_lid)
217 {
218         struct ib_port_info *pinfo;
219         u16 lid;
220         __be16 *base;
221         u32 bn, pkey_change_bitmap;
222         int i;
223
224
225         struct mlx4_ib_dev *dev = to_mdev(ibdev);
226         if ((mad->mad_hdr.mgmt_class == IB_MGMT_CLASS_SUBN_LID_ROUTED ||
227              mad->mad_hdr.mgmt_class == IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE) &&
228             mad->mad_hdr.method == IB_MGMT_METHOD_SET)
229                 switch (mad->mad_hdr.attr_id) {
230                 case IB_SMP_ATTR_PORT_INFO:
231                         pinfo = (struct ib_port_info *) ((struct ib_smp *) mad)->data;
232                         lid = be16_to_cpu(pinfo->lid);
233
234                         update_sm_ah(dev, port_num,
235                                      be16_to_cpu(pinfo->sm_lid),
236                                      pinfo->neighbormtu_mastersmsl & 0xf);
237
238                         if (pinfo->clientrereg_resv_subnetto & 0x80)
239                                 handle_client_rereg_event(dev, port_num);
240
241                         if (prev_lid != lid)
242                                 handle_lid_change_event(dev, port_num);
243                         break;
244
245                 case IB_SMP_ATTR_PKEY_TABLE:
246                         if (!mlx4_is_mfunc(dev->dev)) {
247                                 mlx4_ib_dispatch_event(dev, port_num,
248                                                        IB_EVENT_PKEY_CHANGE);
249                                 break;
250                         }
251
252                         /* at this point, we are running in the master.
253                          * Slaves do not receive SMPs.
254                          */
255                         bn  = be32_to_cpu(((struct ib_smp *)mad)->attr_mod) & 0xFFFF;
256                         base = (__be16 *) &(((struct ib_smp *)mad)->data[0]);
257                         pkey_change_bitmap = 0;
258                         for (i = 0; i < 32; i++) {
259                                 pr_debug("PKEY[%d] = x%x\n",
260                                          i + bn*32, be16_to_cpu(base[i]));
261                                 if (be16_to_cpu(base[i]) !=
262                                     dev->pkeys.phys_pkey_cache[port_num - 1][i + bn*32]) {
263                                         pkey_change_bitmap |= (1 << i);
264                                         dev->pkeys.phys_pkey_cache[port_num - 1][i + bn*32] =
265                                                 be16_to_cpu(base[i]);
266                                 }
267                         }
268                         pr_debug("PKEY Change event: port=%d, "
269                                  "block=0x%x, change_bitmap=0x%x\n",
270                                  port_num, bn, pkey_change_bitmap);
271
272                         if (pkey_change_bitmap) {
273                                 mlx4_ib_dispatch_event(dev, port_num,
274                                                        IB_EVENT_PKEY_CHANGE);
275                                 if (!dev->sriov.is_going_down)
276                                         __propagate_pkey_ev(dev, port_num, bn,
277                                                             pkey_change_bitmap);
278                         }
279                         break;
280
281                 case IB_SMP_ATTR_GUID_INFO:
282                         /* paravirtualized master's guid is guid 0 -- does not change */
283                         if (!mlx4_is_master(dev->dev))
284                                 mlx4_ib_dispatch_event(dev, port_num,
285                                                        IB_EVENT_GID_CHANGE);
286                         /*if master, notify relevant slaves*/
287                         if (mlx4_is_master(dev->dev) &&
288                             !dev->sriov.is_going_down) {
289                                 bn = be32_to_cpu(((struct ib_smp *)mad)->attr_mod);
290                                 mlx4_ib_update_cache_on_guid_change(dev, bn, port_num,
291                                                                     (u8 *)(&((struct ib_smp *)mad)->data));
292                                 mlx4_ib_notify_slaves_on_guid_change(dev, bn, port_num,
293                                                                      (u8 *)(&((struct ib_smp *)mad)->data));
294                         }
295                         break;
296
297                 default:
298                         break;
299                 }
300 }
301
302 static void __propagate_pkey_ev(struct mlx4_ib_dev *dev, int port_num,
303                                 int block, u32 change_bitmap)
304 {
305         int i, ix, slave, err;
306         int have_event = 0;
307
308         for (slave = 0; slave < dev->dev->caps.sqp_demux; slave++) {
309                 if (slave == mlx4_master_func_num(dev->dev))
310                         continue;
311                 if (!mlx4_is_slave_active(dev->dev, slave))
312                         continue;
313
314                 have_event = 0;
315                 for (i = 0; i < 32; i++) {
316                         if (!(change_bitmap & (1 << i)))
317                                 continue;
318                         for (ix = 0;
319                              ix < dev->dev->caps.pkey_table_len[port_num]; ix++) {
320                                 if (dev->pkeys.virt2phys_pkey[slave][port_num - 1]
321                                     [ix] == i + 32 * block) {
322                                         err = mlx4_gen_pkey_eqe(dev->dev, slave, port_num);
323                                         pr_debug("propagate_pkey_ev: slave %d,"
324                                                  " port %d, ix %d (%d)\n",
325                                                  slave, port_num, ix, err);
326                                         have_event = 1;
327                                         break;
328                                 }
329                         }
330                         if (have_event)
331                                 break;
332                 }
333         }
334 }
335
336 static void node_desc_override(struct ib_device *dev,
337                                struct ib_mad *mad)
338 {
339         unsigned long flags;
340
341         if ((mad->mad_hdr.mgmt_class == IB_MGMT_CLASS_SUBN_LID_ROUTED ||
342              mad->mad_hdr.mgmt_class == IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE) &&
343             mad->mad_hdr.method == IB_MGMT_METHOD_GET_RESP &&
344             mad->mad_hdr.attr_id == IB_SMP_ATTR_NODE_DESC) {
345                 spin_lock_irqsave(&to_mdev(dev)->sm_lock, flags);
346                 memcpy(((struct ib_smp *) mad)->data, dev->node_desc, 64);
347                 spin_unlock_irqrestore(&to_mdev(dev)->sm_lock, flags);
348         }
349 }
350
351 static void forward_trap(struct mlx4_ib_dev *dev, u8 port_num, struct ib_mad *mad)
352 {
353         int qpn = mad->mad_hdr.mgmt_class != IB_MGMT_CLASS_SUBN_LID_ROUTED;
354         struct ib_mad_send_buf *send_buf;
355         struct ib_mad_agent *agent = dev->send_agent[port_num - 1][qpn];
356         int ret;
357         unsigned long flags;
358
359         if (agent) {
360                 send_buf = ib_create_send_mad(agent, qpn, 0, 0, IB_MGMT_MAD_HDR,
361                                               IB_MGMT_MAD_DATA, GFP_ATOMIC);
362                 if (IS_ERR(send_buf))
363                         return;
364                 /*
365                  * We rely here on the fact that MLX QPs don't use the
366                  * address handle after the send is posted (this is
367                  * wrong following the IB spec strictly, but we know
368                  * it's OK for our devices).
369                  */
370                 spin_lock_irqsave(&dev->sm_lock, flags);
371                 memcpy(send_buf->mad, mad, sizeof *mad);
372                 if ((send_buf->ah = dev->sm_ah[port_num - 1]))
373                         ret = ib_post_send_mad(send_buf, NULL);
374                 else
375                         ret = -EINVAL;
376                 spin_unlock_irqrestore(&dev->sm_lock, flags);
377
378                 if (ret)
379                         ib_free_send_mad(send_buf);
380         }
381 }
382
383 static int mlx4_ib_demux_sa_handler(struct ib_device *ibdev, int port, int slave,
384                                                              struct ib_sa_mad *sa_mad)
385 {
386         int ret = 0;
387
388         /* dispatch to different sa handlers */
389         switch (be16_to_cpu(sa_mad->mad_hdr.attr_id)) {
390         case IB_SA_ATTR_MC_MEMBER_REC:
391                 ret = mlx4_ib_mcg_demux_handler(ibdev, port, slave, sa_mad);
392                 break;
393         default:
394                 break;
395         }
396         return ret;
397 }
398
399 int mlx4_ib_find_real_gid(struct ib_device *ibdev, u8 port, __be64 guid)
400 {
401         struct mlx4_ib_dev *dev = to_mdev(ibdev);
402         int i;
403
404         for (i = 0; i < dev->dev->caps.sqp_demux; i++) {
405                 if (dev->sriov.demux[port - 1].guid_cache[i] == guid)
406                         return i;
407         }
408         return -1;
409 }
410
411
412 static int find_slave_port_pkey_ix(struct mlx4_ib_dev *dev, int slave,
413                                    u8 port, u16 pkey, u16 *ix)
414 {
415         int i, ret;
416         u8 unassigned_pkey_ix, pkey_ix, partial_ix = 0xFF;
417         u16 slot_pkey;
418
419         if (slave == mlx4_master_func_num(dev->dev))
420                 return ib_find_cached_pkey(&dev->ib_dev, port, pkey, ix);
421
422         unassigned_pkey_ix = dev->dev->phys_caps.pkey_phys_table_len[port] - 1;
423
424         for (i = 0; i < dev->dev->caps.pkey_table_len[port]; i++) {
425                 if (dev->pkeys.virt2phys_pkey[slave][port - 1][i] == unassigned_pkey_ix)
426                         continue;
427
428                 pkey_ix = dev->pkeys.virt2phys_pkey[slave][port - 1][i];
429
430                 ret = ib_get_cached_pkey(&dev->ib_dev, port, pkey_ix, &slot_pkey);
431                 if (ret)
432                         continue;
433                 if ((slot_pkey & 0x7FFF) == (pkey & 0x7FFF)) {
434                         if (slot_pkey & 0x8000) {
435                                 *ix = (u16) pkey_ix;
436                                 return 0;
437                         } else {
438                                 /* take first partial pkey index found */
439                                 if (partial_ix == 0xFF)
440                                         partial_ix = pkey_ix;
441                         }
442                 }
443         }
444
445         if (partial_ix < 0xFF) {
446                 *ix = (u16) partial_ix;
447                 return 0;
448         }
449
450         return -EINVAL;
451 }
452
453 int mlx4_ib_send_to_slave(struct mlx4_ib_dev *dev, int slave, u8 port,
454                           enum ib_qp_type dest_qpt, struct ib_wc *wc,
455                           struct ib_grh *grh, struct ib_mad *mad)
456 {
457         struct ib_sge list;
458         struct ib_send_wr wr, *bad_wr;
459         struct mlx4_ib_demux_pv_ctx *tun_ctx;
460         struct mlx4_ib_demux_pv_qp *tun_qp;
461         struct mlx4_rcv_tunnel_mad *tun_mad;
462         struct ib_ah_attr attr;
463         struct ib_ah *ah;
464         struct ib_qp *src_qp = NULL;
465         unsigned tun_tx_ix = 0;
466         int dqpn;
467         int ret = 0;
468         u16 tun_pkey_ix;
469         u16 cached_pkey;
470         u8 is_eth = dev->dev->caps.port_type[port] == MLX4_PORT_TYPE_ETH;
471
472         if (dest_qpt > IB_QPT_GSI)
473                 return -EINVAL;
474
475         tun_ctx = dev->sriov.demux[port-1].tun[slave];
476
477         /* check if proxy qp created */
478         if (!tun_ctx || tun_ctx->state != DEMUX_PV_STATE_ACTIVE)
479                 return -EAGAIN;
480
481         /* QP0 forwarding only for Dom0 */
482         if (!dest_qpt && (mlx4_master_func_num(dev->dev) != slave))
483                 return -EINVAL;
484
485         if (!dest_qpt)
486                 tun_qp = &tun_ctx->qp[0];
487         else
488                 tun_qp = &tun_ctx->qp[1];
489
490         /* compute P_Key index to put in tunnel header for slave */
491         if (dest_qpt) {
492                 u16 pkey_ix;
493                 ret = ib_get_cached_pkey(&dev->ib_dev, port, wc->pkey_index, &cached_pkey);
494                 if (ret)
495                         return -EINVAL;
496
497                 ret = find_slave_port_pkey_ix(dev, slave, port, cached_pkey, &pkey_ix);
498                 if (ret)
499                         return -EINVAL;
500                 tun_pkey_ix = pkey_ix;
501         } else
502                 tun_pkey_ix = dev->pkeys.virt2phys_pkey[slave][port - 1][0];
503
504         dqpn = dev->dev->phys_caps.base_proxy_sqpn + 8 * slave + port + (dest_qpt * 2) - 1;
505
506         /* get tunnel tx data buf for slave */
507         src_qp = tun_qp->qp;
508
509         /* create ah. Just need an empty one with the port num for the post send.
510          * The driver will set the force loopback bit in post_send */
511         memset(&attr, 0, sizeof attr);
512         attr.port_num = port;
513         if (is_eth) {
514                 memcpy(&attr.grh.dgid.raw[0], &grh->dgid.raw[0], 16);
515                 attr.ah_flags = IB_AH_GRH;
516         }
517         ah = ib_create_ah(tun_ctx->pd, &attr);
518         if (IS_ERR(ah))
519                 return -ENOMEM;
520
521         /* allocate tunnel tx buf after pass failure returns */
522         spin_lock(&tun_qp->tx_lock);
523         if (tun_qp->tx_ix_head - tun_qp->tx_ix_tail >=
524             (MLX4_NUM_TUNNEL_BUFS - 1))
525                 ret = -EAGAIN;
526         else
527                 tun_tx_ix = (++tun_qp->tx_ix_head) & (MLX4_NUM_TUNNEL_BUFS - 1);
528         spin_unlock(&tun_qp->tx_lock);
529         if (ret)
530                 goto out;
531
532         tun_mad = (struct mlx4_rcv_tunnel_mad *) (tun_qp->tx_ring[tun_tx_ix].buf.addr);
533         if (tun_qp->tx_ring[tun_tx_ix].ah)
534                 ib_destroy_ah(tun_qp->tx_ring[tun_tx_ix].ah);
535         tun_qp->tx_ring[tun_tx_ix].ah = ah;
536         ib_dma_sync_single_for_cpu(&dev->ib_dev,
537                                    tun_qp->tx_ring[tun_tx_ix].buf.map,
538                                    sizeof (struct mlx4_rcv_tunnel_mad),
539                                    DMA_TO_DEVICE);
540
541         /* copy over to tunnel buffer */
542         if (grh)
543                 memcpy(&tun_mad->grh, grh, sizeof *grh);
544         memcpy(&tun_mad->mad, mad, sizeof *mad);
545
546         /* adjust tunnel data */
547         tun_mad->hdr.pkey_index = cpu_to_be16(tun_pkey_ix);
548         tun_mad->hdr.flags_src_qp = cpu_to_be32(wc->src_qp & 0xFFFFFF);
549         tun_mad->hdr.g_ml_path = (grh && (wc->wc_flags & IB_WC_GRH)) ? 0x80 : 0;
550
551         if (is_eth) {
552                 u16 vlan = 0;
553                 if (mlx4_get_slave_default_vlan(dev->dev, port, slave, &vlan,
554                                                 NULL)) {
555                         /* VST mode */
556                         if (vlan != wc->vlan_id)
557                                 /* Packet vlan is not the VST-assigned vlan.
558                                  * Drop the packet.
559                                  */
560                                 goto out;
561                          else
562                                 /* Remove the vlan tag before forwarding
563                                  * the packet to the VF.
564                                  */
565                                 vlan = 0xffff;
566                 } else {
567                         vlan = wc->vlan_id;
568                 }
569
570                 tun_mad->hdr.sl_vid = cpu_to_be16(vlan);
571                 memcpy((char *)&tun_mad->hdr.mac_31_0, &(wc->smac[0]), 4);
572                 memcpy((char *)&tun_mad->hdr.slid_mac_47_32, &(wc->smac[4]), 2);
573         } else {
574                 tun_mad->hdr.sl_vid = cpu_to_be16(((u16)(wc->sl)) << 12);
575                 tun_mad->hdr.slid_mac_47_32 = cpu_to_be16(wc->slid);
576         }
577
578         ib_dma_sync_single_for_device(&dev->ib_dev,
579                                       tun_qp->tx_ring[tun_tx_ix].buf.map,
580                                       sizeof (struct mlx4_rcv_tunnel_mad),
581                                       DMA_TO_DEVICE);
582
583         list.addr = tun_qp->tx_ring[tun_tx_ix].buf.map;
584         list.length = sizeof (struct mlx4_rcv_tunnel_mad);
585         list.lkey = tun_ctx->mr->lkey;
586
587         wr.wr.ud.ah = ah;
588         wr.wr.ud.port_num = port;
589         wr.wr.ud.remote_qkey = IB_QP_SET_QKEY;
590         wr.wr.ud.remote_qpn = dqpn;
591         wr.next = NULL;
592         wr.wr_id = ((u64) tun_tx_ix) | MLX4_TUN_SET_WRID_QPN(dest_qpt);
593         wr.sg_list = &list;
594         wr.num_sge = 1;
595         wr.opcode = IB_WR_SEND;
596         wr.send_flags = IB_SEND_SIGNALED;
597
598         ret = ib_post_send(src_qp, &wr, &bad_wr);
599 out:
600         if (ret)
601                 ib_destroy_ah(ah);
602         return ret;
603 }
604
605 static int mlx4_ib_demux_mad(struct ib_device *ibdev, u8 port,
606                         struct ib_wc *wc, struct ib_grh *grh,
607                         struct ib_mad *mad)
608 {
609         struct mlx4_ib_dev *dev = to_mdev(ibdev);
610         int err;
611         int slave;
612         u8 *slave_id;
613         int is_eth = 0;
614
615         if (rdma_port_get_link_layer(ibdev, port) == IB_LINK_LAYER_INFINIBAND)
616                 is_eth = 0;
617         else
618                 is_eth = 1;
619
620         if (is_eth) {
621                 if (!(wc->wc_flags & IB_WC_GRH)) {
622                         mlx4_ib_warn(ibdev, "RoCE grh not present.\n");
623                         return -EINVAL;
624                 }
625                 if (mad->mad_hdr.mgmt_class != IB_MGMT_CLASS_CM) {
626                         mlx4_ib_warn(ibdev, "RoCE mgmt class is not CM\n");
627                         return -EINVAL;
628                 }
629                 if (mlx4_get_slave_from_roce_gid(dev->dev, port, grh->dgid.raw, &slave)) {
630                         mlx4_ib_warn(ibdev, "failed matching grh\n");
631                         return -ENOENT;
632                 }
633                 if (slave >= dev->dev->caps.sqp_demux) {
634                         mlx4_ib_warn(ibdev, "slave id: %d is bigger than allowed:%d\n",
635                                      slave, dev->dev->caps.sqp_demux);
636                         return -ENOENT;
637                 }
638
639                 if (mlx4_ib_demux_cm_handler(ibdev, port, NULL, mad))
640                         return 0;
641
642                 err = mlx4_ib_send_to_slave(dev, slave, port, wc->qp->qp_type, wc, grh, mad);
643                 if (err)
644                         pr_debug("failed sending to slave %d via tunnel qp (%d)\n",
645                                  slave, err);
646                 return 0;
647         }
648
649         /* Initially assume that this mad is for us */
650         slave = mlx4_master_func_num(dev->dev);
651
652         /* See if the slave id is encoded in a response mad */
653         if (mad->mad_hdr.method & 0x80) {
654                 slave_id = (u8 *) &mad->mad_hdr.tid;
655                 slave = *slave_id;
656                 if (slave != 255) /*255 indicates the dom0*/
657                         *slave_id = 0; /* remap tid */
658         }
659
660         /* If a grh is present, we demux according to it */
661         if (wc->wc_flags & IB_WC_GRH) {
662                 slave = mlx4_ib_find_real_gid(ibdev, port, grh->dgid.global.interface_id);
663                 if (slave < 0) {
664                         mlx4_ib_warn(ibdev, "failed matching grh\n");
665                         return -ENOENT;
666                 }
667         }
668         /* Class-specific handling */
669         switch (mad->mad_hdr.mgmt_class) {
670         case IB_MGMT_CLASS_SUBN_ADM:
671                 if (mlx4_ib_demux_sa_handler(ibdev, port, slave,
672                                              (struct ib_sa_mad *) mad))
673                         return 0;
674                 break;
675         case IB_MGMT_CLASS_CM:
676                 if (mlx4_ib_demux_cm_handler(ibdev, port, &slave, mad))
677                         return 0;
678                 break;
679         case IB_MGMT_CLASS_DEVICE_MGMT:
680                 if (mad->mad_hdr.method != IB_MGMT_METHOD_GET_RESP)
681                         return 0;
682                 break;
683         default:
684                 /* Drop unsupported classes for slaves in tunnel mode */
685                 if (slave != mlx4_master_func_num(dev->dev)) {
686                         pr_debug("dropping unsupported ingress mad from class:%d "
687                                  "for slave:%d\n", mad->mad_hdr.mgmt_class, slave);
688                         return 0;
689                 }
690         }
691         /*make sure that no slave==255 was not handled yet.*/
692         if (slave >= dev->dev->caps.sqp_demux) {
693                 mlx4_ib_warn(ibdev, "slave id: %d is bigger than allowed:%d\n",
694                              slave, dev->dev->caps.sqp_demux);
695                 return -ENOENT;
696         }
697
698         err = mlx4_ib_send_to_slave(dev, slave, port, wc->qp->qp_type, wc, grh, mad);
699         if (err)
700                 pr_debug("failed sending to slave %d via tunnel qp (%d)\n",
701                          slave, err);
702         return 0;
703 }
704
705 static int ib_process_mad(struct ib_device *ibdev, int mad_flags, u8 port_num,
706                         struct ib_wc *in_wc, struct ib_grh *in_grh,
707                         struct ib_mad *in_mad, struct ib_mad *out_mad)
708 {
709         u16 slid, prev_lid = 0;
710         int err;
711         struct ib_port_attr pattr;
712
713         if (in_wc && in_wc->qp->qp_num) {
714                 pr_debug("received MAD: slid:%d sqpn:%d "
715                         "dlid_bits:%d dqpn:%d wc_flags:0x%x, cls %x, mtd %x, atr %x\n",
716                         in_wc->slid, in_wc->src_qp,
717                         in_wc->dlid_path_bits,
718                         in_wc->qp->qp_num,
719                         in_wc->wc_flags,
720                         in_mad->mad_hdr.mgmt_class, in_mad->mad_hdr.method,
721                         be16_to_cpu(in_mad->mad_hdr.attr_id));
722                 if (in_wc->wc_flags & IB_WC_GRH) {
723                         pr_debug("sgid_hi:0x%016llx sgid_lo:0x%016llx\n",
724                                  be64_to_cpu(in_grh->sgid.global.subnet_prefix),
725                                  be64_to_cpu(in_grh->sgid.global.interface_id));
726                         pr_debug("dgid_hi:0x%016llx dgid_lo:0x%016llx\n",
727                                  be64_to_cpu(in_grh->dgid.global.subnet_prefix),
728                                  be64_to_cpu(in_grh->dgid.global.interface_id));
729                 }
730         }
731
732         slid = in_wc ? in_wc->slid : be16_to_cpu(IB_LID_PERMISSIVE);
733
734         if (in_mad->mad_hdr.method == IB_MGMT_METHOD_TRAP && slid == 0) {
735                 forward_trap(to_mdev(ibdev), port_num, in_mad);
736                 return IB_MAD_RESULT_SUCCESS | IB_MAD_RESULT_CONSUMED;
737         }
738
739         if (in_mad->mad_hdr.mgmt_class == IB_MGMT_CLASS_SUBN_LID_ROUTED ||
740             in_mad->mad_hdr.mgmt_class == IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE) {
741                 if (in_mad->mad_hdr.method   != IB_MGMT_METHOD_GET &&
742                     in_mad->mad_hdr.method   != IB_MGMT_METHOD_SET &&
743                     in_mad->mad_hdr.method   != IB_MGMT_METHOD_TRAP_REPRESS)
744                         return IB_MAD_RESULT_SUCCESS;
745
746                 /*
747                  * Don't process SMInfo queries -- the SMA can't handle them.
748                  */
749                 if (in_mad->mad_hdr.attr_id == IB_SMP_ATTR_SM_INFO)
750                         return IB_MAD_RESULT_SUCCESS;
751         } else if (in_mad->mad_hdr.mgmt_class == IB_MGMT_CLASS_PERF_MGMT ||
752                    in_mad->mad_hdr.mgmt_class == MLX4_IB_VENDOR_CLASS1   ||
753                    in_mad->mad_hdr.mgmt_class == MLX4_IB_VENDOR_CLASS2   ||
754                    in_mad->mad_hdr.mgmt_class == IB_MGMT_CLASS_CONG_MGMT) {
755                 if (in_mad->mad_hdr.method  != IB_MGMT_METHOD_GET &&
756                     in_mad->mad_hdr.method  != IB_MGMT_METHOD_SET)
757                         return IB_MAD_RESULT_SUCCESS;
758         } else
759                 return IB_MAD_RESULT_SUCCESS;
760
761         if ((in_mad->mad_hdr.mgmt_class == IB_MGMT_CLASS_SUBN_LID_ROUTED ||
762              in_mad->mad_hdr.mgmt_class == IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE) &&
763             in_mad->mad_hdr.method == IB_MGMT_METHOD_SET &&
764             in_mad->mad_hdr.attr_id == IB_SMP_ATTR_PORT_INFO &&
765             !ib_query_port(ibdev, port_num, &pattr))
766                 prev_lid = pattr.lid;
767
768         err = mlx4_MAD_IFC(to_mdev(ibdev),
769                            (mad_flags & IB_MAD_IGNORE_MKEY ? MLX4_MAD_IFC_IGNORE_MKEY : 0) |
770                            (mad_flags & IB_MAD_IGNORE_BKEY ? MLX4_MAD_IFC_IGNORE_BKEY : 0) |
771                            MLX4_MAD_IFC_NET_VIEW,
772                            port_num, in_wc, in_grh, in_mad, out_mad);
773         if (err)
774                 return IB_MAD_RESULT_FAILURE;
775
776         if (!out_mad->mad_hdr.status) {
777                 if (!(to_mdev(ibdev)->dev->caps.flags & MLX4_DEV_CAP_FLAG_PORT_MNG_CHG_EV))
778                         smp_snoop(ibdev, port_num, in_mad, prev_lid);
779                 /* slaves get node desc from FW */
780                 if (!mlx4_is_slave(to_mdev(ibdev)->dev))
781                         node_desc_override(ibdev, out_mad);
782         }
783
784         /* set return bit in status of directed route responses */
785         if (in_mad->mad_hdr.mgmt_class == IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE)
786                 out_mad->mad_hdr.status |= cpu_to_be16(1 << 15);
787
788         if (in_mad->mad_hdr.method == IB_MGMT_METHOD_TRAP_REPRESS)
789                 /* no response for trap repress */
790                 return IB_MAD_RESULT_SUCCESS | IB_MAD_RESULT_CONSUMED;
791
792         return IB_MAD_RESULT_SUCCESS | IB_MAD_RESULT_REPLY;
793 }
794
795 static void edit_counter(struct mlx4_counter *cnt,
796                                         struct ib_pma_portcounters *pma_cnt)
797 {
798         pma_cnt->port_xmit_data = cpu_to_be32((be64_to_cpu(cnt->tx_bytes)>>2));
799         pma_cnt->port_rcv_data  = cpu_to_be32((be64_to_cpu(cnt->rx_bytes)>>2));
800         pma_cnt->port_xmit_packets = cpu_to_be32(be64_to_cpu(cnt->tx_frames));
801         pma_cnt->port_rcv_packets  = cpu_to_be32(be64_to_cpu(cnt->rx_frames));
802 }
803
804 static int iboe_process_mad(struct ib_device *ibdev, int mad_flags, u8 port_num,
805                         struct ib_wc *in_wc, struct ib_grh *in_grh,
806                         struct ib_mad *in_mad, struct ib_mad *out_mad)
807 {
808         struct mlx4_cmd_mailbox *mailbox;
809         struct mlx4_ib_dev *dev = to_mdev(ibdev);
810         int err;
811         u32 inmod = dev->counters[port_num - 1] & 0xffff;
812         u8 mode;
813
814         if (in_mad->mad_hdr.mgmt_class != IB_MGMT_CLASS_PERF_MGMT)
815                 return -EINVAL;
816
817         mailbox = mlx4_alloc_cmd_mailbox(dev->dev);
818         if (IS_ERR(mailbox))
819                 return IB_MAD_RESULT_FAILURE;
820
821         err = mlx4_cmd_box(dev->dev, 0, mailbox->dma, inmod, 0,
822                            MLX4_CMD_QUERY_IF_STAT, MLX4_CMD_TIME_CLASS_C,
823                            MLX4_CMD_WRAPPED);
824         if (err)
825                 err = IB_MAD_RESULT_FAILURE;
826         else {
827                 memset(out_mad->data, 0, sizeof out_mad->data);
828                 mode = ((struct mlx4_counter *)mailbox->buf)->counter_mode;
829                 switch (mode & 0xf) {
830                 case 0:
831                         edit_counter(mailbox->buf,
832                                                 (void *)(out_mad->data + 40));
833                         err = IB_MAD_RESULT_SUCCESS | IB_MAD_RESULT_REPLY;
834                         break;
835                 default:
836                         err = IB_MAD_RESULT_FAILURE;
837                 }
838         }
839
840         mlx4_free_cmd_mailbox(dev->dev, mailbox);
841
842         return err;
843 }
844
845 int mlx4_ib_process_mad(struct ib_device *ibdev, int mad_flags, u8 port_num,
846                         struct ib_wc *in_wc, struct ib_grh *in_grh,
847                         struct ib_mad *in_mad, struct ib_mad *out_mad)
848 {
849         switch (rdma_port_get_link_layer(ibdev, port_num)) {
850         case IB_LINK_LAYER_INFINIBAND:
851                 return ib_process_mad(ibdev, mad_flags, port_num, in_wc,
852                                       in_grh, in_mad, out_mad);
853         case IB_LINK_LAYER_ETHERNET:
854                 return iboe_process_mad(ibdev, mad_flags, port_num, in_wc,
855                                           in_grh, in_mad, out_mad);
856         default:
857                 return -EINVAL;
858         }
859 }
860
861 static void send_handler(struct ib_mad_agent *agent,
862                          struct ib_mad_send_wc *mad_send_wc)
863 {
864         if (mad_send_wc->send_buf->context[0])
865                 ib_destroy_ah(mad_send_wc->send_buf->context[0]);
866         ib_free_send_mad(mad_send_wc->send_buf);
867 }
868
869 int mlx4_ib_mad_init(struct mlx4_ib_dev *dev)
870 {
871         struct ib_mad_agent *agent;
872         int p, q;
873         int ret;
874         enum rdma_link_layer ll;
875
876         for (p = 0; p < dev->num_ports; ++p) {
877                 ll = rdma_port_get_link_layer(&dev->ib_dev, p + 1);
878                 for (q = 0; q <= 1; ++q) {
879                         if (ll == IB_LINK_LAYER_INFINIBAND) {
880                                 agent = ib_register_mad_agent(&dev->ib_dev, p + 1,
881                                                               q ? IB_QPT_GSI : IB_QPT_SMI,
882                                                               NULL, 0, send_handler,
883                                                               NULL, NULL);
884                                 if (IS_ERR(agent)) {
885                                         ret = PTR_ERR(agent);
886                                         goto err;
887                                 }
888                                 dev->send_agent[p][q] = agent;
889                         } else
890                                 dev->send_agent[p][q] = NULL;
891                 }
892         }
893
894         return 0;
895
896 err:
897         for (p = 0; p < dev->num_ports; ++p)
898                 for (q = 0; q <= 1; ++q)
899                         if (dev->send_agent[p][q])
900                                 ib_unregister_mad_agent(dev->send_agent[p][q]);
901
902         return ret;
903 }
904
905 void mlx4_ib_mad_cleanup(struct mlx4_ib_dev *dev)
906 {
907         struct ib_mad_agent *agent;
908         int p, q;
909
910         for (p = 0; p < dev->num_ports; ++p) {
911                 for (q = 0; q <= 1; ++q) {
912                         agent = dev->send_agent[p][q];
913                         if (agent) {
914                                 dev->send_agent[p][q] = NULL;
915                                 ib_unregister_mad_agent(agent);
916                         }
917                 }
918
919                 if (dev->sm_ah[p])
920                         ib_destroy_ah(dev->sm_ah[p]);
921         }
922 }
923
924 static void handle_lid_change_event(struct mlx4_ib_dev *dev, u8 port_num)
925 {
926         mlx4_ib_dispatch_event(dev, port_num, IB_EVENT_LID_CHANGE);
927
928         if (mlx4_is_master(dev->dev) && !dev->sriov.is_going_down)
929                 mlx4_gen_slaves_port_mgt_ev(dev->dev, port_num,
930                                             MLX4_EQ_PORT_INFO_LID_CHANGE_MASK);
931 }
932
933 static void handle_client_rereg_event(struct mlx4_ib_dev *dev, u8 port_num)
934 {
935         /* re-configure the alias-guid and mcg's */
936         if (mlx4_is_master(dev->dev)) {
937                 mlx4_ib_invalidate_all_guid_record(dev, port_num);
938
939                 if (!dev->sriov.is_going_down) {
940                         mlx4_ib_mcg_port_cleanup(&dev->sriov.demux[port_num - 1], 0);
941                         mlx4_gen_slaves_port_mgt_ev(dev->dev, port_num,
942                                                     MLX4_EQ_PORT_INFO_CLIENT_REREG_MASK);
943                 }
944         }
945         mlx4_ib_dispatch_event(dev, port_num, IB_EVENT_CLIENT_REREGISTER);
946 }
947
948 static void propagate_pkey_ev(struct mlx4_ib_dev *dev, int port_num,
949                               struct mlx4_eqe *eqe)
950 {
951         __propagate_pkey_ev(dev, port_num, GET_BLK_PTR_FROM_EQE(eqe),
952                             GET_MASK_FROM_EQE(eqe));
953 }
954
955 static void handle_slaves_guid_change(struct mlx4_ib_dev *dev, u8 port_num,
956                                       u32 guid_tbl_blk_num, u32 change_bitmap)
957 {
958         struct ib_smp *in_mad  = NULL;
959         struct ib_smp *out_mad  = NULL;
960         u16 i;
961
962         if (!mlx4_is_mfunc(dev->dev) || !mlx4_is_master(dev->dev))
963                 return;
964
965         in_mad  = kmalloc(sizeof *in_mad, GFP_KERNEL);
966         out_mad = kmalloc(sizeof *out_mad, GFP_KERNEL);
967         if (!in_mad || !out_mad) {
968                 mlx4_ib_warn(&dev->ib_dev, "failed to allocate memory for guid info mads\n");
969                 goto out;
970         }
971
972         guid_tbl_blk_num  *= 4;
973
974         for (i = 0; i < 4; i++) {
975                 if (change_bitmap && (!((change_bitmap >> (8 * i)) & 0xff)))
976                         continue;
977                 memset(in_mad, 0, sizeof *in_mad);
978                 memset(out_mad, 0, sizeof *out_mad);
979
980                 in_mad->base_version  = 1;
981                 in_mad->mgmt_class    = IB_MGMT_CLASS_SUBN_LID_ROUTED;
982                 in_mad->class_version = 1;
983                 in_mad->method        = IB_MGMT_METHOD_GET;
984                 in_mad->attr_id       = IB_SMP_ATTR_GUID_INFO;
985                 in_mad->attr_mod      = cpu_to_be32(guid_tbl_blk_num + i);
986
987                 if (mlx4_MAD_IFC(dev,
988                                  MLX4_MAD_IFC_IGNORE_KEYS | MLX4_MAD_IFC_NET_VIEW,
989                                  port_num, NULL, NULL, in_mad, out_mad)) {
990                         mlx4_ib_warn(&dev->ib_dev, "Failed in get GUID INFO MAD_IFC\n");
991                         goto out;
992                 }
993
994                 mlx4_ib_update_cache_on_guid_change(dev, guid_tbl_blk_num + i,
995                                                     port_num,
996                                                     (u8 *)(&((struct ib_smp *)out_mad)->data));
997                 mlx4_ib_notify_slaves_on_guid_change(dev, guid_tbl_blk_num + i,
998                                                      port_num,
999                                                      (u8 *)(&((struct ib_smp *)out_mad)->data));
1000         }
1001
1002 out:
1003         kfree(in_mad);
1004         kfree(out_mad);
1005         return;
1006 }
1007
1008 void handle_port_mgmt_change_event(struct work_struct *work)
1009 {
1010         struct ib_event_work *ew = container_of(work, struct ib_event_work, work);
1011         struct mlx4_ib_dev *dev = ew->ib_dev;
1012         struct mlx4_eqe *eqe = &(ew->ib_eqe);
1013         u8 port = eqe->event.port_mgmt_change.port;
1014         u32 changed_attr;
1015         u32 tbl_block;
1016         u32 change_bitmap;
1017
1018         switch (eqe->subtype) {
1019         case MLX4_DEV_PMC_SUBTYPE_PORT_INFO:
1020                 changed_attr = be32_to_cpu(eqe->event.port_mgmt_change.params.port_info.changed_attr);
1021
1022                 /* Update the SM ah - This should be done before handling
1023                    the other changed attributes so that MADs can be sent to the SM */
1024                 if (changed_attr & MSTR_SM_CHANGE_MASK) {
1025                         u16 lid = be16_to_cpu(eqe->event.port_mgmt_change.params.port_info.mstr_sm_lid);
1026                         u8 sl = eqe->event.port_mgmt_change.params.port_info.mstr_sm_sl & 0xf;
1027                         update_sm_ah(dev, port, lid, sl);
1028                 }
1029
1030                 /* Check if it is a lid change event */
1031                 if (changed_attr & MLX4_EQ_PORT_INFO_LID_CHANGE_MASK)
1032                         handle_lid_change_event(dev, port);
1033
1034                 /* Generate GUID changed event */
1035                 if (changed_attr & MLX4_EQ_PORT_INFO_GID_PFX_CHANGE_MASK) {
1036                         mlx4_ib_dispatch_event(dev, port, IB_EVENT_GID_CHANGE);
1037                         /*if master, notify all slaves*/
1038                         if (mlx4_is_master(dev->dev))
1039                                 mlx4_gen_slaves_port_mgt_ev(dev->dev, port,
1040                                                             MLX4_EQ_PORT_INFO_GID_PFX_CHANGE_MASK);
1041                 }
1042
1043                 if (changed_attr & MLX4_EQ_PORT_INFO_CLIENT_REREG_MASK)
1044                         handle_client_rereg_event(dev, port);
1045                 break;
1046
1047         case MLX4_DEV_PMC_SUBTYPE_PKEY_TABLE:
1048                 mlx4_ib_dispatch_event(dev, port, IB_EVENT_PKEY_CHANGE);
1049                 if (mlx4_is_master(dev->dev) && !dev->sriov.is_going_down)
1050                         propagate_pkey_ev(dev, port, eqe);
1051                 break;
1052         case MLX4_DEV_PMC_SUBTYPE_GUID_INFO:
1053                 /* paravirtualized master's guid is guid 0 -- does not change */
1054                 if (!mlx4_is_master(dev->dev))
1055                         mlx4_ib_dispatch_event(dev, port, IB_EVENT_GID_CHANGE);
1056                 /*if master, notify relevant slaves*/
1057                 else if (!dev->sriov.is_going_down) {
1058                         tbl_block = GET_BLK_PTR_FROM_EQE(eqe);
1059                         change_bitmap = GET_MASK_FROM_EQE(eqe);
1060                         handle_slaves_guid_change(dev, port, tbl_block, change_bitmap);
1061                 }
1062                 break;
1063         default:
1064                 pr_warn("Unsupported subtype 0x%x for "
1065                         "Port Management Change event\n", eqe->subtype);
1066         }
1067
1068         kfree(ew);
1069 }
1070
1071 void mlx4_ib_dispatch_event(struct mlx4_ib_dev *dev, u8 port_num,
1072                             enum ib_event_type type)
1073 {
1074         struct ib_event event;
1075
1076         event.device            = &dev->ib_dev;
1077         event.element.port_num  = port_num;
1078         event.event             = type;
1079
1080         ib_dispatch_event(&event);
1081 }
1082
1083 static void mlx4_ib_tunnel_comp_handler(struct ib_cq *cq, void *arg)
1084 {
1085         unsigned long flags;
1086         struct mlx4_ib_demux_pv_ctx *ctx = cq->cq_context;
1087         struct mlx4_ib_dev *dev = to_mdev(ctx->ib_dev);
1088         spin_lock_irqsave(&dev->sriov.going_down_lock, flags);
1089         if (!dev->sriov.is_going_down && ctx->state == DEMUX_PV_STATE_ACTIVE)
1090                 queue_work(ctx->wq, &ctx->work);
1091         spin_unlock_irqrestore(&dev->sriov.going_down_lock, flags);
1092 }
1093
1094 static int mlx4_ib_post_pv_qp_buf(struct mlx4_ib_demux_pv_ctx *ctx,
1095                                   struct mlx4_ib_demux_pv_qp *tun_qp,
1096                                   int index)
1097 {
1098         struct ib_sge sg_list;
1099         struct ib_recv_wr recv_wr, *bad_recv_wr;
1100         int size;
1101
1102         size = (tun_qp->qp->qp_type == IB_QPT_UD) ?
1103                 sizeof (struct mlx4_tunnel_mad) : sizeof (struct mlx4_mad_rcv_buf);
1104
1105         sg_list.addr = tun_qp->ring[index].map;
1106         sg_list.length = size;
1107         sg_list.lkey = ctx->mr->lkey;
1108
1109         recv_wr.next = NULL;
1110         recv_wr.sg_list = &sg_list;
1111         recv_wr.num_sge = 1;
1112         recv_wr.wr_id = (u64) index | MLX4_TUN_WRID_RECV |
1113                 MLX4_TUN_SET_WRID_QPN(tun_qp->proxy_qpt);
1114         ib_dma_sync_single_for_device(ctx->ib_dev, tun_qp->ring[index].map,
1115                                       size, DMA_FROM_DEVICE);
1116         return ib_post_recv(tun_qp->qp, &recv_wr, &bad_recv_wr);
1117 }
1118
1119 static int mlx4_ib_multiplex_sa_handler(struct ib_device *ibdev, int port,
1120                 int slave, struct ib_sa_mad *sa_mad)
1121 {
1122         int ret = 0;
1123
1124         /* dispatch to different sa handlers */
1125         switch (be16_to_cpu(sa_mad->mad_hdr.attr_id)) {
1126         case IB_SA_ATTR_MC_MEMBER_REC:
1127                 ret = mlx4_ib_mcg_multiplex_handler(ibdev, port, slave, sa_mad);
1128                 break;
1129         default:
1130                 break;
1131         }
1132         return ret;
1133 }
1134
1135 static int is_proxy_qp0(struct mlx4_ib_dev *dev, int qpn, int slave)
1136 {
1137         int proxy_start = dev->dev->phys_caps.base_proxy_sqpn + 8 * slave;
1138
1139         return (qpn >= proxy_start && qpn <= proxy_start + 1);
1140 }
1141
1142
1143 int mlx4_ib_send_to_wire(struct mlx4_ib_dev *dev, int slave, u8 port,
1144                          enum ib_qp_type dest_qpt, u16 pkey_index,
1145                          u32 remote_qpn, u32 qkey, struct ib_ah_attr *attr,
1146                          u8 *s_mac, struct ib_mad *mad)
1147 {
1148         struct ib_sge list;
1149         struct ib_send_wr wr, *bad_wr;
1150         struct mlx4_ib_demux_pv_ctx *sqp_ctx;
1151         struct mlx4_ib_demux_pv_qp *sqp;
1152         struct mlx4_mad_snd_buf *sqp_mad;
1153         struct ib_ah *ah;
1154         struct ib_qp *send_qp = NULL;
1155         unsigned wire_tx_ix = 0;
1156         int ret = 0;
1157         u16 wire_pkey_ix;
1158         int src_qpnum;
1159         u8 sgid_index;
1160
1161
1162         sqp_ctx = dev->sriov.sqps[port-1];
1163
1164         /* check if proxy qp created */
1165         if (!sqp_ctx || sqp_ctx->state != DEMUX_PV_STATE_ACTIVE)
1166                 return -EAGAIN;
1167
1168         /* QP0 forwarding only for Dom0 */
1169         if (dest_qpt == IB_QPT_SMI && (mlx4_master_func_num(dev->dev) != slave))
1170                 return -EINVAL;
1171
1172         if (dest_qpt == IB_QPT_SMI) {
1173                 src_qpnum = 0;
1174                 sqp = &sqp_ctx->qp[0];
1175                 wire_pkey_ix = dev->pkeys.virt2phys_pkey[slave][port - 1][0];
1176         } else {
1177                 src_qpnum = 1;
1178                 sqp = &sqp_ctx->qp[1];
1179                 wire_pkey_ix = dev->pkeys.virt2phys_pkey[slave][port - 1][pkey_index];
1180         }
1181
1182         send_qp = sqp->qp;
1183
1184         /* create ah */
1185         sgid_index = attr->grh.sgid_index;
1186         attr->grh.sgid_index = 0;
1187         ah = ib_create_ah(sqp_ctx->pd, attr);
1188         if (IS_ERR(ah))
1189                 return -ENOMEM;
1190         attr->grh.sgid_index = sgid_index;
1191         to_mah(ah)->av.ib.gid_index = sgid_index;
1192         /* get rid of force-loopback bit */
1193         to_mah(ah)->av.ib.port_pd &= cpu_to_be32(0x7FFFFFFF);
1194         spin_lock(&sqp->tx_lock);
1195         if (sqp->tx_ix_head - sqp->tx_ix_tail >=
1196             (MLX4_NUM_TUNNEL_BUFS - 1))
1197                 ret = -EAGAIN;
1198         else
1199                 wire_tx_ix = (++sqp->tx_ix_head) & (MLX4_NUM_TUNNEL_BUFS - 1);
1200         spin_unlock(&sqp->tx_lock);
1201         if (ret)
1202                 goto out;
1203
1204         sqp_mad = (struct mlx4_mad_snd_buf *) (sqp->tx_ring[wire_tx_ix].buf.addr);
1205         if (sqp->tx_ring[wire_tx_ix].ah)
1206                 ib_destroy_ah(sqp->tx_ring[wire_tx_ix].ah);
1207         sqp->tx_ring[wire_tx_ix].ah = ah;
1208         ib_dma_sync_single_for_cpu(&dev->ib_dev,
1209                                    sqp->tx_ring[wire_tx_ix].buf.map,
1210                                    sizeof (struct mlx4_mad_snd_buf),
1211                                    DMA_TO_DEVICE);
1212
1213         memcpy(&sqp_mad->payload, mad, sizeof *mad);
1214
1215         ib_dma_sync_single_for_device(&dev->ib_dev,
1216                                       sqp->tx_ring[wire_tx_ix].buf.map,
1217                                       sizeof (struct mlx4_mad_snd_buf),
1218                                       DMA_TO_DEVICE);
1219
1220         list.addr = sqp->tx_ring[wire_tx_ix].buf.map;
1221         list.length = sizeof (struct mlx4_mad_snd_buf);
1222         list.lkey = sqp_ctx->mr->lkey;
1223
1224         wr.wr.ud.ah = ah;
1225         wr.wr.ud.port_num = port;
1226         wr.wr.ud.pkey_index = wire_pkey_ix;
1227         wr.wr.ud.remote_qkey = qkey;
1228         wr.wr.ud.remote_qpn = remote_qpn;
1229         wr.next = NULL;
1230         wr.wr_id = ((u64) wire_tx_ix) | MLX4_TUN_SET_WRID_QPN(src_qpnum);
1231         wr.sg_list = &list;
1232         wr.num_sge = 1;
1233         wr.opcode = IB_WR_SEND;
1234         wr.send_flags = IB_SEND_SIGNALED;
1235         if (s_mac)
1236                 memcpy(to_mah(ah)->av.eth.s_mac, s_mac, 6);
1237
1238
1239         ret = ib_post_send(send_qp, &wr, &bad_wr);
1240 out:
1241         if (ret)
1242                 ib_destroy_ah(ah);
1243         return ret;
1244 }
1245
1246 static int get_slave_base_gid_ix(struct mlx4_ib_dev *dev, int slave, int port)
1247 {
1248         int gids;
1249         int vfs;
1250
1251         if (rdma_port_get_link_layer(&dev->ib_dev, port) == IB_LINK_LAYER_INFINIBAND)
1252                 return slave;
1253
1254         gids = MLX4_ROCE_MAX_GIDS - MLX4_ROCE_PF_GIDS;
1255         vfs = dev->dev->num_vfs;
1256
1257         if (slave == 0)
1258                 return 0;
1259         if (slave <= gids % vfs)
1260                 return MLX4_ROCE_PF_GIDS + ((gids / vfs) + 1) * (slave - 1);
1261
1262         return MLX4_ROCE_PF_GIDS + (gids % vfs) + ((gids / vfs) * (slave - 1));
1263 }
1264
1265 static void fill_in_real_sgid_index(struct mlx4_ib_dev *dev, int slave, int port,
1266                                     struct ib_ah_attr *ah_attr)
1267 {
1268         if (rdma_port_get_link_layer(&dev->ib_dev, port) == IB_LINK_LAYER_INFINIBAND)
1269                 ah_attr->grh.sgid_index = slave;
1270         else
1271                 ah_attr->grh.sgid_index += get_slave_base_gid_ix(dev, slave, port);
1272 }
1273
1274 static void mlx4_ib_multiplex_mad(struct mlx4_ib_demux_pv_ctx *ctx, struct ib_wc *wc)
1275 {
1276         struct mlx4_ib_dev *dev = to_mdev(ctx->ib_dev);
1277         struct mlx4_ib_demux_pv_qp *tun_qp = &ctx->qp[MLX4_TUN_WRID_QPN(wc->wr_id)];
1278         int wr_ix = wc->wr_id & (MLX4_NUM_TUNNEL_BUFS - 1);
1279         struct mlx4_tunnel_mad *tunnel = tun_qp->ring[wr_ix].addr;
1280         struct mlx4_ib_ah ah;
1281         struct ib_ah_attr ah_attr;
1282         u8 *slave_id;
1283         int slave;
1284
1285         /* Get slave that sent this packet */
1286         if (wc->src_qp < dev->dev->phys_caps.base_proxy_sqpn ||
1287             wc->src_qp >= dev->dev->phys_caps.base_proxy_sqpn + 8 * MLX4_MFUNC_MAX ||
1288             (wc->src_qp & 0x1) != ctx->port - 1 ||
1289             wc->src_qp & 0x4) {
1290                 mlx4_ib_warn(ctx->ib_dev, "can't multiplex bad sqp:%d\n", wc->src_qp);
1291                 return;
1292         }
1293         slave = ((wc->src_qp & ~0x7) - dev->dev->phys_caps.base_proxy_sqpn) / 8;
1294         if (slave != ctx->slave) {
1295                 mlx4_ib_warn(ctx->ib_dev, "can't multiplex bad sqp:%d: "
1296                              "belongs to another slave\n", wc->src_qp);
1297                 return;
1298         }
1299         if (slave != mlx4_master_func_num(dev->dev) && !(wc->src_qp & 0x2)) {
1300                 mlx4_ib_warn(ctx->ib_dev, "can't multiplex bad sqp:%d: "
1301                              "non-master trying to send QP0 packets\n", wc->src_qp);
1302                 return;
1303         }
1304
1305         /* Map transaction ID */
1306         ib_dma_sync_single_for_cpu(ctx->ib_dev, tun_qp->ring[wr_ix].map,
1307                                    sizeof (struct mlx4_tunnel_mad),
1308                                    DMA_FROM_DEVICE);
1309         switch (tunnel->mad.mad_hdr.method) {
1310         case IB_MGMT_METHOD_SET:
1311         case IB_MGMT_METHOD_GET:
1312         case IB_MGMT_METHOD_REPORT:
1313         case IB_SA_METHOD_GET_TABLE:
1314         case IB_SA_METHOD_DELETE:
1315         case IB_SA_METHOD_GET_MULTI:
1316         case IB_SA_METHOD_GET_TRACE_TBL:
1317                 slave_id = (u8 *) &tunnel->mad.mad_hdr.tid;
1318                 if (*slave_id) {
1319                         mlx4_ib_warn(ctx->ib_dev, "egress mad has non-null tid msb:%d "
1320                                      "class:%d slave:%d\n", *slave_id,
1321                                      tunnel->mad.mad_hdr.mgmt_class, slave);
1322                         return;
1323                 } else
1324                         *slave_id = slave;
1325         default:
1326                 /* nothing */;
1327         }
1328
1329         /* Class-specific handling */
1330         switch (tunnel->mad.mad_hdr.mgmt_class) {
1331         case IB_MGMT_CLASS_SUBN_ADM:
1332                 if (mlx4_ib_multiplex_sa_handler(ctx->ib_dev, ctx->port, slave,
1333                               (struct ib_sa_mad *) &tunnel->mad))
1334                         return;
1335                 break;
1336         case IB_MGMT_CLASS_CM:
1337                 if (mlx4_ib_multiplex_cm_handler(ctx->ib_dev, ctx->port, slave,
1338                               (struct ib_mad *) &tunnel->mad))
1339                         return;
1340                 break;
1341         case IB_MGMT_CLASS_DEVICE_MGMT:
1342                 if (tunnel->mad.mad_hdr.method != IB_MGMT_METHOD_GET &&
1343                     tunnel->mad.mad_hdr.method != IB_MGMT_METHOD_SET)
1344                         return;
1345                 break;
1346         default:
1347                 /* Drop unsupported classes for slaves in tunnel mode */
1348                 if (slave != mlx4_master_func_num(dev->dev)) {
1349                         mlx4_ib_warn(ctx->ib_dev, "dropping unsupported egress mad from class:%d "
1350                                      "for slave:%d\n", tunnel->mad.mad_hdr.mgmt_class, slave);
1351                         return;
1352                 }
1353         }
1354
1355         /* We are using standard ib_core services to send the mad, so generate a
1356          * stadard address handle by decoding the tunnelled mlx4_ah fields */
1357         memcpy(&ah.av, &tunnel->hdr.av, sizeof (struct mlx4_av));
1358         ah.ibah.device = ctx->ib_dev;
1359         mlx4_ib_query_ah(&ah.ibah, &ah_attr);
1360         if (ah_attr.ah_flags & IB_AH_GRH)
1361                 fill_in_real_sgid_index(dev, slave, ctx->port, &ah_attr);
1362
1363         memcpy(ah_attr.dmac, tunnel->hdr.mac, 6);
1364         ah_attr.vlan_id = be16_to_cpu(tunnel->hdr.vlan);
1365         /* if slave have default vlan use it */
1366         mlx4_get_slave_default_vlan(dev->dev, ctx->port, slave,
1367                                     &ah_attr.vlan_id, &ah_attr.sl);
1368
1369         mlx4_ib_send_to_wire(dev, slave, ctx->port,
1370                              is_proxy_qp0(dev, wc->src_qp, slave) ?
1371                              IB_QPT_SMI : IB_QPT_GSI,
1372                              be16_to_cpu(tunnel->hdr.pkey_index),
1373                              be32_to_cpu(tunnel->hdr.remote_qpn),
1374                              be32_to_cpu(tunnel->hdr.qkey),
1375                              &ah_attr, wc->smac, &tunnel->mad);
1376 }
1377
1378 static int mlx4_ib_alloc_pv_bufs(struct mlx4_ib_demux_pv_ctx *ctx,
1379                                  enum ib_qp_type qp_type, int is_tun)
1380 {
1381         int i;
1382         struct mlx4_ib_demux_pv_qp *tun_qp;
1383         int rx_buf_size, tx_buf_size;
1384
1385         if (qp_type > IB_QPT_GSI)
1386                 return -EINVAL;
1387
1388         tun_qp = &ctx->qp[qp_type];
1389
1390         tun_qp->ring = kzalloc(sizeof (struct mlx4_ib_buf) * MLX4_NUM_TUNNEL_BUFS,
1391                                GFP_KERNEL);
1392         if (!tun_qp->ring)
1393                 return -ENOMEM;
1394
1395         tun_qp->tx_ring = kcalloc(MLX4_NUM_TUNNEL_BUFS,
1396                                   sizeof (struct mlx4_ib_tun_tx_buf),
1397                                   GFP_KERNEL);
1398         if (!tun_qp->tx_ring) {
1399                 kfree(tun_qp->ring);
1400                 tun_qp->ring = NULL;
1401                 return -ENOMEM;
1402         }
1403
1404         if (is_tun) {
1405                 rx_buf_size = sizeof (struct mlx4_tunnel_mad);
1406                 tx_buf_size = sizeof (struct mlx4_rcv_tunnel_mad);
1407         } else {
1408                 rx_buf_size = sizeof (struct mlx4_mad_rcv_buf);
1409                 tx_buf_size = sizeof (struct mlx4_mad_snd_buf);
1410         }
1411
1412         for (i = 0; i < MLX4_NUM_TUNNEL_BUFS; i++) {
1413                 tun_qp->ring[i].addr = kmalloc(rx_buf_size, GFP_KERNEL);
1414                 if (!tun_qp->ring[i].addr)
1415                         goto err;
1416                 tun_qp->ring[i].map = ib_dma_map_single(ctx->ib_dev,
1417                                                         tun_qp->ring[i].addr,
1418                                                         rx_buf_size,
1419                                                         DMA_FROM_DEVICE);
1420         }
1421
1422         for (i = 0; i < MLX4_NUM_TUNNEL_BUFS; i++) {
1423                 tun_qp->tx_ring[i].buf.addr =
1424                         kmalloc(tx_buf_size, GFP_KERNEL);
1425                 if (!tun_qp->tx_ring[i].buf.addr)
1426                         goto tx_err;
1427                 tun_qp->tx_ring[i].buf.map =
1428                         ib_dma_map_single(ctx->ib_dev,
1429                                           tun_qp->tx_ring[i].buf.addr,
1430                                           tx_buf_size,
1431                                           DMA_TO_DEVICE);
1432                 tun_qp->tx_ring[i].ah = NULL;
1433         }
1434         spin_lock_init(&tun_qp->tx_lock);
1435         tun_qp->tx_ix_head = 0;
1436         tun_qp->tx_ix_tail = 0;
1437         tun_qp->proxy_qpt = qp_type;
1438
1439         return 0;
1440
1441 tx_err:
1442         while (i > 0) {
1443                 --i;
1444                 ib_dma_unmap_single(ctx->ib_dev, tun_qp->tx_ring[i].buf.map,
1445                                     tx_buf_size, DMA_TO_DEVICE);
1446                 kfree(tun_qp->tx_ring[i].buf.addr);
1447         }
1448         kfree(tun_qp->tx_ring);
1449         tun_qp->tx_ring = NULL;
1450         i = MLX4_NUM_TUNNEL_BUFS;
1451 err:
1452         while (i > 0) {
1453                 --i;
1454                 ib_dma_unmap_single(ctx->ib_dev, tun_qp->ring[i].map,
1455                                     rx_buf_size, DMA_FROM_DEVICE);
1456                 kfree(tun_qp->ring[i].addr);
1457         }
1458         kfree(tun_qp->ring);
1459         tun_qp->ring = NULL;
1460         return -ENOMEM;
1461 }
1462
1463 static void mlx4_ib_free_pv_qp_bufs(struct mlx4_ib_demux_pv_ctx *ctx,
1464                                      enum ib_qp_type qp_type, int is_tun)
1465 {
1466         int i;
1467         struct mlx4_ib_demux_pv_qp *tun_qp;
1468         int rx_buf_size, tx_buf_size;
1469
1470         if (qp_type > IB_QPT_GSI)
1471                 return;
1472
1473         tun_qp = &ctx->qp[qp_type];
1474         if (is_tun) {
1475                 rx_buf_size = sizeof (struct mlx4_tunnel_mad);
1476                 tx_buf_size = sizeof (struct mlx4_rcv_tunnel_mad);
1477         } else {
1478                 rx_buf_size = sizeof (struct mlx4_mad_rcv_buf);
1479                 tx_buf_size = sizeof (struct mlx4_mad_snd_buf);
1480         }
1481
1482
1483         for (i = 0; i < MLX4_NUM_TUNNEL_BUFS; i++) {
1484                 ib_dma_unmap_single(ctx->ib_dev, tun_qp->ring[i].map,
1485                                     rx_buf_size, DMA_FROM_DEVICE);
1486                 kfree(tun_qp->ring[i].addr);
1487         }
1488
1489         for (i = 0; i < MLX4_NUM_TUNNEL_BUFS; i++) {
1490                 ib_dma_unmap_single(ctx->ib_dev, tun_qp->tx_ring[i].buf.map,
1491                                     tx_buf_size, DMA_TO_DEVICE);
1492                 kfree(tun_qp->tx_ring[i].buf.addr);
1493                 if (tun_qp->tx_ring[i].ah)
1494                         ib_destroy_ah(tun_qp->tx_ring[i].ah);
1495         }
1496         kfree(tun_qp->tx_ring);
1497         kfree(tun_qp->ring);
1498 }
1499
1500 static void mlx4_ib_tunnel_comp_worker(struct work_struct *work)
1501 {
1502         struct mlx4_ib_demux_pv_ctx *ctx;
1503         struct mlx4_ib_demux_pv_qp *tun_qp;
1504         struct ib_wc wc;
1505         int ret;
1506         ctx = container_of(work, struct mlx4_ib_demux_pv_ctx, work);
1507         ib_req_notify_cq(ctx->cq, IB_CQ_NEXT_COMP);
1508
1509         while (ib_poll_cq(ctx->cq, 1, &wc) == 1) {
1510                 tun_qp = &ctx->qp[MLX4_TUN_WRID_QPN(wc.wr_id)];
1511                 if (wc.status == IB_WC_SUCCESS) {
1512                         switch (wc.opcode) {
1513                         case IB_WC_RECV:
1514                                 mlx4_ib_multiplex_mad(ctx, &wc);
1515                                 ret = mlx4_ib_post_pv_qp_buf(ctx, tun_qp,
1516                                                              wc.wr_id &
1517                                                              (MLX4_NUM_TUNNEL_BUFS - 1));
1518                                 if (ret)
1519                                         pr_err("Failed reposting tunnel "
1520                                                "buf:%lld\n", wc.wr_id);
1521                                 break;
1522                         case IB_WC_SEND:
1523                                 pr_debug("received tunnel send completion:"
1524                                          "wrid=0x%llx, status=0x%x\n",
1525                                          wc.wr_id, wc.status);
1526                                 ib_destroy_ah(tun_qp->tx_ring[wc.wr_id &
1527                                               (MLX4_NUM_TUNNEL_BUFS - 1)].ah);
1528                                 tun_qp->tx_ring[wc.wr_id & (MLX4_NUM_TUNNEL_BUFS - 1)].ah
1529                                         = NULL;
1530                                 spin_lock(&tun_qp->tx_lock);
1531                                 tun_qp->tx_ix_tail++;
1532                                 spin_unlock(&tun_qp->tx_lock);
1533
1534                                 break;
1535                         default:
1536                                 break;
1537                         }
1538                 } else  {
1539                         pr_debug("mlx4_ib: completion error in tunnel: %d."
1540                                  " status = %d, wrid = 0x%llx\n",
1541                                  ctx->slave, wc.status, wc.wr_id);
1542                         if (!MLX4_TUN_IS_RECV(wc.wr_id)) {
1543                                 ib_destroy_ah(tun_qp->tx_ring[wc.wr_id &
1544                                               (MLX4_NUM_TUNNEL_BUFS - 1)].ah);
1545                                 tun_qp->tx_ring[wc.wr_id & (MLX4_NUM_TUNNEL_BUFS - 1)].ah
1546                                         = NULL;
1547                                 spin_lock(&tun_qp->tx_lock);
1548                                 tun_qp->tx_ix_tail++;
1549                                 spin_unlock(&tun_qp->tx_lock);
1550                         }
1551                 }
1552         }
1553 }
1554
1555 static void pv_qp_event_handler(struct ib_event *event, void *qp_context)
1556 {
1557         struct mlx4_ib_demux_pv_ctx *sqp = qp_context;
1558
1559         /* It's worse than that! He's dead, Jim! */
1560         pr_err("Fatal error (%d) on a MAD QP on port %d\n",
1561                event->event, sqp->port);
1562 }
1563
1564 static int create_pv_sqp(struct mlx4_ib_demux_pv_ctx *ctx,
1565                             enum ib_qp_type qp_type, int create_tun)
1566 {
1567         int i, ret;
1568         struct mlx4_ib_demux_pv_qp *tun_qp;
1569         struct mlx4_ib_qp_tunnel_init_attr qp_init_attr;
1570         struct ib_qp_attr attr;
1571         int qp_attr_mask_INIT;
1572
1573         if (qp_type > IB_QPT_GSI)
1574                 return -EINVAL;
1575
1576         tun_qp = &ctx->qp[qp_type];
1577
1578         memset(&qp_init_attr, 0, sizeof qp_init_attr);
1579         qp_init_attr.init_attr.send_cq = ctx->cq;
1580         qp_init_attr.init_attr.recv_cq = ctx->cq;
1581         qp_init_attr.init_attr.sq_sig_type = IB_SIGNAL_ALL_WR;
1582         qp_init_attr.init_attr.cap.max_send_wr = MLX4_NUM_TUNNEL_BUFS;
1583         qp_init_attr.init_attr.cap.max_recv_wr = MLX4_NUM_TUNNEL_BUFS;
1584         qp_init_attr.init_attr.cap.max_send_sge = 1;
1585         qp_init_attr.init_attr.cap.max_recv_sge = 1;
1586         if (create_tun) {
1587                 qp_init_attr.init_attr.qp_type = IB_QPT_UD;
1588                 qp_init_attr.init_attr.create_flags = MLX4_IB_SRIOV_TUNNEL_QP;
1589                 qp_init_attr.port = ctx->port;
1590                 qp_init_attr.slave = ctx->slave;
1591                 qp_init_attr.proxy_qp_type = qp_type;
1592                 qp_attr_mask_INIT = IB_QP_STATE | IB_QP_PKEY_INDEX |
1593                            IB_QP_QKEY | IB_QP_PORT;
1594         } else {
1595                 qp_init_attr.init_attr.qp_type = qp_type;
1596                 qp_init_attr.init_attr.create_flags = MLX4_IB_SRIOV_SQP;
1597                 qp_attr_mask_INIT = IB_QP_STATE | IB_QP_PKEY_INDEX | IB_QP_QKEY;
1598         }
1599         qp_init_attr.init_attr.port_num = ctx->port;
1600         qp_init_attr.init_attr.qp_context = ctx;
1601         qp_init_attr.init_attr.event_handler = pv_qp_event_handler;
1602         tun_qp->qp = ib_create_qp(ctx->pd, &qp_init_attr.init_attr);
1603         if (IS_ERR(tun_qp->qp)) {
1604                 ret = PTR_ERR(tun_qp->qp);
1605                 tun_qp->qp = NULL;
1606                 pr_err("Couldn't create %s QP (%d)\n",
1607                        create_tun ? "tunnel" : "special", ret);
1608                 return ret;
1609         }
1610
1611         memset(&attr, 0, sizeof attr);
1612         attr.qp_state = IB_QPS_INIT;
1613         ret = 0;
1614         if (create_tun)
1615                 ret = find_slave_port_pkey_ix(to_mdev(ctx->ib_dev), ctx->slave,
1616                                               ctx->port, IB_DEFAULT_PKEY_FULL,
1617                                               &attr.pkey_index);
1618         if (ret || !create_tun)
1619                 attr.pkey_index =
1620                         to_mdev(ctx->ib_dev)->pkeys.virt2phys_pkey[ctx->slave][ctx->port - 1][0];
1621         attr.qkey = IB_QP1_QKEY;
1622         attr.port_num = ctx->port;
1623         ret = ib_modify_qp(tun_qp->qp, &attr, qp_attr_mask_INIT);
1624         if (ret) {
1625                 pr_err("Couldn't change %s qp state to INIT (%d)\n",
1626                        create_tun ? "tunnel" : "special", ret);
1627                 goto err_qp;
1628         }
1629         attr.qp_state = IB_QPS_RTR;
1630         ret = ib_modify_qp(tun_qp->qp, &attr, IB_QP_STATE);
1631         if (ret) {
1632                 pr_err("Couldn't change %s qp state to RTR (%d)\n",
1633                        create_tun ? "tunnel" : "special", ret);
1634                 goto err_qp;
1635         }
1636         attr.qp_state = IB_QPS_RTS;
1637         attr.sq_psn = 0;
1638         ret = ib_modify_qp(tun_qp->qp, &attr, IB_QP_STATE | IB_QP_SQ_PSN);
1639         if (ret) {
1640                 pr_err("Couldn't change %s qp state to RTS (%d)\n",
1641                        create_tun ? "tunnel" : "special", ret);
1642                 goto err_qp;
1643         }
1644
1645         for (i = 0; i < MLX4_NUM_TUNNEL_BUFS; i++) {
1646                 ret = mlx4_ib_post_pv_qp_buf(ctx, tun_qp, i);
1647                 if (ret) {
1648                         pr_err(" mlx4_ib_post_pv_buf error"
1649                                " (err = %d, i = %d)\n", ret, i);
1650                         goto err_qp;
1651                 }
1652         }
1653         return 0;
1654
1655 err_qp:
1656         ib_destroy_qp(tun_qp->qp);
1657         tun_qp->qp = NULL;
1658         return ret;
1659 }
1660
1661 /*
1662  * IB MAD completion callback for real SQPs
1663  */
1664 static void mlx4_ib_sqp_comp_worker(struct work_struct *work)
1665 {
1666         struct mlx4_ib_demux_pv_ctx *ctx;
1667         struct mlx4_ib_demux_pv_qp *sqp;
1668         struct ib_wc wc;
1669         struct ib_grh *grh;
1670         struct ib_mad *mad;
1671
1672         ctx = container_of(work, struct mlx4_ib_demux_pv_ctx, work);
1673         ib_req_notify_cq(ctx->cq, IB_CQ_NEXT_COMP);
1674
1675         while (mlx4_ib_poll_cq(ctx->cq, 1, &wc) == 1) {
1676                 sqp = &ctx->qp[MLX4_TUN_WRID_QPN(wc.wr_id)];
1677                 if (wc.status == IB_WC_SUCCESS) {
1678                         switch (wc.opcode) {
1679                         case IB_WC_SEND:
1680                                 ib_destroy_ah(sqp->tx_ring[wc.wr_id &
1681                                               (MLX4_NUM_TUNNEL_BUFS - 1)].ah);
1682                                 sqp->tx_ring[wc.wr_id & (MLX4_NUM_TUNNEL_BUFS - 1)].ah
1683                                         = NULL;
1684                                 spin_lock(&sqp->tx_lock);
1685                                 sqp->tx_ix_tail++;
1686                                 spin_unlock(&sqp->tx_lock);
1687                                 break;
1688                         case IB_WC_RECV:
1689                                 mad = (struct ib_mad *) &(((struct mlx4_mad_rcv_buf *)
1690                                                 (sqp->ring[wc.wr_id &
1691                                                 (MLX4_NUM_TUNNEL_BUFS - 1)].addr))->payload);
1692                                 grh = &(((struct mlx4_mad_rcv_buf *)
1693                                                 (sqp->ring[wc.wr_id &
1694                                                 (MLX4_NUM_TUNNEL_BUFS - 1)].addr))->grh);
1695                                 mlx4_ib_demux_mad(ctx->ib_dev, ctx->port, &wc, grh, mad);
1696                                 if (mlx4_ib_post_pv_qp_buf(ctx, sqp, wc.wr_id &
1697                                                            (MLX4_NUM_TUNNEL_BUFS - 1)))
1698                                         pr_err("Failed reposting SQP "
1699                                                "buf:%lld\n", wc.wr_id);
1700                                 break;
1701                         default:
1702                                 BUG_ON(1);
1703                                 break;
1704                         }
1705                 } else  {
1706                         pr_debug("mlx4_ib: completion error in tunnel: %d."
1707                                  " status = %d, wrid = 0x%llx\n",
1708                                  ctx->slave, wc.status, wc.wr_id);
1709                         if (!MLX4_TUN_IS_RECV(wc.wr_id)) {
1710                                 ib_destroy_ah(sqp->tx_ring[wc.wr_id &
1711                                               (MLX4_NUM_TUNNEL_BUFS - 1)].ah);
1712                                 sqp->tx_ring[wc.wr_id & (MLX4_NUM_TUNNEL_BUFS - 1)].ah
1713                                         = NULL;
1714                                 spin_lock(&sqp->tx_lock);
1715                                 sqp->tx_ix_tail++;
1716                                 spin_unlock(&sqp->tx_lock);
1717                         }
1718                 }
1719         }
1720 }
1721
1722 static int alloc_pv_object(struct mlx4_ib_dev *dev, int slave, int port,
1723                                struct mlx4_ib_demux_pv_ctx **ret_ctx)
1724 {
1725         struct mlx4_ib_demux_pv_ctx *ctx;
1726
1727         *ret_ctx = NULL;
1728         ctx = kzalloc(sizeof (struct mlx4_ib_demux_pv_ctx), GFP_KERNEL);
1729         if (!ctx) {
1730                 pr_err("failed allocating pv resource context "
1731                        "for port %d, slave %d\n", port, slave);
1732                 return -ENOMEM;
1733         }
1734
1735         ctx->ib_dev = &dev->ib_dev;
1736         ctx->port = port;
1737         ctx->slave = slave;
1738         *ret_ctx = ctx;
1739         return 0;
1740 }
1741
1742 static void free_pv_object(struct mlx4_ib_dev *dev, int slave, int port)
1743 {
1744         if (dev->sriov.demux[port - 1].tun[slave]) {
1745                 kfree(dev->sriov.demux[port - 1].tun[slave]);
1746                 dev->sriov.demux[port - 1].tun[slave] = NULL;
1747         }
1748 }
1749
1750 static int create_pv_resources(struct ib_device *ibdev, int slave, int port,
1751                                int create_tun, struct mlx4_ib_demux_pv_ctx *ctx)
1752 {
1753         int ret, cq_size;
1754
1755         if (ctx->state != DEMUX_PV_STATE_DOWN)
1756                 return -EEXIST;
1757
1758         ctx->state = DEMUX_PV_STATE_STARTING;
1759         /* have QP0 only on port owner, and only if link layer is IB */
1760         if (ctx->slave == mlx4_master_func_num(to_mdev(ctx->ib_dev)->dev) &&
1761             rdma_port_get_link_layer(ibdev, ctx->port) == IB_LINK_LAYER_INFINIBAND)
1762                 ctx->has_smi = 1;
1763
1764         if (ctx->has_smi) {
1765                 ret = mlx4_ib_alloc_pv_bufs(ctx, IB_QPT_SMI, create_tun);
1766                 if (ret) {
1767                         pr_err("Failed allocating qp0 tunnel bufs (%d)\n", ret);
1768                         goto err_out;
1769                 }
1770         }
1771
1772         ret = mlx4_ib_alloc_pv_bufs(ctx, IB_QPT_GSI, create_tun);
1773         if (ret) {
1774                 pr_err("Failed allocating qp1 tunnel bufs (%d)\n", ret);
1775                 goto err_out_qp0;
1776         }
1777
1778         cq_size = 2 * MLX4_NUM_TUNNEL_BUFS;
1779         if (ctx->has_smi)
1780                 cq_size *= 2;
1781
1782         ctx->cq = ib_create_cq(ctx->ib_dev, mlx4_ib_tunnel_comp_handler,
1783                                NULL, ctx, cq_size, 0);
1784         if (IS_ERR(ctx->cq)) {
1785                 ret = PTR_ERR(ctx->cq);
1786                 pr_err("Couldn't create tunnel CQ (%d)\n", ret);
1787                 goto err_buf;
1788         }
1789
1790         ctx->pd = ib_alloc_pd(ctx->ib_dev);
1791         if (IS_ERR(ctx->pd)) {
1792                 ret = PTR_ERR(ctx->pd);
1793                 pr_err("Couldn't create tunnel PD (%d)\n", ret);
1794                 goto err_cq;
1795         }
1796
1797         ctx->mr = ib_get_dma_mr(ctx->pd, IB_ACCESS_LOCAL_WRITE);
1798         if (IS_ERR(ctx->mr)) {
1799                 ret = PTR_ERR(ctx->mr);
1800                 pr_err("Couldn't get tunnel DMA MR (%d)\n", ret);
1801                 goto err_pd;
1802         }
1803
1804         if (ctx->has_smi) {
1805                 ret = create_pv_sqp(ctx, IB_QPT_SMI, create_tun);
1806                 if (ret) {
1807                         pr_err("Couldn't create %s QP0 (%d)\n",
1808                                create_tun ? "tunnel for" : "",  ret);
1809                         goto err_mr;
1810                 }
1811         }
1812
1813         ret = create_pv_sqp(ctx, IB_QPT_GSI, create_tun);
1814         if (ret) {
1815                 pr_err("Couldn't create %s QP1 (%d)\n",
1816                        create_tun ? "tunnel for" : "",  ret);
1817                 goto err_qp0;
1818         }
1819
1820         if (create_tun)
1821                 INIT_WORK(&ctx->work, mlx4_ib_tunnel_comp_worker);
1822         else
1823                 INIT_WORK(&ctx->work, mlx4_ib_sqp_comp_worker);
1824
1825         ctx->wq = to_mdev(ibdev)->sriov.demux[port - 1].wq;
1826
1827         ret = ib_req_notify_cq(ctx->cq, IB_CQ_NEXT_COMP);
1828         if (ret) {
1829                 pr_err("Couldn't arm tunnel cq (%d)\n", ret);
1830                 goto err_wq;
1831         }
1832         ctx->state = DEMUX_PV_STATE_ACTIVE;
1833         return 0;
1834
1835 err_wq:
1836         ctx->wq = NULL;
1837         ib_destroy_qp(ctx->qp[1].qp);
1838         ctx->qp[1].qp = NULL;
1839
1840
1841 err_qp0:
1842         if (ctx->has_smi)
1843                 ib_destroy_qp(ctx->qp[0].qp);
1844         ctx->qp[0].qp = NULL;
1845
1846 err_mr:
1847         ib_dereg_mr(ctx->mr);
1848         ctx->mr = NULL;
1849
1850 err_pd:
1851         ib_dealloc_pd(ctx->pd);
1852         ctx->pd = NULL;
1853
1854 err_cq:
1855         ib_destroy_cq(ctx->cq);
1856         ctx->cq = NULL;
1857
1858 err_buf:
1859         mlx4_ib_free_pv_qp_bufs(ctx, IB_QPT_GSI, create_tun);
1860
1861 err_out_qp0:
1862         if (ctx->has_smi)
1863                 mlx4_ib_free_pv_qp_bufs(ctx, IB_QPT_SMI, create_tun);
1864 err_out:
1865         ctx->state = DEMUX_PV_STATE_DOWN;
1866         return ret;
1867 }
1868
1869 static void destroy_pv_resources(struct mlx4_ib_dev *dev, int slave, int port,
1870                                  struct mlx4_ib_demux_pv_ctx *ctx, int flush)
1871 {
1872         if (!ctx)
1873                 return;
1874         if (ctx->state > DEMUX_PV_STATE_DOWN) {
1875                 ctx->state = DEMUX_PV_STATE_DOWNING;
1876                 if (flush)
1877                         flush_workqueue(ctx->wq);
1878                 if (ctx->has_smi) {
1879                         ib_destroy_qp(ctx->qp[0].qp);
1880                         ctx->qp[0].qp = NULL;
1881                         mlx4_ib_free_pv_qp_bufs(ctx, IB_QPT_SMI, 1);
1882                 }
1883                 ib_destroy_qp(ctx->qp[1].qp);
1884                 ctx->qp[1].qp = NULL;
1885                 mlx4_ib_free_pv_qp_bufs(ctx, IB_QPT_GSI, 1);
1886                 ib_dereg_mr(ctx->mr);
1887                 ctx->mr = NULL;
1888                 ib_dealloc_pd(ctx->pd);
1889                 ctx->pd = NULL;
1890                 ib_destroy_cq(ctx->cq);
1891                 ctx->cq = NULL;
1892                 ctx->state = DEMUX_PV_STATE_DOWN;
1893         }
1894 }
1895
1896 static int mlx4_ib_tunnels_update(struct mlx4_ib_dev *dev, int slave,
1897                                   int port, int do_init)
1898 {
1899         int ret = 0;
1900
1901         if (!do_init) {
1902                 clean_vf_mcast(&dev->sriov.demux[port - 1], slave);
1903                 /* for master, destroy real sqp resources */
1904                 if (slave == mlx4_master_func_num(dev->dev))
1905                         destroy_pv_resources(dev, slave, port,
1906                                              dev->sriov.sqps[port - 1], 1);
1907                 /* destroy the tunnel qp resources */
1908                 destroy_pv_resources(dev, slave, port,
1909                                      dev->sriov.demux[port - 1].tun[slave], 1);
1910                 return 0;
1911         }
1912
1913         /* create the tunnel qp resources */
1914         ret = create_pv_resources(&dev->ib_dev, slave, port, 1,
1915                                   dev->sriov.demux[port - 1].tun[slave]);
1916
1917         /* for master, create the real sqp resources */
1918         if (!ret && slave == mlx4_master_func_num(dev->dev))
1919                 ret = create_pv_resources(&dev->ib_dev, slave, port, 0,
1920                                           dev->sriov.sqps[port - 1]);
1921         return ret;
1922 }
1923
1924 void mlx4_ib_tunnels_update_work(struct work_struct *work)
1925 {
1926         struct mlx4_ib_demux_work *dmxw;
1927
1928         dmxw = container_of(work, struct mlx4_ib_demux_work, work);
1929         mlx4_ib_tunnels_update(dmxw->dev, dmxw->slave, (int) dmxw->port,
1930                                dmxw->do_init);
1931         kfree(dmxw);
1932         return;
1933 }
1934
1935 static int mlx4_ib_alloc_demux_ctx(struct mlx4_ib_dev *dev,
1936                                        struct mlx4_ib_demux_ctx *ctx,
1937                                        int port)
1938 {
1939         char name[12];
1940         int ret = 0;
1941         int i;
1942
1943         ctx->tun = kcalloc(dev->dev->caps.sqp_demux,
1944                            sizeof (struct mlx4_ib_demux_pv_ctx *), GFP_KERNEL);
1945         if (!ctx->tun)
1946                 return -ENOMEM;
1947
1948         ctx->dev = dev;
1949         ctx->port = port;
1950         ctx->ib_dev = &dev->ib_dev;
1951
1952         for (i = 0; i < dev->dev->caps.sqp_demux; i++) {
1953                 ret = alloc_pv_object(dev, i, port, &ctx->tun[i]);
1954                 if (ret) {
1955                         ret = -ENOMEM;
1956                         goto err_mcg;
1957                 }
1958         }
1959
1960         ret = mlx4_ib_mcg_port_init(ctx);
1961         if (ret) {
1962                 pr_err("Failed initializing mcg para-virt (%d)\n", ret);
1963                 goto err_mcg;
1964         }
1965
1966         snprintf(name, sizeof name, "mlx4_ibt%d", port);
1967         ctx->wq = create_singlethread_workqueue(name);
1968         if (!ctx->wq) {
1969                 pr_err("Failed to create tunnelling WQ for port %d\n", port);
1970                 ret = -ENOMEM;
1971                 goto err_wq;
1972         }
1973
1974         snprintf(name, sizeof name, "mlx4_ibud%d", port);
1975         ctx->ud_wq = create_singlethread_workqueue(name);
1976         if (!ctx->ud_wq) {
1977                 pr_err("Failed to create up/down WQ for port %d\n", port);
1978                 ret = -ENOMEM;
1979                 goto err_udwq;
1980         }
1981
1982         return 0;
1983
1984 err_udwq:
1985         destroy_workqueue(ctx->wq);
1986         ctx->wq = NULL;
1987
1988 err_wq:
1989         mlx4_ib_mcg_port_cleanup(ctx, 1);
1990 err_mcg:
1991         for (i = 0; i < dev->dev->caps.sqp_demux; i++)
1992                 free_pv_object(dev, i, port);
1993         kfree(ctx->tun);
1994         ctx->tun = NULL;
1995         return ret;
1996 }
1997
1998 static void mlx4_ib_free_sqp_ctx(struct mlx4_ib_demux_pv_ctx *sqp_ctx)
1999 {
2000         if (sqp_ctx->state > DEMUX_PV_STATE_DOWN) {
2001                 sqp_ctx->state = DEMUX_PV_STATE_DOWNING;
2002                 flush_workqueue(sqp_ctx->wq);
2003                 if (sqp_ctx->has_smi) {
2004                         ib_destroy_qp(sqp_ctx->qp[0].qp);
2005                         sqp_ctx->qp[0].qp = NULL;
2006                         mlx4_ib_free_pv_qp_bufs(sqp_ctx, IB_QPT_SMI, 0);
2007                 }
2008                 ib_destroy_qp(sqp_ctx->qp[1].qp);
2009                 sqp_ctx->qp[1].qp = NULL;
2010                 mlx4_ib_free_pv_qp_bufs(sqp_ctx, IB_QPT_GSI, 0);
2011                 ib_dereg_mr(sqp_ctx->mr);
2012                 sqp_ctx->mr = NULL;
2013                 ib_dealloc_pd(sqp_ctx->pd);
2014                 sqp_ctx->pd = NULL;
2015                 ib_destroy_cq(sqp_ctx->cq);
2016                 sqp_ctx->cq = NULL;
2017                 sqp_ctx->state = DEMUX_PV_STATE_DOWN;
2018         }
2019 }
2020
2021 static void mlx4_ib_free_demux_ctx(struct mlx4_ib_demux_ctx *ctx)
2022 {
2023         int i;
2024         if (ctx) {
2025                 struct mlx4_ib_dev *dev = to_mdev(ctx->ib_dev);
2026                 mlx4_ib_mcg_port_cleanup(ctx, 1);
2027                 for (i = 0; i < dev->dev->caps.sqp_demux; i++) {
2028                         if (!ctx->tun[i])
2029                                 continue;
2030                         if (ctx->tun[i]->state > DEMUX_PV_STATE_DOWN)
2031                                 ctx->tun[i]->state = DEMUX_PV_STATE_DOWNING;
2032                 }
2033                 flush_workqueue(ctx->wq);
2034                 for (i = 0; i < dev->dev->caps.sqp_demux; i++) {
2035                         destroy_pv_resources(dev, i, ctx->port, ctx->tun[i], 0);
2036                         free_pv_object(dev, i, ctx->port);
2037                 }
2038                 kfree(ctx->tun);
2039                 destroy_workqueue(ctx->ud_wq);
2040                 destroy_workqueue(ctx->wq);
2041         }
2042 }
2043
2044 static void mlx4_ib_master_tunnels(struct mlx4_ib_dev *dev, int do_init)
2045 {
2046         int i;
2047
2048         if (!mlx4_is_master(dev->dev))
2049                 return;
2050         /* initialize or tear down tunnel QPs for the master */
2051         for (i = 0; i < dev->dev->caps.num_ports; i++)
2052                 mlx4_ib_tunnels_update(dev, mlx4_master_func_num(dev->dev), i + 1, do_init);
2053         return;
2054 }
2055
2056 int mlx4_ib_init_sriov(struct mlx4_ib_dev *dev)
2057 {
2058         int i = 0;
2059         int err;
2060
2061         if (!mlx4_is_mfunc(dev->dev))
2062                 return 0;
2063
2064         dev->sriov.is_going_down = 0;
2065         spin_lock_init(&dev->sriov.going_down_lock);
2066         mlx4_ib_cm_paravirt_init(dev);
2067
2068         mlx4_ib_warn(&dev->ib_dev, "multi-function enabled\n");
2069
2070         if (mlx4_is_slave(dev->dev)) {
2071                 mlx4_ib_warn(&dev->ib_dev, "operating in qp1 tunnel mode\n");
2072                 return 0;
2073         }
2074
2075         for (i = 0; i < dev->dev->caps.sqp_demux; i++) {
2076                 if (i == mlx4_master_func_num(dev->dev))
2077                         mlx4_put_slave_node_guid(dev->dev, i, dev->ib_dev.node_guid);
2078                 else
2079                         mlx4_put_slave_node_guid(dev->dev, i, mlx4_ib_gen_node_guid());
2080         }
2081
2082         err = mlx4_ib_init_alias_guid_service(dev);
2083         if (err) {
2084                 mlx4_ib_warn(&dev->ib_dev, "Failed init alias guid process.\n");
2085                 goto paravirt_err;
2086         }
2087         err = mlx4_ib_device_register_sysfs(dev);
2088         if (err) {
2089                 mlx4_ib_warn(&dev->ib_dev, "Failed to register sysfs\n");
2090                 goto sysfs_err;
2091         }
2092
2093         mlx4_ib_warn(&dev->ib_dev, "initializing demux service for %d qp1 clients\n",
2094                      dev->dev->caps.sqp_demux);
2095         for (i = 0; i < dev->num_ports; i++) {
2096                 union ib_gid gid;
2097                 err = __mlx4_ib_query_gid(&dev->ib_dev, i + 1, 0, &gid, 1);
2098                 if (err)
2099                         goto demux_err;
2100                 dev->sriov.demux[i].guid_cache[0] = gid.global.interface_id;
2101                 err = alloc_pv_object(dev, mlx4_master_func_num(dev->dev), i + 1,
2102                                       &dev->sriov.sqps[i]);
2103                 if (err)
2104                         goto demux_err;
2105                 err = mlx4_ib_alloc_demux_ctx(dev, &dev->sriov.demux[i], i + 1);
2106                 if (err)
2107                         goto free_pv;
2108         }
2109         mlx4_ib_master_tunnels(dev, 1);
2110         return 0;
2111
2112 free_pv:
2113         free_pv_object(dev, mlx4_master_func_num(dev->dev), i + 1);
2114 demux_err:
2115         while (--i >= 0) {
2116                 free_pv_object(dev, mlx4_master_func_num(dev->dev), i + 1);
2117                 mlx4_ib_free_demux_ctx(&dev->sriov.demux[i]);
2118         }
2119         mlx4_ib_device_unregister_sysfs(dev);
2120
2121 sysfs_err:
2122         mlx4_ib_destroy_alias_guid_service(dev);
2123
2124 paravirt_err:
2125         mlx4_ib_cm_paravirt_clean(dev, -1);
2126
2127         return err;
2128 }
2129
2130 void mlx4_ib_close_sriov(struct mlx4_ib_dev *dev)
2131 {
2132         int i;
2133         unsigned long flags;
2134
2135         if (!mlx4_is_mfunc(dev->dev))
2136                 return;
2137
2138         spin_lock_irqsave(&dev->sriov.going_down_lock, flags);
2139         dev->sriov.is_going_down = 1;
2140         spin_unlock_irqrestore(&dev->sriov.going_down_lock, flags);
2141         if (mlx4_is_master(dev->dev)) {
2142                 for (i = 0; i < dev->num_ports; i++) {
2143                         flush_workqueue(dev->sriov.demux[i].ud_wq);
2144                         mlx4_ib_free_sqp_ctx(dev->sriov.sqps[i]);
2145                         kfree(dev->sriov.sqps[i]);
2146                         dev->sriov.sqps[i] = NULL;
2147                         mlx4_ib_free_demux_ctx(&dev->sriov.demux[i]);
2148                 }
2149
2150                 mlx4_ib_cm_paravirt_clean(dev, -1);
2151                 mlx4_ib_destroy_alias_guid_service(dev);
2152                 mlx4_ib_device_unregister_sysfs(dev);
2153         }
2154 }