c77875fbb8
thunderx pmd driver passes dev_info.max_rx_pktlen as
9200 (via rte_eth_dev_info_get()) to application.
But, when application tries to set MTU as
(9200 - sizeof(ethernet_header_t)) the operation fails
because of missing CRC and VLAN additions.
This patch fixes the following for thunderx pmd driver:
- Sets NIC_HW_MAX_FRS to 9216 (instead of 9200)
- Sets NIC_HW_MAX_MTU to 9190 (NIC_HW_MAX_FRS - ETH_HLEN
- ETHER_CRC_LEN - 2*VLAN_HLEN)
- Sets dev_info->max_rx_pkt_len to NIC_HW_MAX_MTU +
ETH_HLEN (instead of 9200)
- Allows rte_eth_dev_set_mtu() to pass if application
(like VPP) calls rte_eth_dev_set_mtu() before
rte_eth_dev_start() by putting appropriate check for
dev->data->dev_started
Fixes: 65d9804edc
("net/thunderx: support MTU configuration")
Cc: stable@dpdk.org
Signed-off-by: Nitin Saxena <nitin.saxena@caviumnetworks.com>
Acked-by: Jerin Jacob <jerin.jacob@caviumnetworks.com>
1201 lines
28 KiB
C
1201 lines
28 KiB
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright(c) 2016 Cavium, Inc
|
|
*/
|
|
|
|
#ifndef _THUNDERX_NICVF_HW_DEFS_H
|
|
#define _THUNDERX_NICVF_HW_DEFS_H
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
#include "nicvf_plat.h"
|
|
|
|
/* Virtual function register offsets */
|
|
|
|
#define NIC_VF_CFG (0x000020)
|
|
#define NIC_VF_PF_MAILBOX_0_1 (0x000130)
|
|
#define NIC_VF_INT (0x000200)
|
|
#define NIC_VF_INT_W1S (0x000220)
|
|
#define NIC_VF_ENA_W1C (0x000240)
|
|
#define NIC_VF_ENA_W1S (0x000260)
|
|
|
|
#define NIC_VNIC_RSS_CFG (0x0020E0)
|
|
#define NIC_VNIC_RSS_KEY_0_4 (0x002200)
|
|
#define NIC_VNIC_TX_STAT_0_4 (0x004000)
|
|
#define NIC_VNIC_RX_STAT_0_13 (0x004100)
|
|
#define NIC_VNIC_RQ_GEN_CFG (0x010010)
|
|
|
|
#define NIC_QSET_CQ_0_7_CFG (0x010400)
|
|
#define NIC_QSET_CQ_0_7_CFG2 (0x010408)
|
|
#define NIC_QSET_CQ_0_7_THRESH (0x010410)
|
|
#define NIC_QSET_CQ_0_7_BASE (0x010420)
|
|
#define NIC_QSET_CQ_0_7_HEAD (0x010428)
|
|
#define NIC_QSET_CQ_0_7_TAIL (0x010430)
|
|
#define NIC_QSET_CQ_0_7_DOOR (0x010438)
|
|
#define NIC_QSET_CQ_0_7_STATUS (0x010440)
|
|
#define NIC_QSET_CQ_0_7_STATUS2 (0x010448)
|
|
#define NIC_QSET_CQ_0_7_DEBUG (0x010450)
|
|
|
|
#define NIC_QSET_RQ_0_7_CFG (0x010600)
|
|
#define NIC_QSET_RQ_0_7_STATUS0 (0x010700)
|
|
#define NIC_QSET_RQ_0_7_STATUS1 (0x010708)
|
|
|
|
#define NIC_QSET_SQ_0_7_CFG (0x010800)
|
|
#define NIC_QSET_SQ_0_7_THRESH (0x010810)
|
|
#define NIC_QSET_SQ_0_7_BASE (0x010820)
|
|
#define NIC_QSET_SQ_0_7_HEAD (0x010828)
|
|
#define NIC_QSET_SQ_0_7_TAIL (0x010830)
|
|
#define NIC_QSET_SQ_0_7_DOOR (0x010838)
|
|
#define NIC_QSET_SQ_0_7_STATUS (0x010840)
|
|
#define NIC_QSET_SQ_0_7_DEBUG (0x010848)
|
|
#define NIC_QSET_SQ_0_7_STATUS0 (0x010900)
|
|
#define NIC_QSET_SQ_0_7_STATUS1 (0x010908)
|
|
|
|
#define NIC_QSET_RBDR_0_1_CFG (0x010C00)
|
|
#define NIC_QSET_RBDR_0_1_THRESH (0x010C10)
|
|
#define NIC_QSET_RBDR_0_1_BASE (0x010C20)
|
|
#define NIC_QSET_RBDR_0_1_HEAD (0x010C28)
|
|
#define NIC_QSET_RBDR_0_1_TAIL (0x010C30)
|
|
#define NIC_QSET_RBDR_0_1_DOOR (0x010C38)
|
|
#define NIC_QSET_RBDR_0_1_STATUS0 (0x010C40)
|
|
#define NIC_QSET_RBDR_0_1_STATUS1 (0x010C48)
|
|
#define NIC_QSET_RBDR_0_1_PRFCH_STATUS (0x010C50)
|
|
|
|
/* vNIC HW Constants */
|
|
|
|
#define NIC_Q_NUM_SHIFT 18
|
|
|
|
#define MAX_QUEUE_SET 128
|
|
#define MAX_RCV_QUEUES_PER_QS 8
|
|
#define MAX_RCV_BUF_DESC_RINGS_PER_QS 2
|
|
#define MAX_SND_QUEUES_PER_QS 8
|
|
#define MAX_CMP_QUEUES_PER_QS 8
|
|
|
|
#define NICVF_INTR_CQ_SHIFT 0
|
|
#define NICVF_INTR_SQ_SHIFT 8
|
|
#define NICVF_INTR_RBDR_SHIFT 16
|
|
#define NICVF_INTR_PKT_DROP_SHIFT 20
|
|
#define NICVF_INTR_TCP_TIMER_SHIFT 21
|
|
#define NICVF_INTR_MBOX_SHIFT 22
|
|
#define NICVF_INTR_QS_ERR_SHIFT 23
|
|
|
|
#define NICVF_QS_RQ_DIS_APAD_SHIFT 22
|
|
|
|
#define NICVF_INTR_CQ_MASK (0xFF << NICVF_INTR_CQ_SHIFT)
|
|
#define NICVF_INTR_SQ_MASK (0xFF << NICVF_INTR_SQ_SHIFT)
|
|
#define NICVF_INTR_RBDR_MASK (0x03 << NICVF_INTR_RBDR_SHIFT)
|
|
#define NICVF_INTR_PKT_DROP_MASK (1 << NICVF_INTR_PKT_DROP_SHIFT)
|
|
#define NICVF_INTR_TCP_TIMER_MASK (1 << NICVF_INTR_TCP_TIMER_SHIFT)
|
|
#define NICVF_INTR_MBOX_MASK (1 << NICVF_INTR_MBOX_SHIFT)
|
|
#define NICVF_INTR_QS_ERR_MASK (1 << NICVF_INTR_QS_ERR_SHIFT)
|
|
#define NICVF_INTR_ALL_MASK (0x7FFFFF)
|
|
|
|
#define NICVF_CQ_WR_FULL (1ULL << 26)
|
|
#define NICVF_CQ_WR_DISABLE (1ULL << 25)
|
|
#define NICVF_CQ_WR_FAULT (1ULL << 24)
|
|
#define NICVF_CQ_ERR_MASK (NICVF_CQ_WR_FULL |\
|
|
NICVF_CQ_WR_DISABLE |\
|
|
NICVF_CQ_WR_FAULT)
|
|
#define NICVF_CQ_CQE_COUNT_MASK (0xFFFF)
|
|
|
|
#define NICVF_SQ_ERR_STOPPED (1ULL << 21)
|
|
#define NICVF_SQ_ERR_SEND (1ULL << 20)
|
|
#define NICVF_SQ_ERR_DPE (1ULL << 19)
|
|
#define NICVF_SQ_ERR_MASK (NICVF_SQ_ERR_STOPPED |\
|
|
NICVF_SQ_ERR_SEND |\
|
|
NICVF_SQ_ERR_DPE)
|
|
#define NICVF_SQ_STATUS_STOPPED_BIT (21)
|
|
|
|
#define NICVF_RBDR_FIFO_STATE_SHIFT (62)
|
|
#define NICVF_RBDR_FIFO_STATE_MASK (3ULL << NICVF_RBDR_FIFO_STATE_SHIFT)
|
|
#define NICVF_RBDR_COUNT_MASK (0x7FFFF)
|
|
|
|
/* Queue reset */
|
|
#define NICVF_CQ_RESET (1ULL << 41)
|
|
#define NICVF_SQ_RESET (1ULL << 17)
|
|
#define NICVF_RBDR_RESET (1ULL << 43)
|
|
|
|
/* RSS constants */
|
|
#define NIC_MAX_RSS_HASH_BITS (8)
|
|
#define NIC_MAX_RSS_IDR_TBL_SIZE (1 << NIC_MAX_RSS_HASH_BITS)
|
|
#define RSS_HASH_KEY_SIZE (5) /* 320 bit key */
|
|
#define RSS_HASH_KEY_BYTE_SIZE (40) /* 320 bit key */
|
|
|
|
#define RSS_L2_EXTENDED_HASH_ENA (1 << 0)
|
|
#define RSS_IP_ENA (1 << 1)
|
|
#define RSS_TCP_ENA (1 << 2)
|
|
#define RSS_TCP_SYN_ENA (1 << 3)
|
|
#define RSS_UDP_ENA (1 << 4)
|
|
#define RSS_L4_EXTENDED_ENA (1 << 5)
|
|
#define RSS_L3_BI_DIRECTION_ENA (1 << 7)
|
|
#define RSS_L4_BI_DIRECTION_ENA (1 << 8)
|
|
#define RSS_TUN_VXLAN_ENA (1 << 9)
|
|
#define RSS_TUN_GENEVE_ENA (1 << 10)
|
|
#define RSS_TUN_NVGRE_ENA (1 << 11)
|
|
|
|
#define RBDR_QUEUE_SZ_8K (8 * 1024)
|
|
#define RBDR_QUEUE_SZ_16K (16 * 1024)
|
|
#define RBDR_QUEUE_SZ_32K (32 * 1024)
|
|
#define RBDR_QUEUE_SZ_64K (64 * 1024)
|
|
#define RBDR_QUEUE_SZ_128K (128 * 1024)
|
|
#define RBDR_QUEUE_SZ_256K (256 * 1024)
|
|
#define RBDR_QUEUE_SZ_512K (512 * 1024)
|
|
#define RBDR_QUEUE_SZ_MAX RBDR_QUEUE_SZ_512K
|
|
|
|
#define RBDR_SIZE_SHIFT (13) /* 8k */
|
|
|
|
#define SND_QUEUE_SZ_1K (1 * 1024)
|
|
#define SND_QUEUE_SZ_2K (2 * 1024)
|
|
#define SND_QUEUE_SZ_4K (4 * 1024)
|
|
#define SND_QUEUE_SZ_8K (8 * 1024)
|
|
#define SND_QUEUE_SZ_16K (16 * 1024)
|
|
#define SND_QUEUE_SZ_32K (32 * 1024)
|
|
#define SND_QUEUE_SZ_64K (64 * 1024)
|
|
#define SND_QUEUE_SZ_MAX SND_QUEUE_SZ_64K
|
|
|
|
#define SND_QSIZE_SHIFT (10) /* 1k */
|
|
|
|
#define CMP_QUEUE_SZ_1K (1 * 1024)
|
|
#define CMP_QUEUE_SZ_2K (2 * 1024)
|
|
#define CMP_QUEUE_SZ_4K (4 * 1024)
|
|
#define CMP_QUEUE_SZ_8K (8 * 1024)
|
|
#define CMP_QUEUE_SZ_16K (16 * 1024)
|
|
#define CMP_QUEUE_SZ_32K (32 * 1024)
|
|
#define CMP_QUEUE_SZ_64K (64 * 1024)
|
|
#define CMP_QUEUE_SZ_MAX CMP_QUEUE_SZ_64K
|
|
|
|
#define CMP_QSIZE_SHIFT (10) /* 1k */
|
|
|
|
#define NICVF_QSIZE_MIN_VAL (0)
|
|
#define NICVF_QSIZE_MAX_VAL (6)
|
|
|
|
/* Min/Max packet size */
|
|
#define NIC_HW_MIN_FRS (64)
|
|
/* ETH_HLEN+ETH_FCS_LEN+2*VLAN_HLEN */
|
|
#define NIC_HW_L2_OVERHEAD (26)
|
|
#define NIC_HW_MAX_MTU (9190)
|
|
#define NIC_HW_MAX_FRS (NIC_HW_MAX_MTU + NIC_HW_L2_OVERHEAD)
|
|
#define NIC_HW_MAX_SEGS (12)
|
|
|
|
/* Descriptor alignments */
|
|
#define NICVF_RBDR_BASE_ALIGN_BYTES (128) /* 7 bits */
|
|
#define NICVF_CQ_BASE_ALIGN_BYTES (512) /* 9 bits */
|
|
#define NICVF_SQ_BASE_ALIGN_BYTES (128) /* 7 bits */
|
|
|
|
#define NICVF_CQE_RBPTR_WORD (6)
|
|
#define NICVF_CQE_RX2_RBPTR_WORD (7)
|
|
|
|
#define NICVF_STATIC_ASSERT(s) _Static_assert(s, #s)
|
|
#define assert_primary(nic) assert((nic)->sqs_mode == 0)
|
|
|
|
typedef uint64_t nicvf_iova_addr_t;
|
|
|
|
/* vNIC HW Enumerations */
|
|
|
|
enum nic_send_ld_type_e {
|
|
NIC_SEND_LD_TYPE_E_LDD,
|
|
NIC_SEND_LD_TYPE_E_LDT,
|
|
NIC_SEND_LD_TYPE_E_LDWB,
|
|
NIC_SEND_LD_TYPE_E_ENUM_LAST,
|
|
};
|
|
|
|
enum ether_type_algorithm {
|
|
ETYPE_ALG_NONE,
|
|
ETYPE_ALG_SKIP,
|
|
ETYPE_ALG_ENDPARSE,
|
|
ETYPE_ALG_VLAN,
|
|
ETYPE_ALG_VLAN_STRIP,
|
|
};
|
|
|
|
enum layer3_type {
|
|
L3TYPE_NONE,
|
|
L3TYPE_GRH,
|
|
L3TYPE_IPV4 = 0x4,
|
|
L3TYPE_IPV4_OPTIONS = 0x5,
|
|
L3TYPE_IPV6 = 0x6,
|
|
L3TYPE_IPV6_OPTIONS = 0x7,
|
|
L3TYPE_ET_STOP = 0xD,
|
|
L3TYPE_OTHER = 0xE,
|
|
};
|
|
|
|
#define NICVF_L3TYPE_OPTIONS_MASK ((uint8_t)1)
|
|
#define NICVF_L3TYPE_IPVX_MASK ((uint8_t)0x06)
|
|
|
|
enum layer4_type {
|
|
L4TYPE_NONE,
|
|
L4TYPE_IPSEC_ESP,
|
|
L4TYPE_IPFRAG,
|
|
L4TYPE_IPCOMP,
|
|
L4TYPE_TCP,
|
|
L4TYPE_UDP,
|
|
L4TYPE_SCTP,
|
|
L4TYPE_GRE,
|
|
L4TYPE_ROCE_BTH,
|
|
L4TYPE_OTHER = 0xE,
|
|
};
|
|
|
|
/* CPI and RSSI configuration */
|
|
enum cpi_algorithm_type {
|
|
CPI_ALG_NONE,
|
|
CPI_ALG_VLAN,
|
|
CPI_ALG_VLAN16,
|
|
CPI_ALG_DIFF,
|
|
};
|
|
|
|
enum rss_algorithm_type {
|
|
RSS_ALG_NONE,
|
|
RSS_ALG_PORT,
|
|
RSS_ALG_IP,
|
|
RSS_ALG_TCP_IP,
|
|
RSS_ALG_UDP_IP,
|
|
RSS_ALG_SCTP_IP,
|
|
RSS_ALG_GRE_IP,
|
|
RSS_ALG_ROCE,
|
|
};
|
|
|
|
enum rss_hash_cfg {
|
|
RSS_HASH_L2ETC,
|
|
RSS_HASH_IP,
|
|
RSS_HASH_TCP,
|
|
RSS_HASH_TCP_SYN_DIS,
|
|
RSS_HASH_UDP,
|
|
RSS_HASH_L4ETC,
|
|
RSS_HASH_ROCE,
|
|
RSS_L3_BIDI,
|
|
RSS_L4_BIDI,
|
|
};
|
|
|
|
/* Completion queue entry types */
|
|
enum cqe_type {
|
|
CQE_TYPE_INVALID,
|
|
CQE_TYPE_RX = 0x2,
|
|
CQE_TYPE_RX_SPLIT = 0x3,
|
|
CQE_TYPE_RX_TCP = 0x4,
|
|
CQE_TYPE_SEND = 0x8,
|
|
CQE_TYPE_SEND_PTP = 0x9,
|
|
};
|
|
|
|
enum cqe_rx_tcp_status {
|
|
CQE_RX_STATUS_VALID_TCP_CNXT,
|
|
CQE_RX_STATUS_INVALID_TCP_CNXT = 0x0F,
|
|
};
|
|
|
|
enum cqe_send_status {
|
|
CQE_SEND_STATUS_GOOD,
|
|
CQE_SEND_STATUS_DESC_FAULT = 0x01,
|
|
CQE_SEND_STATUS_HDR_CONS_ERR = 0x11,
|
|
CQE_SEND_STATUS_SUBDESC_ERR = 0x12,
|
|
CQE_SEND_STATUS_IMM_SIZE_OFLOW = 0x80,
|
|
CQE_SEND_STATUS_CRC_SEQ_ERR = 0x81,
|
|
CQE_SEND_STATUS_DATA_SEQ_ERR = 0x82,
|
|
CQE_SEND_STATUS_MEM_SEQ_ERR = 0x83,
|
|
CQE_SEND_STATUS_LOCK_VIOL = 0x84,
|
|
CQE_SEND_STATUS_LOCK_UFLOW = 0x85,
|
|
CQE_SEND_STATUS_DATA_FAULT = 0x86,
|
|
CQE_SEND_STATUS_TSTMP_CONFLICT = 0x87,
|
|
CQE_SEND_STATUS_TSTMP_TIMEOUT = 0x88,
|
|
CQE_SEND_STATUS_MEM_FAULT = 0x89,
|
|
CQE_SEND_STATUS_CSUM_OVERLAP = 0x8A,
|
|
CQE_SEND_STATUS_CSUM_OVERFLOW = 0x8B,
|
|
};
|
|
|
|
enum cqe_rx_tcp_end_reason {
|
|
CQE_RX_TCP_END_FIN_FLAG_DET,
|
|
CQE_RX_TCP_END_INVALID_FLAG,
|
|
CQE_RX_TCP_END_TIMEOUT,
|
|
CQE_RX_TCP_END_OUT_OF_SEQ,
|
|
CQE_RX_TCP_END_PKT_ERR,
|
|
CQE_RX_TCP_END_QS_DISABLED = 0x0F,
|
|
};
|
|
|
|
/* Packet protocol level error enumeration */
|
|
enum cqe_rx_err_level {
|
|
CQE_RX_ERRLVL_RE,
|
|
CQE_RX_ERRLVL_L2,
|
|
CQE_RX_ERRLVL_L3,
|
|
CQE_RX_ERRLVL_L4,
|
|
};
|
|
|
|
/* Packet protocol level error type enumeration */
|
|
enum cqe_rx_err_opcode {
|
|
CQE_RX_ERR_RE_NONE,
|
|
CQE_RX_ERR_RE_PARTIAL,
|
|
CQE_RX_ERR_RE_JABBER,
|
|
CQE_RX_ERR_RE_FCS = 0x7,
|
|
CQE_RX_ERR_RE_TERMINATE = 0x9,
|
|
CQE_RX_ERR_RE_RX_CTL = 0xb,
|
|
CQE_RX_ERR_PREL2_ERR = 0x1f,
|
|
CQE_RX_ERR_L2_FRAGMENT = 0x20,
|
|
CQE_RX_ERR_L2_OVERRUN = 0x21,
|
|
CQE_RX_ERR_L2_PFCS = 0x22,
|
|
CQE_RX_ERR_L2_PUNY = 0x23,
|
|
CQE_RX_ERR_L2_MAL = 0x24,
|
|
CQE_RX_ERR_L2_OVERSIZE = 0x25,
|
|
CQE_RX_ERR_L2_UNDERSIZE = 0x26,
|
|
CQE_RX_ERR_L2_LENMISM = 0x27,
|
|
CQE_RX_ERR_L2_PCLP = 0x28,
|
|
CQE_RX_ERR_IP_NOT = 0x41,
|
|
CQE_RX_ERR_IP_CHK = 0x42,
|
|
CQE_RX_ERR_IP_MAL = 0x43,
|
|
CQE_RX_ERR_IP_MALD = 0x44,
|
|
CQE_RX_ERR_IP_HOP = 0x45,
|
|
CQE_RX_ERR_L3_ICRC = 0x46,
|
|
CQE_RX_ERR_L3_PCLP = 0x47,
|
|
CQE_RX_ERR_L4_MAL = 0x61,
|
|
CQE_RX_ERR_L4_CHK = 0x62,
|
|
CQE_RX_ERR_UDP_LEN = 0x63,
|
|
CQE_RX_ERR_L4_PORT = 0x64,
|
|
CQE_RX_ERR_TCP_FLAG = 0x65,
|
|
CQE_RX_ERR_TCP_OFFSET = 0x66,
|
|
CQE_RX_ERR_L4_PCLP = 0x67,
|
|
CQE_RX_ERR_RBDR_TRUNC = 0x70,
|
|
};
|
|
|
|
enum send_l4_csum_type {
|
|
SEND_L4_CSUM_DISABLE,
|
|
SEND_L4_CSUM_UDP,
|
|
SEND_L4_CSUM_TCP,
|
|
};
|
|
|
|
enum send_crc_alg {
|
|
SEND_CRCALG_CRC32,
|
|
SEND_CRCALG_CRC32C,
|
|
SEND_CRCALG_ICRC,
|
|
};
|
|
|
|
enum send_load_type {
|
|
SEND_LD_TYPE_LDD,
|
|
SEND_LD_TYPE_LDT,
|
|
SEND_LD_TYPE_LDWB,
|
|
};
|
|
|
|
enum send_mem_alg_type {
|
|
SEND_MEMALG_SET,
|
|
SEND_MEMALG_ADD = 0x08,
|
|
SEND_MEMALG_SUB = 0x09,
|
|
SEND_MEMALG_ADDLEN = 0x0A,
|
|
SEND_MEMALG_SUBLEN = 0x0B,
|
|
};
|
|
|
|
enum send_mem_dsz_type {
|
|
SEND_MEMDSZ_B64,
|
|
SEND_MEMDSZ_B32,
|
|
SEND_MEMDSZ_B8 = 0x03,
|
|
};
|
|
|
|
enum sq_subdesc_type {
|
|
SQ_DESC_TYPE_INVALID,
|
|
SQ_DESC_TYPE_HEADER,
|
|
SQ_DESC_TYPE_CRC,
|
|
SQ_DESC_TYPE_IMMEDIATE,
|
|
SQ_DESC_TYPE_GATHER,
|
|
SQ_DESC_TYPE_MEMORY,
|
|
};
|
|
|
|
enum l3_type_t {
|
|
L3_NONE,
|
|
L3_IPV4 = 0x04,
|
|
L3_IPV4_OPT = 0x05,
|
|
L3_IPV6 = 0x06,
|
|
L3_IPV6_OPT = 0x07,
|
|
L3_ET_STOP = 0x0D,
|
|
L3_OTHER = 0x0E
|
|
};
|
|
|
|
enum l4_type_t {
|
|
L4_NONE,
|
|
L4_IPSEC_ESP = 0x01,
|
|
L4_IPFRAG = 0x02,
|
|
L4_IPCOMP = 0x03,
|
|
L4_TCP = 0x04,
|
|
L4_UDP_PASS1 = 0x05,
|
|
L4_GRE = 0x07,
|
|
L4_UDP_PASS2 = 0x08,
|
|
L4_UDP_GENEVE = 0x09,
|
|
L4_UDP_VXLAN = 0x0A,
|
|
L4_NVGRE = 0x0C,
|
|
L4_OTHER = 0x0E
|
|
};
|
|
|
|
enum vlan_strip {
|
|
NO_STRIP,
|
|
STRIP_FIRST_VLAN,
|
|
STRIP_SECOND_VLAN,
|
|
STRIP_RESERV,
|
|
};
|
|
|
|
enum rbdr_state {
|
|
RBDR_FIFO_STATE_INACTIVE,
|
|
RBDR_FIFO_STATE_ACTIVE,
|
|
RBDR_FIFO_STATE_RESET,
|
|
RBDR_FIFO_STATE_FAIL,
|
|
};
|
|
|
|
enum rq_cache_allocation {
|
|
RQ_CACHE_ALLOC_OFF,
|
|
RQ_CACHE_ALLOC_ALL,
|
|
RQ_CACHE_ALLOC_FIRST,
|
|
RQ_CACHE_ALLOC_TWO,
|
|
};
|
|
|
|
enum cq_rx_errlvl_e {
|
|
CQ_ERRLVL_MAC,
|
|
CQ_ERRLVL_L2,
|
|
CQ_ERRLVL_L3,
|
|
CQ_ERRLVL_L4,
|
|
};
|
|
|
|
enum cq_rx_errop_e {
|
|
CQ_RX_ERROP_RE_NONE,
|
|
CQ_RX_ERROP_RE_PARTIAL = 0x1,
|
|
CQ_RX_ERROP_RE_JABBER = 0x2,
|
|
CQ_RX_ERROP_RE_FCS = 0x7,
|
|
CQ_RX_ERROP_RE_TERMINATE = 0x9,
|
|
CQ_RX_ERROP_RE_RX_CTL = 0xb,
|
|
CQ_RX_ERROP_PREL2_ERR = 0x1f,
|
|
CQ_RX_ERROP_L2_FRAGMENT = 0x20,
|
|
CQ_RX_ERROP_L2_OVERRUN = 0x21,
|
|
CQ_RX_ERROP_L2_PFCS = 0x22,
|
|
CQ_RX_ERROP_L2_PUNY = 0x23,
|
|
CQ_RX_ERROP_L2_MAL = 0x24,
|
|
CQ_RX_ERROP_L2_OVERSIZE = 0x25,
|
|
CQ_RX_ERROP_L2_UNDERSIZE = 0x26,
|
|
CQ_RX_ERROP_L2_LENMISM = 0x27,
|
|
CQ_RX_ERROP_L2_PCLP = 0x28,
|
|
CQ_RX_ERROP_IP_NOT = 0x41,
|
|
CQ_RX_ERROP_IP_CSUM_ERR = 0x42,
|
|
CQ_RX_ERROP_IP_MAL = 0x43,
|
|
CQ_RX_ERROP_IP_MALD = 0x44,
|
|
CQ_RX_ERROP_IP_HOP = 0x45,
|
|
CQ_RX_ERROP_L3_ICRC = 0x46,
|
|
CQ_RX_ERROP_L3_PCLP = 0x47,
|
|
CQ_RX_ERROP_L4_MAL = 0x61,
|
|
CQ_RX_ERROP_L4_CHK = 0x62,
|
|
CQ_RX_ERROP_UDP_LEN = 0x63,
|
|
CQ_RX_ERROP_L4_PORT = 0x64,
|
|
CQ_RX_ERROP_TCP_FLAG = 0x65,
|
|
CQ_RX_ERROP_TCP_OFFSET = 0x66,
|
|
CQ_RX_ERROP_L4_PCLP = 0x67,
|
|
CQ_RX_ERROP_RBDR_TRUNC = 0x70,
|
|
};
|
|
|
|
enum cq_tx_errop_e {
|
|
CQ_TX_ERROP_GOOD,
|
|
CQ_TX_ERROP_DESC_FAULT = 0x10,
|
|
CQ_TX_ERROP_HDR_CONS_ERR = 0x11,
|
|
CQ_TX_ERROP_SUBDC_ERR = 0x12,
|
|
CQ_TX_ERROP_IMM_SIZE_OFLOW = 0x80,
|
|
CQ_TX_ERROP_DATA_SEQUENCE_ERR = 0x81,
|
|
CQ_TX_ERROP_MEM_SEQUENCE_ERR = 0x82,
|
|
CQ_TX_ERROP_LOCK_VIOL = 0x83,
|
|
CQ_TX_ERROP_DATA_FAULT = 0x84,
|
|
CQ_TX_ERROP_TSTMP_CONFLICT = 0x85,
|
|
CQ_TX_ERROP_TSTMP_TIMEOUT = 0x86,
|
|
CQ_TX_ERROP_MEM_FAULT = 0x87,
|
|
CQ_TX_ERROP_CK_OVERLAP = 0x88,
|
|
CQ_TX_ERROP_CK_OFLOW = 0x89,
|
|
CQ_TX_ERROP_ENUM_LAST = 0x8a,
|
|
};
|
|
|
|
enum rq_sq_stats_reg_offset {
|
|
RQ_SQ_STATS_OCTS,
|
|
RQ_SQ_STATS_PKTS,
|
|
};
|
|
|
|
enum nic_stat_vnic_rx_e {
|
|
RX_OCTS,
|
|
RX_UCAST,
|
|
RX_BCAST,
|
|
RX_MCAST,
|
|
RX_RED,
|
|
RX_RED_OCTS,
|
|
RX_ORUN,
|
|
RX_ORUN_OCTS,
|
|
RX_FCS,
|
|
RX_L2ERR,
|
|
RX_DRP_BCAST,
|
|
RX_DRP_MCAST,
|
|
RX_DRP_L3BCAST,
|
|
RX_DRP_L3MCAST,
|
|
};
|
|
|
|
enum nic_stat_vnic_tx_e {
|
|
TX_OCTS,
|
|
TX_UCAST,
|
|
TX_BCAST,
|
|
TX_MCAST,
|
|
TX_DROP,
|
|
};
|
|
|
|
/* vNIC HW Register structures */
|
|
|
|
typedef union {
|
|
uint64_t u64;
|
|
struct {
|
|
#if NICVF_BYTE_ORDER == NICVF_BIG_ENDIAN
|
|
uint64_t cqe_type:4;
|
|
uint64_t stdn_fault:1;
|
|
uint64_t rsvd0:1;
|
|
uint64_t rq_qs:7;
|
|
uint64_t rq_idx:3;
|
|
uint64_t rsvd1:12;
|
|
uint64_t rss_alg:4;
|
|
uint64_t rsvd2:4;
|
|
uint64_t rb_cnt:4;
|
|
uint64_t vlan_found:1;
|
|
uint64_t vlan_stripped:1;
|
|
uint64_t vlan2_found:1;
|
|
uint64_t vlan2_stripped:1;
|
|
uint64_t l4_type:4;
|
|
uint64_t l3_type:4;
|
|
uint64_t l2_present:1;
|
|
uint64_t err_level:3;
|
|
uint64_t err_opcode:8;
|
|
#else
|
|
uint64_t err_opcode:8;
|
|
uint64_t err_level:3;
|
|
uint64_t l2_present:1;
|
|
uint64_t l3_type:4;
|
|
uint64_t l4_type:4;
|
|
uint64_t vlan2_stripped:1;
|
|
uint64_t vlan2_found:1;
|
|
uint64_t vlan_stripped:1;
|
|
uint64_t vlan_found:1;
|
|
uint64_t rb_cnt:4;
|
|
uint64_t rsvd2:4;
|
|
uint64_t rss_alg:4;
|
|
uint64_t rsvd1:12;
|
|
uint64_t rq_idx:3;
|
|
uint64_t rq_qs:7;
|
|
uint64_t rsvd0:1;
|
|
uint64_t stdn_fault:1;
|
|
uint64_t cqe_type:4;
|
|
#endif
|
|
};
|
|
} cqe_rx_word0_t;
|
|
|
|
typedef union {
|
|
uint64_t u64;
|
|
struct {
|
|
#if NICVF_BYTE_ORDER == NICVF_BIG_ENDIAN
|
|
uint64_t pkt_len:16;
|
|
uint64_t l2_ptr:8;
|
|
uint64_t l3_ptr:8;
|
|
uint64_t l4_ptr:8;
|
|
uint64_t cq_pkt_len:8;
|
|
uint64_t align_pad:3;
|
|
uint64_t rsvd3:1;
|
|
uint64_t chan:12;
|
|
#else
|
|
uint64_t chan:12;
|
|
uint64_t rsvd3:1;
|
|
uint64_t align_pad:3;
|
|
uint64_t cq_pkt_len:8;
|
|
uint64_t l4_ptr:8;
|
|
uint64_t l3_ptr:8;
|
|
uint64_t l2_ptr:8;
|
|
uint64_t pkt_len:16;
|
|
#endif
|
|
};
|
|
} cqe_rx_word1_t;
|
|
|
|
typedef union {
|
|
uint64_t u64;
|
|
struct {
|
|
#if NICVF_BYTE_ORDER == NICVF_BIG_ENDIAN
|
|
uint64_t rss_tag:32;
|
|
uint64_t vlan_tci:16;
|
|
uint64_t vlan_ptr:8;
|
|
uint64_t vlan2_ptr:8;
|
|
#else
|
|
uint64_t vlan2_ptr:8;
|
|
uint64_t vlan_ptr:8;
|
|
uint64_t vlan_tci:16;
|
|
uint64_t rss_tag:32;
|
|
#endif
|
|
};
|
|
} cqe_rx_word2_t;
|
|
|
|
typedef union {
|
|
uint64_t u64;
|
|
struct {
|
|
#if NICVF_BYTE_ORDER == NICVF_BIG_ENDIAN
|
|
uint16_t rb3_sz;
|
|
uint16_t rb2_sz;
|
|
uint16_t rb1_sz;
|
|
uint16_t rb0_sz;
|
|
#else
|
|
uint16_t rb0_sz;
|
|
uint16_t rb1_sz;
|
|
uint16_t rb2_sz;
|
|
uint16_t rb3_sz;
|
|
#endif
|
|
};
|
|
} cqe_rx_word3_t;
|
|
|
|
typedef union {
|
|
uint64_t u64;
|
|
struct {
|
|
#if NICVF_BYTE_ORDER == NICVF_BIG_ENDIAN
|
|
uint16_t rb7_sz;
|
|
uint16_t rb6_sz;
|
|
uint16_t rb5_sz;
|
|
uint16_t rb4_sz;
|
|
#else
|
|
uint16_t rb4_sz;
|
|
uint16_t rb5_sz;
|
|
uint16_t rb6_sz;
|
|
uint16_t rb7_sz;
|
|
#endif
|
|
};
|
|
} cqe_rx_word4_t;
|
|
|
|
typedef union {
|
|
uint64_t u64;
|
|
struct {
|
|
#if NICVF_BYTE_ORDER == NICVF_BIG_ENDIAN
|
|
uint16_t rb11_sz;
|
|
uint16_t rb10_sz;
|
|
uint16_t rb9_sz;
|
|
uint16_t rb8_sz;
|
|
#else
|
|
uint16_t rb8_sz;
|
|
uint16_t rb9_sz;
|
|
uint16_t rb10_sz;
|
|
uint16_t rb11_sz;
|
|
#endif
|
|
};
|
|
} cqe_rx_word5_t;
|
|
|
|
typedef union {
|
|
uint64_t u64;
|
|
struct {
|
|
#if NICVF_BYTE_ORDER == NICVF_BIG_ENDIAN
|
|
uint64_t vlan_found:1;
|
|
uint64_t vlan_stripped:1;
|
|
uint64_t vlan2_found:1;
|
|
uint64_t vlan2_stripped:1;
|
|
uint64_t rsvd2:3;
|
|
uint64_t inner_l2:1;
|
|
uint64_t inner_l4type:4;
|
|
uint64_t inner_l3type:4;
|
|
uint64_t vlan_ptr:8;
|
|
uint64_t vlan2_ptr:8;
|
|
uint64_t rsvd1:8;
|
|
uint64_t rsvd0:8;
|
|
uint64_t inner_l3ptr:8;
|
|
uint64_t inner_l4ptr:8;
|
|
#else
|
|
uint64_t inner_l4ptr:8;
|
|
uint64_t inner_l3ptr:8;
|
|
uint64_t rsvd0:8;
|
|
uint64_t rsvd1:8;
|
|
uint64_t vlan2_ptr:8;
|
|
uint64_t vlan_ptr:8;
|
|
uint64_t inner_l3type:4;
|
|
uint64_t inner_l4type:4;
|
|
uint64_t inner_l2:1;
|
|
uint64_t rsvd2:3;
|
|
uint64_t vlan2_stripped:1;
|
|
uint64_t vlan2_found:1;
|
|
uint64_t vlan_stripped:1;
|
|
uint64_t vlan_found:1;
|
|
#endif
|
|
};
|
|
} cqe_rx2_word6_t;
|
|
|
|
struct cqe_rx_t {
|
|
cqe_rx_word0_t word0;
|
|
cqe_rx_word1_t word1;
|
|
cqe_rx_word2_t word2;
|
|
cqe_rx_word3_t word3;
|
|
cqe_rx_word4_t word4;
|
|
cqe_rx_word5_t word5;
|
|
cqe_rx2_word6_t word6; /* if NIC_PF_RX_CFG[CQE_RX2_ENA] set */
|
|
};
|
|
|
|
struct cqe_rx_tcp_err_t {
|
|
#if NICVF_BYTE_ORDER == NICVF_BIG_ENDIAN
|
|
uint64_t cqe_type:4; /* W0 */
|
|
uint64_t rsvd0:60;
|
|
|
|
uint64_t rsvd1:4; /* W1 */
|
|
uint64_t partial_first:1;
|
|
uint64_t rsvd2:27;
|
|
uint64_t rbdr_bytes:8;
|
|
uint64_t rsvd3:24;
|
|
#else
|
|
uint64_t rsvd0:60;
|
|
uint64_t cqe_type:4;
|
|
|
|
uint64_t rsvd3:24;
|
|
uint64_t rbdr_bytes:8;
|
|
uint64_t rsvd2:27;
|
|
uint64_t partial_first:1;
|
|
uint64_t rsvd1:4;
|
|
#endif
|
|
};
|
|
|
|
struct cqe_rx_tcp_t {
|
|
#if NICVF_BYTE_ORDER == NICVF_BIG_ENDIAN
|
|
uint64_t cqe_type:4; /* W0 */
|
|
uint64_t rsvd0:52;
|
|
uint64_t cq_tcp_status:8;
|
|
|
|
uint64_t rsvd1:32; /* W1 */
|
|
uint64_t tcp_cntx_bytes:8;
|
|
uint64_t rsvd2:8;
|
|
uint64_t tcp_err_bytes:16;
|
|
#else
|
|
uint64_t cq_tcp_status:8;
|
|
uint64_t rsvd0:52;
|
|
uint64_t cqe_type:4; /* W0 */
|
|
|
|
uint64_t tcp_err_bytes:16;
|
|
uint64_t rsvd2:8;
|
|
uint64_t tcp_cntx_bytes:8;
|
|
uint64_t rsvd1:32; /* W1 */
|
|
#endif
|
|
};
|
|
|
|
struct cqe_send_t {
|
|
#if NICVF_BYTE_ORDER == NICVF_BIG_ENDIAN
|
|
uint64_t cqe_type:4; /* W0 */
|
|
uint64_t rsvd0:4;
|
|
uint64_t sqe_ptr:16;
|
|
uint64_t rsvd1:4;
|
|
uint64_t rsvd2:10;
|
|
uint64_t sq_qs:7;
|
|
uint64_t sq_idx:3;
|
|
uint64_t rsvd3:8;
|
|
uint64_t send_status:8;
|
|
|
|
uint64_t ptp_timestamp:64; /* W1 */
|
|
#elif NICVF_BYTE_ORDER == NICVF_LITTLE_ENDIAN
|
|
uint64_t send_status:8;
|
|
uint64_t rsvd3:8;
|
|
uint64_t sq_idx:3;
|
|
uint64_t sq_qs:7;
|
|
uint64_t rsvd2:10;
|
|
uint64_t rsvd1:4;
|
|
uint64_t sqe_ptr:16;
|
|
uint64_t rsvd0:4;
|
|
uint64_t cqe_type:4; /* W0 */
|
|
|
|
uint64_t ptp_timestamp:64;
|
|
#endif
|
|
};
|
|
|
|
struct cq_entry_type_t {
|
|
#if NICVF_BYTE_ORDER == NICVF_BIG_ENDIAN
|
|
uint64_t cqe_type:4;
|
|
uint64_t __pad:60;
|
|
#else
|
|
uint64_t __pad:60;
|
|
uint64_t cqe_type:4;
|
|
#endif
|
|
};
|
|
|
|
union cq_entry_t {
|
|
uint64_t u[64];
|
|
struct cq_entry_type_t type;
|
|
struct cqe_rx_t rx_hdr;
|
|
struct cqe_rx_tcp_t rx_tcp_hdr;
|
|
struct cqe_rx_tcp_err_t rx_tcp_err_hdr;
|
|
struct cqe_send_t cqe_send;
|
|
};
|
|
|
|
NICVF_STATIC_ASSERT(sizeof(union cq_entry_t) == 512);
|
|
|
|
struct rbdr_entry_t {
|
|
#if NICVF_BYTE_ORDER == NICVF_BIG_ENDIAN
|
|
union {
|
|
struct {
|
|
uint64_t rsvd0:15;
|
|
uint64_t buf_addr:42;
|
|
uint64_t cache_align:7;
|
|
};
|
|
nicvf_iova_addr_t full_addr;
|
|
};
|
|
#else
|
|
union {
|
|
struct {
|
|
uint64_t cache_align:7;
|
|
uint64_t buf_addr:42;
|
|
uint64_t rsvd0:15;
|
|
};
|
|
nicvf_iova_addr_t full_addr;
|
|
};
|
|
#endif
|
|
};
|
|
|
|
NICVF_STATIC_ASSERT(sizeof(struct rbdr_entry_t) == sizeof(uint64_t));
|
|
|
|
/* TCP reassembly context */
|
|
struct rbe_tcp_cnxt_t {
|
|
#if NICVF_BYTE_ORDER == NICVF_BIG_ENDIAN
|
|
uint64_t tcp_pkt_cnt:12;
|
|
uint64_t rsvd1:4;
|
|
uint64_t align_hdr_bytes:4;
|
|
uint64_t align_ptr_bytes:4;
|
|
uint64_t ptr_bytes:16;
|
|
uint64_t rsvd2:24;
|
|
uint64_t cqe_type:4;
|
|
uint64_t rsvd0:54;
|
|
uint64_t tcp_end_reason:2;
|
|
uint64_t tcp_status:4;
|
|
#else
|
|
uint64_t tcp_status:4;
|
|
uint64_t tcp_end_reason:2;
|
|
uint64_t rsvd0:54;
|
|
uint64_t cqe_type:4;
|
|
uint64_t rsvd2:24;
|
|
uint64_t ptr_bytes:16;
|
|
uint64_t align_ptr_bytes:4;
|
|
uint64_t align_hdr_bytes:4;
|
|
uint64_t rsvd1:4;
|
|
uint64_t tcp_pkt_cnt:12;
|
|
#endif
|
|
};
|
|
|
|
/* Always Big endian */
|
|
struct rx_hdr_t {
|
|
uint64_t opaque:32;
|
|
uint64_t rss_flow:8;
|
|
uint64_t skip_length:6;
|
|
uint64_t disable_rss:1;
|
|
uint64_t disable_tcp_reassembly:1;
|
|
uint64_t nodrop:1;
|
|
uint64_t dest_alg:2;
|
|
uint64_t rsvd0:2;
|
|
uint64_t dest_rq:11;
|
|
};
|
|
|
|
struct sq_crc_subdesc {
|
|
#if NICVF_BYTE_ORDER == NICVF_BIG_ENDIAN
|
|
uint64_t rsvd1:32;
|
|
uint64_t crc_ival:32;
|
|
uint64_t subdesc_type:4;
|
|
uint64_t crc_alg:2;
|
|
uint64_t rsvd0:10;
|
|
uint64_t crc_insert_pos:16;
|
|
uint64_t hdr_start:16;
|
|
uint64_t crc_len:16;
|
|
#else
|
|
uint64_t crc_len:16;
|
|
uint64_t hdr_start:16;
|
|
uint64_t crc_insert_pos:16;
|
|
uint64_t rsvd0:10;
|
|
uint64_t crc_alg:2;
|
|
uint64_t subdesc_type:4;
|
|
uint64_t crc_ival:32;
|
|
uint64_t rsvd1:32;
|
|
#endif
|
|
};
|
|
|
|
struct sq_gather_subdesc {
|
|
#if NICVF_BYTE_ORDER == NICVF_BIG_ENDIAN
|
|
uint64_t subdesc_type:4; /* W0 */
|
|
uint64_t ld_type:2;
|
|
uint64_t rsvd0:42;
|
|
uint64_t size:16;
|
|
|
|
uint64_t rsvd1:15; /* W1 */
|
|
uint64_t addr:49;
|
|
#else
|
|
uint64_t size:16;
|
|
uint64_t rsvd0:42;
|
|
uint64_t ld_type:2;
|
|
uint64_t subdesc_type:4; /* W0 */
|
|
|
|
uint64_t addr:49;
|
|
uint64_t rsvd1:15; /* W1 */
|
|
#endif
|
|
};
|
|
|
|
/* SQ immediate subdescriptor */
|
|
struct sq_imm_subdesc {
|
|
#if NICVF_BYTE_ORDER == NICVF_BIG_ENDIAN
|
|
uint64_t subdesc_type:4; /* W0 */
|
|
uint64_t rsvd0:46;
|
|
uint64_t len:14;
|
|
|
|
uint64_t data:64; /* W1 */
|
|
#else
|
|
uint64_t len:14;
|
|
uint64_t rsvd0:46;
|
|
uint64_t subdesc_type:4; /* W0 */
|
|
|
|
uint64_t data:64; /* W1 */
|
|
#endif
|
|
};
|
|
|
|
struct sq_mem_subdesc {
|
|
#if NICVF_BYTE_ORDER == NICVF_BIG_ENDIAN
|
|
uint64_t subdesc_type:4; /* W0 */
|
|
uint64_t mem_alg:4;
|
|
uint64_t mem_dsz:2;
|
|
uint64_t wmem:1;
|
|
uint64_t rsvd0:21;
|
|
uint64_t offset:32;
|
|
|
|
uint64_t rsvd1:15; /* W1 */
|
|
uint64_t addr:49;
|
|
#else
|
|
uint64_t offset:32;
|
|
uint64_t rsvd0:21;
|
|
uint64_t wmem:1;
|
|
uint64_t mem_dsz:2;
|
|
uint64_t mem_alg:4;
|
|
uint64_t subdesc_type:4; /* W0 */
|
|
|
|
uint64_t addr:49;
|
|
uint64_t rsvd1:15; /* W1 */
|
|
#endif
|
|
};
|
|
|
|
struct sq_hdr_subdesc {
|
|
#if NICVF_BYTE_ORDER == NICVF_BIG_ENDIAN
|
|
uint64_t subdesc_type:4;
|
|
uint64_t tso:1;
|
|
uint64_t post_cqe:1; /* Post CQE on no error also */
|
|
uint64_t dont_send:1;
|
|
uint64_t tstmp:1;
|
|
uint64_t subdesc_cnt:8;
|
|
uint64_t csum_l4:2;
|
|
uint64_t csum_l3:1;
|
|
uint64_t csum_inner_l4:2;
|
|
uint64_t csum_inner_l3:1;
|
|
uint64_t rsvd0:2;
|
|
uint64_t l4_offset:8;
|
|
uint64_t l3_offset:8;
|
|
uint64_t rsvd1:4;
|
|
uint64_t tot_len:20; /* W0 */
|
|
|
|
uint64_t rsvd2:24;
|
|
uint64_t inner_l4_offset:8;
|
|
uint64_t inner_l3_offset:8;
|
|
uint64_t tso_start:8;
|
|
uint64_t rsvd3:2;
|
|
uint64_t tso_max_paysize:14; /* W1 */
|
|
#else
|
|
uint64_t tot_len:20;
|
|
uint64_t rsvd1:4;
|
|
uint64_t l3_offset:8;
|
|
uint64_t l4_offset:8;
|
|
uint64_t rsvd0:2;
|
|
uint64_t csum_inner_l3:1;
|
|
uint64_t csum_inner_l4:2;
|
|
uint64_t csum_l3:1;
|
|
uint64_t csum_l4:2;
|
|
uint64_t subdesc_cnt:8;
|
|
uint64_t tstmp:1;
|
|
uint64_t dont_send:1;
|
|
uint64_t post_cqe:1; /* Post CQE on no error also */
|
|
uint64_t tso:1;
|
|
uint64_t subdesc_type:4; /* W0 */
|
|
|
|
uint64_t tso_max_paysize:14;
|
|
uint64_t rsvd3:2;
|
|
uint64_t tso_start:8;
|
|
uint64_t inner_l3_offset:8;
|
|
uint64_t inner_l4_offset:8;
|
|
uint64_t rsvd2:24; /* W1 */
|
|
#endif
|
|
};
|
|
|
|
/* Each sq entry is 128 bits wide */
|
|
union sq_entry_t {
|
|
uint64_t buff[2];
|
|
struct sq_hdr_subdesc hdr;
|
|
struct sq_imm_subdesc imm;
|
|
struct sq_gather_subdesc gather;
|
|
struct sq_crc_subdesc crc;
|
|
struct sq_mem_subdesc mem;
|
|
};
|
|
|
|
NICVF_STATIC_ASSERT(sizeof(union sq_entry_t) == 16);
|
|
|
|
/* Queue config register formats */
|
|
struct rq_cfg { union { struct {
|
|
#if NICVF_BYTE_ORDER == NICVF_BIG_ENDIAN
|
|
uint64_t reserved_2_63:62;
|
|
uint64_t ena:1;
|
|
uint64_t reserved_0:1;
|
|
#else
|
|
uint64_t reserved_0:1;
|
|
uint64_t ena:1;
|
|
uint64_t reserved_2_63:62;
|
|
#endif
|
|
};
|
|
uint64_t value;
|
|
}; };
|
|
|
|
struct cq_cfg { union { struct {
|
|
#if NICVF_BYTE_ORDER == NICVF_BIG_ENDIAN
|
|
uint64_t reserved_43_63:21;
|
|
uint64_t ena:1;
|
|
uint64_t reset:1;
|
|
uint64_t caching:1;
|
|
uint64_t reserved_35_39:5;
|
|
uint64_t qsize:3;
|
|
uint64_t reserved_25_31:7;
|
|
uint64_t avg_con:9;
|
|
uint64_t reserved_0_15:16;
|
|
#else
|
|
uint64_t reserved_0_15:16;
|
|
uint64_t avg_con:9;
|
|
uint64_t reserved_25_31:7;
|
|
uint64_t qsize:3;
|
|
uint64_t reserved_35_39:5;
|
|
uint64_t caching:1;
|
|
uint64_t reset:1;
|
|
uint64_t ena:1;
|
|
uint64_t reserved_43_63:21;
|
|
#endif
|
|
};
|
|
uint64_t value;
|
|
}; };
|
|
|
|
struct sq_cfg { union { struct {
|
|
#if NICVF_BYTE_ORDER == NICVF_BIG_ENDIAN
|
|
uint64_t reserved_32_63:32;
|
|
uint64_t cq_limit:8;
|
|
uint64_t ena:1;
|
|
uint64_t reserved_18_18:1;
|
|
uint64_t reset:1;
|
|
uint64_t ldwb:1;
|
|
uint64_t reserved_11_15:5;
|
|
uint64_t qsize:3;
|
|
uint64_t reserved_3_7:5;
|
|
uint64_t tstmp_bgx_intf:3;
|
|
#else
|
|
uint64_t tstmp_bgx_intf:3;
|
|
uint64_t reserved_3_7:5;
|
|
uint64_t qsize:3;
|
|
uint64_t reserved_11_15:5;
|
|
uint64_t ldwb:1;
|
|
uint64_t reset:1;
|
|
uint64_t reserved_18_18:1;
|
|
uint64_t ena:1;
|
|
uint64_t cq_limit:8;
|
|
uint64_t reserved_32_63:32;
|
|
#endif
|
|
};
|
|
uint64_t value;
|
|
}; };
|
|
|
|
struct rbdr_cfg { union { struct {
|
|
#if NICVF_BYTE_ORDER == NICVF_BIG_ENDIAN
|
|
uint64_t reserved_45_63:19;
|
|
uint64_t ena:1;
|
|
uint64_t reset:1;
|
|
uint64_t ldwb:1;
|
|
uint64_t reserved_36_41:6;
|
|
uint64_t qsize:4;
|
|
uint64_t reserved_25_31:7;
|
|
uint64_t avg_con:9;
|
|
uint64_t reserved_12_15:4;
|
|
uint64_t lines:12;
|
|
#else
|
|
uint64_t lines:12;
|
|
uint64_t reserved_12_15:4;
|
|
uint64_t avg_con:9;
|
|
uint64_t reserved_25_31:7;
|
|
uint64_t qsize:4;
|
|
uint64_t reserved_36_41:6;
|
|
uint64_t ldwb:1;
|
|
uint64_t reset:1;
|
|
uint64_t ena: 1;
|
|
uint64_t reserved_45_63:19;
|
|
#endif
|
|
};
|
|
uint64_t value;
|
|
}; };
|
|
|
|
struct pf_qs_cfg { union { struct {
|
|
#if NICVF_BYTE_ORDER == NICVF_BIG_ENDIAN
|
|
uint64_t reserved_32_63:32;
|
|
uint64_t ena:1;
|
|
uint64_t reserved_27_30:4;
|
|
uint64_t sq_ins_ena:1;
|
|
uint64_t sq_ins_pos:6;
|
|
uint64_t lock_ena:1;
|
|
uint64_t lock_viol_cqe_ena:1;
|
|
uint64_t send_tstmp_ena:1;
|
|
uint64_t be:1;
|
|
uint64_t reserved_7_15:9;
|
|
uint64_t vnic:7;
|
|
#else
|
|
uint64_t vnic:7;
|
|
uint64_t reserved_7_15:9;
|
|
uint64_t be:1;
|
|
uint64_t send_tstmp_ena:1;
|
|
uint64_t lock_viol_cqe_ena:1;
|
|
uint64_t lock_ena:1;
|
|
uint64_t sq_ins_pos:6;
|
|
uint64_t sq_ins_ena:1;
|
|
uint64_t reserved_27_30:4;
|
|
uint64_t ena:1;
|
|
uint64_t reserved_32_63:32;
|
|
#endif
|
|
};
|
|
uint64_t value;
|
|
}; };
|
|
|
|
struct pf_rq_cfg { union { struct {
|
|
#if NICVF_BYTE_ORDER == NICVF_BIG_ENDIAN
|
|
uint64_t reserved1:1;
|
|
uint64_t reserved0:34;
|
|
uint64_t strip_pre_l2:1;
|
|
uint64_t caching:2;
|
|
uint64_t cq_qs:7;
|
|
uint64_t cq_idx:3;
|
|
uint64_t rbdr_cont_qs:7;
|
|
uint64_t rbdr_cont_idx:1;
|
|
uint64_t rbdr_strt_qs:7;
|
|
uint64_t rbdr_strt_idx:1;
|
|
#else
|
|
uint64_t rbdr_strt_idx:1;
|
|
uint64_t rbdr_strt_qs:7;
|
|
uint64_t rbdr_cont_idx:1;
|
|
uint64_t rbdr_cont_qs:7;
|
|
uint64_t cq_idx:3;
|
|
uint64_t cq_qs:7;
|
|
uint64_t caching:2;
|
|
uint64_t strip_pre_l2:1;
|
|
uint64_t reserved0:34;
|
|
uint64_t reserved1:1;
|
|
#endif
|
|
};
|
|
uint64_t value;
|
|
}; };
|
|
|
|
struct pf_rq_drop_cfg { union { struct {
|
|
#if NICVF_BYTE_ORDER == NICVF_BIG_ENDIAN
|
|
uint64_t rbdr_red:1;
|
|
uint64_t cq_red:1;
|
|
uint64_t reserved3:14;
|
|
uint64_t rbdr_pass:8;
|
|
uint64_t rbdr_drop:8;
|
|
uint64_t reserved2:8;
|
|
uint64_t cq_pass:8;
|
|
uint64_t cq_drop:8;
|
|
uint64_t reserved1:8;
|
|
#else
|
|
uint64_t reserved1:8;
|
|
uint64_t cq_drop:8;
|
|
uint64_t cq_pass:8;
|
|
uint64_t reserved2:8;
|
|
uint64_t rbdr_drop:8;
|
|
uint64_t rbdr_pass:8;
|
|
uint64_t reserved3:14;
|
|
uint64_t cq_red:1;
|
|
uint64_t rbdr_red:1;
|
|
#endif
|
|
};
|
|
uint64_t value;
|
|
}; };
|
|
|
|
#endif /* _THUNDERX_NICVF_HW_DEFS_H */
|