2 * Copyright (c) 2006, 2007 Cisco Systems, Inc. All rights reserved.
3 * Copyright (c) 2007, 2008 Mellanox Technologies. All rights reserved.
5 * This software is available to you under a choice of one of two
6 * licenses. You may choose to be licensed under the terms of the GNU
7 * General Public License (GPL) Version 2, available from the file
8 * COPYING in the main directory of this source tree, or the
9 * OpenIB.org BSD license below:
11 * Redistribution and use in source and binary forms, with or
12 * without modification, are permitted provided that the following
15 * - Redistributions of source code must retain the above
16 * copyright notice, this list of conditions and the following
19 * - Redistributions in binary form must reproduce the above
20 * copyright notice, this list of conditions and the following
21 * disclaimer in the documentation and/or other materials
22 * provided with the distribution.
24 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
28 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
29 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
30 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
34 #include <linux/string.h>
35 #include <linux/etherdevice.h>
37 #include <linux/mlx4/cmd.h>
38 #include <linux/export.h>
42 #define MGM_QPN_MASK 0x00FFFFFF
43 #define MGM_BLCK_LB_BIT 30
45 static const u8 zero_gid[16]; /* automatically initialized to 0 */
48 __be32 next_gid_index;
52 __be32 qp[MLX4_MAX_QP_PER_MGM];
55 int mlx4_get_mgm_entry_size(struct mlx4_dev *dev)
57 return min((1 << mlx4_log_num_mgm_entry_size), MLX4_MAX_MGM_ENTRY_SIZE);
60 int mlx4_get_qp_per_mgm(struct mlx4_dev *dev)
62 return 4 * (mlx4_get_mgm_entry_size(dev) / 16 - 2);
65 static int mlx4_READ_ENTRY(struct mlx4_dev *dev, int index,
66 struct mlx4_cmd_mailbox *mailbox)
68 return mlx4_cmd_box(dev, 0, mailbox->dma, index, 0, MLX4_CMD_READ_MCG,
69 MLX4_CMD_TIME_CLASS_A, MLX4_CMD_NATIVE);
72 static int mlx4_WRITE_ENTRY(struct mlx4_dev *dev, int index,
73 struct mlx4_cmd_mailbox *mailbox)
75 return mlx4_cmd(dev, mailbox->dma, index, 0, MLX4_CMD_WRITE_MCG,
76 MLX4_CMD_TIME_CLASS_A, MLX4_CMD_NATIVE);
79 static int mlx4_WRITE_PROMISC(struct mlx4_dev *dev, u8 port, u8 steer,
80 struct mlx4_cmd_mailbox *mailbox)
84 in_mod = (u32) port << 16 | steer << 1;
85 return mlx4_cmd(dev, mailbox->dma, in_mod, 0x1,
86 MLX4_CMD_WRITE_MCG, MLX4_CMD_TIME_CLASS_A,
90 static int mlx4_GID_HASH(struct mlx4_dev *dev, struct mlx4_cmd_mailbox *mailbox,
96 err = mlx4_cmd_imm(dev, mailbox->dma, &imm, 0, op_mod,
97 MLX4_CMD_MGID_HASH, MLX4_CMD_TIME_CLASS_A,
106 static struct mlx4_promisc_qp *get_promisc_qp(struct mlx4_dev *dev, u8 pf_num,
107 enum mlx4_steer_type steer,
110 struct mlx4_steer *s_steer = &mlx4_priv(dev)->steer[pf_num];
111 struct mlx4_promisc_qp *pqp;
113 list_for_each_entry(pqp, &s_steer->promisc_qps[steer], list) {
122 * Add new entry to steering data structure.
123 * All promisc QPs should be added as well
125 static int new_steering_entry(struct mlx4_dev *dev, u8 port,
126 enum mlx4_steer_type steer,
127 unsigned int index, u32 qpn)
129 struct mlx4_steer *s_steer;
130 struct mlx4_cmd_mailbox *mailbox;
131 struct mlx4_mgm *mgm;
133 struct mlx4_steer_index *new_entry;
134 struct mlx4_promisc_qp *pqp;
135 struct mlx4_promisc_qp *dqp = NULL;
139 s_steer = &mlx4_priv(dev)->steer[port - 1];
140 new_entry = kzalloc(sizeof *new_entry, GFP_KERNEL);
144 INIT_LIST_HEAD(&new_entry->duplicates);
145 new_entry->index = index;
146 list_add_tail(&new_entry->list, &s_steer->steer_entries[steer]);
148 /* If the given qpn is also a promisc qp,
149 * it should be inserted to duplicates list
151 pqp = get_promisc_qp(dev, 0, steer, qpn);
153 dqp = kmalloc(sizeof *dqp, GFP_KERNEL);
159 list_add_tail(&dqp->list, &new_entry->duplicates);
162 /* if no promisc qps for this vep, we are done */
163 if (list_empty(&s_steer->promisc_qps[steer]))
166 /* now need to add all the promisc qps to the new
167 * steering entry, as they should also receive the packets
168 * destined to this address */
169 mailbox = mlx4_alloc_cmd_mailbox(dev);
170 if (IS_ERR(mailbox)) {
176 err = mlx4_READ_ENTRY(dev, index, mailbox);
180 members_count = be32_to_cpu(mgm->members_count) & 0xffffff;
181 prot = be32_to_cpu(mgm->members_count) >> 30;
182 list_for_each_entry(pqp, &s_steer->promisc_qps[steer], list) {
183 /* don't add already existing qpn */
186 if (members_count == dev->caps.num_qp_per_mgm) {
193 mgm->qp[members_count++] = cpu_to_be32(pqp->qpn & MGM_QPN_MASK);
195 /* update the qps count and update the entry with all the promisc qps*/
196 mgm->members_count = cpu_to_be32(members_count | (prot << 30));
197 err = mlx4_WRITE_ENTRY(dev, index, mailbox);
200 mlx4_free_cmd_mailbox(dev, mailbox);
205 list_del(&dqp->list);
208 list_del(&new_entry->list);
213 /* update the data structures with existing steering entry */
214 static int existing_steering_entry(struct mlx4_dev *dev, u8 port,
215 enum mlx4_steer_type steer,
216 unsigned int index, u32 qpn)
218 struct mlx4_steer *s_steer;
219 struct mlx4_steer_index *tmp_entry, *entry = NULL;
220 struct mlx4_promisc_qp *pqp;
221 struct mlx4_promisc_qp *dqp;
223 s_steer = &mlx4_priv(dev)->steer[port - 1];
225 pqp = get_promisc_qp(dev, 0, steer, qpn);
227 return 0; /* nothing to do */
229 list_for_each_entry(tmp_entry, &s_steer->steer_entries[steer], list) {
230 if (tmp_entry->index == index) {
235 if (unlikely(!entry)) {
236 mlx4_warn(dev, "Steering entry at index %x is not registered\n", index);
240 /* the given qpn is listed as a promisc qpn
241 * we need to add it as a duplicate to this entry
242 * for future references */
243 list_for_each_entry(dqp, &entry->duplicates, list) {
245 return 0; /* qp is already duplicated */
248 /* add the qp as a duplicate on this index */
249 dqp = kmalloc(sizeof *dqp, GFP_KERNEL);
253 list_add_tail(&dqp->list, &entry->duplicates);
258 /* Check whether a qpn is a duplicate on steering entry
259 * If so, it should not be removed from mgm */
260 static bool check_duplicate_entry(struct mlx4_dev *dev, u8 port,
261 enum mlx4_steer_type steer,
262 unsigned int index, u32 qpn)
264 struct mlx4_steer *s_steer;
265 struct mlx4_steer_index *tmp_entry, *entry = NULL;
266 struct mlx4_promisc_qp *dqp, *tmp_dqp;
268 s_steer = &mlx4_priv(dev)->steer[port - 1];
270 /* if qp is not promisc, it cannot be duplicated */
271 if (!get_promisc_qp(dev, 0, steer, qpn))
274 /* The qp is promisc qp so it is a duplicate on this index
275 * Find the index entry, and remove the duplicate */
276 list_for_each_entry(tmp_entry, &s_steer->steer_entries[steer], list) {
277 if (tmp_entry->index == index) {
282 if (unlikely(!entry)) {
283 mlx4_warn(dev, "Steering entry for index %x is not registered\n", index);
286 list_for_each_entry_safe(dqp, tmp_dqp, &entry->duplicates, list) {
287 if (dqp->qpn == qpn) {
288 list_del(&dqp->list);
295 /* I a steering entry contains only promisc QPs, it can be removed. */
296 static bool can_remove_steering_entry(struct mlx4_dev *dev, u8 port,
297 enum mlx4_steer_type steer,
298 unsigned int index, u32 tqpn)
300 struct mlx4_steer *s_steer;
301 struct mlx4_cmd_mailbox *mailbox;
302 struct mlx4_mgm *mgm;
303 struct mlx4_steer_index *entry = NULL, *tmp_entry;
309 s_steer = &mlx4_priv(dev)->steer[port - 1];
311 mailbox = mlx4_alloc_cmd_mailbox(dev);
316 if (mlx4_READ_ENTRY(dev, index, mailbox))
318 members_count = be32_to_cpu(mgm->members_count) & 0xffffff;
319 for (i = 0; i < members_count; i++) {
320 qpn = be32_to_cpu(mgm->qp[i]) & MGM_QPN_MASK;
321 if (!get_promisc_qp(dev, 0, steer, qpn) && qpn != tqpn) {
322 /* the qp is not promisc, the entry can't be removed */
326 /* All the qps currently registered for this entry are promiscuous,
327 * Checking for duplicates */
329 list_for_each_entry_safe(entry, tmp_entry, &s_steer->steer_entries[steer], list) {
330 if (entry->index == index) {
331 if (list_empty(&entry->duplicates)) {
332 list_del(&entry->list);
335 /* This entry contains duplicates so it shouldn't be removed */
343 mlx4_free_cmd_mailbox(dev, mailbox);
347 static int add_promisc_qp(struct mlx4_dev *dev, u8 port,
348 enum mlx4_steer_type steer, u32 qpn)
350 struct mlx4_steer *s_steer;
351 struct mlx4_cmd_mailbox *mailbox;
352 struct mlx4_mgm *mgm;
353 struct mlx4_steer_index *entry;
354 struct mlx4_promisc_qp *pqp;
355 struct mlx4_promisc_qp *dqp;
362 struct mlx4_priv *priv = mlx4_priv(dev);
364 s_steer = &mlx4_priv(dev)->steer[port - 1];
366 mutex_lock(&priv->mcg_table.mutex);
368 if (get_promisc_qp(dev, 0, steer, qpn)) {
369 err = 0; /* Noting to do, already exists */
373 pqp = kmalloc(sizeof *pqp, GFP_KERNEL);
380 mailbox = mlx4_alloc_cmd_mailbox(dev);
381 if (IS_ERR(mailbox)) {
387 /* the promisc qp needs to be added for each one of the steering
388 * entries, if it already exists, needs to be added as a duplicate
390 list_for_each_entry(entry, &s_steer->steer_entries[steer], list) {
391 err = mlx4_READ_ENTRY(dev, entry->index, mailbox);
395 members_count = be32_to_cpu(mgm->members_count) & 0xffffff;
396 prot = be32_to_cpu(mgm->members_count) >> 30;
398 for (i = 0; i < members_count; i++) {
399 if ((be32_to_cpu(mgm->qp[i]) & MGM_QPN_MASK) == qpn) {
400 /* Entry already exists, add to duplicates */
401 dqp = kmalloc(sizeof *dqp, GFP_KERNEL);
405 list_add_tail(&dqp->list, &entry->duplicates);
410 /* Need to add the qpn to mgm */
411 if (members_count == dev->caps.num_qp_per_mgm) {
416 mgm->qp[members_count++] = cpu_to_be32(qpn & MGM_QPN_MASK);
417 mgm->members_count = cpu_to_be32(members_count | (prot << 30));
418 err = mlx4_WRITE_ENTRY(dev, entry->index, mailbox);
422 last_index = entry->index;
425 /* add the new qpn to list of promisc qps */
426 list_add_tail(&pqp->list, &s_steer->promisc_qps[steer]);
427 /* now need to add all the promisc qps to default entry */
428 memset(mgm, 0, sizeof *mgm);
430 list_for_each_entry(dqp, &s_steer->promisc_qps[steer], list)
431 mgm->qp[members_count++] = cpu_to_be32(dqp->qpn & MGM_QPN_MASK);
432 mgm->members_count = cpu_to_be32(members_count | MLX4_PROT_ETH << 30);
434 err = mlx4_WRITE_PROMISC(dev, port, steer, mailbox);
438 mlx4_free_cmd_mailbox(dev, mailbox);
439 mutex_unlock(&priv->mcg_table.mutex);
443 list_del(&pqp->list);
445 mlx4_free_cmd_mailbox(dev, mailbox);
449 mutex_unlock(&priv->mcg_table.mutex);
453 static int remove_promisc_qp(struct mlx4_dev *dev, u8 port,
454 enum mlx4_steer_type steer, u32 qpn)
456 struct mlx4_priv *priv = mlx4_priv(dev);
457 struct mlx4_steer *s_steer;
458 struct mlx4_cmd_mailbox *mailbox;
459 struct mlx4_mgm *mgm;
460 struct mlx4_steer_index *entry;
461 struct mlx4_promisc_qp *pqp;
462 struct mlx4_promisc_qp *dqp;
465 bool back_to_list = false;
469 s_steer = &mlx4_priv(dev)->steer[port - 1];
470 mutex_lock(&priv->mcg_table.mutex);
472 pqp = get_promisc_qp(dev, 0, steer, qpn);
473 if (unlikely(!pqp)) {
474 mlx4_warn(dev, "QP %x is not promiscuous QP\n", qpn);
480 /*remove from list of promisc qps */
481 list_del(&pqp->list);
483 /* set the default entry not to include the removed one */
484 mailbox = mlx4_alloc_cmd_mailbox(dev);
485 if (IS_ERR(mailbox)) {
491 memset(mgm, 0, sizeof *mgm);
493 list_for_each_entry(dqp, &s_steer->promisc_qps[steer], list)
494 mgm->qp[members_count++] = cpu_to_be32(dqp->qpn & MGM_QPN_MASK);
495 mgm->members_count = cpu_to_be32(members_count | MLX4_PROT_ETH << 30);
497 err = mlx4_WRITE_PROMISC(dev, port, steer, mailbox);
501 /* remove the qp from all the steering entries*/
502 list_for_each_entry(entry, &s_steer->steer_entries[steer], list) {
504 list_for_each_entry(dqp, &entry->duplicates, list) {
505 if (dqp->qpn == qpn) {
511 /* a duplicate, no need to change the mgm,
512 * only update the duplicates list */
513 list_del(&dqp->list);
516 err = mlx4_READ_ENTRY(dev, entry->index, mailbox);
519 members_count = be32_to_cpu(mgm->members_count) & 0xffffff;
520 for (loc = -1, i = 0; i < members_count; ++i)
521 if ((be32_to_cpu(mgm->qp[i]) & MGM_QPN_MASK) == qpn)
524 mgm->members_count = cpu_to_be32(--members_count |
525 (MLX4_PROT_ETH << 30));
526 mgm->qp[loc] = mgm->qp[i - 1];
529 err = mlx4_WRITE_ENTRY(dev, entry->index, mailbox);
537 mlx4_free_cmd_mailbox(dev, mailbox);
540 list_add_tail(&pqp->list, &s_steer->promisc_qps[steer]);
544 mutex_unlock(&priv->mcg_table.mutex);
549 * Caller must hold MCG table semaphore. gid and mgm parameters must
550 * be properly aligned for command interface.
552 * Returns 0 unless a firmware command error occurs.
554 * If GID is found in MGM or MGM is empty, *index = *hash, *prev = -1
555 * and *mgm holds MGM entry.
557 * if GID is found in AMGM, *index = index in AMGM, *prev = index of
558 * previous entry in hash chain and *mgm holds AMGM entry.
560 * If no AMGM exists for given gid, *index = -1, *prev = index of last
561 * entry in hash chain and *mgm holds end of hash chain.
563 static int find_entry(struct mlx4_dev *dev, u8 port,
564 u8 *gid, enum mlx4_protocol prot,
565 struct mlx4_cmd_mailbox *mgm_mailbox,
566 int *prev, int *index)
568 struct mlx4_cmd_mailbox *mailbox;
569 struct mlx4_mgm *mgm = mgm_mailbox->buf;
573 u8 op_mod = (prot == MLX4_PROT_ETH) ?
574 !!(dev->caps.flags & MLX4_DEV_CAP_FLAG_VEP_MC_STEER) : 0;
576 mailbox = mlx4_alloc_cmd_mailbox(dev);
581 memcpy(mgid, gid, 16);
583 err = mlx4_GID_HASH(dev, mailbox, &hash, op_mod);
584 mlx4_free_cmd_mailbox(dev, mailbox);
589 mlx4_dbg(dev, "Hash for %pI6 is %04x\n", gid, hash);
595 err = mlx4_READ_ENTRY(dev, *index, mgm_mailbox);
599 if (!(be32_to_cpu(mgm->members_count) & 0xffffff)) {
600 if (*index != hash) {
601 mlx4_err(dev, "Found zero MGID in AMGM.\n");
607 if (!memcmp(mgm->gid, gid, 16) &&
608 be32_to_cpu(mgm->members_count) >> 30 == prot)
612 *index = be32_to_cpu(mgm->next_gid_index) >> 6;
619 int mlx4_qp_attach_common(struct mlx4_dev *dev, struct mlx4_qp *qp, u8 gid[16],
620 int block_mcast_loopback, enum mlx4_protocol prot,
621 enum mlx4_steer_type steer)
623 struct mlx4_priv *priv = mlx4_priv(dev);
624 struct mlx4_cmd_mailbox *mailbox;
625 struct mlx4_mgm *mgm;
634 mailbox = mlx4_alloc_cmd_mailbox(dev);
636 return PTR_ERR(mailbox);
639 mutex_lock(&priv->mcg_table.mutex);
640 err = find_entry(dev, port, gid, prot,
641 mailbox, &prev, &index);
646 if (!(be32_to_cpu(mgm->members_count) & 0xffffff)) {
648 memcpy(mgm->gid, gid, 16);
653 index = mlx4_bitmap_alloc(&priv->mcg_table.bitmap);
655 mlx4_err(dev, "No AMGM entries left\n");
659 index += dev->caps.num_mgms;
662 memset(mgm, 0, sizeof *mgm);
663 memcpy(mgm->gid, gid, 16);
666 members_count = be32_to_cpu(mgm->members_count) & 0xffffff;
667 if (members_count == dev->caps.num_qp_per_mgm) {
668 mlx4_err(dev, "MGM at index %x is full.\n", index);
673 for (i = 0; i < members_count; ++i)
674 if ((be32_to_cpu(mgm->qp[i]) & MGM_QPN_MASK) == qp->qpn) {
675 mlx4_dbg(dev, "QP %06x already a member of MGM\n", qp->qpn);
680 if (block_mcast_loopback)
681 mgm->qp[members_count++] = cpu_to_be32((qp->qpn & MGM_QPN_MASK) |
682 (1U << MGM_BLCK_LB_BIT));
684 mgm->qp[members_count++] = cpu_to_be32(qp->qpn & MGM_QPN_MASK);
686 mgm->members_count = cpu_to_be32(members_count | (u32) prot << 30);
688 err = mlx4_WRITE_ENTRY(dev, index, mailbox);
695 err = mlx4_READ_ENTRY(dev, prev, mailbox);
699 mgm->next_gid_index = cpu_to_be32(index << 6);
701 err = mlx4_WRITE_ENTRY(dev, prev, mailbox);
706 if (prot == MLX4_PROT_ETH) {
707 /* manage the steering entry for promisc mode */
709 new_steering_entry(dev, port, steer, index, qp->qpn);
711 existing_steering_entry(dev, port, steer,
714 if (err && link && index != -1) {
715 if (index < dev->caps.num_mgms)
716 mlx4_warn(dev, "Got AMGM index %d < %d",
717 index, dev->caps.num_mgms);
719 mlx4_bitmap_free(&priv->mcg_table.bitmap,
720 index - dev->caps.num_mgms);
722 mutex_unlock(&priv->mcg_table.mutex);
724 mlx4_free_cmd_mailbox(dev, mailbox);
728 int mlx4_qp_detach_common(struct mlx4_dev *dev, struct mlx4_qp *qp, u8 gid[16],
729 enum mlx4_protocol prot, enum mlx4_steer_type steer)
731 struct mlx4_priv *priv = mlx4_priv(dev);
732 struct mlx4_cmd_mailbox *mailbox;
733 struct mlx4_mgm *mgm;
739 bool removed_entry = false;
741 mailbox = mlx4_alloc_cmd_mailbox(dev);
743 return PTR_ERR(mailbox);
746 mutex_lock(&priv->mcg_table.mutex);
748 err = find_entry(dev, port, gid, prot,
749 mailbox, &prev, &index);
754 mlx4_err(dev, "MGID %pI6 not found\n", gid);
759 /* if this pq is also a promisc qp, it shouldn't be removed */
760 if (prot == MLX4_PROT_ETH &&
761 check_duplicate_entry(dev, port, steer, index, qp->qpn))
764 members_count = be32_to_cpu(mgm->members_count) & 0xffffff;
765 for (loc = -1, i = 0; i < members_count; ++i)
766 if ((be32_to_cpu(mgm->qp[i]) & MGM_QPN_MASK) == qp->qpn)
770 mlx4_err(dev, "QP %06x not found in MGM\n", qp->qpn);
776 mgm->members_count = cpu_to_be32(--members_count | (u32) prot << 30);
777 mgm->qp[loc] = mgm->qp[i - 1];
780 if (prot == MLX4_PROT_ETH)
781 removed_entry = can_remove_steering_entry(dev, port, steer,
783 if (i != 1 && (prot != MLX4_PROT_ETH || !removed_entry)) {
784 err = mlx4_WRITE_ENTRY(dev, index, mailbox);
788 /* We are going to delete the entry, members count should be 0 */
789 mgm->members_count = cpu_to_be32((u32) prot << 30);
792 /* Remove entry from MGM */
793 int amgm_index = be32_to_cpu(mgm->next_gid_index) >> 6;
795 err = mlx4_READ_ENTRY(dev, amgm_index, mailbox);
799 memset(mgm->gid, 0, 16);
801 err = mlx4_WRITE_ENTRY(dev, index, mailbox);
806 if (amgm_index < dev->caps.num_mgms)
807 mlx4_warn(dev, "MGM entry %d had AMGM index %d < %d",
808 index, amgm_index, dev->caps.num_mgms);
810 mlx4_bitmap_free(&priv->mcg_table.bitmap,
811 amgm_index - dev->caps.num_mgms);
814 /* Remove entry from AMGM */
815 int cur_next_index = be32_to_cpu(mgm->next_gid_index) >> 6;
816 err = mlx4_READ_ENTRY(dev, prev, mailbox);
820 mgm->next_gid_index = cpu_to_be32(cur_next_index << 6);
822 err = mlx4_WRITE_ENTRY(dev, prev, mailbox);
826 if (index < dev->caps.num_mgms)
827 mlx4_warn(dev, "entry %d had next AMGM index %d < %d",
828 prev, index, dev->caps.num_mgms);
830 mlx4_bitmap_free(&priv->mcg_table.bitmap,
831 index - dev->caps.num_mgms);
835 mutex_unlock(&priv->mcg_table.mutex);
837 mlx4_free_cmd_mailbox(dev, mailbox);
841 static int mlx4_QP_ATTACH(struct mlx4_dev *dev, struct mlx4_qp *qp,
842 u8 gid[16], u8 attach, u8 block_loopback,
843 enum mlx4_protocol prot)
845 struct mlx4_cmd_mailbox *mailbox;
849 if (!mlx4_is_mfunc(dev))
852 mailbox = mlx4_alloc_cmd_mailbox(dev);
854 return PTR_ERR(mailbox);
856 memcpy(mailbox->buf, gid, 16);
859 if (attach && block_loopback)
862 err = mlx4_cmd(dev, mailbox->dma, qpn, attach,
863 MLX4_CMD_QP_ATTACH, MLX4_CMD_TIME_CLASS_A,
866 mlx4_free_cmd_mailbox(dev, mailbox);
870 int mlx4_multicast_attach(struct mlx4_dev *dev, struct mlx4_qp *qp, u8 gid[16],
871 int block_mcast_loopback, enum mlx4_protocol prot)
873 enum mlx4_steer_type steer;
875 steer = (is_valid_ether_addr(&gid[10])) ? MLX4_UC_STEER : MLX4_MC_STEER;
877 if (prot == MLX4_PROT_ETH &&
878 !(dev->caps.flags & MLX4_DEV_CAP_FLAG_VEP_MC_STEER))
881 if (prot == MLX4_PROT_ETH)
882 gid[7] |= (steer << 1);
884 if (mlx4_is_mfunc(dev))
885 return mlx4_QP_ATTACH(dev, qp, gid, 1,
886 block_mcast_loopback, prot);
888 return mlx4_qp_attach_common(dev, qp, gid, block_mcast_loopback,
891 EXPORT_SYMBOL_GPL(mlx4_multicast_attach);
893 int mlx4_multicast_detach(struct mlx4_dev *dev, struct mlx4_qp *qp, u8 gid[16],
894 enum mlx4_protocol prot)
896 enum mlx4_steer_type steer;
898 steer = (is_valid_ether_addr(&gid[10])) ? MLX4_UC_STEER : MLX4_MC_STEER;
900 if (prot == MLX4_PROT_ETH &&
901 !(dev->caps.flags & MLX4_DEV_CAP_FLAG_VEP_MC_STEER))
904 if (prot == MLX4_PROT_ETH)
905 gid[7] |= (steer << 1);
907 if (mlx4_is_mfunc(dev))
908 return mlx4_QP_ATTACH(dev, qp, gid, 0, 0, prot);
910 return mlx4_qp_detach_common(dev, qp, gid, prot, steer);
912 EXPORT_SYMBOL_GPL(mlx4_multicast_detach);
914 int mlx4_unicast_attach(struct mlx4_dev *dev,
915 struct mlx4_qp *qp, u8 gid[16],
916 int block_mcast_loopback, enum mlx4_protocol prot)
918 if (prot == MLX4_PROT_ETH &&
919 !(dev->caps.flags & MLX4_DEV_CAP_FLAG_VEP_UC_STEER))
922 if (prot == MLX4_PROT_ETH)
923 gid[7] |= (MLX4_UC_STEER << 1);
925 if (mlx4_is_mfunc(dev))
926 return mlx4_QP_ATTACH(dev, qp, gid, 1,
927 block_mcast_loopback, prot);
929 return mlx4_qp_attach_common(dev, qp, gid, block_mcast_loopback,
930 prot, MLX4_UC_STEER);
932 EXPORT_SYMBOL_GPL(mlx4_unicast_attach);
934 int mlx4_unicast_detach(struct mlx4_dev *dev, struct mlx4_qp *qp,
935 u8 gid[16], enum mlx4_protocol prot)
937 if (prot == MLX4_PROT_ETH &&
938 !(dev->caps.flags & MLX4_DEV_CAP_FLAG_VEP_UC_STEER))
941 if (prot == MLX4_PROT_ETH)
942 gid[7] |= (MLX4_UC_STEER << 1);
944 if (mlx4_is_mfunc(dev))
945 return mlx4_QP_ATTACH(dev, qp, gid, 0, 0, prot);
947 return mlx4_qp_detach_common(dev, qp, gid, prot, MLX4_UC_STEER);
949 EXPORT_SYMBOL_GPL(mlx4_unicast_detach);
951 int mlx4_PROMISC_wrapper(struct mlx4_dev *dev, int slave,
952 struct mlx4_vhcr *vhcr,
953 struct mlx4_cmd_mailbox *inbox,
954 struct mlx4_cmd_mailbox *outbox,
955 struct mlx4_cmd_info *cmd)
957 u32 qpn = (u32) vhcr->in_param & 0xffffffff;
958 u8 port = vhcr->in_param >> 62;
959 enum mlx4_steer_type steer = vhcr->in_modifier;
961 /* Promiscuous unicast is not allowed in mfunc */
962 if (mlx4_is_mfunc(dev) && steer == MLX4_UC_STEER)
965 if (vhcr->op_modifier)
966 return add_promisc_qp(dev, port, steer, qpn);
968 return remove_promisc_qp(dev, port, steer, qpn);
971 static int mlx4_PROMISC(struct mlx4_dev *dev, u32 qpn,
972 enum mlx4_steer_type steer, u8 add, u8 port)
974 return mlx4_cmd(dev, (u64) qpn | (u64) port << 62, (u32) steer, add,
975 MLX4_CMD_PROMISC, MLX4_CMD_TIME_CLASS_A,
979 int mlx4_multicast_promisc_add(struct mlx4_dev *dev, u32 qpn, u8 port)
981 if (!(dev->caps.flags & MLX4_DEV_CAP_FLAG_VEP_MC_STEER))
984 if (mlx4_is_mfunc(dev))
985 return mlx4_PROMISC(dev, qpn, MLX4_MC_STEER, 1, port);
987 return add_promisc_qp(dev, port, MLX4_MC_STEER, qpn);
989 EXPORT_SYMBOL_GPL(mlx4_multicast_promisc_add);
991 int mlx4_multicast_promisc_remove(struct mlx4_dev *dev, u32 qpn, u8 port)
993 if (!(dev->caps.flags & MLX4_DEV_CAP_FLAG_VEP_MC_STEER))
996 if (mlx4_is_mfunc(dev))
997 return mlx4_PROMISC(dev, qpn, MLX4_MC_STEER, 0, port);
999 return remove_promisc_qp(dev, port, MLX4_MC_STEER, qpn);
1001 EXPORT_SYMBOL_GPL(mlx4_multicast_promisc_remove);
1003 int mlx4_unicast_promisc_add(struct mlx4_dev *dev, u32 qpn, u8 port)
1005 if (!(dev->caps.flags & MLX4_DEV_CAP_FLAG_VEP_UC_STEER))
1008 if (mlx4_is_mfunc(dev))
1009 return mlx4_PROMISC(dev, qpn, MLX4_UC_STEER, 1, port);
1011 return add_promisc_qp(dev, port, MLX4_UC_STEER, qpn);
1013 EXPORT_SYMBOL_GPL(mlx4_unicast_promisc_add);
1015 int mlx4_unicast_promisc_remove(struct mlx4_dev *dev, u32 qpn, u8 port)
1017 if (!(dev->caps.flags & MLX4_DEV_CAP_FLAG_VEP_UC_STEER))
1020 if (mlx4_is_mfunc(dev))
1021 return mlx4_PROMISC(dev, qpn, MLX4_UC_STEER, 0, port);
1023 return remove_promisc_qp(dev, port, MLX4_UC_STEER, qpn);
1025 EXPORT_SYMBOL_GPL(mlx4_unicast_promisc_remove);
1027 int mlx4_init_mcg_table(struct mlx4_dev *dev)
1029 struct mlx4_priv *priv = mlx4_priv(dev);
1032 err = mlx4_bitmap_init(&priv->mcg_table.bitmap, dev->caps.num_amgms,
1033 dev->caps.num_amgms - 1, 0, 0);
1037 mutex_init(&priv->mcg_table.mutex);
1042 void mlx4_cleanup_mcg_table(struct mlx4_dev *dev)
1044 mlx4_bitmap_cleanup(&mlx4_priv(dev)->mcg_table.bitmap);