162306a36Sopenharmony_ci/* 262306a36Sopenharmony_ci * Copyright (c) 2007 Mellanox Technologies. All rights reserved. 362306a36Sopenharmony_ci * 462306a36Sopenharmony_ci * This software is available to you under a choice of one of two 562306a36Sopenharmony_ci * licenses. You may choose to be licensed under the terms of the GNU 662306a36Sopenharmony_ci * General Public License (GPL) Version 2, available from the file 762306a36Sopenharmony_ci * COPYING in the main directory of this source tree, or the 862306a36Sopenharmony_ci * OpenIB.org BSD license below: 962306a36Sopenharmony_ci * 1062306a36Sopenharmony_ci * Redistribution and use in source and binary forms, with or 1162306a36Sopenharmony_ci * without modification, are permitted provided that the following 1262306a36Sopenharmony_ci * conditions are met: 1362306a36Sopenharmony_ci * 1462306a36Sopenharmony_ci * - Redistributions of source code must retain the above 1562306a36Sopenharmony_ci * copyright notice, this list of conditions and the following 1662306a36Sopenharmony_ci * disclaimer. 1762306a36Sopenharmony_ci * 1862306a36Sopenharmony_ci * - Redistributions in binary form must reproduce the above 1962306a36Sopenharmony_ci * copyright notice, this list of conditions and the following 2062306a36Sopenharmony_ci * disclaimer in the documentation and/or other materials 2162306a36Sopenharmony_ci * provided with the distribution. 2262306a36Sopenharmony_ci * 2362306a36Sopenharmony_ci * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 2462306a36Sopenharmony_ci * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 2562306a36Sopenharmony_ci * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 2662306a36Sopenharmony_ci * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS 2762306a36Sopenharmony_ci * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN 2862306a36Sopenharmony_ci * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 2962306a36Sopenharmony_ci * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 3062306a36Sopenharmony_ci * SOFTWARE. 3162306a36Sopenharmony_ci * 3262306a36Sopenharmony_ci */ 3362306a36Sopenharmony_ci 3462306a36Sopenharmony_ci#include <linux/slab.h> 3562306a36Sopenharmony_ci#include <linux/vmalloc.h> 3662306a36Sopenharmony_ci#include <linux/mlx4/qp.h> 3762306a36Sopenharmony_ci 3862306a36Sopenharmony_ci#include "mlx4_en.h" 3962306a36Sopenharmony_ci 4062306a36Sopenharmony_civoid mlx4_en_fill_qp_context(struct mlx4_en_priv *priv, int size, int stride, 4162306a36Sopenharmony_ci int is_tx, int rss, int qpn, int cqn, 4262306a36Sopenharmony_ci int user_prio, struct mlx4_qp_context *context) 4362306a36Sopenharmony_ci{ 4462306a36Sopenharmony_ci struct mlx4_en_dev *mdev = priv->mdev; 4562306a36Sopenharmony_ci struct net_device *dev = priv->dev; 4662306a36Sopenharmony_ci 4762306a36Sopenharmony_ci memset(context, 0, sizeof(*context)); 4862306a36Sopenharmony_ci context->flags = cpu_to_be32(7 << 16 | rss << MLX4_RSS_QPC_FLAG_OFFSET); 4962306a36Sopenharmony_ci context->pd = cpu_to_be32(mdev->priv_pdn); 5062306a36Sopenharmony_ci context->mtu_msgmax = 0xff; 5162306a36Sopenharmony_ci if (!is_tx && !rss) 5262306a36Sopenharmony_ci context->rq_size_stride = ilog2(size) << 3 | (ilog2(stride) - 4); 5362306a36Sopenharmony_ci if (is_tx) { 5462306a36Sopenharmony_ci context->sq_size_stride = ilog2(size) << 3 | (ilog2(stride) - 4); 5562306a36Sopenharmony_ci if (mdev->dev->caps.flags2 & MLX4_DEV_CAP_FLAG2_PORT_REMAP) 5662306a36Sopenharmony_ci context->params2 |= cpu_to_be32(MLX4_QP_BIT_FPP); 5762306a36Sopenharmony_ci 5862306a36Sopenharmony_ci } else { 5962306a36Sopenharmony_ci context->sq_size_stride = ilog2(TXBB_SIZE) - 4; 6062306a36Sopenharmony_ci } 6162306a36Sopenharmony_ci context->usr_page = cpu_to_be32(mlx4_to_hw_uar_index(mdev->dev, 6262306a36Sopenharmony_ci mdev->priv_uar.index)); 6362306a36Sopenharmony_ci context->local_qpn = cpu_to_be32(qpn); 6462306a36Sopenharmony_ci context->pri_path.ackto = 1 & 0x07; 6562306a36Sopenharmony_ci context->pri_path.sched_queue = 0x83 | (priv->port - 1) << 6; 6662306a36Sopenharmony_ci /* force user priority per tx ring */ 6762306a36Sopenharmony_ci if (user_prio >= 0 && priv->prof->num_up == MLX4_EN_NUM_UP_HIGH) { 6862306a36Sopenharmony_ci context->pri_path.sched_queue |= user_prio << 3; 6962306a36Sopenharmony_ci context->pri_path.feup = MLX4_FEUP_FORCE_ETH_UP; 7062306a36Sopenharmony_ci } 7162306a36Sopenharmony_ci context->pri_path.counter_index = priv->counter_index; 7262306a36Sopenharmony_ci context->cqn_send = cpu_to_be32(cqn); 7362306a36Sopenharmony_ci context->cqn_recv = cpu_to_be32(cqn); 7462306a36Sopenharmony_ci if (!rss && 7562306a36Sopenharmony_ci (mdev->dev->caps.flags2 & MLX4_DEV_CAP_FLAG2_LB_SRC_CHK) && 7662306a36Sopenharmony_ci context->pri_path.counter_index != 7762306a36Sopenharmony_ci MLX4_SINK_COUNTER_INDEX(mdev->dev)) { 7862306a36Sopenharmony_ci /* disable multicast loopback to qp with same counter */ 7962306a36Sopenharmony_ci if (!(dev->features & NETIF_F_LOOPBACK)) 8062306a36Sopenharmony_ci context->pri_path.fl |= MLX4_FL_ETH_SRC_CHECK_MC_LB; 8162306a36Sopenharmony_ci context->pri_path.control |= MLX4_CTRL_ETH_SRC_CHECK_IF_COUNTER; 8262306a36Sopenharmony_ci } 8362306a36Sopenharmony_ci context->db_rec_addr = cpu_to_be64(priv->res.db.dma << 2); 8462306a36Sopenharmony_ci if (!(dev->features & NETIF_F_HW_VLAN_CTAG_RX)) 8562306a36Sopenharmony_ci context->param3 |= cpu_to_be32(1 << 30); 8662306a36Sopenharmony_ci 8762306a36Sopenharmony_ci if (!is_tx && !rss && 8862306a36Sopenharmony_ci (mdev->dev->caps.tunnel_offload_mode == MLX4_TUNNEL_OFFLOAD_MODE_VXLAN)) { 8962306a36Sopenharmony_ci en_dbg(HW, priv, "Setting RX qp %x tunnel mode to RX tunneled & non-tunneled\n", qpn); 9062306a36Sopenharmony_ci context->srqn = cpu_to_be32(7 << 28); /* this fills bits 30:28 */ 9162306a36Sopenharmony_ci } 9262306a36Sopenharmony_ci} 9362306a36Sopenharmony_ci 9462306a36Sopenharmony_ciint mlx4_en_change_mcast_lb(struct mlx4_en_priv *priv, struct mlx4_qp *qp, 9562306a36Sopenharmony_ci int loopback) 9662306a36Sopenharmony_ci{ 9762306a36Sopenharmony_ci int ret; 9862306a36Sopenharmony_ci struct mlx4_update_qp_params qp_params; 9962306a36Sopenharmony_ci 10062306a36Sopenharmony_ci memset(&qp_params, 0, sizeof(qp_params)); 10162306a36Sopenharmony_ci if (!loopback) 10262306a36Sopenharmony_ci qp_params.flags = MLX4_UPDATE_QP_PARAMS_FLAGS_ETH_CHECK_MC_LB; 10362306a36Sopenharmony_ci 10462306a36Sopenharmony_ci ret = mlx4_update_qp(priv->mdev->dev, qp->qpn, 10562306a36Sopenharmony_ci MLX4_UPDATE_QP_ETH_SRC_CHECK_MC_LB, 10662306a36Sopenharmony_ci &qp_params); 10762306a36Sopenharmony_ci 10862306a36Sopenharmony_ci return ret; 10962306a36Sopenharmony_ci} 11062306a36Sopenharmony_ci 11162306a36Sopenharmony_civoid mlx4_en_sqp_event(struct mlx4_qp *qp, enum mlx4_event event) 11262306a36Sopenharmony_ci{ 11362306a36Sopenharmony_ci return; 11462306a36Sopenharmony_ci} 11562306a36Sopenharmony_ci 116