IB/hfi1: Remove module parameter for KDETH qpns

The module parameter for KDETH qpns is being removed in favor
of always using the default value of 0x80 as the qpn prefix.
Defines have been added for various KDETH values including
the prefix of 0x80.
The reserved range now starts at the base value for KDETH
qpns (0x80) and extends up to and including the last qpn for
other reserved QP prefixed types.
Adjust other QP prefixed define names to match KDETH defined
names.

Link: https://lore.kernel.org/r/20200511160600.173205.27508.stgit@awfm-01.aw.intel.com
Reviewed-by: Dennis Dalessandro <dennis.dalessandro@intel.com>
Reviewed-by: Mike Marciniszyn <mike.marciniszyn@intel.com>
Signed-off-by: Gary Leshner <Gary.S.Leshner@intel.com>
Signed-off-by: Kaike Wan <kaike.wan@intel.com>
Signed-off-by: Dennis Dalessandro <dennis.dalessandro@intel.com>
Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
This commit is contained in:
Gary Leshner
2020-05-11 12:06:00 -04:00
committed by Jason Gunthorpe
parent 438d7dda98
commit 84e3b19a27
7 changed files with 39 additions and 34 deletions

View File

@@ -2,7 +2,7 @@
#define DEF_RDMAVT_INCQP_H
/*
* Copyright(c) 2016 - 2019 Intel Corporation.
* Copyright(c) 2016 - 2020 Intel Corporation.
*
* This file is provided under a dual BSD/GPLv2 license. When using or
* redistributing this file, you may do so under either license.
@@ -68,6 +68,33 @@
#define RVT_R_RSP_SEND 0x08
#define RVT_R_COMM_EST 0x10
/*
* If a packet's QP[23:16] bits match this value, then it is
* a PSM packet and the hardware will expect a KDETH header
* following the BTH.
*/
#define RVT_KDETH_QP_PREFIX 0x80
#define RVT_KDETH_QP_SUFFIX 0xffff
#define RVT_KDETH_QP_PREFIX_MASK 0x00ff0000
#define RVT_KDETH_QP_PREFIX_SHIFT 16
#define RVT_KDETH_QP_BASE (u32)(RVT_KDETH_QP_PREFIX << \
RVT_KDETH_QP_PREFIX_SHIFT)
#define RVT_KDETH_QP_MAX (u32)(RVT_KDETH_QP_BASE + RVT_KDETH_QP_SUFFIX)
/*
* If a packet's LNH == BTH and DEST QPN[23:16] in the BTH match this
* prefix value, then it is an AIP packet with a DETH containing the entropy
* value in byte 4 following the BTH.
*/
#define RVT_AIP_QP_PREFIX 0x81
#define RVT_AIP_QP_SUFFIX 0xffff
#define RVT_AIP_QP_PREFIX_MASK 0x00ff0000
#define RVT_AIP_QP_PREFIX_SHIFT 16
#define RVT_AIP_QP_BASE (u32)(RVT_AIP_QP_PREFIX << \
RVT_AIP_QP_PREFIX_SHIFT)
#define RVT_AIP_QPN_MAX BIT(RVT_AIP_QP_PREFIX_SHIFT)
#define RVT_AIP_QP_MAX (u32)(RVT_AIP_QP_BASE + RVT_AIP_QPN_MAX - 1)
/*
* Bit definitions for s_flags.
*