From: Timothy McDaniel <timothy.mcdaniel@intel.com>
Cc: dev@dpdk.org, erik.g.carrillo@intel.com,
harry.van.haaren@intel.com, jerinj@marvell.com,
thomas@monjalon.net
Subject: [dpdk-dev] [PATCH v4 01/27] event/dlb2: minor code cleanup
Date: Wed, 14 Apr 2021 20:48:53 -0500 [thread overview]
Message-ID: <1618451359-20693-2-git-send-email-timothy.mcdaniel@intel.com> (raw)
In-Reply-To: <1618451359-20693-1-git-send-email-timothy.mcdaniel@intel.com>
1) Remove references to FPGA.
2) Do not include dlb2_mbox.h, it is not needed.
3) Remove duplicate macros/defines that were
present in both dlb2_priv.h and dlb2_hw_types.h.
Update dlb2_resource.c to include dlb2_priv.h
so that it picks up the macros/defines that
have now been consolidated.
Signed-off-by: Timothy McDaniel <timothy.mcdaniel@intel.com>
---
drivers/event/dlb2/pf/base/dlb2_hw_types.h | 46 +-
drivers/event/dlb2/pf/base/dlb2_mbox.h | 596 ---------------------
drivers/event/dlb2/pf/base/dlb2_resource.c | 1 -
3 files changed, 2 insertions(+), 641 deletions(-)
delete mode 100644 drivers/event/dlb2/pf/base/dlb2_mbox.h
diff --git a/drivers/event/dlb2/pf/base/dlb2_hw_types.h b/drivers/event/dlb2/pf/base/dlb2_hw_types.h
index 1d99f1e01..c7cd41f8b 100644
--- a/drivers/event/dlb2/pf/base/dlb2_hw_types.h
+++ b/drivers/event/dlb2/pf/base/dlb2_hw_types.h
@@ -5,55 +5,25 @@
#ifndef __DLB2_HW_TYPES_H
#define __DLB2_HW_TYPES_H
+#include "../../dlb2_priv.h"
#include "dlb2_user.h"
#include "dlb2_osdep_list.h"
#include "dlb2_osdep_types.h"
#define DLB2_MAX_NUM_VDEVS 16
-#define DLB2_MAX_NUM_DOMAINS 32
-#define DLB2_MAX_NUM_LDB_QUEUES 32 /* LDB == load-balanced */
-#define DLB2_MAX_NUM_DIR_QUEUES 64 /* DIR == directed */
-#define DLB2_MAX_NUM_LDB_PORTS 64
-#define DLB2_MAX_NUM_DIR_PORTS 64
-#define DLB2_MAX_NUM_LDB_CREDITS (8 * 1024)
-#define DLB2_MAX_NUM_DIR_CREDITS (2 * 1024)
-#define DLB2_MAX_NUM_HIST_LIST_ENTRIES 2048
#define DLB2_MAX_NUM_AQED_ENTRIES 2048
-#define DLB2_MAX_NUM_QIDS_PER_LDB_CQ 8
#define DLB2_MAX_NUM_SEQUENCE_NUMBER_GROUPS 2
#define DLB2_MAX_NUM_SEQUENCE_NUMBER_MODES 5
-#define DLB2_QID_PRIORITIES 8
+
#define DLB2_NUM_ARB_WEIGHTS 8
#define DLB2_MAX_WEIGHT 255
#define DLB2_NUM_COS_DOMAINS 4
#define DLB2_MAX_CQ_COMP_CHECK_LOOPS 409600
#define DLB2_MAX_QID_EMPTY_CHECK_LOOPS (32 * 64 * 1024 * (800 / 30))
-#ifdef FPGA
-#define DLB2_HZ 2000000
-#else
-#define DLB2_HZ 800000000
-#endif
-
#define PCI_DEVICE_ID_INTEL_DLB2_PF 0x2710
#define PCI_DEVICE_ID_INTEL_DLB2_VF 0x2711
-/* Interrupt related macros */
-#define DLB2_PF_NUM_NON_CQ_INTERRUPT_VECTORS 1
-#define DLB2_PF_NUM_CQ_INTERRUPT_VECTORS 64
-#define DLB2_PF_TOTAL_NUM_INTERRUPT_VECTORS \
- (DLB2_PF_NUM_NON_CQ_INTERRUPT_VECTORS + \
- DLB2_PF_NUM_CQ_INTERRUPT_VECTORS)
-#define DLB2_PF_NUM_COMPRESSED_MODE_VECTORS \
- (DLB2_PF_NUM_NON_CQ_INTERRUPT_VECTORS + 1)
-#define DLB2_PF_NUM_PACKED_MODE_VECTORS \
- DLB2_PF_TOTAL_NUM_INTERRUPT_VECTORS
-#define DLB2_PF_COMPRESSED_MODE_CQ_VECTOR_ID \
- DLB2_PF_NUM_NON_CQ_INTERRUPT_VECTORS
-
-/* DLB non-CQ interrupts (alarm, mailbox, WDT) */
-#define DLB2_INT_NON_CQ 0
-
#define DLB2_ALARM_HW_SOURCE_SYS 0
#define DLB2_ALARM_HW_SOURCE_DLB 1
@@ -65,18 +35,6 @@
#define DLB2_ALARM_HW_CHP_AID_ILLEGAL_ENQ 1
#define DLB2_ALARM_HW_CHP_AID_EXCESS_TOKEN_POPS 2
-#define DLB2_VF_NUM_NON_CQ_INTERRUPT_VECTORS 1
-#define DLB2_VF_NUM_CQ_INTERRUPT_VECTORS 31
-#define DLB2_VF_BASE_CQ_VECTOR_ID 0
-#define DLB2_VF_LAST_CQ_VECTOR_ID 30
-#define DLB2_VF_MBOX_VECTOR_ID 31
-#define DLB2_VF_TOTAL_NUM_INTERRUPT_VECTORS \
- (DLB2_VF_NUM_NON_CQ_INTERRUPT_VECTORS + \
- DLB2_VF_NUM_CQ_INTERRUPT_VECTORS)
-
-#define DLB2_VDEV_MAX_NUM_INTERRUPT_VECTORS (DLB2_MAX_NUM_LDB_PORTS + \
- DLB2_MAX_NUM_DIR_PORTS + 1)
-
/*
* Hardware-defined base addresses. Those prefixed 'DLB2_DRV' are only used by
* the PF driver.
diff --git a/drivers/event/dlb2/pf/base/dlb2_mbox.h b/drivers/event/dlb2/pf/base/dlb2_mbox.h
deleted file mode 100644
index ce462c089..000000000
--- a/drivers/event/dlb2/pf/base/dlb2_mbox.h
+++ /dev/null
@@ -1,596 +0,0 @@
-/* SPDX-License-Identifier: BSD-3-Clause
- * Copyright(c) 2016-2020 Intel Corporation
- */
-
-#ifndef __DLB2_BASE_DLB2_MBOX_H
-#define __DLB2_BASE_DLB2_MBOX_H
-
-#include "dlb2_osdep_types.h"
-#include "dlb2_regs.h"
-
-#define DLB2_MBOX_INTERFACE_VERSION 1
-
-/*
- * The PF uses its PF->VF mailbox to send responses to VF requests, as well as
- * to send requests of its own (e.g. notifying a VF of an impending FLR).
- * To avoid communication race conditions, e.g. the PF sends a response and then
- * sends a request before the VF reads the response, the PF->VF mailbox is
- * divided into two sections:
- * - Bytes 0-47: PF responses
- * - Bytes 48-63: PF requests
- *
- * Partitioning the PF->VF mailbox allows responses and requests to occupy the
- * mailbox simultaneously.
- */
-#define DLB2_PF2VF_RESP_BYTES 48
-#define DLB2_PF2VF_RESP_BASE 0
-#define DLB2_PF2VF_RESP_BASE_WORD (DLB2_PF2VF_RESP_BASE / 4)
-
-#define DLB2_PF2VF_REQ_BYTES 16
-#define DLB2_PF2VF_REQ_BASE (DLB2_PF2VF_RESP_BASE + DLB2_PF2VF_RESP_BYTES)
-#define DLB2_PF2VF_REQ_BASE_WORD (DLB2_PF2VF_REQ_BASE / 4)
-
-/*
- * Similarly, the VF->PF mailbox is divided into two sections:
- * - Bytes 0-239: VF requests
- * -- (Bytes 0-3 are unused due to a hardware errata)
- * - Bytes 240-255: VF responses
- */
-#define DLB2_VF2PF_REQ_BYTES 236
-#define DLB2_VF2PF_REQ_BASE 4
-#define DLB2_VF2PF_REQ_BASE_WORD (DLB2_VF2PF_REQ_BASE / 4)
-
-#define DLB2_VF2PF_RESP_BYTES 16
-#define DLB2_VF2PF_RESP_BASE (DLB2_VF2PF_REQ_BASE + DLB2_VF2PF_REQ_BYTES)
-#define DLB2_VF2PF_RESP_BASE_WORD (DLB2_VF2PF_RESP_BASE / 4)
-
-/* VF-initiated commands */
-enum dlb2_mbox_cmd_type {
- DLB2_MBOX_CMD_REGISTER,
- DLB2_MBOX_CMD_UNREGISTER,
- DLB2_MBOX_CMD_GET_NUM_RESOURCES,
- DLB2_MBOX_CMD_CREATE_SCHED_DOMAIN,
- DLB2_MBOX_CMD_RESET_SCHED_DOMAIN,
- DLB2_MBOX_CMD_CREATE_LDB_QUEUE,
- DLB2_MBOX_CMD_CREATE_DIR_QUEUE,
- DLB2_MBOX_CMD_CREATE_LDB_PORT,
- DLB2_MBOX_CMD_CREATE_DIR_PORT,
- DLB2_MBOX_CMD_ENABLE_LDB_PORT,
- DLB2_MBOX_CMD_DISABLE_LDB_PORT,
- DLB2_MBOX_CMD_ENABLE_DIR_PORT,
- DLB2_MBOX_CMD_DISABLE_DIR_PORT,
- DLB2_MBOX_CMD_LDB_PORT_OWNED_BY_DOMAIN,
- DLB2_MBOX_CMD_DIR_PORT_OWNED_BY_DOMAIN,
- DLB2_MBOX_CMD_MAP_QID,
- DLB2_MBOX_CMD_UNMAP_QID,
- DLB2_MBOX_CMD_START_DOMAIN,
- DLB2_MBOX_CMD_ENABLE_LDB_PORT_INTR,
- DLB2_MBOX_CMD_ENABLE_DIR_PORT_INTR,
- DLB2_MBOX_CMD_ARM_CQ_INTR,
- DLB2_MBOX_CMD_GET_NUM_USED_RESOURCES,
- DLB2_MBOX_CMD_GET_SN_ALLOCATION,
- DLB2_MBOX_CMD_GET_LDB_QUEUE_DEPTH,
- DLB2_MBOX_CMD_GET_DIR_QUEUE_DEPTH,
- DLB2_MBOX_CMD_PENDING_PORT_UNMAPS,
- DLB2_MBOX_CMD_GET_COS_BW,
- DLB2_MBOX_CMD_GET_SN_OCCUPANCY,
- DLB2_MBOX_CMD_QUERY_CQ_POLL_MODE,
-
- /* NUM_QE_CMD_TYPES must be last */
- NUM_DLB2_MBOX_CMD_TYPES,
-};
-
-static const char dlb2_mbox_cmd_type_strings[][128] = {
- "DLB2_MBOX_CMD_REGISTER",
- "DLB2_MBOX_CMD_UNREGISTER",
- "DLB2_MBOX_CMD_GET_NUM_RESOURCES",
- "DLB2_MBOX_CMD_CREATE_SCHED_DOMAIN",
- "DLB2_MBOX_CMD_RESET_SCHED_DOMAIN",
- "DLB2_MBOX_CMD_CREATE_LDB_QUEUE",
- "DLB2_MBOX_CMD_CREATE_DIR_QUEUE",
- "DLB2_MBOX_CMD_CREATE_LDB_PORT",
- "DLB2_MBOX_CMD_CREATE_DIR_PORT",
- "DLB2_MBOX_CMD_ENABLE_LDB_PORT",
- "DLB2_MBOX_CMD_DISABLE_LDB_PORT",
- "DLB2_MBOX_CMD_ENABLE_DIR_PORT",
- "DLB2_MBOX_CMD_DISABLE_DIR_PORT",
- "DLB2_MBOX_CMD_LDB_PORT_OWNED_BY_DOMAIN",
- "DLB2_MBOX_CMD_DIR_PORT_OWNED_BY_DOMAIN",
- "DLB2_MBOX_CMD_MAP_QID",
- "DLB2_MBOX_CMD_UNMAP_QID",
- "DLB2_MBOX_CMD_START_DOMAIN",
- "DLB2_MBOX_CMD_ENABLE_LDB_PORT_INTR",
- "DLB2_MBOX_CMD_ENABLE_DIR_PORT_INTR",
- "DLB2_MBOX_CMD_ARM_CQ_INTR",
- "DLB2_MBOX_CMD_GET_NUM_USED_RESOURCES",
- "DLB2_MBOX_CMD_GET_SN_ALLOCATION",
- "DLB2_MBOX_CMD_GET_LDB_QUEUE_DEPTH",
- "DLB2_MBOX_CMD_GET_DIR_QUEUE_DEPTH",
- "DLB2_MBOX_CMD_PENDING_PORT_UNMAPS",
- "DLB2_MBOX_CMD_GET_COS_BW",
- "DLB2_MBOX_CMD_GET_SN_OCCUPANCY",
- "DLB2_MBOX_CMD_QUERY_CQ_POLL_MODE",
-};
-
-/* PF-initiated commands */
-enum dlb2_mbox_vf_cmd_type {
- DLB2_MBOX_VF_CMD_DOMAIN_ALERT,
- DLB2_MBOX_VF_CMD_NOTIFICATION,
- DLB2_MBOX_VF_CMD_IN_USE,
-
- /* NUM_DLB2_MBOX_VF_CMD_TYPES must be last */
- NUM_DLB2_MBOX_VF_CMD_TYPES,
-};
-
-static const char dlb2_mbox_vf_cmd_type_strings[][128] = {
- "DLB2_MBOX_VF_CMD_DOMAIN_ALERT",
- "DLB2_MBOX_VF_CMD_NOTIFICATION",
- "DLB2_MBOX_VF_CMD_IN_USE",
-};
-
-#define DLB2_MBOX_CMD_TYPE(hdr) \
- (((struct dlb2_mbox_req_hdr *)hdr)->type)
-#define DLB2_MBOX_CMD_STRING(hdr) \
- dlb2_mbox_cmd_type_strings[DLB2_MBOX_CMD_TYPE(hdr)]
-
-enum dlb2_mbox_status_type {
- DLB2_MBOX_ST_SUCCESS,
- DLB2_MBOX_ST_INVALID_CMD_TYPE,
- DLB2_MBOX_ST_VERSION_MISMATCH,
- DLB2_MBOX_ST_INVALID_OWNER_VF,
-};
-
-static const char dlb2_mbox_status_type_strings[][128] = {
- "DLB2_MBOX_ST_SUCCESS",
- "DLB2_MBOX_ST_INVALID_CMD_TYPE",
- "DLB2_MBOX_ST_VERSION_MISMATCH",
- "DLB2_MBOX_ST_INVALID_OWNER_VF",
-};
-
-#define DLB2_MBOX_ST_TYPE(hdr) \
- (((struct dlb2_mbox_resp_hdr *)hdr)->status)
-#define DLB2_MBOX_ST_STRING(hdr) \
- dlb2_mbox_status_type_strings[DLB2_MBOX_ST_TYPE(hdr)]
-
-/* This structure is always the first field in a request structure */
-struct dlb2_mbox_req_hdr {
- u32 type;
-};
-
-/* This structure is always the first field in a response structure */
-struct dlb2_mbox_resp_hdr {
- u32 status;
-};
-
-struct dlb2_mbox_register_cmd_req {
- struct dlb2_mbox_req_hdr hdr;
- u16 min_interface_version;
- u16 max_interface_version;
-};
-
-struct dlb2_mbox_register_cmd_resp {
- struct dlb2_mbox_resp_hdr hdr;
- u32 interface_version;
- u8 pf_id;
- u8 vf_id;
- u8 is_auxiliary_vf;
- u8 primary_vf_id;
- u32 padding;
-};
-
-struct dlb2_mbox_unregister_cmd_req {
- struct dlb2_mbox_req_hdr hdr;
- u32 padding;
-};
-
-struct dlb2_mbox_unregister_cmd_resp {
- struct dlb2_mbox_resp_hdr hdr;
- u32 padding;
-};
-
-struct dlb2_mbox_get_num_resources_cmd_req {
- struct dlb2_mbox_req_hdr hdr;
- u32 padding;
-};
-
-struct dlb2_mbox_get_num_resources_cmd_resp {
- struct dlb2_mbox_resp_hdr hdr;
- u32 error_code;
- u16 num_sched_domains;
- u16 num_ldb_queues;
- u16 num_ldb_ports;
- u16 num_cos_ldb_ports[4];
- u16 num_dir_ports;
- u32 num_atomic_inflights;
- u32 num_hist_list_entries;
- u32 max_contiguous_hist_list_entries;
- u16 num_ldb_credits;
- u16 num_dir_credits;
-};
-
-struct dlb2_mbox_create_sched_domain_cmd_req {
- struct dlb2_mbox_req_hdr hdr;
- u32 num_ldb_queues;
- u32 num_ldb_ports;
- u32 num_cos_ldb_ports[4];
- u32 num_dir_ports;
- u32 num_atomic_inflights;
- u32 num_hist_list_entries;
- u32 num_ldb_credits;
- u32 num_dir_credits;
- u8 cos_strict;
- u8 padding0[3];
- u32 padding1;
-};
-
-struct dlb2_mbox_create_sched_domain_cmd_resp {
- struct dlb2_mbox_resp_hdr hdr;
- u32 error_code;
- u32 status;
- u32 id;
-};
-
-struct dlb2_mbox_reset_sched_domain_cmd_req {
- struct dlb2_mbox_req_hdr hdr;
- u32 id;
-};
-
-struct dlb2_mbox_reset_sched_domain_cmd_resp {
- struct dlb2_mbox_resp_hdr hdr;
- u32 error_code;
-};
-
-struct dlb2_mbox_create_ldb_queue_cmd_req {
- struct dlb2_mbox_req_hdr hdr;
- u32 domain_id;
- u32 num_sequence_numbers;
- u32 num_qid_inflights;
- u32 num_atomic_inflights;
- u32 lock_id_comp_level;
- u32 depth_threshold;
- u32 padding;
-};
-
-struct dlb2_mbox_create_ldb_queue_cmd_resp {
- struct dlb2_mbox_resp_hdr hdr;
- u32 error_code;
- u32 status;
- u32 id;
-};
-
-struct dlb2_mbox_create_dir_queue_cmd_req {
- struct dlb2_mbox_req_hdr hdr;
- u32 domain_id;
- u32 port_id;
- u32 depth_threshold;
-};
-
-struct dlb2_mbox_create_dir_queue_cmd_resp {
- struct dlb2_mbox_resp_hdr hdr;
- u32 error_code;
- u32 status;
- u32 id;
-};
-
-struct dlb2_mbox_create_ldb_port_cmd_req {
- struct dlb2_mbox_req_hdr hdr;
- u32 domain_id;
- u16 cq_depth;
- u16 cq_history_list_size;
- u8 cos_id;
- u8 cos_strict;
- u16 padding1;
- u64 cq_base_address;
-};
-
-struct dlb2_mbox_create_ldb_port_cmd_resp {
- struct dlb2_mbox_resp_hdr hdr;
- u32 error_code;
- u32 status;
- u32 id;
-};
-
-struct dlb2_mbox_create_dir_port_cmd_req {
- struct dlb2_mbox_req_hdr hdr;
- u32 domain_id;
- u64 cq_base_address;
- u16 cq_depth;
- u16 padding0;
- s32 queue_id;
-};
-
-struct dlb2_mbox_create_dir_port_cmd_resp {
- struct dlb2_mbox_resp_hdr hdr;
- u32 error_code;
- u32 status;
- u32 id;
-};
-
-struct dlb2_mbox_enable_ldb_port_cmd_req {
- struct dlb2_mbox_req_hdr hdr;
- u32 domain_id;
- u32 port_id;
- u32 padding;
-};
-
-struct dlb2_mbox_enable_ldb_port_cmd_resp {
- struct dlb2_mbox_resp_hdr hdr;
- u32 error_code;
- u32 status;
- u32 padding;
-};
-
-struct dlb2_mbox_disable_ldb_port_cmd_req {
- struct dlb2_mbox_req_hdr hdr;
- u32 domain_id;
- u32 port_id;
- u32 padding;
-};
-
-struct dlb2_mbox_disable_ldb_port_cmd_resp {
- struct dlb2_mbox_resp_hdr hdr;
- u32 error_code;
- u32 status;
- u32 padding;
-};
-
-struct dlb2_mbox_enable_dir_port_cmd_req {
- struct dlb2_mbox_req_hdr hdr;
- u32 domain_id;
- u32 port_id;
- u32 padding;
-};
-
-struct dlb2_mbox_enable_dir_port_cmd_resp {
- struct dlb2_mbox_resp_hdr hdr;
- u32 error_code;
- u32 status;
- u32 padding;
-};
-
-struct dlb2_mbox_disable_dir_port_cmd_req {
- struct dlb2_mbox_req_hdr hdr;
- u32 domain_id;
- u32 port_id;
- u32 padding;
-};
-
-struct dlb2_mbox_disable_dir_port_cmd_resp {
- struct dlb2_mbox_resp_hdr hdr;
- u32 error_code;
- u32 status;
- u32 padding;
-};
-
-struct dlb2_mbox_ldb_port_owned_by_domain_cmd_req {
- struct dlb2_mbox_req_hdr hdr;
- u32 domain_id;
- u32 port_id;
- u32 padding;
-};
-
-struct dlb2_mbox_ldb_port_owned_by_domain_cmd_resp {
- struct dlb2_mbox_resp_hdr hdr;
- s32 owned;
-};
-
-struct dlb2_mbox_dir_port_owned_by_domain_cmd_req {
- struct dlb2_mbox_req_hdr hdr;
- u32 domain_id;
- u32 port_id;
- u32 padding;
-};
-
-struct dlb2_mbox_dir_port_owned_by_domain_cmd_resp {
- struct dlb2_mbox_resp_hdr hdr;
- s32 owned;
-};
-
-struct dlb2_mbox_map_qid_cmd_req {
- struct dlb2_mbox_req_hdr hdr;
- u32 domain_id;
- u32 port_id;
- u32 qid;
- u32 priority;
- u32 padding0;
-};
-
-struct dlb2_mbox_map_qid_cmd_resp {
- struct dlb2_mbox_resp_hdr hdr;
- u32 error_code;
- u32 status;
- u32 id;
-};
-
-struct dlb2_mbox_unmap_qid_cmd_req {
- struct dlb2_mbox_req_hdr hdr;
- u32 domain_id;
- u32 port_id;
- u32 qid;
-};
-
-struct dlb2_mbox_unmap_qid_cmd_resp {
- struct dlb2_mbox_resp_hdr hdr;
- u32 error_code;
- u32 status;
- u32 padding;
-};
-
-struct dlb2_mbox_start_domain_cmd_req {
- struct dlb2_mbox_req_hdr hdr;
- u32 domain_id;
-};
-
-struct dlb2_mbox_start_domain_cmd_resp {
- struct dlb2_mbox_resp_hdr hdr;
- u32 error_code;
- u32 status;
- u32 padding;
-};
-
-struct dlb2_mbox_enable_ldb_port_intr_cmd_req {
- struct dlb2_mbox_req_hdr hdr;
- u16 port_id;
- u16 thresh;
- u16 vector;
- u16 owner_vf;
- u16 reserved[2];
-};
-
-struct dlb2_mbox_enable_ldb_port_intr_cmd_resp {
- struct dlb2_mbox_resp_hdr hdr;
- u32 error_code;
- u32 status;
- u32 padding;
-};
-
-struct dlb2_mbox_enable_dir_port_intr_cmd_req {
- struct dlb2_mbox_req_hdr hdr;
- u16 port_id;
- u16 thresh;
- u16 vector;
- u16 owner_vf;
- u16 reserved[2];
-};
-
-struct dlb2_mbox_enable_dir_port_intr_cmd_resp {
- struct dlb2_mbox_resp_hdr hdr;
- u32 error_code;
- u32 status;
- u32 padding;
-};
-
-struct dlb2_mbox_arm_cq_intr_cmd_req {
- struct dlb2_mbox_req_hdr hdr;
- u32 domain_id;
- u32 port_id;
- u32 is_ldb;
-};
-
-struct dlb2_mbox_arm_cq_intr_cmd_resp {
- struct dlb2_mbox_resp_hdr hdr;
- u32 error_code;
- u32 status;
- u32 padding0;
-};
-
-/*
- * The alert_id and aux_alert_data follows the format of the alerts defined in
- * dlb2_types.h. The alert id contains an enum dlb2_domain_alert_id value, and
- * the aux_alert_data value varies depending on the alert.
- */
-struct dlb2_mbox_vf_alert_cmd_req {
- struct dlb2_mbox_req_hdr hdr;
- u32 domain_id;
- u32 alert_id;
- u32 aux_alert_data;
-};
-
-enum dlb2_mbox_vf_notification_type {
- DLB2_MBOX_VF_NOTIFICATION_PRE_RESET,
- DLB2_MBOX_VF_NOTIFICATION_POST_RESET,
-
- /* NUM_DLB2_MBOX_VF_NOTIFICATION_TYPES must be last */
- NUM_DLB2_MBOX_VF_NOTIFICATION_TYPES,
-};
-
-struct dlb2_mbox_vf_notification_cmd_req {
- struct dlb2_mbox_req_hdr hdr;
- u32 notification;
-};
-
-struct dlb2_mbox_vf_in_use_cmd_req {
- struct dlb2_mbox_req_hdr hdr;
- u32 padding;
-};
-
-struct dlb2_mbox_vf_in_use_cmd_resp {
- struct dlb2_mbox_resp_hdr hdr;
- u32 in_use;
-};
-
-struct dlb2_mbox_get_sn_allocation_cmd_req {
- struct dlb2_mbox_req_hdr hdr;
- u32 group_id;
-};
-
-struct dlb2_mbox_get_sn_allocation_cmd_resp {
- struct dlb2_mbox_resp_hdr hdr;
- u32 num;
-};
-
-struct dlb2_mbox_get_ldb_queue_depth_cmd_req {
- struct dlb2_mbox_req_hdr hdr;
- u32 domain_id;
- u32 queue_id;
- u32 padding;
-};
-
-struct dlb2_mbox_get_ldb_queue_depth_cmd_resp {
- struct dlb2_mbox_resp_hdr hdr;
- u32 error_code;
- u32 status;
- u32 depth;
-};
-
-struct dlb2_mbox_get_dir_queue_depth_cmd_req {
- struct dlb2_mbox_req_hdr hdr;
- u32 domain_id;
- u32 queue_id;
- u32 padding;
-};
-
-struct dlb2_mbox_get_dir_queue_depth_cmd_resp {
- struct dlb2_mbox_resp_hdr hdr;
- u32 error_code;
- u32 status;
- u32 depth;
-};
-
-struct dlb2_mbox_pending_port_unmaps_cmd_req {
- struct dlb2_mbox_req_hdr hdr;
- u32 domain_id;
- u32 port_id;
- u32 padding;
-};
-
-struct dlb2_mbox_pending_port_unmaps_cmd_resp {
- struct dlb2_mbox_resp_hdr hdr;
- u32 error_code;
- u32 status;
- u32 num;
-};
-
-struct dlb2_mbox_get_cos_bw_cmd_req {
- struct dlb2_mbox_req_hdr hdr;
- u32 cos_id;
-};
-
-struct dlb2_mbox_get_cos_bw_cmd_resp {
- struct dlb2_mbox_resp_hdr hdr;
- u32 num;
-};
-
-struct dlb2_mbox_get_sn_occupancy_cmd_req {
- struct dlb2_mbox_req_hdr hdr;
- u32 group_id;
-};
-
-struct dlb2_mbox_get_sn_occupancy_cmd_resp {
- struct dlb2_mbox_resp_hdr hdr;
- u32 num;
-};
-
-struct dlb2_mbox_query_cq_poll_mode_cmd_req {
- struct dlb2_mbox_req_hdr hdr;
- u32 padding;
-};
-
-struct dlb2_mbox_query_cq_poll_mode_cmd_resp {
- struct dlb2_mbox_resp_hdr hdr;
- u32 error_code;
- u32 status;
- u32 mode;
-};
-
-#endif /* __DLB2_BASE_DLB2_MBOX_H */
diff --git a/drivers/event/dlb2/pf/base/dlb2_resource.c b/drivers/event/dlb2/pf/base/dlb2_resource.c
index ae5ef2fc3..b57157fdc 100644
--- a/drivers/event/dlb2/pf/base/dlb2_resource.c
+++ b/drivers/event/dlb2/pf/base/dlb2_resource.c
@@ -5,7 +5,6 @@
#include "dlb2_user.h"
#include "dlb2_hw_types.h"
-#include "dlb2_mbox.h"
#include "dlb2_osdep.h"
#include "dlb2_osdep_bitmap.h"
#include "dlb2_osdep_types.h"
--
2.23.0
next prev parent reply other threads:[~2021-04-15 1:50 UTC|newest]
Thread overview: 174+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-03-16 22:18 [dpdk-dev] [PATCH 00/25] Add Support for DLB v2.5 Timothy McDaniel
2021-03-16 22:18 ` [dpdk-dev] [PATCH 01/25] event/dlb2: add dlb v2.5 probe Timothy McDaniel
2021-03-21 9:48 ` Jerin Jacob
2021-03-24 19:31 ` McDaniel, Timothy
2021-03-26 11:01 ` Jerin Jacob
2021-03-26 14:03 ` McDaniel, Timothy
2021-03-26 14:33 ` Jerin Jacob
2021-03-29 15:00 ` McDaniel, Timothy
2021-03-29 15:51 ` Jerin Jacob
2021-03-29 15:55 ` McDaniel, Timothy
2021-03-30 19:35 ` [dpdk-dev] [PATCH v2 00/27] Add DLB V2.5 Timothy McDaniel
2021-03-30 19:35 ` [dpdk-dev] [PATCH v2 01/27] event/dlb2: add v2.5 probe Timothy McDaniel
2021-03-30 19:35 ` [dpdk-dev] [PATCH v2 02/27] event/dlb2: add v2.5 HW init Timothy McDaniel
2021-04-03 10:18 ` Jerin Jacob
2021-03-30 19:35 ` [dpdk-dev] [PATCH v2 03/27] event/dlb2: add v2.5 get_resources Timothy McDaniel
2021-03-30 19:35 ` [dpdk-dev] [PATCH v2 04/27] event/dlb2: add v2.5 create sched domain Timothy McDaniel
2021-03-30 19:35 ` [dpdk-dev] [PATCH v2 05/27] event/dlb2: add v2.5 domain reset Timothy McDaniel
2021-03-30 19:35 ` [dpdk-dev] [PATCH v2 06/27] event/dlb2: add V2.5 create ldb queue Timothy McDaniel
2021-04-14 19:20 ` Jerin Jacob
2021-04-14 19:41 ` McDaniel, Timothy
2021-03-30 19:35 ` [dpdk-dev] [PATCH v2 07/27] event/dlb2: add v2.5 create ldb port Timothy McDaniel
2021-03-30 19:35 ` [dpdk-dev] [PATCH v2 08/27] event/dlb2: add v2.5 create dir port Timothy McDaniel
2021-03-30 19:35 ` [dpdk-dev] [PATCH v2 09/27] event/dlb2: add v2.5 create dir queue Timothy McDaniel
2021-04-03 10:26 ` Jerin Jacob
2021-03-30 19:35 ` [dpdk-dev] [PATCH v2 10/27] event/dlb2: add v2.5 map qid Timothy McDaniel
2021-03-30 19:35 ` [dpdk-dev] [PATCH v2 11/27] event/dlb2: add v2.5 unmap queue Timothy McDaniel
2021-03-30 19:35 ` [dpdk-dev] [PATCH v2 12/27] event/dlb2: add v2.5 start domain Timothy McDaniel
2021-04-14 19:23 ` Jerin Jacob
2021-04-14 19:42 ` McDaniel, Timothy
2021-03-30 19:35 ` [dpdk-dev] [PATCH v2 13/27] event/dlb2: add v2.5 credit scheme Timothy McDaniel
2021-03-30 19:35 ` [dpdk-dev] [PATCH v2 14/27] event/dlb2: add v2.5 queue depth functions Timothy McDaniel
2021-03-30 19:35 ` [dpdk-dev] [PATCH v2 15/27] event/dlb2: add v2.5 finish map/unmap Timothy McDaniel
2021-03-30 19:35 ` [dpdk-dev] [PATCH v2 16/27] event/dlb2: add v2.5 sparse cq mode Timothy McDaniel
2021-03-30 19:35 ` [dpdk-dev] [PATCH v2 17/27] event/dlb2: add v2.5 sequence number management Timothy McDaniel
2021-03-30 19:35 ` [dpdk-dev] [PATCH v2 18/27] event/dlb2: consolidate resource header files into one file Timothy McDaniel
2021-03-30 19:35 ` [dpdk-dev] [PATCH v2 19/27] event/dlb2: delete old dlb2_resource.c file Timothy McDaniel
2021-03-30 19:35 ` [dpdk-dev] [PATCH v2 20/27] event/dlb2: move dlb_resource_new.c to dlb_resource.c Timothy McDaniel
2021-04-03 10:29 ` Jerin Jacob
2021-03-30 19:35 ` [dpdk-dev] [PATCH v2 21/27] event/dlb2: remove temporary file, dlb_hw_types.h Timothy McDaniel
2021-03-30 19:35 ` [dpdk-dev] [PATCH v2 22/27] event/dlb2: move dlb2_hw_type_new.h to dlb2_hw_types.h Timothy McDaniel
2021-03-30 19:35 ` [dpdk-dev] [PATCH v2 23/27] event/dlb2: delete old register map file, dlb2_regs.h Timothy McDaniel
2021-03-30 19:35 ` [dpdk-dev] [PATCH v2 24/27] event/dlb2: rename dlb2_regs_new.h to dlb2_regs.h Timothy McDaniel
2021-03-30 19:35 ` [dpdk-dev] [PATCH v2 25/27] event/dlb2: update xstats for v2.5 Timothy McDaniel
2021-03-30 19:35 ` [dpdk-dev] [PATCH v2 26/27] doc/dlb2: update documentation " Timothy McDaniel
2021-03-30 19:35 ` [dpdk-dev] [PATCH v2 27/27] event/dlb2: Change device name to dlb_event Timothy McDaniel
2021-04-03 10:39 ` Jerin Jacob
2021-04-03 9:51 ` [dpdk-dev] [PATCH v2 00/27] Add DLB V2.5 Jerin Jacob
2021-04-13 20:14 ` [dpdk-dev] [PATCH v3 00/26] " Timothy McDaniel
2021-04-13 20:14 ` [dpdk-dev] [PATCH v3 01/26] event/dlb2: add v2.5 probe Timothy McDaniel
2021-04-14 19:16 ` Jerin Jacob
2021-04-14 19:41 ` McDaniel, Timothy
2021-04-14 19:47 ` Jerin Jacob
2021-04-13 20:14 ` [dpdk-dev] [PATCH v3 02/26] event/dlb2: add v2.5 HW register definitions Timothy McDaniel
2021-04-13 20:14 ` [dpdk-dev] [PATCH v3 03/26] event/dlb2: add v2.5 HW init Timothy McDaniel
2021-04-13 20:14 ` [dpdk-dev] [PATCH v3 04/26] event/dlb2: add v2.5 get resources Timothy McDaniel
2021-04-13 20:14 ` [dpdk-dev] [PATCH v3 05/26] event/dlb2: add v2.5 create sched domain Timothy McDaniel
2021-04-13 20:14 ` [dpdk-dev] [PATCH v3 06/26] event/dlb2: add v2.5 domain reset Timothy McDaniel
2021-04-13 20:14 ` [dpdk-dev] [PATCH v3 07/26] event/dlb2: add V2.5 create ldb queue Timothy McDaniel
2021-04-13 20:14 ` [dpdk-dev] [PATCH v3 08/26] event/dlb2: add v2.5 create ldb port Timothy McDaniel
2021-04-13 20:14 ` [dpdk-dev] [PATCH v3 09/26] event/dlb2: add v2.5 create dir port Timothy McDaniel
2021-04-13 20:14 ` [dpdk-dev] [PATCH v3 10/26] event/dlb2: add v2.5 create dir queue Timothy McDaniel
2021-04-13 20:14 ` [dpdk-dev] [PATCH v3 11/26] event/dlb2: add v2.5 map qid Timothy McDaniel
2021-04-13 20:14 ` [dpdk-dev] [PATCH v3 12/26] event/dlb2: add v2.5 unmap queue Timothy McDaniel
2021-04-13 20:14 ` [dpdk-dev] [PATCH v3 13/26] event/dlb2: add v2.5 start domain Timothy McDaniel
2021-04-13 20:14 ` [dpdk-dev] [PATCH v3 14/26] event/dlb2: add v2.5 credit scheme Timothy McDaniel
2021-04-13 20:14 ` [dpdk-dev] [PATCH v3 15/26] event/dlb2: add v2.5 queue depth functions Timothy McDaniel
2021-04-13 20:14 ` [dpdk-dev] [PATCH v3 16/26] event/dlb2: add v2.5 finish map/unmap Timothy McDaniel
2021-04-13 20:14 ` [dpdk-dev] [PATCH v3 17/26] event/dlb2: add v2.5 sparse cq mode Timothy McDaniel
2021-04-13 20:14 ` [dpdk-dev] [PATCH v3 18/26] event/dlb2: add v2.5 sequence number management Timothy McDaniel
2021-04-13 20:14 ` [dpdk-dev] [PATCH v3 19/26] event/dlb2: use new implementation of resource header Timothy McDaniel
2021-04-13 20:14 ` [dpdk-dev] [PATCH v3 20/26] event/dlb2: use new implementation of resource file Timothy McDaniel
2021-04-13 20:14 ` [dpdk-dev] [PATCH v3 21/26] event/dlb2: use new implementation of HW types header Timothy McDaniel
2021-04-13 20:14 ` [dpdk-dev] [PATCH v3 22/26] event/dlb2: use new combined register map Timothy McDaniel
2021-04-13 20:14 ` [dpdk-dev] [PATCH v3 23/26] event/dlb2: update xstats for v2.5 Timothy McDaniel
2021-04-13 20:14 ` [dpdk-dev] [PATCH v3 24/26] doc/dlb2: update documentation " Timothy McDaniel
2021-04-13 20:14 ` [dpdk-dev] [PATCH v3 25/26] event/dlb: remove version from device name Timothy McDaniel
2021-04-14 19:31 ` Jerin Jacob
2021-04-14 19:42 ` McDaniel, Timothy
2021-04-14 19:44 ` Jerin Jacob
2021-04-14 20:33 ` Thomas Monjalon
2021-04-15 3:22 ` McDaniel, Timothy
2021-04-15 5:47 ` Jerin Jacob
2021-04-15 7:48 ` Thomas Monjalon
2021-04-15 7:56 ` Jerin Jacob
2021-04-13 20:14 ` [dpdk-dev] [PATCH v3 26/26] event/dlb: move rte config defines to runtime devargs Timothy McDaniel
2021-04-14 19:11 ` Jerin Jacob
2021-04-14 19:38 ` McDaniel, Timothy
2021-04-14 19:52 ` Jerin Jacob
2021-04-15 1:48 ` [dpdk-dev] [PATCH v4 00/27] Add DLB v2.5 Timothy McDaniel
2021-04-15 1:48 ` Timothy McDaniel [this message]
2021-04-15 1:48 ` [dpdk-dev] [PATCH v4 02/27] event/dlb2: add v2.5 probe Timothy McDaniel
2021-04-29 7:09 ` Jerin Jacob
2021-04-29 13:46 ` McDaniel, Timothy
2021-04-15 1:48 ` [dpdk-dev] [PATCH v4 03/27] event/dlb2: add v2.5 HW register definitions Timothy McDaniel
2021-04-15 1:48 ` [dpdk-dev] [PATCH v4 04/27] event/dlb2: add v2.5 HW init Timothy McDaniel
2021-04-15 1:48 ` [dpdk-dev] [PATCH v4 05/27] event/dlb2: add v2.5 get resources Timothy McDaniel
2021-04-15 1:48 ` [dpdk-dev] [PATCH v4 06/27] event/dlb2: add v2.5 create sched domain Timothy McDaniel
2021-04-15 1:48 ` [dpdk-dev] [PATCH v4 07/27] event/dlb2: add v2.5 domain reset Timothy McDaniel
2021-04-15 1:49 ` [dpdk-dev] [PATCH v4 08/27] event/dlb2: add v2.5 create ldb queue Timothy McDaniel
2021-04-15 1:49 ` [dpdk-dev] [PATCH v4 09/27] event/dlb2: add v2.5 create ldb port Timothy McDaniel
2021-04-15 1:49 ` [dpdk-dev] [PATCH v4 10/27] event/dlb2: add v2.5 create dir port Timothy McDaniel
2021-04-15 1:49 ` [dpdk-dev] [PATCH v4 11/27] event/dlb2: add v2.5 create dir queue Timothy McDaniel
2021-04-15 1:49 ` [dpdk-dev] [PATCH v4 12/27] event/dlb2: add v2.5 map qid Timothy McDaniel
2021-04-15 1:49 ` [dpdk-dev] [PATCH v4 13/27] event/dlb2: add v2.5 unmap queue Timothy McDaniel
2021-04-15 1:49 ` [dpdk-dev] [PATCH v4 14/27] event/dlb2: add v2.5 start domain Timothy McDaniel
2021-04-15 1:49 ` [dpdk-dev] [PATCH v4 15/27] event/dlb2: add v2.5 credit scheme Timothy McDaniel
2021-04-15 1:49 ` [dpdk-dev] [PATCH v4 16/27] event/dlb2: add v2.5 queue depth functions Timothy McDaniel
2021-04-15 1:49 ` [dpdk-dev] [PATCH v4 17/27] event/dlb2: add v2.5 finish map/unmap Timothy McDaniel
2021-04-15 1:49 ` [dpdk-dev] [PATCH v4 18/27] event/dlb2: add v2.5 sparse cq mode Timothy McDaniel
2021-04-15 1:49 ` [dpdk-dev] [PATCH v4 19/27] event/dlb2: add v2.5 sequence number management Timothy McDaniel
2021-04-15 1:49 ` [dpdk-dev] [PATCH v4 20/27] event/dlb2: use new implementation of resource header Timothy McDaniel
2021-04-15 1:49 ` [dpdk-dev] [PATCH v4 21/27] event/dlb2: use new implementation of resource file Timothy McDaniel
2021-04-15 1:49 ` [dpdk-dev] [PATCH v4 22/27] event/dlb2: use new implementation of HW types header Timothy McDaniel
2021-04-15 1:49 ` [dpdk-dev] [PATCH v4 23/27] event/dlb2: use new combined register map Timothy McDaniel
2021-04-15 1:49 ` [dpdk-dev] [PATCH v4 24/27] event/dlb2: update xstats for v2.5 Timothy McDaniel
2021-04-15 1:49 ` [dpdk-dev] [PATCH v4 25/27] doc/dlb2: update documentation " Timothy McDaniel
2021-04-15 1:49 ` [dpdk-dev] [PATCH v4 26/27] event/dlb: rename dlb2 driver Timothy McDaniel
2021-04-15 1:49 ` [dpdk-dev] [PATCH v4 27/27] event/dlb: move rte config defines to runtime devargs Timothy McDaniel
2021-05-01 19:03 ` [dpdk-dev] [PATCH v5 00/26] Add DLB v2.5 McDaniel, Timothy
2021-05-01 19:03 ` [dpdk-dev] [PATCH v5 01/26] event/dlb2: minor code cleanup McDaniel, Timothy
2021-05-01 19:03 ` [dpdk-dev] [PATCH v5 02/26] event/dlb2: add v2.5 probe McDaniel, Timothy
2021-05-01 19:03 ` [dpdk-dev] [PATCH v5 03/26] event/dlb2: add v2.5 HW register definitions McDaniel, Timothy
2021-05-01 19:03 ` [dpdk-dev] [PATCH v5 04/26] event/dlb2: add v2.5 HW init McDaniel, Timothy
2021-05-01 19:03 ` [dpdk-dev] [PATCH v5 05/26] event/dlb2: add v2.5 get resources McDaniel, Timothy
2021-05-01 19:03 ` [dpdk-dev] [PATCH v5 06/26] event/dlb2: add v2.5 create sched domain McDaniel, Timothy
2021-05-01 19:03 ` [dpdk-dev] [PATCH v5 07/26] event/dlb2: add v2.5 domain reset McDaniel, Timothy
2021-05-01 19:03 ` [dpdk-dev] [PATCH v5 08/26] event/dlb2: add v2.5 create ldb queue McDaniel, Timothy
2021-05-01 19:03 ` [dpdk-dev] [PATCH v5 09/26] event/dlb2: add v2.5 create ldb port McDaniel, Timothy
2021-05-01 19:03 ` [dpdk-dev] [PATCH v5 10/26] event/dlb2: add v2.5 create dir port McDaniel, Timothy
2021-05-01 19:03 ` [dpdk-dev] [PATCH v5 11/26] event/dlb2: add v2.5 create dir queue McDaniel, Timothy
2021-05-01 19:03 ` [dpdk-dev] [PATCH v5 12/26] event/dlb2: add v2.5 map qid McDaniel, Timothy
2021-05-01 19:03 ` [dpdk-dev] [PATCH v5 13/26] event/dlb2: add v2.5 unmap queue McDaniel, Timothy
2021-05-01 19:03 ` [dpdk-dev] [PATCH v5 14/26] event/dlb2: add v2.5 start domain McDaniel, Timothy
2021-05-01 19:03 ` [dpdk-dev] [PATCH v5 15/26] event/dlb2: add v2.5 credit scheme McDaniel, Timothy
2021-05-01 19:03 ` [dpdk-dev] [PATCH v5 16/26] event/dlb2: add v2.5 queue depth functions McDaniel, Timothy
2021-05-01 19:03 ` [dpdk-dev] [PATCH v5 17/26] event/dlb2: add v2.5 finish map/unmap McDaniel, Timothy
2021-05-01 19:03 ` [dpdk-dev] [PATCH v5 18/26] event/dlb2: add v2.5 sparse cq mode McDaniel, Timothy
2021-05-01 19:03 ` [dpdk-dev] [PATCH v5 19/26] event/dlb2: add v2.5 sequence number management McDaniel, Timothy
2021-05-01 19:03 ` [dpdk-dev] [PATCH v5 20/26] event/dlb2: use new implementation of resource header McDaniel, Timothy
2021-05-01 19:03 ` [dpdk-dev] [PATCH v5 21/26] event/dlb2: use new implementation of resource file McDaniel, Timothy
2021-05-01 19:03 ` [dpdk-dev] [PATCH v5 22/26] event/dlb2: use new implementation of HW types header McDaniel, Timothy
2021-05-01 19:03 ` [dpdk-dev] [PATCH v5 23/26] event/dlb2: use new combined register map McDaniel, Timothy
2021-05-01 19:03 ` [dpdk-dev] [PATCH v5 24/26] event/dlb2: update xstats for v2.5 McDaniel, Timothy
2021-05-01 19:04 ` [dpdk-dev] [PATCH v5 25/26] event/dlb2: move rte config defines to runtime devargs McDaniel, Timothy
2021-05-01 19:04 ` [dpdk-dev] [PATCH v5 26/26] doc/dlb2: update documentation for v2.5 McDaniel, Timothy
2021-05-04 8:28 ` [dpdk-dev] [PATCH v5 00/26] Add DLB v2.5 Jerin Jacob
2021-03-16 22:18 ` [dpdk-dev] [PATCH 02/25] event/dlb2: add DLB v2.5 probe-time hardware init Timothy McDaniel
2021-03-21 10:30 ` [dpdk-dev] [EXT] " Jerin Jacob Kollanukkaran
2021-03-26 16:37 ` McDaniel, Timothy
2021-03-16 22:18 ` [dpdk-dev] [PATCH 03/25] event/dlb2: add DLB v2.5 support to get_resources Timothy McDaniel
2021-03-16 22:18 ` [dpdk-dev] [PATCH 04/25] event/dlb2: add DLB v2.5 support to create sched domain Timothy McDaniel
2021-04-03 10:22 ` Jerin Jacob
2021-03-16 22:18 ` [dpdk-dev] [PATCH 05/25] event/dlb2: add DLB v2.5 support to domain reset Timothy McDaniel
2021-03-16 22:18 ` [dpdk-dev] [PATCH 06/25] event/dlb2: add DLB V2.5 support to create ldb queue Timothy McDaniel
2021-03-16 22:18 ` [dpdk-dev] [PATCH 07/25] event/dlb2: add DLB v2.5 support to create ldb port Timothy McDaniel
2021-03-16 22:18 ` [dpdk-dev] [PATCH 08/25] event/dlb2: add DLB v2.5 support to create dir port Timothy McDaniel
2021-03-16 22:18 ` [dpdk-dev] [PATCH 09/25] event/dlb2: add DLB v2.5 support to create dir queue Timothy McDaniel
2021-03-16 22:18 ` [dpdk-dev] [PATCH 10/25] event/dlb2: add DLB v2.5 support to map qid Timothy McDaniel
2021-03-16 22:18 ` [dpdk-dev] [PATCH 11/25] event/dlb2: add DLB v2.5 support to unmap queue Timothy McDaniel
2021-03-16 22:18 ` [dpdk-dev] [PATCH 12/25] event/dlb2: add DLB v2.5 support to start domain Timothy McDaniel
2021-03-16 22:18 ` [dpdk-dev] [PATCH 13/25] event/dlb2: add DLB v2.5 credit scheme Timothy McDaniel
2021-03-16 22:18 ` [dpdk-dev] [PATCH 14/25] event/dlb2: Add DLB v2.5 support to get queue depth functions Timothy McDaniel
2021-03-16 22:18 ` [dpdk-dev] [PATCH 15/25] event/dlb2: add DLB v2.5 finish map/unmap interfaces Timothy McDaniel
2021-03-16 22:18 ` [dpdk-dev] [PATCH 16/25] event/dlb2: add DLB v2.5 sparse cq mode Timothy McDaniel
2021-03-16 22:18 ` [dpdk-dev] [PATCH 17/25] event/dlb2: add DLB v2.5 support to sequence number management Timothy McDaniel
2021-03-16 22:18 ` [dpdk-dev] [PATCH 18/25] event/dlb2: consolidate dlb resource header files into one file Timothy McDaniel
2021-03-16 22:18 ` [dpdk-dev] [PATCH 19/25] event/dlb2: delete old dlb2_resource.c file Timothy McDaniel
2021-03-16 22:18 ` [dpdk-dev] [PATCH 20/25] event/dlb2: move dlb_resource_new.c to dlb_resource.c Timothy McDaniel
2021-03-16 22:18 ` [dpdk-dev] [PATCH 21/25] event/dlb2: remove temporary file, dlb_hw_types.h Timothy McDaniel
2021-03-16 22:18 ` [dpdk-dev] [PATCH 22/25] event/dlb2: move dlb2_hw_type_new.h to dlb2_hw_types.h Timothy McDaniel
2021-03-16 22:18 ` [dpdk-dev] [PATCH 23/25] event/dlb2: delete old register map file, dlb2_regs.h Timothy McDaniel
2021-03-16 22:18 ` [dpdk-dev] [PATCH 24/25] event/dlb2: rename dlb2_regs_new.h to dlb2_regs.h Timothy McDaniel
2021-03-16 22:18 ` [dpdk-dev] [PATCH 25/25] event/dlb2: update xstats for DLB v2.5 Timothy McDaniel
2021-03-21 10:50 ` [dpdk-dev] [PATCH 00/25] Add Support " Jerin Jacob
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1618451359-20693-2-git-send-email-timothy.mcdaniel@intel.com \
--to=timothy.mcdaniel@intel.com \
--cc=dev@dpdk.org \
--cc=erik.g.carrillo@intel.com \
--cc=harry.van.haaren@intel.com \
--cc=jerinj@marvell.com \
--cc=thomas@monjalon.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).