18c2ecf20Sopenharmony_ci/* 28c2ecf20Sopenharmony_ci * Copyright (c) 2007 Mellanox Technologies. All rights reserved. 38c2ecf20Sopenharmony_ci * 48c2ecf20Sopenharmony_ci * This software is available to you under a choice of one of two 58c2ecf20Sopenharmony_ci * licenses. You may choose to be licensed under the terms of the GNU 68c2ecf20Sopenharmony_ci * General Public License (GPL) Version 2, available from the file 78c2ecf20Sopenharmony_ci * COPYING in the main directory of this source tree, or the 88c2ecf20Sopenharmony_ci * OpenIB.org BSD license below: 98c2ecf20Sopenharmony_ci * 108c2ecf20Sopenharmony_ci * Redistribution and use in source and binary forms, with or 118c2ecf20Sopenharmony_ci * without modification, are permitted provided that the following 128c2ecf20Sopenharmony_ci * conditions are met: 138c2ecf20Sopenharmony_ci * 148c2ecf20Sopenharmony_ci * - Redistributions of source code must retain the above 158c2ecf20Sopenharmony_ci * copyright notice, this list of conditions and the following 168c2ecf20Sopenharmony_ci * disclaimer. 178c2ecf20Sopenharmony_ci * 188c2ecf20Sopenharmony_ci * - Redistributions in binary form must reproduce the above 198c2ecf20Sopenharmony_ci * copyright notice, this list of conditions and the following 208c2ecf20Sopenharmony_ci * disclaimer in the documentation and/or other materials 218c2ecf20Sopenharmony_ci * provided with the distribution. 228c2ecf20Sopenharmony_ci * 238c2ecf20Sopenharmony_ci * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 248c2ecf20Sopenharmony_ci * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 258c2ecf20Sopenharmony_ci * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 268c2ecf20Sopenharmony_ci * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS 278c2ecf20Sopenharmony_ci * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN 288c2ecf20Sopenharmony_ci * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 298c2ecf20Sopenharmony_ci * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 308c2ecf20Sopenharmony_ci * SOFTWARE. 318c2ecf20Sopenharmony_ci * 328c2ecf20Sopenharmony_ci */ 338c2ecf20Sopenharmony_ci 348c2ecf20Sopenharmony_ci#include <linux/slab.h> 358c2ecf20Sopenharmony_ci#include <linux/vmalloc.h> 368c2ecf20Sopenharmony_ci#include <linux/mlx4/qp.h> 378c2ecf20Sopenharmony_ci 388c2ecf20Sopenharmony_ci#include "mlx4_en.h" 398c2ecf20Sopenharmony_ci 408c2ecf20Sopenharmony_civoid mlx4_en_fill_qp_context(struct mlx4_en_priv *priv, int size, int stride, 418c2ecf20Sopenharmony_ci int is_tx, int rss, int qpn, int cqn, 428c2ecf20Sopenharmony_ci int user_prio, struct mlx4_qp_context *context) 438c2ecf20Sopenharmony_ci{ 448c2ecf20Sopenharmony_ci struct mlx4_en_dev *mdev = priv->mdev; 458c2ecf20Sopenharmony_ci struct net_device *dev = priv->dev; 468c2ecf20Sopenharmony_ci 478c2ecf20Sopenharmony_ci memset(context, 0, sizeof(*context)); 488c2ecf20Sopenharmony_ci context->flags = cpu_to_be32(7 << 16 | rss << MLX4_RSS_QPC_FLAG_OFFSET); 498c2ecf20Sopenharmony_ci context->pd = cpu_to_be32(mdev->priv_pdn); 508c2ecf20Sopenharmony_ci context->mtu_msgmax = 0xff; 518c2ecf20Sopenharmony_ci if (!is_tx && !rss) 528c2ecf20Sopenharmony_ci context->rq_size_stride = ilog2(size) << 3 | (ilog2(stride) - 4); 538c2ecf20Sopenharmony_ci if (is_tx) { 548c2ecf20Sopenharmony_ci context->sq_size_stride = ilog2(size) << 3 | (ilog2(stride) - 4); 558c2ecf20Sopenharmony_ci if (mdev->dev->caps.flags2 & MLX4_DEV_CAP_FLAG2_PORT_REMAP) 568c2ecf20Sopenharmony_ci context->params2 |= cpu_to_be32(MLX4_QP_BIT_FPP); 578c2ecf20Sopenharmony_ci 588c2ecf20Sopenharmony_ci } else { 598c2ecf20Sopenharmony_ci context->sq_size_stride = ilog2(TXBB_SIZE) - 4; 608c2ecf20Sopenharmony_ci } 618c2ecf20Sopenharmony_ci context->usr_page = cpu_to_be32(mlx4_to_hw_uar_index(mdev->dev, 628c2ecf20Sopenharmony_ci mdev->priv_uar.index)); 638c2ecf20Sopenharmony_ci context->local_qpn = cpu_to_be32(qpn); 648c2ecf20Sopenharmony_ci context->pri_path.ackto = 1 & 0x07; 658c2ecf20Sopenharmony_ci context->pri_path.sched_queue = 0x83 | (priv->port - 1) << 6; 668c2ecf20Sopenharmony_ci /* force user priority per tx ring */ 678c2ecf20Sopenharmony_ci if (user_prio >= 0 && priv->prof->num_up == MLX4_EN_NUM_UP_HIGH) { 688c2ecf20Sopenharmony_ci context->pri_path.sched_queue |= user_prio << 3; 698c2ecf20Sopenharmony_ci context->pri_path.feup = MLX4_FEUP_FORCE_ETH_UP; 708c2ecf20Sopenharmony_ci } 718c2ecf20Sopenharmony_ci context->pri_path.counter_index = priv->counter_index; 728c2ecf20Sopenharmony_ci context->cqn_send = cpu_to_be32(cqn); 738c2ecf20Sopenharmony_ci context->cqn_recv = cpu_to_be32(cqn); 748c2ecf20Sopenharmony_ci if (!rss && 758c2ecf20Sopenharmony_ci (mdev->dev->caps.flags2 & MLX4_DEV_CAP_FLAG2_LB_SRC_CHK) && 768c2ecf20Sopenharmony_ci context->pri_path.counter_index != 778c2ecf20Sopenharmony_ci MLX4_SINK_COUNTER_INDEX(mdev->dev)) { 788c2ecf20Sopenharmony_ci /* disable multicast loopback to qp with same counter */ 798c2ecf20Sopenharmony_ci if (!(dev->features & NETIF_F_LOOPBACK)) 808c2ecf20Sopenharmony_ci context->pri_path.fl |= MLX4_FL_ETH_SRC_CHECK_MC_LB; 818c2ecf20Sopenharmony_ci context->pri_path.control |= MLX4_CTRL_ETH_SRC_CHECK_IF_COUNTER; 828c2ecf20Sopenharmony_ci } 838c2ecf20Sopenharmony_ci context->db_rec_addr = cpu_to_be64(priv->res.db.dma << 2); 848c2ecf20Sopenharmony_ci if (!(dev->features & NETIF_F_HW_VLAN_CTAG_RX)) 858c2ecf20Sopenharmony_ci context->param3 |= cpu_to_be32(1 << 30); 868c2ecf20Sopenharmony_ci 878c2ecf20Sopenharmony_ci if (!is_tx && !rss && 888c2ecf20Sopenharmony_ci (mdev->dev->caps.tunnel_offload_mode == MLX4_TUNNEL_OFFLOAD_MODE_VXLAN)) { 898c2ecf20Sopenharmony_ci en_dbg(HW, priv, "Setting RX qp %x tunnel mode to RX tunneled & non-tunneled\n", qpn); 908c2ecf20Sopenharmony_ci context->srqn = cpu_to_be32(7 << 28); /* this fills bits 30:28 */ 918c2ecf20Sopenharmony_ci } 928c2ecf20Sopenharmony_ci} 938c2ecf20Sopenharmony_ci 948c2ecf20Sopenharmony_ciint mlx4_en_change_mcast_lb(struct mlx4_en_priv *priv, struct mlx4_qp *qp, 958c2ecf20Sopenharmony_ci int loopback) 968c2ecf20Sopenharmony_ci{ 978c2ecf20Sopenharmony_ci int ret; 988c2ecf20Sopenharmony_ci struct mlx4_update_qp_params qp_params; 998c2ecf20Sopenharmony_ci 1008c2ecf20Sopenharmony_ci memset(&qp_params, 0, sizeof(qp_params)); 1018c2ecf20Sopenharmony_ci if (!loopback) 1028c2ecf20Sopenharmony_ci qp_params.flags = MLX4_UPDATE_QP_PARAMS_FLAGS_ETH_CHECK_MC_LB; 1038c2ecf20Sopenharmony_ci 1048c2ecf20Sopenharmony_ci ret = mlx4_update_qp(priv->mdev->dev, qp->qpn, 1058c2ecf20Sopenharmony_ci MLX4_UPDATE_QP_ETH_SRC_CHECK_MC_LB, 1068c2ecf20Sopenharmony_ci &qp_params); 1078c2ecf20Sopenharmony_ci 1088c2ecf20Sopenharmony_ci return ret; 1098c2ecf20Sopenharmony_ci} 1108c2ecf20Sopenharmony_ci 1118c2ecf20Sopenharmony_civoid mlx4_en_sqp_event(struct mlx4_qp *qp, enum mlx4_event event) 1128c2ecf20Sopenharmony_ci{ 1138c2ecf20Sopenharmony_ci return; 1148c2ecf20Sopenharmony_ci} 1158c2ecf20Sopenharmony_ci 116